@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap"); /* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.btn {
  height: 60px;
  padding: 0 35px;
  border: 2px solid #346324;
  background-color: #346324;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn:hover {
  border: 2px solid #346324;
  color: #346324;
  background: none;
}
.btn:active {
  transform: scale(0.97);
}

.title {
  font-size: 42px;
  line-height: 42px;
  font-weight: 600;
}
.title_right {
  text-align: right;
}

.descr {
  margin-top: 15px;
  font-size: 28px;
  line-height: 28px;
  font-weight: 500;
  color: #6C6C6C;
}
.descr_right {
  text-align: right;
}

*::-moz-selection {
  background: #346324;
  color: #fff;
}

*::selection {
  background: #346324;
  color: #fff;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2F2F2F;
  background-color: #fff;
}

a {
  color: #2F2F2F;
  text-decoration: none;
}
a:hover {
  color: #2F2F2F;
  text-decoration: none;
}

li {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
}
li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #346324;
}

.container {
  max-width: 1270px;
  padding: 0 15px;
  margin: 0 auto;
}

.no-scroll {
  overflow: hidden;
}
.no-scroll_pop {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  max-height: 100px;
  padding: 10px 0;
  background-color: #fff;
  border-bottom: 1px solid #f3f3f3;
  z-index: 20;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__logo a svg {
  width: 100%;
  height: auto;
}
.header__logo.active {
  z-index: 50;
}
.header__logo.active a svg path {
  transition: all 0.5s ease 0s;
  fill: #fff;
}
.header__logo.active a svg rect {
  transition: all 0.5s ease 0s;
  fill: #fff;
}
.header__menu {
  position: relative;
}
.header__list {
  display: flex;
}
.header__item {
  padding-left: 0;
}
.header__item::before {
  content: none;
}
.header__item:not(:last-child) {
  margin-right: 60px;
}
.header__link {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease 0s;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #346324;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.header__link:hover {
  color: #346324;
}
.header__link:hover::after {
  opacity: 1;
}
.header__phone a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease 0s;
}
.header__phone a:hover {
  color: #346324;
}
.header__menu-phone {
  display: none;
  position: absolute;
  bottom: 30px;
  right: 20px;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
}
.header__menu-phone a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
}
.header__menu-phone.active {
  display: block;
}
.header__close {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: 2px solid #d1d1d1;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 30;
}
.header__close span {
  display: block;
  width: 20px;
  height: 3px;
  background: #d1d1d1;
  border-radius: 4px;
}
.header__close span:nth-child(1) {
  transform: rotate(45deg) translate(1px, 1px);
}
.header__close span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}
.header__close.active {
  display: flex;
}

.hamburger {
  height: 23px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  display: block;
  width: 34px;
  height: 3px;
  background: #2F2F2F;
  transition: background 0.3s ease 0s;
  border-radius: 4px;
}

.main {
  padding-top: 100px;
  background: url("../img/bg-main.png") right bottom 35%/50% no-repeat;
}
.main__wrapper {
  height: 700px;
  display: flex;
  align-items: center;
}
.main__content {
  max-width: 620px;
}
.main__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}
.main__line {
  margin-top: 20px;
  width: 350px;
  height: 2px;
  background-color: #346324;
}
.main__descr {
  max-width: 485px;
  margin-top: 20px;
  font-size: 20px;
}
.main__btn {
  margin-top: 30px;
}

.about {
  padding: 70px 0;
  background-color: #F9F9F9;
}
.about__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__img {
  margin-right: 30px;
}
.about__content {
  max-width: 650px;
}
.about__descr {
  margin-bottom: 60px;
}
.about__item:not(:last-child) {
  margin-bottom: 15px;
}

.benefits {
  padding: 70px 0;
}
.benefits__wrapper {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.benefits__item {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits__icon img {
  width: auto;
  height: 76px;
}
.benefits__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  margin-top: 20px;
  text-align: center;
}

.services {
  padding: 70px 0;
  background-color: #F9F9F9;
}
.services__wrapper {
  margin-top: 80px;
  display: flex;
}
.services__control {
  margin-right: 100px;
}
.services__tab {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 400px;
  height: 70px;
  border: none;
  border-left: 3px solid #6C6C6C;
  padding-left: 35px;
  border-radius: 1px 4px 4px 1px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.services__tab:not(:last-child) {
  margin-bottom: 30px;
}
.services__tab:hover {
  border-left: 3px solid #346324;
  color: #346324;
}
.services__tab.active {
  color: #fff;
  background: #2F2F2F;
  border-left: 3px solid #346324;
}
.services__content {
  display: none;
}
.services__content.active {
  display: block;
}
.services__block {
  margin-top: 25px;
  display: flex;
}
.services__list:not(:last-child) {
  margin-right: 90px;
}
.services__item:not(:last-child) {
  margin-bottom: 7px;
}
.services__warning {
  margin-top: 50px;
  max-width: 800px;
}

.portfolio {
  padding: 70px 0;
}
.portfolio__control {
  margin-top: 40px;
  display: flex;
}
.portfolio__tab {
  cursor: pointer;
  transition: all 0.3s ease 0s;
  padding: 5px 15px;
  border-radius: 4px;
  border: 2px solid #fff;
  font-weight: 600;
}
.portfolio__tab:not(:last-child) {
  margin-right: 50px;
}
.portfolio__tab.active {
  color: #346324;
  border: 2px solid #346324;
}
.portfolio__content {
  display: none;
  margin-top: 20px;
}
.portfolio__content.active {
  display: block;
}
.portfolio__wrapper {
  cursor: pointer;
  padding-bottom: 50px;
  height: 530px;
}
.portfolio__item {
  width: 33.33333%;
  height: 250px;
}
.portfolio__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.portfolio__pagination {
  z-index: 10;
  position: absolute;
  left: 50% !important;
  bottom: 0 !important;
  transform: translateX(-50%);
  display: flex;
  width: auto !important;
}
.portfolio__bullet {
  width: 40px;
  height: 8px;
  background: #D9D9D9;
  border-radius: 80px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.portfolio__bullet:not(:last-child) {
  margin-right: 13px;
}
.portfolio__bullet_active {
  background-color: #346324;
}

.faq {
  padding: 70px 0;
  background-color: #F9F9F9;
}
.faq__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__img {
  margin-left: 150px;
  height: 600px;
  width: auto;
}
.faq__img img {
  width: 100%;
  height: 100%;
}
.faq__content {
  margin-top: 80px;
}
.faq__accordion {
  max-width: 700px;
}
.faq__accordion:not(:last-child) {
  margin-bottom: 15px;
}
.faq__question {
  padding: 10px 70px 10px 0;
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
.faq__question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: rgba(125, 125, 125, 0.4901960784) transparent transparent transparent;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
}
.faq__question.active {
  color: #346324;
}
.faq__question.active::after {
  transform: translateY(-25%) rotate(-180deg);
  border-color: #346324 transparent transparent transparent;
}
.faq__answer {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  width: 90%;
  color: #6C6C6C;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.feedback {
  padding: 70px 0;
}
.feedback__wrapper {
  display: flex;
  justify-content: space-between;
}
.feedback__text {
  margin-top: 40px;
  max-width: 400px;
}
.feedback__form {
  display: flex;
  flex-direction: column;
}
.feedback__input {
  width: 400px;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 30px;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  outline-color: #346324;
  font-weight: 500;
  color: #363636;
}

.footer {
  padding: 70px 0;
  background-color: #2F2F2F;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__copy {
  color: rgb(226, 226, 226);
  font-size: 14px;
}
.footer__phone {
  color: #fff;
}
.footer__phone a {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  color: #fff;
  transition: color 0.3s ease 0s;
}
.footer__phone a:hover {
  color: #346324;
}
.footer__name {
  font-weight: 600;
  font-size: 18px;
}
.footer__mail {
  margin-top: 50px;
  color: #fff;
}
.footer__mail a {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  color: #fff;
  transition: color 0.3s ease 0s;
}
.footer__mail a:hover {
  color: #346324;
}
.footer__text {
  max-width: 370px;
  color: #fff;
}

.popup-overlay {
  overflow: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  transition: all 0.5s ease 0s;
}
.popup-overlay.active {
  overflow: visible;
  opacity: 1;
  z-index: 150;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  background-color: #2F2F2F;
  padding: 40px 60px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease 0s;
}
.popup.active {
  overflow: visible;
  opacity: 1;
}
.popup__form {
  margin-top: 30px;
  width: 100%;
}
.popup__btn:hover {
  background-color: #fff;
  border-color: #fff;
}
.popup__input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 2px solid #d1d1d1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.popup__close span {
  display: block;
  width: 20px;
  height: 3px;
  background: #d1d1d1;
  border-radius: 4px;
}
.popup__close span:nth-child(1) {
  transform: rotate(45deg) translate(1px, 1px);
}
.popup__close span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}
.popup__title {
  width: 80%;
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
}
.popup__descr {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

@media (max-width: 768px) {
  .popup__input {
    width: 100%;
  }
}
.x404 {
  height: 100vh;
}
.x404__wrapper {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.x404__title {
  position: relative;
  font-size: 250px;
  line-height: 250px;
  font-weight: 700;
  color: #346324;
}
.x404__descr {
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
}
.x404__btn {
  margin-top: 40px;
  background: none;
  border-color: #346324;
  color: #346324;
}
.x404__btn:hover {
  background-color: #346324;
  color: #fff;
}

@media (min-width: 1921px) {
  .main {
    background: url("../img/bg-main.png") right 20% bottom 35%/35% no-repeat;
  }
}
@media (max-width: 1170px) {
  .main {
    background: url("../img/bg-main.png") right bottom 20%/50% no-repeat;
  }
  .main__content {
    max-width: 550px;
  }
  .main__title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 1070px) {
  .main__title {
    font-size: 45px;
    line-height: 50px;
  }
  .main__descr {
    font-size: 18px;
  }
  .faq__img {
    margin-left: 0;
  }
  .faq__accordion {
    max-width: 640px;
  }
  .faq__question {
    font-size: 20px;
  }
  .about__content {
    max-width: 510px;
  }
  .services__control {
    margin-right: 50px;
  }
  .services__tab {
    width: 320px;
    height: 60px;
    font-size: 20px;
  }
  .benefits__text {
    font-size: 18px;
  }
  .title {
    line-height: 38px;
    font-size: 38px;
  }
  .descr {
    line-height: 22px;
    font-size: 22px;
  }
  li {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header__menu {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
    background-color: #2F2F2F;
    padding-top: 150px;
    box-shadow: 0 0 5px #2F2F2F;
  }
  .header__menu::before {
    content: "";
    height: 100vh;
    width: 70px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #346324;
  }
  .header__menu.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
  .header__list {
    flex-direction: column;
  }
  .header__item {
    margin-bottom: 40px;
  }
  .header__item:not(:last-child) {
    margin-right: 0;
  }
  .header__link {
    font-size: 20px;
    width: 100%;
    color: #fff;
  }
  .header__link::after {
    height: 3px;
    opacity: 1;
    bottom: -7px;
  }
  .main {
    background: url("../img/bg-main.png") right bottom 30%/47% no-repeat;
  }
  .main__content {
    max-width: 410px;
  }
  .main__title {
    font-size: 38px;
    line-height: 45px;
  }
  .main__descr {
    font-size: 16px;
  }
  .about__content {
    max-width: 360px;
  }
  .about__descr {
    margin-bottom: 30px;
  }
  .benefits__icon img {
    height: 60px;
  }
  .benefits__text {
    font-size: 16px;
  }
  .services__wrapper {
    margin-top: 50px;
  }
  .services__control {
    margin-right: 30px;
  }
  .services__tab {
    width: 280px;
    height: 50px;
    font-size: 18px;
    padding-left: 20px;
  }
  .services__text {
    font-size: 14px;
  }
  .services__list:not(:last-child) {
    margin-right: 20px;
  }
  .portfolio__tab {
    font-size: 16px;
  }
  .faq__img {
    height: 400px;
  }
  .faq__content {
    margin-top: 50px;
  }
  .faq__accordion:not(:last-child) {
    margin-bottom: 10px;
  }
  .faq__question {
    font-size: 18px;
    padding: 5px 70px 5px 0;
  }
  .faq__answer {
    font-size: 16px;
  }
  .feedback__input {
    height: 50px;
    width: 320px;
  }
  .btn {
    height: 50px;
    font-size: 16px;
  }
  .title {
    font-size: 32px;
    line-height: 32px;
  }
  .descr {
    font-size: 20px;
    line-height: 20px;
  }
  .footer__wrapper {
    flex-direction: column;
  }
  .footer__copy {
    margin-top: 20px;
  }
  .footer__contact {
    margin-top: 20px;
    display: flex;
  }
  .footer__mail {
    margin-top: 0;
    margin-left: 50px;
  }
  .footer__text {
    margin-top: 20px;
    max-width: 600px;
  }
  .popup__input {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header {
    max-height: 70px;
  }
  .header__logo {
    width: 85px;
  }
  .main {
    padding-top: 130px;
    background: url("../img/bg-main.png") center bottom 5%/80% no-repeat;
  }
  .main__wrapper {
    height: 700px;
    align-items: flex-start;
    justify-content: center;
  }
  .main__title {
    text-align: center;
  }
  .main__descr {
    text-align: center;
  }
  .main__line {
    margin: 20px auto 0;
  }
  .main__btn {
    display: block;
    margin: 30px auto 0;
  }
  .about__img {
    display: none;
  }
  .about__wrapper {
    justify-content: flex-end;
  }
  .about__content {
    max-width: 100%;
  }
  .benefits__wrapper {
    margin-top: 70px;
  }
  .services__tab {
    width: 230px;
    font-size: 16px;
    height: 45px;
  }
  .faq__wrapper {
    justify-content: flex-end;
  }
  .faq__img {
    display: none;
  }
  .feedback__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .feedback__block {
    margin-top: 30px;
  }
  .feedback__input {
    width: 440px;
  }
  .feedback__btn {
    max-width: 440px;
  }
  .popup {
    padding: 40px;
    width: 500px;
  }
  .popup__title {
    font-size: 28px;
  }
  .popup__input {
    width: 100%;
  }
  .x404__title {
    font-size: 180px;
    line-height: 180px;
  }
  .x404__descr {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 705px) {
  .services__wrapper {
    flex-direction: column;
  }
  .services__scroll {
    overflow-x: scroll;
    margin-right: -15px;
    padding-bottom: 20px;
  }
  .services__control {
    margin-right: 0;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: -10px;
    margin-right: -10px;
  }
  .services__tab {
    width: 230px;
    margin-left: 10px;
    margin-right: 10px;
    border-left: 0;
    padding-left: 0;
    border: 2px solid #2F2F2F;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .services__tab:not(:last-child) {
    margin-bottom: 0;
  }
  .services__tab.active {
    border: 2px solid #2F2F2F;
  }
  .services__content {
    margin-top: 10px;
  }
  .services__list:not(:last-child) {
    margin-right: 50px;
  }
}
@media (max-width: 576px) {
  .benefits__wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 55px;
    margin-bottom: -15px;
  }
  .benefits__item {
    width: 170px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .popup {
    max-width: 450px;
  }
  .popup__title {
    font-size: 25px;
  }
  .x404__wrapper {
    justify-content: center;
  }
  .x404__title {
    font-size: 130px;
    line-height: 130px;
  }
  .x404__descr {
    font-size: 27px;
    line-height: 27px;
  }
}
@media (max-width: 480px) {
  .main {
    background: url("../img/bg-main.png") center bottom 5%/100% no-repeat;
  }
  .main__wrapper {
    height: 600px;
  }
  .main__title {
    font-size: 32px;
    line-height: 35px;
  }
  .main__line {
    width: 150px;
  }
  .services__block {
    justify-content: space-between;
  }
  .services__list:nth-child(1) {
    margin-right: 5px;
  }
  .portfolio__tab {
    font-size: 15px;
    padding: 3px 8px;
  }
  .portfolio__tab:not(:last-child) {
    margin-right: 30px;
  }
  .feedback__block {
    width: 100%;
  }
  .feedback__input {
    width: 100%;
  }
  .feedback__btn {
    width: 100%;
  }
  .footer__contact {
    flex-direction: column;
  }
  .footer__mail {
    margin-top: 15px;
    margin-left: 0;
  }
  .title {
    font-size: 28px;
    line-height: 28px;
  }
  .descr {
    font-size: 18px;
    line-height: 18px;
  }
  .popup {
    width: 360px;
    padding: 30px;
  }
  .popup__title {
    font-size: 20px;
    line-height: 25px;
  }
  .popup__descr {
    font-size: 14px;
  }
}
@media (max-width: 390px) {
  .header__phone {
    display: none;
  }
  .header__menu {
    width: 100%;
  }
  .main__title {
    font-size: 27px;
    line-height: 30px;
  }
  .main__descr {
    font-size: 14px;
  }
  .benefits__wrapper {
    justify-content: space-between;
  }
  .benefits__item {
    width: 135px;
  }
  .benefits__icon img {
    height: 50px;
  }
  .benefits__text {
    font-size: 15px;
  }
  .services__tab {
    font-size: 15px;
    width: 220px;
  }
  .services__block {
    flex-direction: column;
  }
  .services__list:not(:last-child) {
    margin-bottom: 5px;
  }
  .services__warning {
    margin-top: 30px;
    font-size: 15px;
  }
  .portfolio__tab {
    font-size: 14px;
    border: none;
    padding: 0;
  }
  .portfolio__tab.active {
    border: none;
  }
  .portfolio__tab:nth-child(1) {
    margin-right: 25px;
  }
  .faq__question {
    font-size: 16px;
    line-height: 20px;
  }
  .faq__answer {
    font-size: 14px;
  }
  li {
    font-size: 15px;
  }
  .title {
    font-size: 26px;
    line-height: 26px;
  }
  .descr {
    font-size: 17px;
    line-height: 17px;
  }
  .popup {
    max-width: 290px;
    padding: 20px;
  }
  .x404__title {
    font-size: 100px;
    line-height: 100px;
  }
  .x404__descr {
    font-size: 20px;
    line-height: 20px;
  }
}/*# sourceMappingURL=style.css.map */