@font-face {
  font-family: 'Lack';
  src: url("fonts/Lack-Regular.eot");
  src: local("Lack Regular"), local("Lack-Regular"), url("fonts/Lack-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Lack-Regular.woff2") format("woff2"), url("fonts/Lack-Regular.woff") format("woff"), url("fonts/Lack-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
:root {
  font-size: 30px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

input {
  outline: none; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Lack';
  color: #fff;
  background: #2f2f2f; }

.container {
  padding: 0 7rem; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #ACD03A; }

.btn {
  transition: .6s all;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 6rem;
  color: #313131;
  background: #fff; }
  .btn:hover {
    background: #ACD03A;
    color: #fff; }

.section-title {
  font-weight: 400;
  font-size: 6rem;
  margin-bottom: 4rem;
  color: #ACD03A; }

.pattern {
  overflow: hidden;
  position: relative; }
  .pattern::after {
    width: 200vw;
    height: 56vw;
    background: url(../img/icons/pattern.svg) top left no-repeat;
    background-size: contain;
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(53.5px);
    animation: patternMove 10s linear infinite alternate; }

.arrows {
  display: flex;
  gap: .5rem; }
  .arrows span {
    width: 2.5rem;
    height: 2.5rem;
    transition: .6s all;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    color: #313131; }
    .arrows span:hover {
      background: #ACD03A;
      color: #fff; }

.form {
  font-size: 0.9rem; }
  .form > input {
    width: 100%;
    height: 3.5rem;
    border: 1px solid rgba(17, 17, 17, 0.1);
    margin-bottom: 0.8rem;
    border-radius: 3.5rem;
    text-align: center;
    color: #313131;
    outline: none; }
    .form > input::placeholder {
      color: rgba(49, 49, 49, 0.5); }
    .form > input.error {
      color: red !important;
      border-color: red !important; }
  .form-choose {
    margin: 1rem 0;
    font-size: 0.8rem; }
    .form-choose__title {
      margin-bottom: 0.7rem; }
    .form-choose__list li {
      margin-bottom: 0.9rem; }
      .form-choose__list li label {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        cursor: pointer;
        user-select: none; }
      .form-choose__list li input {
        appearance: none;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid #313131;
        position: relative; }
        .form-choose__list li input::after {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 7px;
          height: 7px;
          border-radius: 50%;
          content: none;
          background: #ACD03A; }
        .form-choose__list li input:checked::after {
          content: ''; }
      .form-choose__list li:last-child {
        margin-bottom: 0; }
  .form .btn {
    width: 100%;
    height: 3.5rem;
    margin-top: .4rem;
    border-radius: 3.5rem;
    background: #ACD03A;
    color: #fff; }
    .form .btn:hover {
      background: #313131; }

.tel-popup {
  display: none; }

.zoom-image {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: rgba(47, 47, 47, 0.85);
  color: #313131;
  display: none; }
  .zoom-image__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: flex;
    width: 2.5rem;
    cursor: pointer;
    z-index: 2; }
    .zoom-image__close img {
      width: 100%; }
  .zoom-image__img {
    width: 100%;
    height: 100%;
    padding: 2rem 4.5rem; }
    .zoom-image__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-fit: contain; }

@keyframes patternMove {
  to {
    transform: translateX(-45%); } }
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(172, 208, 58, 0.3); }
  70% {
    box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0); } }
@keyframes preloaderLogo {
  to {
    opacity: 1; } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  height: 100%;
  background: #2F2F2F;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader__logo {
    width: 18.5rem;
    opacity: 0;
    animation: preloaderLogo 1s linear forwards; }
    .preloader__logo img {
      width: 100%;
      display: block; }

.feedback {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: rgba(47, 47, 47, 0.7);
  color: #313131;
  display: none;
  cursor: pointer; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.1rem;
    border-radius: 1rem;
    border-bottom: 0.65rem solid #ACD03A;
    background: #fff;
    width: 24rem;
    cursor: default; }
  .feedback__title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center; }
  .feedback__text {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 150%;
    text-align: center; }
  .feedback .form {
    margin: 3rem 0 0.8rem; }
  .feedback__agree {
    font-size: 0.7rem;
    text-align: center;
    max-width: 13rem;
    margin: 0 auto; }
  .feedback-done {
    display: none; }
    .feedback-done .feedback__text {
      margin-bottom: 1rem;
      padding: 0 1rem; }
  .feedback__img {
    margin: 4.3rem 0 3.2rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 10rem; }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 7;
  background: rgba(47, 47, 47, 0.7);
  display: none; }
  .menu-content {
    width: 50vw;
    background: linear-gradient(105deg, #89a337 -44.04%, #ACD03A 107.27%);
    color: #fff;
    height: 100%;
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: .8s all;
    transition-delay: .5s;
    cursor: default; }
  .menu__close {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    cursor: pointer;
    gap: .4rem; }
    .menu__close img {
      width: 1.2rem; }
  .menu__list li {
    margin-bottom: 1rem; }
    .menu__list li a {
      color: #fff;
      font-size: 1.7rem;
      border-bottom: .1rem solid transparent; }
      .menu__list li a:hover {
        border-color: #fff; }
    .menu__list li:last-child {
      margin-bottom: 0; }
  .menu__lang {
    display: none; }
  .menu__btns {
    display: none; }
  .menu__created {
    color: #fff; }
  .menu.show .menu-content {
    transform: none; }

.header {
  padding: 2.2rem 0;
  transition: .6s all;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header-wrap {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative; }
  .header__logo {
    display: block;
    width: 8rem; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header__menu {
    display: flex;
    align-items: center;
    gap: 2.3rem; }
    .header__menu img {
      width: 2.75rem; }
  .header-lang {
    position: relative; }
    .header-lang:hover .header-lang__list {
      display: block; }
    .header-lang__btn {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding-bottom: 1.5rem;
      margin-bottom: -1.5rem;
      color: #fff; }
      .header-lang__btn svg {
        width: .65rem;
        margin-left: 0.85rem; }
    .header-lang__list {
      position: absolute;
      font-size: 0.9rem;
      top: 1.5rem;
      width: 4.5rem;
      padding: 1rem;
      background: #fff;
      box-shadow: 0px 18px 30px 0px rgba(119, 119, 119, 0.25);
      display: none; }
      .header-lang__list a {
        margin-bottom: 0.5rem;
        color: #313131;
        display: block; }
        .header-lang__list a:hover {
          color: #ACD03A; }
        .header-lang__list a:last-child {
          margin-bottom: 0; }
  .header__tel {
    color: #fff; }
    .header__tel img {
      display: none; }
  .header__btn {
    font-size: 0.7rem;
    width: 9rem;
    height: 2rem; }
  .header__search {
    cursor: pointer; }
    .header__search img {
      width: 1.2rem;
      display: block; }
  .header-search {
    position: absolute;
    right: 0;
    top: 3rem;
    display: none; }
    .header-search input {
      border-radius: 3rem;
      width: 23rem;
      height: 3rem;
      border: none;
      padding-left: 1.5rem;
      padding-right: 3.5rem;
      color: #313131;
      font-size: 0.7rem; }
    .header-search button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 1.1rem;
      z-index: 2;
      display: flex; }
      .header-search button img {
        width: 1.2rem;
        display: block; }
  .header-fixed {
    padding: .6rem 0;
    background: #89a337;
    box-shadow: 0px 18px 30px 0px rgba(119, 119, 119, 0.25); }

.main {
  position: relative; }
  .main-content {
    top: 17rem;
    position: absolute;
    left: 12rem;
    display: flex;
    align-items: flex-end;
    gap: 2rem; }
  .main__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .6s all;
    user-select: none;
    width: 6rem;
    height: 6rem;
    color: #313131;
    background: #fff;
    border-radius: 50%; }
    .main__btn:hover {
      background: #ACD03A;
      color: #fff; }
    .main__btn svg {
      width: 1rem; }
  .main__title {
    max-width: 60rem;
    font-size: 4.8rem;
    margin-bottom: 2rem;
    font-weight: 400; }
  .main__text {
    display: inline-block;
    padding-top: 1.5rem;
    border-top: .1rem solid #fff; }
  .main__img {
    height: 100vh; }
    .main__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .main__video {
    height: 100vh; }
    .main__video video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .main__line {
    position: absolute;
    height: 1.4rem;
    margin-top: -0.7rem; }
    .main__line img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-fit: contain; }

.about {
  padding-top: 6rem; }
  .about::after {
    top: -17vw; }
  .about .section-title {
    color: #fff; }
  .about-wrap {
    display: flex;
    gap: 1.1rem; }
  .about__text {
    width: 26.9rem;
    font-size: 0.9rem;
    line-height: 200%; }
    .about__text ul li::before {
      content: '\2022';
      margin-right: 0.2rem; }
  .about-gallery {
    width: calc(100% - 28rem);
    position: relative; }
    .about-gallery::before {
      position: absolute;
      height: 100%;
      width: 100%;
      background: url(../img/icons/balloons.svg) center center no-repeat;
      background-size: 100%;
      content: '';
      left: -10%;
      top: 0;
      z-index: 0; }
    .about-gallery img {
      border-radius: .8rem;
      position: relative;
      z-index: 1; }
    .about-gallery__item {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .about-gallery__item img {
        object-fit: cover;
        display: block;
        width: 19rem;
        height: 13rem; }
    .about-gallery__big {
      margin: 2rem 0; }
      .about-gallery__big img {
        width: 100%;
        height: 24rem; }

.team {
  padding-top: 6rem; }
  .team-head {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2.5rem; }
    .team-head .section-title {
      margin-bottom: 0; }
  .team-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 3rem;
    margin-top: 1rem; }
    .team-arrow img {
      width: 100%; }
  .team-dropdown {
    display: none;
    padding-top: 5rem;
    margin-top: -5rem; }
  .team-wrap {
    display: flex;
    width: 100%; }
  .team-owner {
    width: 26rem; }
    .team-owner__img {
      width: 100%;
      margin-bottom: 2.75rem;
      position: relative; }
      .team-owner__img::after {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 1.5rem;
        right: -2rem;
        top: -1.5rem;
        content: '';
        background: linear-gradient(0deg, #1C7E0F 0%, #A7CB38 100%); }
      .team-owner__img img {
        width: 100%;
        display: block;
        border-radius: 1.5rem; }
    .team-owner__name {
      font-size: 1.75rem;
      max-width: 20rem; }
  .team-main {
    width: calc(100% - 26rem);
    padding-left: 4rem; }
    .team-main__img {
      position: relative;
      display: block; }
      .team-main__img::before {
        position: absolute;
        left: 0;
        top: -1.5rem;
        width: 100%;
        height: 100%;
        content: '';
        background: #ACD03A;
        display: block;
        z-index: -1;
        border-radius: 50%; }
      .team-main__img div {
        position: absolute;
        width: 100%;
        text-align: center;
        padding-top: 0.2rem; }
    .team-main__big {
      display: flex;
      justify-content: center;
      margin-bottom: 5rem;
      gap: 2rem; }
      .team-main__big img {
        width: 13.5rem; }
      .team-main__big .team-main__img:nth-child(1)::before {
        background: linear-gradient(0deg, #99064D 0%, #FF0188 100%); }
      .team-main__big .team-main__img:nth-child(2)::before {
        background: linear-gradient(0deg, #F00701 0%, #FF9D00 100%); }
    .team-main__small {
      margin-bottom: 5rem;
      gap: 2rem;
      display: flex;
      justify-content: center; }
      .team-main__small img {
        width: 10.5rem; }
      .team-main__small .team-main__img:nth-child(1)::before {
        background: linear-gradient(180deg, #006796 0%, #008CC9 100%); }
      .team-main__small .team-main__img:nth-child(2)::before {
        background: linear-gradient(180deg, #A20001 0%, #FB0104 100%); }
      .team-main__small .team-main__img:nth-child(3)::before {
        background: linear-gradient(180deg, #FF8500 0%, #F5D700 100%); }
    .team-main__title {
      font-size: 2rem;
      margin-bottom: 1.7rem;
      text-align: center; }
    .team-main__designer {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
      font-size: 0.9rem; }
      .team-main__designer .team-main__img::before {
        top: -1.2rem; }
      .team-main__designer .team-main__img:nth-child(2n-1) {
        margin-top: 3rem; }
      .team-main__designer .team-main__img:nth-child(1)::before {
        background: linear-gradient(180deg, #5B0775 0%, #9D08C7 100%); }
      .team-main__designer .team-main__img:nth-child(2)::before {
        background: linear-gradient(180deg, #F00701 0%, #FF9D00 100%); }
      .team-main__designer .team-main__img:nth-child(3)::before {
        background: linear-gradient(180deg, #006796 0%, #008CC9 100%); }
      .team-main__designer .team-main__img:nth-child(4)::before {
        background: linear-gradient(180deg, #A20001 0%, #FB0104 100%); }
      .team-main__designer img {
        width: 9rem; }

.numbers {
  padding: 6rem 0; }
  .numbers-main {
    position: relative; }
  .numbers__line {
    position: absolute;
    overflow: hidden;
    width: 0%;
    left: 0;
    z-index: -1;
    margin-top: 7.8rem;
    transition: 2s all; }
    .numbers__line img {
      max-width: none;
      width: 100vw; }
    .numbers__line.draw {
      width: 100%; }
  .numbers-list {
    display: flex;
    justify-content: space-evenly; }
    .numbers-list__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center; }
      .numbers-list__item:nth-child(1) {
        margin-top: 1.6rem; }
      .numbers-list__item:nth-child(2) {
        margin-top: 6.2rem; }
      .numbers-list__item:nth-child(4) {
        margin-top: 5rem; }
    .numbers-list__number {
      font-size: 3.5rem;
      color: #ACD03A; }
    .numbers-list__text {
      font-size: 0.9rem;
      margin-bottom: 1.8rem; }
    .numbers-list__circle {
      width: 1.5rem;
      height: 1.5rem;
      background: #ACD03A;
      border-radius: 50%;
      border: .15rem solid #21A6A1; }

.why {
  display: flex; }
  .why .section-title {
    color: #313131;
    margin-bottom: 6rem; }
  .why-info {
    width: 60%;
    padding: 6rem 0 8rem;
    background: linear-gradient(105deg, #ACD03A -44.04%, rgba(172, 208, 58, 0.4) 107.27%); }
    .why-info .container {
      padding-right: 0.5rem; }
  .why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .why-list__item {
      width: 47%;
      display: flex;
      gap: 1.25rem;
      margin-bottom: 4rem; }
    .why-list__ico {
      width: 3.45rem;
      flex-shrink: 0; }
      .why-list__ico img {
        width: 100%;
        display: block; }
    .why-list__title {
      font-size: 1.2rem;
      margin-bottom: 0.25rem; }
    .why-list__text {
      font-size: 0.8rem;
      line-height: 160%; }
  .why__img {
    width: 40%; }
    .why__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }

.partners {
  padding-top: 6rem; }
  .partners-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 1.75rem; }
    .partners-wrap::before {
      width: 90%;
      height: 0.1rem;
      background: rgba(255, 255, 255, 0.2);
      position: absolute;
      left: 0;
      top: -2rem;
      content: ''; }
  .partners .owl-stage-outer {
    padding: 0 7rem; }
  .partners-carousel__item {
    width: 21.5rem;
    margin-right: 1.6rem; }
  .partners__item {
    width: 100%;
    height: 10.5rem;
    padding: 1.8rem 3rem;
    background: #fff;
    border-radius: .75rem;
    margin-bottom: 1.6rem; }
    .partners__item:last-child {
      margin-bottom: 0; }
    .partners__item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }

.services {
  padding-top: 6rem; }
  .services__text {
    position: relative;
    display: flex;
    gap: 7.5rem;
    font-size: 1.2rem;
    margin-bottom: 4rem; }
    .services__text p {
      max-width: 25rem; }
      .services__text p:last-child {
        max-width: 28rem; }
    .services__text::before {
      width: 90%;
      height: 0.4rem;
      background: url(../img/line.png) center left;
      background-size: cover;
      position: absolute;
      left: 0;
      top: -2rem;
      content: ''; }
  .services-arrows {
    justify-content: flex-end;
    margin-bottom: 1.5rem; }
  .services .owl-stage-outer {
    padding: 0 7rem; }
  .services-item {
    margin-right: 2rem;
    display: block;
    color: #313131;
    background: #fff;
    padding: 1.6rem 0.5rem 0.5rem;
    border-radius: .75rem;
    width: 19rem; }
    .services-item:hover {
      background: #ACD03A;
      color: #fff; }
    .services-item__name {
      display: flex;
      align-items: center;
      font-size: 1.2rem;
      height: 3rem;
      gap: 0.8rem;
      margin-bottom: 1.3rem; }
      .services-item__name span {
        flex-shrink: 0;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        border: 1px solid;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem; }
    .services-item__img {
      border-radius: .75rem;
      overflow: hidden;
      width: 100%;
      height: 21rem; }
      .services-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }

.service {
  padding: 10rem 0 4rem; }
  .service .owl-stage-outer {
    padding: 0 7rem; }
  .service-breadcrumbs {
    margin-bottom: 3.5rem;
    text-align: center;
    font-size: 1.2rem; }
    .service-breadcrumbs a {
      color: #313131; }
      .service-breadcrumbs a:hover {
        color: #fff; }
  .service .section-title {
    color: #fff;
    margin-bottom: 2.3rem; }
  .service-text {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    line-height: 175%;
    margin-bottom: 6rem; }
    .service-text pre {
      white-space: normal;
      overflow: visible;
      margin: 0;
      font-family: 'Lack'; }
    .service-text p:nth-child(1) {
      width: 40%; }
    .service-text p:nth-child(2) {
      width: 50%; }
  .service-choose {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 4rem; }
    .service-choose .btn {
      padding: 1rem 2rem;
      cursor: pointer;
      user-select: none; }
      .service-choose .btn.current {
        color: #fff;
        background: #ACD03A;
        pointer-events: none; }
        .service-choose .btn.current a {
          color: #fff; }
      .service-choose .btn a {
        color: #313131; }
      .service-choose .btn:hover a {
        color: #fff; }
    .service-choose-sub {
      margin-top: -2rem; }
      .service-choose-sub .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem; }
  .service-tabs {
    margin-bottom: 10rem; }
  .service-tab {
    display: none; }
    .service-tab:first-child {
      display: block; }
  .service-gallery {
    margin-bottom: 4rem; }
    .service-gallery__item {
      height: 22.5rem;
      margin-right: 2rem;
      border-radius: .75rem;
      overflow: hidden;
      cursor: pointer; }
      .service-gallery__item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
  .service-arrows {
    justify-content: center; }
  .service-partners .partners__item {
    margin-right: 1.6rem;
    width: 21.5rem; }

.reviews {
  padding: 6rem 0 6rem 10rem; }
  .reviews-carousel {
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2); }
  .reviews-item {
    display: flex;
    gap: 3.2rem;
    font-size: 1.6rem;
    padding-bottom: 1rem; }
    .reviews-item__img {
      width: 23rem;
      height: 23rem;
      position: relative; }
      .reviews-item__img::after {
        position: absolute;
        border-radius: 1.5rem;
        right: -1rem;
        top: 1rem;
        content: '';
        background: linear-gradient(180deg, #FF8500 0%, #F5D700 100%);
        width: 100%;
        height: 100%;
        z-index: -1; }
      .reviews-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 1.5rem; }
    .reviews-item__wrap {
      width: calc(100% - 26.2rem); }
    .reviews-item__name {
      margin-bottom: 0.8rem; }
    .reviews-item__pos {
      margin-bottom: 2rem;
      opacity: .5;
      font-size: 0.8rem; }
    .reviews-item__text {
      max-width: 33rem;
      line-height: 150%; }
  .reviews-arrows {
    justify-content: flex-end;
    margin-top: -3rem; }
    .reviews-arrows span {
      position: relative;
      z-index: 2; }

.footer {
  padding: 10rem 0 3.8rem; }
  .footer::after {
    background: url(../img/icons/pattern-footer.svg) bottom center no-repeat;
    background-size: contain;
    height: 70vw;
    width: 230vw;
    top: 3vw; }
  .footer-main {
    display: flex;
    gap: 15vw;
    margin-bottom: 5rem; }
  .footer__title {
    font-size: 1.8rem;
    margin-bottom: 2rem; }
  .footer-menu {
    font-size: 1.2rem; }
    .footer-menu li {
      margin-bottom: 1.5rem; }
      .footer-menu li:last-child {
        margin-bottom: 0; }
    .footer-menu a {
      color: #fff;
      border-bottom: 1px solid transparent; }
      .footer-menu a:hover {
        border-color: #fff; }
  .footer__address {
    max-width: 20rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 150%; }
  .footer-social {
    display: flex;
    gap: 1rem; }
    .footer-social li {
      display: flex; }
      .footer-social li a {
        display: flex;
        color: #313131; }
        .footer-social li a:hover {
          color: #ACD03A; }
        .footer-social li a svg {
          width: 2.4rem;
          height: 2.4rem;
          display: block; }
  .footer-map {
    height: 28rem;
    border-radius: .8rem;
    overflow: hidden;
    position: relative; }
    .footer-map #map {
      width: 100%;
      height: 100%; }
    .footer-map__card {
      height: calc(100% - 1.6rem);
      top: .8rem;
      right: .8rem;
      position: absolute;
      z-index: 2;
      width: 23rem;
      padding: 3rem 2rem;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      background: #f9f9f9;
      border-radius: .3rem; }
    .footer-map__title {
      font-size: 1.8rem;
      color: #313131; }
    .footer-map .form > input {
      text-align: left;
      height: 3rem;
      padding: 0 2.2rem;
      border-color: #fff; }
    .footer-map .form .btn {
      height: 3rem; }

@media (max-width: 2800.98px) {
  :root {
    font-size: 26px; } }
@media (max-width: 2600.98px) {
  :root {
    font-size: 24px; } }
@media (max-width: 2300.98px) {
  :root {
    font-size: 22px; } }
@media (max-width: 2100.98px) {
  :root {
    font-size: 20px; } }
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; }

  .container {
    padding: 0 6rem; }

  .partners .owl-stage-outer, .services .owl-stage-outer, .service .owl-stage-outer {
    padding: 0 6rem; }

  .main-content {
    left: 11rem; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; }

  .container {
    padding: 0 5rem; }

  .partners .owl-stage-outer, .services .owl-stage-outer, .service .owl-stage-outer {
    padding: 0 5rem; }

  .reviews {
    padding-left: 8rem; }

  .main-content {
    left: 10rem; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; }

  .container {
    padding: 0 4rem; }

  .partners .owl-stage-outer, .services .owl-stage-outer, .service .owl-stage-outer {
    padding: 0 4rem; }

  .reviews {
    padding-left: 6rem; }

  .main-content {
    left: 8rem; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  .zoom-image__img {
    padding: 10vh 0; }

  .tel-popup {
    display: flex;
    position: fixed;
    right: 1rem;
    bottom: 4rem;
    width: 2.5rem;
    z-index: 5;
    animation: pulse-green 2s infinite;
    border-radius: 50%; }
    .tel-popup img {
      width: 2.5rem;
      display: block; }

  .section-title {
    font-size: 3rem;
    margin-bottom: 3rem; }

  .preloader__logo {
    width: 15rem; }

  .menu-content {
    width: 80vw; }
  .menu__lang {
    display: flex; }
    .menu__lang a {
      color: #fff;
      margin-right: 1rem; }
  .menu__list li {
    margin-bottom: 1.5rem; }
    .menu__list li a {
      font-size: 1.8rem; }

  .header-lang, .header__btn {
    display: none; }
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .header-wrap {
    gap: 1.5rem; }
    .header-wrap:first-child {
      position: static; }
  .header__menu {
    width: 1.5rem;
    overflow: hidden; }
    .header__menu img {
      width: 3rem;
      max-width: none; }
    .header__menu span {
      display: none; }
  .header__tel {
    display: flex;
    width: 1.2rem; }
    .header__tel span {
      display: none; }
    .header__tel img {
      display: inline-block;
      width: 100%; }
  .header.header-fixed {
    padding: 1.7rem 0; }

  .main-content {
    width: 100%;
    left: 0;
    padding: 0 4rem;
    display: block;
    top: 22rem; }
  .main__title {
    font-size: 3.5rem; }
  .main__text {
    padding-left: 5rem;
    padding-top: 2.5rem; }
  .main__btn {
    position: absolute;
    bottom: -1.5rem;
    left: 4rem;
    width: 4rem;
    height: 4rem; }
  .main__line {
    height: 1rem;
    margin-top: -0.5rem; }
  .main__img, .main__video {
    height: 50rem; }

  .about-wrap {
    flex-direction: column;
    gap: 2.5rem; }
  .about-gallery {
    width: 100%; }
    .about-gallery::before {
      z-index: -1;
      left: -2rem;
      width: calc(100% + 4rem); }
    .about-gallery__big {
      margin: 1.5rem 0; }

  .team-wrap {
    flex-direction: column;
    gap: 2.5rem; }
  .team-head {
    margin-bottom: 5rem;
    gap: 1rem; }
  .team-owner {
    margin: 0 auto; }
  .team-main {
    width: 100%;
    padding-left: 0; }
    .team-main__big {
      margin-bottom: 4.5rem;
      gap: 1.5rem; }
      .team-main__big img {
        width: 12rem; }
    .team-main__small {
      margin-bottom: 5rem;
      gap: 1.5rem; }
      .team-main__small img {
        width: 9rem; }
    .team-main__title {
      font-size: 1.7rem;
      margin-bottom: 1.5rem; }
    .team-main__designer {
      gap: 1.5rem;
      margin-bottom: 2rem; }
      .team-main__designer .team-main__img::before {
        top: -1rem; }
      .team-main__designer .team-main__img:nth-child(2n-1) {
        margin-top: 2rem; }
      .team-main__designer img {
        width: 7rem; }

  .numbers-list__number {
    font-size: 2.5rem; }
  .numbers-list__item:nth-child(1) {
    margin-top: .7rem; }
  .numbers-list__item:nth-child(2) {
    margin-top: 2.7rem; }
  .numbers-list__item:nth-child(4) {
    margin-top: 1.5rem; }
  .numbers__line {
    margin-top: 6.5rem; }

  .why {
    display: block; }
    .why .section-title {
      margin-bottom: 3.5rem; }
    .why-info {
      width: 100%;
      padding-bottom: 2rem; }
      .why-info .container {
        padding-right: 4rem; }
    .why-list__item {
      width: 48.5%;
      gap: 1rem; }
    .why-list__ico {
      width: 2.7rem; }
    .why__img {
      width: 100%; }

  .partners-carousel__item {
    width: 16rem; }
  .partners__item {
    height: 8rem;
    padding: 1.2rem 2rem; }

  .services__text {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem; }

  .service {
    padding-bottom: 1rem; }
    .service .owl-stage-outer {
      padding: 0 4rem; }
    .service::after {
      height: 70vw;
      width: 250vw; }
    .service-text {
      flex-direction: column;
      gap: 2.5rem;
      margin-bottom: 5rem; }
      .service-text p {
        width: 100% !important; }
    .service-choose {
      margin-left: -4rem;
      width: 100vw;
      flex-wrap: nowrap;
      overflow: auto;
      padding: 0 4rem;
      margin-bottom: 3rem; }
      .service-choose .btn {
        flex-shrink: 0; }
      .service-choose::-webkit-scrollbar {
        display: none; }
    .service-partners .partners__item {
      width: 16rem; }

  .reviews {
    padding-left: 0;
    padding-bottom: 0; }
    .reviews-item {
      flex-direction: column;
      gap: 2rem; }
      .reviews-item__wrap {
        width: 100%; }
    .reviews-arrows {
      justify-content: flex-start;
      margin-top: 2rem; }

  .footer {
    padding-bottom: 1rem; }
    .footer::after {
      height: 100vw;
      top: 20vw; }
    .footer-main {
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-between; }
    .footer-map {
      margin-left: -3rem;
      width: calc(100vw - 2rem);
      height: 24rem; }
      .footer-map__card {
        width: 17rem;
        padding: 2rem 1rem; }
      .footer-map__title {
        font-size: 1.5rem; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 14px; }

  .container {
    padding: 0 1rem; }

  .zoom-image__img {
    padding: 5rem 0; }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem; }

  .preloader__logo {
    width: 12rem; }

  .feedback-content {
    transform: none;
    top: auto;
    left: 0;
    width: 100%;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }

  .menu-content {
    width: 100vw;
    padding: 1.5rem 1rem 2rem;
    align-items: center; }
  .menu__list li {
    margin-bottom: 1rem;
    text-align: center; }
    .menu__list li a {
      font-size: 1.3rem; }

  .header {
    padding: 1.7rem 0; }
    .header__logo {
      width: 5rem; }
    .header.header-fixed {
      padding: 1.2rem 0; }
    .header-wrap {
      gap: 1rem; }
    .header-search input {
      width: calc(100vw - 2rem); }

  .main__img, .main__video {
    height: 40rem; }
  .main-content {
    padding: 0 1rem;
    top: 18rem; }
  .main__title {
    font-size: 2.2rem; }
  .main__text {
    padding-top: 1.5rem; }
  .main__btn {
    left: 1rem;
    bottom: -1rem; }

  .about {
    padding-top: 4.5rem; }
    .about::after {
      top: -10vw;
      width: 400vw;
      height: 100vw; }
    .about__text {
      width: 100%; }
    .about-gallery::before {
      left: -.5rem;
      width: calc(100% + 1rem);
      top: -2rem;
      background-position: top center; }
    .about-gallery__item img {
      width: 100%;
      height: 11rem; }
      .about-gallery__item img:nth-child(2) {
        display: none; }
    .about-gallery__big {
      margin: 1rem 0; }
      .about-gallery__big img {
        height: 22rem; }

  .team {
    padding-top: 4.5rem; }
    .team-head {
      margin-bottom: 3.5rem; }
    .team-owner {
      width: 100%; }
      .team-owner__img {
        margin-bottom: 2rem;
        width: calc(100% - 1rem); }
        .team-owner__img::after {
          top: -1rem;
          right: -1rem; }
      .team-owner__name {
        font-size: 1.6rem; }
    .team-main__img::before {
      top: -1rem; }
    .team-main__big {
      gap: 1rem; }
      .team-main__big img {
        width: 12rem; }
    .team-main__small {
      gap: 1rem; }
      .team-main__small img {
        width: 8.5rem; }
    .team-main__title {
      font-size: 1.5rem;
      margin-bottom: 1.2rem; }
    .team-main__designer {
      gap: 1rem;
      font-size: 0.8rem; }
      .team-main__designer .team-main__img::before {
        top: -0.5rem; }
      .team-main__designer .team-main__img:nth-child(2n-1) {
        margin-top: 1.5rem; }
      .team-main__designer img {
        width: 6rem; }

  .numbers {
    padding: 4.5rem 0 1.5rem; }
    .numbers__line {
      display: none; }
    .numbers-list {
      flex-wrap: wrap; }
      .numbers-list__item {
        width: 48%;
        margin: 0 0 3rem !important; }
      .numbers-list__number {
        font-size: 2rem; }
      .numbers-list__text {
        margin-bottom: 1.4rem; }

  .why .section-title {
    margin-bottom: 2.5rem; }
  .why-info {
    padding-top: 4.5rem; }
  .why-list__item {
    width: 100%;
    margin-bottom: 2.5rem; }
  .why-list__title {
    margin-bottom: 0.7rem; }

  .partners {
    padding-top: 4.5rem; }
    .partners .owl-stage-outer {
      padding: 0 5rem; }
    .partners-wrap {
      gap: 2rem; }
      .partners-wrap::before {
        top: -1.5rem;
        width: 100%; }
    .partners-arrows {
      flex-shrink: 0; }
    .partners-carousel__item {
      width: 14rem;
      margin-right: 1rem; }
    .partners__item {
      height: 7rem;
      padding: 1rem 1.6rem;
      margin-bottom: 1rem; }

  .services {
    padding-top: 4.5rem; }
    .services .owl-stage-outer {
      padding: 0 1rem; }
    .services__text {
      gap: 1.5rem;
      font-size: 1rem;
      margin-bottom: 2rem; }
      .services__text::before {
        top: -1.5rem;
        width: 100%; }
    .services-item {
      margin-right: 1rem;
      padding-top: 1rem;
      border-radius: .5rem;
      width: 15rem; }
      .services-item__name {
        font-size: 1rem;
        gap: 0.6rem;
        margin-bottom: 1rem;
        height: 2.5rem; }
        .services-item__name span {
          width: 1.5rem;
          height: 1.5rem;
          font-size: .8rem; }
      .services-item__img {
        border-radius: .5rem;
        height: 16rem; }

  .service {
    padding-top: 7rem; }
    .service .owl-stage-outer {
      padding: 0 .9rem; }
    .service::after {
      height: 100vw;
      width: 400vw; }
    .service-breadcrumbs {
      font-size: 1rem;
      margin-bottom: 2.5rem; }
    .service-text {
      gap: 1.5rem;
      margin-bottom: 4.5rem;
      font-size: 1rem; }
    .service-choose {
      margin-left: -1rem;
      padding: 0 1rem;
      margin-bottom: 2rem; }
      .service-choose .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem; }
      .service-choose-sub {
        margin-top: -1rem; }
        .service-choose-sub .btn {
          padding: 0.4rem 1rem;
          font-size: 0.7rem; }
    .service-tabs {
      margin-bottom: 6rem; }
    .service-gallery {
      margin-bottom: 3rem; }
      .service-gallery__item {
        height: 18rem;
        margin-right: 1rem;
        max-width: calc(100vw - 1.8rem); }
    .service-partners .partners__item {
      width: 14rem;
      margin-right: 1rem; }

  .reviews {
    padding-top: 4.5rem; }
    .reviews-item {
      font-size: 1rem; }
      .reviews-item__img {
        width: calc(100% - 1rem);
        height: calc(100vw - 2rem);
        margin-bottom: 1rem; }
      .reviews-item__name {
        margin-bottom: 0.5rem; }
      .reviews-item__pos {
        margin-bottom: 1.5rem; }

  .footer {
    padding-top: 4.5rem; }
    .footer::after {
      height: 140vw;
      width: 400vw;
      top: 60vw; }
    .footer-main {
      margin-bottom: 3rem; }
    .footer__title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem; }
    .footer-menu {
      font-size: 1rem; }
      .footer-menu li {
        margin-bottom: 1.2rem; }
    .footer__address {
      font-size: 1rem;
      margin-bottom: 2rem; }
    .footer-map {
      width: 100vw;
      margin-left: -1rem;
      height: auto;
      display: flex;
      flex-direction: column-reverse;
      padding-bottom: 0; }
      .footer-map #map {
        height: 20rem; }
      .footer-map__card {
        height: auto;
        bottom: .8rem;
        top: auto;
        position: static;
        width: 100%; }
      .footer-map__title {
        margin-bottom: 1.5rem; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

/*# sourceMappingURL=main.css.map */
