@charset "UTF-8";
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Regular.woff2") format("woff2"), url("fonts/Gilroy-Regular.woff") format("woff"), url("fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Medium.woff2") format("woff2"), url("fonts/Gilroy-Medium.woff") format("woff"), url("fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Semibold.eot");
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Semibold.woff2") format("woff2"), url("fonts/Gilroy-Semibold.woff") format("woff"), url("fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: 'Octarine';
  src: url("fonts/Octarine-Light.otf");
  src: local("Octarine"), local("Octarine-Light"), url("fonts/Octarine-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal; }
: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;
  border-radius: 0; }
  input.error {
    color: red !important;
    border-color: red !important; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Gilroy', sans-serif; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #5657A1;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

.container {
  padding: 0 5rem; }

.section-title {
  font-weight: 400;
  color: #5657A1;
  font-size: 5rem; }

.btn {
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.9rem;
  background: #5657A1; }
  .btn::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(270deg, #917DD7 0%, #5A5AB4 100%);
    content: '';
    z-index: -1;
    transition: .6s all; }
  .btn:hover::after {
    opacity: 0; }

.zoom-image {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.67);
  cursor: pointer;
  display: none; }
  .zoom-image__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background: #fff;
    color: #5657A1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .zoom-image__close svg {
      width: 1.2rem;
      height: 1.2rem; }
  .zoom-image__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100vh - 3rem);
    cursor: default; }
    .zoom-image__img img {
      height: 100%;
      display: block;
      object-fit: contain;
      max-width: 90vw; }

@keyframes preloaderLogo {
  50% {
    opacity: .5; }
  100% {
    opacity: 1;
    transform: none; } }
@keyframes pulse-btn {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(86, 87, 161, 0.3); }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0); }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0); } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; }
  .preloader::after {
    background: url(../img/preloader.jpg) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    content: '';
    animation: preloaderLogo 1.5s linear forwards;
    opacity: 0; }
  .preloader__logo {
    width: 14rem;
    animation: preloaderLogo 1.5s linear forwards;
    transform: scale(0.7);
    opacity: 0; }
    .preloader__logo img {
      width: 100%;
      display: block; }

.tel-popup {
  position: fixed;
  bottom: 4.5rem;
  right: 2rem;
  animation: pulse-btn 2s infinite;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .6s all;
  cursor: pointer;
  user-select: none;
  background: #5657A1;
  border: 1px solid #5657A1;
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  z-index: 5; }
  .tel-popup svg {
    width: 90%;
    height: 90%; }
  .tel-popup:hover {
    background: #fff;
    color: #5657A1; }

.feedback {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.7);
  display: none; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    border-bottom: 0.65rem solid #5657A1;
    background: #fff;
    width: 23.5rem; }
  .feedback__close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    color: #5657A1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .feedback__close svg {
      width: .8rem; }
    .feedback__close:hover {
      background: #5657A1;
      color: #fff; }
  .feedback__title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    color: #5657A1; }
  .feedback__text {
    line-height: 1.2;
    text-align: center;
    font-size: 0.7rem; }
  .feedback-form {
    margin: 3rem 0 0.8rem;
    font-size: .9rem; }
    .feedback-form input {
      width: 100%;
      margin-bottom: 0.8rem;
      height: 3.5rem;
      border: 1px solid #A8A8A8;
      text-align: center; }
      .feedback-form input::placeholder {
        color: #A8A8A8; }
      .feedback-form input:hover, .feedback-form input:focus {
        border-color: #5657A1; }
    .feedback-form .btn {
      width: 100%;
      height: 3.5rem;
      margin-top: .4rem; }
  .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: 3.5rem 0 2.5rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 8rem; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: #5657A1;
  display: none; }
  .mobile-menu__wrap {
    padding: 25vh 2rem; }
  .mobile-menu__list {
    text-align: center; }
    .mobile-menu__list li {
      margin-bottom: 2rem; }
      .mobile-menu__list li a {
        color: #fff;
        font-size: 2rem;
        font-weight: 500; }
  .mobile-menu__lang {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80%;
    display: flex;
    gap: 1.5rem;
    font-size: 1.1rem; }
    .mobile-menu__lang a {
      color: #fff; }
  .mobile-menu .header-social {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 90%;
    display: flex; }
    .mobile-menu .header-social svg {
      width: 2rem;
      height: 2rem; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: .6s all;
  z-index: 6;
  font-size: 0.9rem;
  padding: 1.25rem 0; }
  .header-mobile {
    display: none; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header-wrap {
    display: flex;
    gap: 1.5rem;
    align-items: center; }
  .header__logo {
    display: block;
    width: 5.7rem;
    margin-right: 8.5rem; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-menu {
    display: flex;
    gap: 2.5rem; }
    .header-menu a {
      color: #fff; }
      .header-menu a:hover {
        opacity: .8; }
  .header-social {
    display: flex;
    gap: 1rem; }
    .header-social li {
      display: flex; }
    .header-social a {
      color: #fff;
      width: 1.5rem;
      display: flex; }
      .header-social a svg {
        width: 100%; }
      .header-social a:hover {
        opacity: .8; }
  .header-lang:hover .header-lang__dropdown {
    display: block; }
  .header-lang__btn {
    width: 4.1rem;
    height: 2.4rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: #fff;
    background: rgba(86, 87, 161, 0.4);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px); }
    .header-lang__btn img {
      width: 1rem; }
  .header-lang__dropdown {
    position: absolute;
    width: 4.1rem;
    background: rgba(86, 87, 161, 0.4);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    display: none;
    transition: .6s all; }
    .header-lang__dropdown li {
      display: flex; }
      .header-lang__dropdown li a {
        width: 4.1rem;
        height: 2.4rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: .5rem;
        color: #fff; }
        .header-lang__dropdown li a img {
          width: 1rem; }
  .header__btn {
    width: 12.2rem;
    height: 2.4rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: #fff;
    background: rgba(86, 87, 161, 0.4);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px); }
    .header__btn img {
      width: 1.1rem; }
    .header__btn:hover {
      background: #5657A1;
      border: 1px solid #fff; }
  .header.scrolled {
    background: #5657A1;
    border-bottom: 1px solid #fff;
    padding: 0.3rem 0; }
    .header.scrolled .header__logo {
      width: 3.5rem; }
    .header.scrolled .header-lang__dropdown {
      background: #5657A1; }

.main {
  height: 100svh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center; }
  .main__video {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    background: url(../img/preview.jpg) center center no-repeat;
    background-size: cover; }
    .main__video video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
      .main__video video.mob {
        display: none; }
    .main__video::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: 0;
      pointer-events: none;
      content: '';
      background: linear-gradient(0deg, rgba(0, 0, 0, 0) 61.51%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%); }
  .main__title {
    font-weight: 400;
    font-size: 9.25rem;
    line-height: 10rem;
    font-family: "Octarine";
    text-transform: uppercase;
    width: 64rem; }
    .main__title span {
      display: block; }
      .main__title span:nth-child(1) {
        text-align: left; }
      .main__title span:nth-child(2) {
        text-align: right; }
  .main__text {
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-left: 11rem; }

.about {
  padding-top: 13.6rem;
  background: url(../img/icons/pattern-top.svg) center top no-repeat;
  background-size: 100vw;
  position: relative;
  z-index: 1; }
  .about::after {
    z-index: -1;
    width: 100%;
    position: absolute;
    left: 0;
    top: 13.6rem;
    height: 75rem;
    background: url(../img/icons/pattern-about.svg) center top no-repeat;
    background-size: cover;
    content: ''; }
  .about .container {
    display: flex;
    padding-right: 0; }
  .about .section-title {
    margin-bottom: 3rem; }
  .about-wrap {
    width: 36%; }
  .about__text {
    margin-bottom: 3rem; }
    .about__text p {
      margin-bottom: 1.5rem; }
  .about__btn {
    width: 17rem; }
  .about__img {
    width: 65%;
    margin-left: -1%;
    padding-top: 2rem; }
    .about__img img {
      width: 100%;
      display: block; }

.why {
  padding-top: 5rem;
  position: relative;
  z-index: 1; }
  .why .section-title {
    text-align: center;
    margin-bottom: 4rem; }
  .why-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; }
  .why-left, .why-right {
    width: 24rem;
    display: flex;
    flex-direction: column; }
  .why-left {
    gap: 5.5rem; }
    .why-left .why-item {
      flex-direction: column;
      align-items: flex-start; }
  .why__arrows {
    flex-grow: 1;
    max-width: 28rem; }
    .why__arrows img {
      width: 100%;
      display: block; }
      .why__arrows img.mob {
        display: none; }
  .why-right {
    gap: .7rem; }
  .why-item {
    border: 1px solid #C5C5C5;
    padding: 1rem;
    border-radius: .5rem;
    display: flex;
    gap: 1rem;
    background: #fff;
    font-weight: 700;
    color: #606060;
    font-size: 1.1rem;
    align-items: center; }
    .why-item__img {
      width: 5rem;
      height: 5rem;
      border-radius: .5rem;
      background: #fff;
      border: 1px solid #C5C5C5;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0px 148px 41px 0px rgba(90, 91, 163, 0), 0px 95px 38px 0px rgba(90, 91, 163, 0.01), 0px 53px 32px 0px rgba(90, 91, 163, 0.05), 0px 24px 24px 0px rgba(90, 91, 163, 0.09), 0px 6px 13px 0px rgba(90, 91, 163, 0.1); }
      .why-item__img img {
        width: 100%;
        display: block; }

.team {
  padding-top: 5rem;
  position: relative;
  z-index: 1; }
  .team::after {
    z-index: -1;
    width: 100%;
    position: absolute;
    left: 0;
    top: 11rem;
    height: 113rem;
    background: url(../img/icons/pattern-team.svg) center top no-repeat;
    background-size: cover;
    content: ''; }
  .team .section-title {
    margin-bottom: 3rem; }
  .team-wrap {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap; }
  .team-item {
    width: calc(33.3333% - 1rem);
    background: linear-gradient(180deg, #917DD7 0%, #5A5AB4 100%);
    color: #fff;
    padding: 2rem 0 2.5rem;
    text-align: center; }
    .team-item__img {
      margin-bottom: 2rem; }
      .team-item__img img {
        display: inline-block;
        height: 6rem; }
    .team-item__name {
      font-weight: 500;
      font-size: 1.6rem;
      margin-bottom: 1rem; }
    .team-item__text {
      font-size: 1.1rem;
      line-height: 1.3rem; }
      .team-item__text p {
        padding: 0 1.8rem; }
      .team-item__text ul {
        padding: 0 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: .65rem .8rem; }
        .team-item__text ul li {
          min-width: 45%;
          text-align: left;
          display: inline-flex;
          align-items: center;
          gap: .3rem; }
          .team-item__text ul li::before {
            content: '·';
            font-size: 2rem; }

.services {
  padding-top: 8rem;
  position: relative;
  z-index: 1; }
  .services::after {
    z-index: -1;
    position: absolute;
    bottom: -25rem;
    right: 0;
    content: '';
    width: 100%;
    height: 66rem;
    background: url(../img/icons/pattern-services.png) top right no-repeat;
    background-size: contain; }
  .services .section-title {
    margin-bottom: 3rem; }
  .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; }
  .services-item {
    width: calc(33.33333% - 1rem);
    height: 24rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    padding: 1.7rem 1.5rem;
    color: #fff;
    display: flex;
    align-items: flex-end;
    font-size: 1.2rem; }
    .services-item:hover .services-item__img img {
      transform: scale(1.07); }
    .services-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1;
      overflow: hidden; }
      .services-item__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.26%, #000 100%); }
      .services-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: .6s all; }
    .services-item__wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 1rem; }
      .services-item__wrap img {
        flex-shrink: 0;
        width: 1.75rem; }

.portfolio {
  padding-top: 6rem;
  position: relative;
  z-index: 2; }
  .portfolio::after {
    background: #fff url(../img/icons/pattern-top.svg) calc(38vw + 3.2rem) top no-repeat;
    background-size: 100vw;
    top: 6rem;
    width: 100%;
    height: calc(100% - 6rem);
    z-index: -1;
    position: absolute;
    content: ''; }
  .portfolio .section-title {
    margin-bottom: 1rem; }
    .portfolio .section-title span {
      display: block;
      font-family: "Octarine"; }
  .portfolio-item {
    display: flex;
    gap: 3.5rem; }
  .portfolio-wrap {
    width: 38%; }
  .portfolio__name {
    font-size: 1.75rem;
    margin-bottom: 1.5rem; }
  .portfolio__text {
    color: #606060;
    margin-bottom: 2rem;
    max-height: 18rem;
    overflow: hidden; }
  .portfolio__btn {
    width: 15rem; }
  .portfolio-images {
    width: 62%;
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: repeat(5, calc(20% - 1.2rem));
    grid-template-rows: repeat(2, 16.5rem);
    justify-content: center;
    align-content: end; }
    .portfolio-images img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
      .portfolio-images img:nth-child(1), .portfolio-images img:nth-child(3) {
        grid-column: span  2; }
      .portfolio-images img:nth-child(2) {
        grid-column: span  3;
        grid-row: span  2; }
  .portfolio-arrows {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 2;
    bottom: 0; }
    .portfolio-arrows span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      border: 1px solid #5657A1;
      color: #5657A1;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      transition: none;
      background: #fff; }
      .portfolio-arrows span svg {
        width: 1.2rem;
        height: 1.2rem; }
      .portfolio-arrows span:hover {
        color: #fff;
        background: linear-gradient(270deg, #917DD7 0%, #5A5AB4 100%); }
  .portfolio-count {
    text-align: center;
    width: 3.4rem; }
    .portfolio-count strong {
      font-size: 1.6rem; }

.single {
  height: 100svh;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem; }
  .single__bg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1; }
    .single__bg::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: 0;
      pointer-events: none;
      content: '';
      background: linear-gradient(0deg, rgba(0, 0, 0, 0) 61.51%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%); }
    .single__bg img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .single__title {
    font-size: 4.2rem;
    font-weight: 400;
    color: #fff;
    max-width: 65rem; }

.case {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  background: url(../img/icons/pattern-top.svg) center top no-repeat;
  background-size: 100vw; }
  .case::before {
    z-index: -1;
    width: 100%;
    position: absolute;
    left: 0;
    top: 75rem;
    height: 113rem;
    background: url(../img/icons/pattern-team.svg) center top no-repeat;
    background-size: cover;
    content: ''; }
  .case::after {
    z-index: -1;
    width: 100%;
    position: absolute;
    left: 0;
    top: -8rem;
    height: 75rem;
    background: url(../img/icons/pattern-about.svg) center top no-repeat;
    background-size: cover;
    content: ''; }
  .case-head {
    margin: 0 auto;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 41rem; }
  .case .section-title {
    margin-bottom: 1.5rem; }
  .case__text {
    color: #606060; }
  .case-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 1.5rem;
    margin-bottom: 4.5rem; }
  .case-item {
    width: calc(33.3333% - 1rem); }
    .case-item__ico {
      width: 4rem;
      margin-bottom: 1.25rem; }
      .case-item__ico img {
        width: 100%;
        display: block; }
    .case-item__name {
      color: #5657A1;
      margin-bottom: 1.1rem;
      font-weight: 500;
      font-size: 1.5rem; }
    .case-item__text {
      color: #606060;
      max-width: 27.5rem; }
  .case-iframe iframe {
    width: 100%;
    height: calc(100vh - 5rem); }

.gallery {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1; }
  .gallery .section-title {
    margin-bottom: 3rem; }
  .gallery-item {
    width: 36rem;
    height: 20.2rem;
    margin-right: 1.5rem;
    cursor: pointer; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .gallery-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2.5rem; }
    .gallery-arrows span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      border: 1px solid #5657A1;
      color: #5657A1;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      transition: none;
      background: #fff; }
      .gallery-arrows span svg {
        width: 1.2rem;
        height: 1.2rem; }
      .gallery-arrows span:hover {
        color: #fff;
        background: linear-gradient(270deg, #917DD7 0%, #5A5AB4 100%); }

.contact {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
  background: #fff url(../img/icons/pattern-contact.svg) left top no-repeat;
  background-size: 42rem; }
  .contact .container {
    display: flex;
    gap: 3.5rem; }
  .contact .section-title {
    width: 38%; }
  .contact-wrap {
    width: 62%; }
  .contact__text {
    font-size: 0.9rem;
    margin-bottom: 2.5rem; }
  .contact-info {
    font-size: 2.1rem;
    font-weight: 500; }
    .contact-info li {
      margin-bottom: 2rem; }
      .contact-info li a {
        color: #000; }
        .contact-info li a:hover {
          color: #5657A1; }
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3.5rem; }
    .contact-form input {
      width: calc(50% - 1.75rem);
      background: transparent;
      border: none;
      border-bottom: 1px solid #A8A8A8;
      padding-bottom: 0.5rem;
      font-size: 0.9rem; }
      .contact-form input::placeholder {
        color: #A8A8A8; }
      .contact-form input:hover, .contact-form input:focus {
        border-color: #000; }
    .contact-form p {
      width: 100%;
      color: #A8A8A8;
      font-size: 0.8rem;
      margin-bottom: 0.5rem; }
    .contact-form .btn {
      width: 15rem; }

.footer {
  display: flex; }
  .footer-main {
    width: 50%;
    color: #fff;
    background: url(../img/icons/pattern-footer.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 1.5rem; }
  .footer-wrap {
    display: flex;
    margin-bottom: 3rem; }
  .footer-menu {
    width: 50%;
    font-size: 0.9rem; }
    .footer-menu li {
      margin-bottom: .75rem; }
      .footer-menu li a {
        color: #fff; }
        .footer-menu li a:hover {
          opacity: .8; }
  .footer-info {
    width: 50%; }
  .footer-item {
    margin-bottom: 1.5rem; }
    .footer-item:last-child {
      margin-bottom: 0; }
    .footer-item__title {
      font-size: 0.9rem;
      margin-bottom: 0.5rem; }
    .footer-item__text a {
      font-size: 1.2rem;
      color: #fff;
      font-weight: 500; }
      .footer-item__text a:hover {
        opacity: .8; }
  .footer-social {
    width: 50%;
    display: flex;
    gap: 1rem; }
    .footer-social li {
      display: flex; }
    .footer-social a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 3rem;
      height: 3rem;
      border: 1px solid #fff;
      border-radius: 50%;
      color: #fff; }
      .footer-social a:hover {
        background: #fff;
        color: #5657A1; }
      .footer-social a svg {
        width: 1.5rem;
        height: 1.5rem; }
  .footer-top {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 0.8rem; }
    .footer-top svg {
      width: 3rem;
      height: 3rem; }
      .footer-top svg rect, .footer-top svg path {
        transition: .6s all; }
    .footer-top:hover rect {
      fill: #5657A1; }
    .footer-top:hover path {
      stroke: #fff; }
  .footer-copy {
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .footer-copy a {
      color: #fff; }
      .footer-copy a:hover {
        opacity: .8; }
  .footer__map {
    width: 50%; }
    .footer__map #footerMap {
      width: 100%;
      height: 100%; }

@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; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; }

  .section-title {
    font-size: 4.5rem; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@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; }

  .container {
    padding: 0 3rem; }

  .section-title {
    font-size: 3.5rem; }

  .zoom-image__img {
    height: auto;
    width: calc(100% - 6rem); }
    .zoom-image__img img {
      height: auto;
      width: 100%;
      max-width: none;
      max-height: calc(100svh - 5rem); }

  .header-menu, .header-social, .header-lang {
    display: none; }
  .header__btn {
    height: 2.8rem;
    width: 12rem; }
  .header__logo {
    margin-right: 0; }
  .header-mobile {
    display: flex;
    width: 3rem;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 9rem;
    background: rgba(86, 87, 161, 0.4);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    height: 2.8rem;
    cursor: pointer;
    padding: 0.8rem .4rem; }
    .header-mobile span {
      width: 1.8rem;
      display: block;
      height: .15rem;
      background: #fff;
      border-radius: 4px;
      transition: .4s all; }
    .header-mobile span:nth-child(2) {
      width: 1.4rem; }
    .header-mobile__open span:nth-child(2) {
      display: none; }
    .header-mobile__open span {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
      .header-mobile__open span:first-child {
        transform: translateY(-50%) rotate(45deg); }
      .header-mobile__open span:last-child {
        transform: translateY(-50%) rotate(-45deg); }

  .main .container {
    width: 100%; }
  .main__title {
    width: 100%;
    font-size: 13vw;
    line-height: 1.1; }
  .main__text {
    margin-top: -0.5rem;
    margin-left: 23vw; }

  .about {
    padding-top: 6rem; }
    .about .container {
      flex-direction: column; }
    .about .section-title {
      margin-bottom: 2rem; }
    .about-wrap {
      width: 35rem; }
    .about__img {
      width: 100%;
      margin-left: 0;
      padding-top: 4rem; }

  .why .section-title {
    margin-bottom: 3rem; }
  .why-wrap {
    flex-direction: column; }
  .why-left, .why-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; }
  .why__arrows {
    width: 10rem; }
    .why__arrows img.desk {
      display: none; }
    .why__arrows img.mob {
      display: block; }
  .why-item {
    width: 14rem;
    flex-direction: column;
    align-items: flex-start; }
  .why-right {
    margin-top: -10rem;
    gap: 1rem; }

  .team::after {
    height: 50rem; }
  .team-wrap {
    justify-content: center; }
  .team-item {
    width: calc(50% - .75rem); }

  .services {
    padding-top: 6rem; }
    .services-item {
      width: calc(50% - .75rem); }

  .portfolio-item {
    flex-direction: column; }
  .portfolio-wrap, .portfolio-images {
    width: 100%; }
  .portfolio-arrows {
    position: static;
    justify-content: center;
    margin-top: 2rem; }

  .contact .container {
    flex-direction: column;
    gap: 3rem; }
  .contact .section-title, .contact-wrap {
    width: 100%; }

  .single__title {
    font-size: 3rem;
    padding-right: 3rem; }
  .single .container {
    width: 100%; }

  .case::before {
    content: none; }
  .case-item {
    width: calc(50% - .75rem); }
  .case-iframe iframe {
    height: 50vh; }

  .gallery {
    padding-bottom: 0rem; }

  .footer {
    flex-direction: column-reverse; }
    .footer__map {
      width: 100%;
      height: 30rem; }
    .footer-main {
      width: 100%; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 1rem; }

  .zoom-image__img {
    width: 100%; }
    .zoom-image__img img {
      min-height: 50svh;
      object-fit: cover;
      height: auto;
      width: 100%; }

  .section-title {
    font-size: 2.5rem; }

  .preloader__logo {
    width: 10rem; }

  .tel-popup {
    right: 1rem;
    bottom: 3rem; }

  .feedback-content {
    width: calc(100% - 2rem);
    padding: 2rem 1.5rem; }
  .feedback__text, .feedback__agree {
    font-size: 0.8rem; }

  .mobile-menu__list li {
    margin-bottom: 1.5rem; }
    .mobile-menu__list li a {
      font-size: 1.5rem; }

  .header {
    padding: 1rem 0; }
    .header-mobile {
      width: 2.5rem;
      height: 2.5rem;
      margin-right: 0; }
      .header-mobile span {
        width: 1.5rem;
        height: 2px; }
      .header-mobile span:nth-child(2) {
        width: 1.2rem; }
    .header__logo {
      width: 5rem; }
    .header__btn {
      width: 2.5rem;
      height: 2.5rem; }
      .header__btn span {
        display: none; }
      .header__btn img {
        width: 1.5rem; }
    .header.scrolled .header__logo {
      width: 3.2rem; }

  .main__title {
    font-size: 15vw; }
  .main__text {
    margin-left: 0;
    text-align: right;
    font-size: 1rem; }
  .main__video video.desk {
    display: none; }
  .main__video video.mob {
    display: block; }

  .about {
    padding-top: 5rem;
    background-size: 150vw; }
    .about .section-title {
      margin-bottom: 1.5rem; }
    .about-wrap {
      width: 100%;
      padding-right: 1rem; }
    .about__text {
      margin-bottom: 2.5rem; }

  .why-left {
    gap: 1rem; }
  .why-item {
    padding: .9rem;
    font-size: 1rem;
    width: calc(50% - .5rem); }
    .why-item__img {
      width: 3rem;
      height: 3rem; }

  .team-item {
    width: 100%; }
    .team-item__img img {
      height: 5rem; }
    .team-item__name {
      font-size: 1.5rem; }
    .team-item__text {
      font-size: 1rem; }
      .team-item__text p {
        padding: 0 1rem; }

  .services {
    padding-top: 5rem; }
    .services-item {
      width: 100%;
      padding: 1.5rem 1rem;
      font-size: 1.1rem; }

  .portfolio {
    padding-top: 5rem; }
    .portfolio::after {
      content: none; }
    .portfolio-item {
      gap: 2.5rem; }
    .portfolio__name {
      font-size: 1.6rem;
      margin-bottom: 1rem; }
    .portfolio-images {
      grid-gap: 1rem;
      grid-template-columns: repeat(5, calc(20% - .8rem));
      grid-template-rows: repeat(2, 10rem); }

  .contact .container {
    gap: 1.5rem; }
  .contact__text {
    margin-bottom: 1.5rem; }
  .contact-info {
    font-size: 1.6rem; }
    .contact-info li {
      margin-bottom: 1.5rem; }
  .contact-form {
    gap: 1rem; }
    .contact-form input {
      width: 100%; }

  .single {
    padding-bottom: 8rem; }
    .single__title {
      font-size: 2.2rem;
      padding-right: 0; }

  .case {
    padding-top: 5rem;
    background-size: 150vw; }
    .case-item {
      width: 100%; }
    .case-iframe {
      margin-left: -1rem;
      width: calc(100% + 2rem); }

  .gallery .section-title {
    margin-bottom: 1.5rem; }
  .gallery-item {
    width: calc(100vw - 4rem);
    margin-right: 1rem; }
  .gallery-arrows {
    margin-top: 1.5rem; }

  .footer__map {
    height: 22rem; }
  .footer-main {
    padding-top: 3rem;
    background: linear-gradient(270deg, #917DD7 0%, #5A5AB4 100%); }
  .footer-wrap {
    justify-content: space-between; }
    .footer-wrap:first-child {
      flex-direction: row-reverse; }
  .footer-menu {
    padding-left: 2rem; }
  .footer-copy {
    font-size: 0.9rem; }
    .footer-copy span {
      display: none; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.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 */
