@charset "UTF-8";
body {
  color: #fff;
  min-width: 320px;
  background-color: #CFD9DF;
  font-family: "Playfair Display", sans-serif;
  font-size: 14px;
}
body.lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a:focus {
  color: #fff;
  text-decoration: none;
}

button, button[typhonee=submit], a, input {
  outline: none;
}

button:hover, button[type=submit], a:hover, input:hover {
  outline: none;
}

button:focus, button[type=submit], a:focus, input:focus {
  outline: none;
}

.wrapper {
  overflow: hidden;
}

/*font-family: 'Gilroy-Regular', sans-serif;*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  font-family: "Geist Mono", sans-serif;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  z-index: 2;
}
.header .header__body {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  align-items: center;
}
.header .header__body .header__logo {
  z-index: 3;
  flex-shrink: 0;
}
.header .header__body .header__logo img {
  max-width: 100%;
  display: block;
  width: 152px;
}
.header .header__body .header__logo .logo-dark {
  display: none;
}
.header .header__body .header__burger {
  display: none;
}
.header .header__menu .header__list {
  display: flex;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.header .header__menu .header__list li {
  list-style: none;
  margin: 0 16px 0 0;
}
.header .header__menu .header__list li:last-child {
  margin-right: 0;
}
.header .header__menu .header__list li .header__link {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
}
.header .header__menu .header__list li .header__link:hover {
  color: #303643;
  background: #cfd9df;
  opacity: 0.8;
}
.header .header__menu .header__list li .header__link img {
  width: 20px;
  margin-right: 5px;
}
.header .header__menu .header__list li:nth-child(1) .header__link {
  color: #303643;
  background: #cfd9df;
}
.header .header__menu #mobile-container {
  display: none;
}
.header .actions {
  position: relative;
  z-index: 2;
}
.header .actions a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 4px;
}
.header .actions a:nth-child(2) {
  margin-left: 32px;
}
.header .actions a:hover {
  color: #303643;
  background: #cfd9df;
  opacity: 0.8;
}
.header.active:before {
  background: #cfd9df;
  border-bottom: 1px solid #aebdc6;
}
.header.active .header__body .header__logo .logo-dark {
  display: block;
}
.header.active .header__body .header__logo .logo-white {
  display: none;
}
.header.active .header__menu .header__list li .header__link {
  color: #303643;
}
.header.active .header__menu .header__list li .header__link:hover {
  background: rgba(255, 255, 255, 0.4);
}
.header.active .header__menu .header__list li:nth-child(1) .header__link {
  background: #303643;
  color: #cfd9df;
}
.header.active .header__menu .header__list li:nth-child(1) .header__link:hover {
  background: rgba(48, 54, 67, 0.6);
}
.header.active .actions a {
  color: #303643;
}
.header.active .actions a:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .header {
    padding: 7px 0;
  }
  .header::before {
    background-color: transparent;
    box-shadow: none;
  }
  .header .header__body {
    height: 50px;
  }
  .header .header__body .header__logo img {
    width: 122px;
  }
  .header .header__body .header__burger {
    display: block;
    position: relative;
    max-width: 33%;
    width: 100%;
    height: 20px;
    z-index: 3;
  }
  .header .header__body .header__burger span {
    font-weight: 500;
    font-size: 13px;
    font-family: "Geist Mono", sans-serif;
    margin-left: 47px;
    transition: 0.3s;
  }
  .header .header__body .header__burger::before, .header .header__body .header__burger::after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header .header__body .header__burger::before {
    top: 7px;
    width: 24px;
  }
  .header .header__body .header__burger::after {
    bottom: 7px;
    width: 36px;
  }
  .header .header__body .header__burger.active::before {
    transform: rotate(45deg);
    top: 10px;
    width: 15px;
  }
  .header .header__body .header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
    width: 15px;
  }
  .header .header__body .header__burger.active span {
    transform: scale(0);
  }
  .header .header__body .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #cfd9df;
    transition: all 0.3s ease 0s;
    overflow: auto;
    padding: 96px 0 0 0;
  }
  .header .header__body .header__menu.active {
    top: 0;
    height: 100%;
  }
  .header .header__body .header__menu .header__list {
    display: block;
    margin-bottom: 32px;
  }
  .header .header__body .header__menu .header__list li {
    margin: 0 16px 0 16px;
  }
  .header .header__body .header__menu .header__list li .header__link {
    font-weight: 300;
    font-size: 29px;
    color: #303043;
    font-family: "Playfair Display", sans-serif;
    padding: 0;
  }
  .header .header__body .header__menu .header__list li .header__link:first-child {
    background-color: transparent;
    color: #303043;
  }
  .header .header__body .header__menu #mobile-container {
    display: block;
  }
  .header .header__body .header__menu #mobile-container #showroom {
    position: relative;
  }
  .header .header__body .header__menu #mobile-container #showroom .tab {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    padding: 0;
    margin: 0;
  }
  .header .header__body .header__menu #mobile-container #showroom .tab button {
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
  }
  .header .header__body .header__menu #mobile-container #showroom .tab button.active {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .header .header__body .header__menu #mobile-container #showroom .showroom-carousel .item {
    position: relative;
  }
  .header .header__body .header__menu #mobile-container #showroom .showroom-carousel .item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .header .header__body .header__menu #mobile-container #showroom .showroom-carousel .owl-nav {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 0;
  }
  .header .header__body .header__menu #mobile-container .contacts {
    padding: 32px 16px;
  }
  .header .header__body .header__menu #mobile-container .contacts .contact-block {
    margin-bottom: 16px;
  }
  .header .header__body .header__menu #mobile-container .contacts .contact-block .title {
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    color: #303043;
    opacity: 0.5;
  }
  .header .header__body .header__menu #mobile-container .contacts .contact-block a {
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    color: #303043;
  }
  .header .header__body .header__menu #mobile-container .contacts .contact-block .social-links {
    display: flex;
    align-items: center;
  }
  .header .header__body .header__menu #mobile-container .contacts .contact-block .social-links .separator {
    color: #303043;
    padding: 0 5px;
  }
  .header .actions {
    max-width: 33%;
    width: 100%;
    text-align: right;
  }
  .header .actions a {
    padding: 0;
    font-size: 13px;
  }
  .header .actions a:nth-child(1) {
    display: none;
  }
  .header .actions a:nth-child(2) {
    margin-left: 0;
  }
  .header.active .header__body .header__burger::before, .header.active .header__body .header__burger::after {
    background-color: #303643;
  }
  .header.active .header__body .header__burger span {
    color: #303643;
  }
}
.container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .container-fluid {
    padding: 0 20px;
  }
}

.section-title {
  margin-bottom: 24px;
}
.section-title h4 {
  font-family: "Geist Mono", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #303043;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title h4 {
    font-size: 13px;
  }
}
.section-title h3 {
  font-weight: 300;
  font-size: 54px;
  text-transform: uppercase;
  color: #303643;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title h3 {
    font-size: 29px;
  }
}
.section-title h3 span {
  font-size: 32px;
}
@media (max-width: 991px) {
  .section-title h3 span {
    font-size: 14px;
  }
}

.filepond--drop-label {
  color: #4c4e53;
}

.filepond--label-action {
  text-decoration-color: #babdc0;
}

.filepond--panel-root {
  border-radius: 2em;
  background-color: #edf0f4;
  height: 1em;
}

.filepond--item-panel {
  background-color: #595e68;
}

.filepond--drip-blob {
  background-color: #7f8a9a;
}

.circle {
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* Позиционирование полосок под углом */
}
.circle .strip {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%; /* Закругленные края полоски */
  opacity: 0; /* Начальное состояние прозрачности */
  animation: pulse 3s infinite; /* Анимация */
  transform-origin: center; /* Центрируем точку вращения */
  animation-delay: calc(var(--i) * 0.9s); /* Задержка для каждой полоски */
}
@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.circle .strip:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-50%);
}
.circle .strip:nth-child(2) {
  transform: translate(-50%, -50%) rotate(120deg) translateY(-50%);
}
.circle .strip:nth-child(3) {
  transform: translate(-50%, -50%) rotate(240deg) translateY(-50%);
}

#projectModal .modal-dialog {
  max-width: 1420px;
  width: 100%;
  display: flex;
}
@media (max-width: 1600px) {
  #projectModal .modal-dialog {
    max-width: 1220px;
  }
}
@media (max-width: 767px) {
  #projectModal .modal-dialog {
    flex-direction: column-reverse;
    margin: 0;
  }
}
#projectModal .modal-dialog .btn-close {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #cfd9df;
  opacity: 1;
  flex-shrink: 0;
  margin: 80px 20px 0 80px;
}
@media (max-width: 1440px) {
  #projectModal .modal-dialog .btn-close {
    margin: 40px 20px 0 40px;
  }
}
@media (max-width: 991px) {
  #projectModal .modal-dialog .btn-close {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .btn-close {
    margin: 16px;
    width: 38px;
    height: 38px;
    margin-left: auto;
  }
}
#projectModal .modal-dialog .modal-content {
  background: #cfd9df;
  color: #303043;
  border-radius: 0;
}
#projectModal .modal-dialog .modal-content .modal-header {
  border: none;
  padding: 0;
}
#projectModal .modal-dialog .modal-content .modal-body {
  padding: 160px 0 0 0;
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body {
    padding: 36px 0 0 0;
  }
}
#projectModal .modal-dialog .modal-content .modal-body .project-title {
  font-weight: 300;
  font-size: 54px;
  text-transform: uppercase;
  text-align: center;
  color: #303043;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-title {
    font-size: 29px;
  }
}
#projectModal .modal-dialog .modal-content .modal-body .project-category {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #303643;
  font-family: "Geist Mono", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
#projectModal .modal-dialog .modal-content .modal-body .project-category .category {
  border: 1px solid rgba(48, 54, 67, 0.15);
  border-radius: 48px;
  padding: 8px 16px;
}
#projectModal .modal-dialog .modal-content .modal-body .project-category .details {
  margin-left: 12px;
}
#projectModal .modal-dialog .modal-content .modal-body .project-content {
  padding: 223px 80px 144px 160px;
}
@media (max-width: 1440px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content {
    padding: 223px 80px 144px 80px;
  }
}
@media (max-width: 991px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content {
    padding: 110px 40px 110px 40px;
  }
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content {
    padding: 32px 16px;
  }
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}
#projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .description {
  font-family: "Geist Mono", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: #303643;
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .description {
    font-size: 15px;
  }
}
#projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .project-modal-thumbs {
  padding-left: 50px;
  display: block;
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .project-modal-thumbs {
    padding-left: 0;
    margin-bottom: 48px;
  }
}
#projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .project-modal-thumbs img {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  #projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .project-modal-thumbs img {
    max-height: 380px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 0;
  }
}
#projectModal .modal-dialog .modal-content .modal-body .project-content .project-content-wrap .project-modal-thumbs .owl-nav {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 0;
}

#videoModal .modal-content {
  border-radius: 0;
  background: #000;
}

#finishModal .modal-content {
  border-radius: 47px;
  max-width: 465px;
  width: 100%;
  height: 388px;
}
#finishModal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#finishModal .modal-body span {
  width: 92px;
  height: 92px;
  background-color: #3f66cf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-bottom: 42px;
}
#finishModal .modal-body p {
  color: #272727;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 150%; /* 30px */
  font-family: "SFProDisplay-Regular", sans-serif;
}

#first-section {
  background-size: cover;
  background-position: center;
  position: relative;
  /* animations icon */
  /* конец кнопки звонка */
}
@media (max-width: 991px) {
  #first-section {
    background-position: right;
  }
}
#first-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(58.7% 50% at 50% 50%, rgba(0, 0, 0, 0.32) 0%, #000 300%);
}
@media (max-width: 991px) {
  #first-section:before {
    background: radial-gradient(58.7% 50% at 50% 50%, rgba(0, 0, 0, 0.32) 0%, #000 350%);
  }
}
#first-section .first-section {
  position: relative;
  z-index: 1;
  padding: 300px 0 200px;
}
#first-section .first-section .content {
  max-width: 1136px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  #first-section .first-section .content {
    display: flex;
    flex-direction: column-reverse;
  }
}
#first-section .first-section .content h1 {
  font-weight: 100;
  text-align: center;
  font-size: 51px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #first-section .first-section .content h1 {
    font-size: 29px;
  }
}
#first-section .first-section .content .button {
  margin-top: -40px;
}
@media (max-width: 991px) {
  #first-section .first-section .content .button {
    position: absolute;
    top: -100px;
    left: 54px;
  }
}
#first-section .first-section .content .button a {
  border-radius: 102px;
  width: 155px;
  height: 155px;
  background: #cfd9df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #303643;
  position: relative;
  font-family: "Geist Mono", sans-serif;
}
@media (max-width: 991px) {
  #first-section .first-section .content .button a {
    width: 103px;
    height: 103px;
    font-size: 14px;
  }
}
#first-section .bottom-section {
  position: absolute;
  bottom: 60px;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  #first-section .bottom-section {
    left: 16px;
    right: 29px;
    bottom: 32px;
  }
}
#first-section .links {
  font-family: "Geist Mono", sans-serif;
  display: flex;
  flex-direction: column;
}
#first-section .links a {
  font-weight: 200;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
  margin-bottom: 1px;
}
#first-section .links a:last-child {
  margin-bottom: 0;
}
#first-section .links a:hover {
  opacity: 1;
}
#first-section .since {
  font-weight: 400;
  font-size: 16px;
  color: #dedede;
  opacity: 0.8;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Geist Mono", sans-serif;
}
#first-section .callback-bt {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  height: 68px;
  text-align: center;
  width: 68px;
  z-index: 1;
  transition: 0.3s;
  animation: hoverWave linear 1s infinite;
  position: relative;
}
#first-section .callback-bt .text-call {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#first-section .callback-bt .text-call span {
  text-align: center;
  opacity: 0;
  font-size: 0;
  position: absolute;
  right: 4px;
  top: 22px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 0.3s linear;
  font-family: "montserrat", Arial, Helvetica, sans-serif;
}
#first-section .callback-bt:hover i {
  display: none;
}
#first-section .callback-bt:hover i {
  color: #38a3fd;
  font-size: 40px;
  transition: 0.3s;
}
#first-section .callback-bt i {
  color: #fff;
  font-size: 34px;
  transition: 0.3s;
  line-height: 66px;
  transition: 0.5s ease-in-out;
}
#first-section .callback-bt i {
  animation: 1200ms ease 0s normal none 1 running shake;
  animation-iteration-count: infinite;
  -webkit-animation: 1200ms ease 0s normal none 1 running shake;
  -webkit-animation-iteration-count: infinite;
}
@keyframes hoverWave {
  0% {
    box-shadow: 0 8px 10px rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(255, 255, 255, 0.3), 0 0 0 15px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 26.7px rgba(255, 255, 255, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 40px rgba(255, 255, 255, 0);
  }
}
@keyframes shake {
  0% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }
  10% {
    transform: rotateZ(-30deg);
    -ms-transform: rotateZ(-30deg);
    -webkit-transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
    -ms-transform: rotateZ(15deg);
    -webkit-transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
    -ms-transform: rotateZ(-10deg);
    -webkit-transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
    -ms-transform: rotateZ(7.5deg);
    -webkit-transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
    -ms-transform: rotateZ(-6deg);
    -webkit-transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
    -ms-transform: rotateZ(5deg);
    -webkit-transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.28571deg);
    -ms-transform: rotateZ(-4.28571deg);
    -webkit-transform: rotateZ(-4.28571deg);
  }
  80% {
    transform: rotateZ(3.75deg);
    -ms-transform: rotateZ(3.75deg);
    -webkit-transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.33333deg);
    -ms-transform: rotateZ(-3.33333deg);
    -webkit-transform: rotateZ(-3.33333deg);
  }
  100% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }
}

#concept {
  background: #cfd9df;
  color: #303043;
}
#concept .concept {
  padding: 300px 0;
  text-align: center;
}
@media (max-width: 991px) {
  #concept .concept {
    padding: 100px 0;
  }
}
#concept .concept .content {
  max-width: 1136px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 32px;
  line-height: 130%;
}
@media (max-width: 991px) {
  #concept .concept .content {
    font-size: 20px;
  }
}

#showroom {
  position: relative;
}
#showroom .showroom-carousel {
  position: relative;
}
#showroom .showroom-carousel:before {
  content: "";
  position: absolute;
  left: 40px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  #showroom .showroom-carousel:before {
    display: none;
  }
}
#showroom .showroom-carousel:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  right: 0;
  height: 1px;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  #showroom .showroom-carousel:after {
    display: none;
  }
}
#showroom .showroom-carousel .item {
  position: relative;
}
#showroom .showroom-carousel .item .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  filter: blur(10px);
  background-size: cover;
}
#showroom .showroom-carousel .item img {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#showroom .showroom-carousel .item .info {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 80px;
  left: 80px;
  z-index: 2;
}
@media (max-width: 767px) {
  #showroom .showroom-carousel .item .info {
    display: none;
  }
}
#showroom .showroom-carousel .item .info .category {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48px;
  padding: 8px 16px;
  margin-right: 12px;
}
#showroom .showroom-carousel .owl-nav {
  position: absolute;
  right: 80px;
  bottom: 80px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #showroom .showroom-carousel .owl-nav {
    position: initial;
    padding: 16px;
    justify-content: flex-end;
  }
}
#showroom .showroom-carousel .owl-nav button {
  margin: 0 8px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #showroom .showroom-carousel .owl-nav button {
    width: 36px;
    height: 36px;
  }
}
#showroom .showroom-carousel .owl-nav button span {
  color: #303643;
  font-size: 30px;
  transform: translate(-1px, -2px);
}
#showroom .slide-info {
  position: absolute;
  left: 80px;
  bottom: 80px;
  font-weight: 300;
  font-size: 82px;
  color: #fff;
  z-index: 2;
}
@media (max-width: 767px) {
  #showroom .slide-info {
    bottom: 24px;
    left: 16px;
    font-size: 20px;
  }
}
#showroom .slide-info .counter {
  line-height: 1;
}

#how-it-works {
  background-color: #cfd9df;
  position: relative;
  padding: 160px 0;
}
@media (max-width: 575px) {
  #how-it-works {
    margin-bottom: 130px;
    padding: 100px 0;
  }
}
#how-it-works:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/images/how-it-works.png?d58367b40fdbc135692293cc781cd251);
  background-position: right;
  background-repeat: no-repeat;
  width: 100%;
}
@media (max-width: 575px) {
  #how-it-works:before {
    background: url(/images/how-it-works-mibile.png?6be6f32f1701b0be859ccc33f0ca19d7);
  }
}
#how-it-works .how-it-works {
  position: relative;
  z-index: 1;
}
#how-it-works .how-it-works .section-title {
  margin-bottom: 0;
}
#how-it-works .how-it-works .section-title .left-side h3 {
  max-width: 640px;
  margin-bottom: 32px;
}
#how-it-works .how-it-works .section-title .left-side .button a {
  font-weight: 400;
  font-size: 16px;
  color: #cfd9df;
  border-radius: 4px;
  padding: 8px 16px;
  background: #303643;
  display: inline-block;
  font-family: "Geist Mono", sans-serif;
}
#how-it-works .how-it-works .section-title .right-side {
  text-align: right;
}
@media (max-width: 575px) {
  #how-it-works .how-it-works .section-title .right-side {
    display: none;
  }
}
#how-it-works .how-it-works .how-it-works-blocks {
  padding: 160px 0;
}
#how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap {
  display: flex;
}
@media (max-width: 1200px) {
  #how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap {
    overflow: scroll;
  }
}
#how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap {
  margin-right: 12px;
}
#how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block {
  padding: 32px 70px 32px 32px;
  height: 100%;
  background: #bcc9d1;
  display: flex;
  flex-direction: column;
  min-width: 256px;
  width: 100%;
}
@media (max-width: 1440px) {
  #how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block {
    padding: 16px;
  }
}
#how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block:last-child {
  margin-right: 0;
}
#how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block .title {
  font-weight: 300;
  font-size: 45px;
  color: #303643;
  margin-bottom: 43px;
}
@media (max-width: 1600px) {
  #how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block .title {
    font-size: 30px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1440px) {
  #how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block .title {
    font-size: 20px;
  }
}
#how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block .desc {
  font-weight: 400;
  font-size: 16px;
  color: #303643;
  font-family: "Geist Mono", sans-serif;
  margin-top: auto;
}
@media (max-width: 1440px) {
  #how-it-works .how-it-works .how-it-works-blocks .how-it-works-blocks-wrap .how-it-works-block-wrap .how-it-works-block .desc {
    font-size: 13px;
  }
}
#how-it-works #about-us {
  position: relative;
  z-index: 1;
}
#how-it-works #about-us .section-title .left-side h3 {
  opacity: 0.6;
  margin-bottom: 48px;
}
#how-it-works #about-us .section-title .left-side .button-block {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#how-it-works #about-us .section-title .left-side .button-block h4 {
  opacity: 0.6;
  max-width: 777px;
  width: 100%;
}
@media (max-width: 575px) {
  #how-it-works #about-us .section-title .left-side .button-block .button {
    position: absolute;
    right: 41px;
    top: 160px;
  }
}
#how-it-works #about-us .section-title .left-side .button-block .button a {
  border-radius: 102px;
  width: 155px;
  height: 155px;
  background: #303643;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #cfd9df;
  position: relative;
  font-family: "Geist Mono", sans-serif;
}
#how-it-works #about-us .section-title .left-side .button-block .button a .circle {
  border: 1px solid rgba(48, 54, 67, 0.5);
}
#how-it-works #about-us .section-title .left-side .button-block .button a .circle .strip {
  border: 1px solid rgba(48, 54, 67, 0.5);
}
#how-it-works #about-us .section-title .left-side .autor-block .autor {
  font-weight: 300;
  font-size: 32px;
  color: #303643;
  margin-bottom: 8px;
}
#how-it-works #about-us .section-title .left-side .autor-block h4 {
  opacity: 0.5;
}
#how-it-works #about-us .section-title .right-side {
  text-align: right;
}
@media (max-width: 767px) {
  #how-it-works #about-us .section-title .right-side {
    display: none;
  }
}

#projects-gallery {
  position: relative;
}
#projects-gallery .project-list {
  position: absolute;
  left: 80px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media (max-width: 991px) {
  #projects-gallery .project-list {
    left: 16px;
  }
}
@media (max-width: 767px) {
  #projects-gallery .project-list {
    position: initial;
    padding: 0 0 16px 16px;
  }
}
#projects-gallery .project-list a {
  font-weight: 300;
  font-size: 54px;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  line-height: 1;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1200px) {
  #projects-gallery .project-list a {
    font-size: 29px;
  }
}
@media (max-width: 767px) {
  #projects-gallery .project-list a {
    color: #303043;
    border-color: #303043;
  }
}
#projects-gallery .project-list a:last-child {
  margin-bottom: 0;
}
#projects-gallery .project-list a:hover {
  opacity: 1;
  border-color: transparent;
}
#projects-gallery .project-list a.active {
  opacity: 1;
  border-color: transparent;
}
#projects-gallery .project-gallery-carousel .project {
  background-size: contain;
  height: 860px;
  position: relative;
}
@media (max-width: 767px) {
  #projects-gallery .project-gallery-carousel .project {
    height: 400px;
  }
}
@media (max-width: 575px) {
  #projects-gallery .project-gallery-carousel .project {
    height: 200px;
  }
}
#projects-gallery .project-gallery-carousel .project:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(62.37% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, #000 350%);
}
#projects-gallery .project-gallery-carousel .project .project-desc {
  position: absolute;
  bottom: 60px;
  left: 50%;
  right: 80px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  font-family: "Geist Mono", sans-serif;
}
@media (max-width: 991px) {
  #projects-gallery .project-gallery-carousel .project .project-desc {
    right: 16px;
  }
}
@media (max-width: 767px) {
  #projects-gallery .project-gallery-carousel .project .project-desc {
    position: initial;
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  #projects-gallery .project-gallery-carousel .project .project-desc {
    display: none;
  }
}

#projects {
  padding: 160px 0;
}
@media (max-width: 767px) {
  #projects {
    padding: 100px 0;
  }
}
#projects .section-title {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 51px;
}
@media (max-width: 575px) {
  #projects .section-title h3 {
    font-size: 29px;
    text-transform: none;
  }
}
#projects .tab {
  overflow: hidden;
  margin-bottom: 47px;
}
@media (max-width: 767px) {
  #projects .tab {
    margin-bottom: 20px;
  }
}
#projects .tab button {
  background-color: inherit;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.3s;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #303643;
  border: 1px solid transparent;
  border-radius: 48px;
  font-family: "Geist Mono", sans-serif;
}
#projects .tab button:hover {
  border-color: rgba(48, 54, 67, 0.15);
}
#projects .tab button.active {
  border-color: rgba(48, 54, 67, 0.15);
}
#projects .tabcontent {
  display: none;
  animation: fadeEffect 1s;
  border-top: 1px solid #aebdc6;
  border-bottom: 1px solid #aebdc6;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#projects .projects-carousel {
  position: relative;
}
#projects .projects-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 600px) {
  #projects .projects-carousel .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
#projects .projects-carousel .item {
  padding: 40px;
  border-left: 1px solid #aebdc6;
}
#projects .projects-carousel .item .thumb {
  margin-bottom: 16px;
  position: relative;
}
#projects .projects-carousel .item .thumb .project-short-desc {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #cfd9df;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: #303643;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 600px) {
  #projects .projects-carousel .item .thumb .project-short-desc {
    font-size: 13px;
  }
}
#projects .projects-carousel .item .thumb .project-short-desc p:last-child {
  margin-bottom: 0;
}
#projects .projects-carousel .item .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#projects .projects-carousel .item .content .title {
  font-weight: 300;
  font-size: 32px;
  text-transform: uppercase;
  color: #303043;
}
@media (max-width: 767px) {
  #projects .projects-carousel .item .content .title {
    font-size: 20px;
  }
}
#projects .projects-carousel .item .content .link a {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #303043;
  font-size: 20px;
}
#projects .projects-carousel .owl-dots {
  position: absolute;
  right: 0;
  top: -35px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
}
@media (max-width: 767px) {
  #projects .projects-carousel .owl-dots {
    display: none;
  }
}
#projects .projects-carousel .owl-dots .owl-dot {
  height: 5px;
  width: 110px;
  position: relative;
  background: #303643;
  transition: 0.5s;
  border-radius: 25px;
  margin: 0 -1px;
}
#projects .projects-carousel .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #303643;
  transition: 0.5s;
  width: 0px;
}
#projects .projects-carousel .owl-dots .owl-dot.active::before {
  background: #303643;
  width: 110px;
  transition: 0.5s;
}
#projects .projects-carousel .owl-dots .owl-dot.active ~ .owl-dot {
  background: rgba(255, 255, 255, 0.2);
}

#faqs {
  margin-bottom: -306px;
}
@media (max-width: 575px) {
  #faqs {
    margin-bottom: 0;
  }
}
#faqs .section-title {
  max-width: 709px;
  width: 100%;
  margin: 0 auto 156px;
  text-align: center;
}
@media (max-width: 575px) {
  #faqs .section-title {
    margin: 0 auto 32px;
  }
}
#faqs .faqs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
@media (max-width: 575px) {
  #faqs .faqs {
    flex-direction: column;
  }
}
#faqs .faqs .faq {
  padding: 80px 80px 58px 100px;
  max-width: 50%;
  width: 100%;
  border-bottom: 1px solid #a5aeb6;
  border-top: 1px solid #a5aeb6;
  height: 560px;
  background-color: #CFD9DF;
}
@media (max-width: 1200px) {
  #faqs .faqs .faq {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  #faqs .faqs .faq {
    max-width: 100%;
    border-top: none;
    height: 100%;
  }
}
#faqs .faqs .faq:nth-child(odd) {
  border-left: 1px solid #a5aeb6;
  margin-top: -306px;
}
@media (max-width: 575px) {
  #faqs .faqs .faq:nth-child(odd) {
    margin-top: 0;
    border-left: none;
  }
}
#faqs .faqs .faq:nth-child(1) {
  height: 254px;
  margin-top: 0;
}
@media (max-width: 575px) {
  #faqs .faqs .faq:nth-child(1) {
    height: 100%;
    padding-bottom: 64px;
  }
}
#faqs .faqs .faq:nth-child(1) .section-title {
  text-align: left;
  margin: initial;
  max-width: 540px;
}
@media (max-width: 575px) {
  #faqs .faqs .faq:nth-child(1) .section-title {
    text-align: center;
  }
}
#faqs .faqs .faq:nth-child(1) .section-title h4 {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #303043;
  opacity: 0.6;
}
#faqs .faqs .faq .content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
}
@media (max-width: 767px) {
  #faqs .faqs .faq .content {
    flex-direction: column-reverse;
    margin-bottom: 24px;
  }
}
#faqs .faqs .faq .content .main-content {
  max-width: 365px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#faqs .faqs .faq .content .main-content .title {
  margin-bottom: 24px;
}
#faqs .faqs .faq .content .main-content .title a {
  font-weight: 300;
  font-size: 36px;
  color: #303043;
}
@media (max-width: 1440px) {
  #faqs .faqs .faq .content .main-content .title a {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  #faqs .faqs .faq .content .main-content .title a {
    font-size: 20px;
  }
}
#faqs .faqs .faq .content .main-content .team {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #303643;
  font-family: "Geist Mono", sans-serif;
}
#faqs .faqs .faq .content .thumb {
  width: 320px;
  height: 300px;
}
@media (max-width: 767px) {
  #faqs .faqs .faq .content .thumb {
    width: 224px;
    height: 210px;
    margin-left: auto;
    margin-bottom: 24px;
  }
}
#faqs .faqs .faq .categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#faqs .faqs .faq .categories .category {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #303643;
  border: 1px solid rgba(48, 54, 67, 0.15);
  border-radius: 48px;
  padding: 8px 16px;
  margin-right: 12px;
  font-family: "Geist Mono", sans-serif;
}
@media (max-width: 767px) {
  #faqs .faqs .faq .categories .category {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 6px;
  }
}
#faqs .faqs .faq .categories .category:last-child {
  margin-right: 0;
}

#contacts {
  padding: 506px 0 200px;
  background-image: url(/images/contacts.jpg?acd02c8e4537e4538b7fc8f56c7f0c08);
  background-size: cover;
  background-position: top;
}
@media (max-width: 575px) {
  #contacts {
    padding: 100px 0;
  }
}
#contacts .contacts {
  background-color: #CFD9DF;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 100px;
}
@media (max-width: 575px) {
  #contacts .contacts {
    padding: 48px 16px;
  }
}
#contacts .contacts .section-title {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  #contacts .contacts .section-title {
    margin-bottom: 24px;
  }
}
#contacts .contacts .section-title .top-side {
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  #contacts .contacts .section-title .top-side {
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  #contacts .contacts .section-title .top-side h3 {
    text-align: right;
  }
}
#contacts .contacts .section-title .bottom-side {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 575px) {
  #contacts .contacts .section-title .bottom-side {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
#contacts .contacts .section-title .bottom-side h4 {
  max-width: 234px;
  width: 100%;
}
#contacts .contacts .section-title .bottom-side h3 {
  text-align: right;
}
@media (max-width: 575px) {
  #contacts .contacts .section-title .bottom-side h3 {
    margin-bottom: 16px;
    text-align: left;
  }
}
#contacts .contacts form {
  font-family: "Geist Mono", sans-serif;
}
#contacts .contacts form .form-group {
  border-left: 1px solid #a5aeb6;
  border-right: 1px solid #a5aeb6;
  border-top: 1px solid #a5aeb6;
}
#contacts .contacts form .form-group.file-input {
  cursor: pointer;
}
#contacts .contacts form .form-group .filepond--root {
  margin-bottom: 0;
}
#contacts .contacts form .form-group .filepond--drop-label.filepond--drop-label label {
  opacity: 0.6 !important;
  text-transform: uppercase;
  cursor: pointer;
}
#contacts .contacts form .form-group .filepond--drop-label {
  background-color: #CFD9DF;
}
#contacts .contacts form .form-group .filepond--root .filepond--credits[style] {
  display: none;
}
#contacts .contacts form .form-group .filepond--panel-root {
  background-color: #CFD9DF;
}
#contacts .contacts form .form-group .form-control {
  font-weight: 400;
  font-size: 14px;
  color: #303043;
  text-align: center;
  padding: 32px;
  background-color: transparent;
  border-radius: 0;
  border: none;
}
#contacts .contacts form .form-group .form-control:focus {
  box-shadow: none;
}
#contacts .contacts form .form-group .form-control[aria-label] {
  opacity: 0.6;
  text-transform: uppercase;
}
#contacts .contacts form .form-group .form-control::-webkit-input-placeholder {
  opacity: 0.6;
  text-transform: uppercase;
}
#contacts .contacts form .form-group .form-control:-moz-placeholder { /* Firefox 18- */
  opacity: 0.6;
  text-transform: uppercase;
}
#contacts .contacts form .form-group .form-control::-moz-placeholder { /* Firefox 19+ */
  opacity: 0.6;
  text-transform: uppercase;
}
#contacts .contacts form .form-group .form-control:-ms-input-placeholder {
  opacity: 0.6;
  text-transform: uppercase;
}
#contacts .contacts form .site-btn {
  padding: 32px;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: #303643;
  border: none;
  width: 100%;
  margin-bottom: 30px;
}
#contacts .contacts p {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #303043;
  opacity: 0.6;
  max-width: 650px;
  margin: 0 auto;
}

#footer {
  background: #212a3e;
}
#footer .footer .top-side {
  padding: 60px 0;
}
@media (max-width: 575px) {
  #footer .footer .top-side {
    padding: 40px 0 16px;
  }
}
#footer .footer .top-side .top-footer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 118px;
}
@media (max-width: 575px) {
  #footer .footer .top-side .top-footer {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
#footer .footer .top-side .top-footer .contact-block:nth-child(1) {
  font-family: "Geist Mono", sans-serif;
}
@media (max-width: 575px) {
  #footer .footer .top-side .top-footer .contact-block:nth-child(1) {
    text-align: center;
    margin-bottom: 42px;
  }
}
#footer .footer .top-side .top-footer .contact-block:nth-child(1) p {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #cfd9df;
  margin-bottom: 0;
}
#footer .footer .top-side .top-footer .contact-block:nth-child(1) p:nth-child(2) {
  opacity: 0.5;
}
#footer .footer .top-side .top-footer .contact-block:nth-child(2) {
  text-align: right;
}
@media (max-width: 575px) {
  #footer .footer .top-side .top-footer .contact-block:nth-child(2) {
    text-align: center;
  }
}
#footer .footer .top-side .top-footer .contact-block:nth-child(2) p {
  margin-bottom: 0;
}
#footer .footer .top-side .top-footer .contact-block:nth-child(2) p:nth-child(1) a {
  font-weight: 300;
  font-size: 54px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 991px) {
  #footer .footer .top-side .top-footer .contact-block:nth-child(2) p:nth-child(1) a {
    font-size: 29px;
  }
}
@media (max-width: 575px) {
  #footer .footer .top-side .top-footer .contact-block:nth-child(2) p:nth-child(1) a {
    color: #cfd9df;
  }
}
#footer .footer .top-side .top-footer .contact-block:nth-child(2) p:nth-child(2) a {
  font-weight: 300;
  font-size: 32px;
}
@media (max-width: 991px) {
  #footer .footer .top-side .top-footer .contact-block:nth-child(2) p:nth-child(2) a {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  #footer .footer .top-side .top-footer .contact-block:nth-child(2) p:nth-child(2) a {
    color: #cfd9df;
  }
}
#footer .footer .top-side .middle-footer {
  text-align: center;
  margin-bottom: 47px;
}
@media (max-width: 575px) {
  #footer .footer .top-side .middle-footer {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  #footer .footer .top-side .middle-footer .logo-desctop {
    display: none;
  }
}
#footer .footer .top-side .middle-footer .logo-mobile {
  display: none;
}
@media (max-width: 767px) {
  #footer .footer .top-side .middle-footer .logo-mobile {
    display: block;
    margin: 0 auto;
  }
}
#footer .footer .top-side .bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 575px) {
  #footer .footer .top-side .bottom-footer {
    display: initial;
  }
}
@media (max-width: 575px) {
  #footer .footer .top-side .bottom-footer .contact-block {
    display: flex;
    justify-content: space-between;
  }
}
#footer .footer .top-side .bottom-footer .contact-block .location {
  font-weight: 300;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  #footer .footer .top-side .bottom-footer .contact-block .location {
    font-size: 20px;
    color: #cfd9df;
    max-width: 92px;
    margin-bottom: 0;
  }
}
#footer .footer .top-side .bottom-footer .contact-block .social-links {
  display: flex;
  align-items: center;
}
#footer .footer .top-side .bottom-footer .contact-block .social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50px;
  margin-right: 16px;
}
@media (max-width: 575px) {
  #footer .footer .top-side .bottom-footer .contact-block .social-links a {
    width: 32px;
    height: 32px;
    background-color: #cfd9df;
  }
}
#footer .footer .top-side .bottom-footer .contact-block .social-links a:last-child {
  margin-right: 0;
}
#footer .footer .top-side .bottom-footer .footer-menu {
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  #footer .footer .top-side .bottom-footer .footer-menu {
    display: none;
  }
}
#footer .footer .top-side .bottom-footer .footer-menu a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: right;
  color: #cfd9df;
  margin-bottom: 10px;
  transition: 0.3s;
  font-family: "Geist Mono", sans-serif;
}
#footer .footer .top-side .bottom-footer .footer-menu a:hover {
  color: #fff;
}
#footer .footer .bottom-side {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px 0 47px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist Mono", sans-serif;
}
@media (max-width: 575px) {
  #footer .footer .bottom-side {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }
}
#footer .footer .bottom-side div {
  max-width: 33.3%;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #cfd9df;
  opacity: 0.5;
}
@media (max-width: 991px) {
  #footer .footer .bottom-side div {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  #footer .footer .bottom-side div {
    max-width: 100%;
    margin-bottom: 8px;
  }
}
#footer .footer .bottom-side div a {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #cfd9df;
  transition: 0.3s;
  opacity: 0.5;
}
@media (max-width: 991px) {
  #footer .footer .bottom-side div a {
    font-size: 13px;
  }
}
#footer .footer .bottom-side div a:hover {
  opacity: 1;
}
#footer .footer .bottom-side div.center-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  #footer .footer .bottom-side div.center-side {
    justify-content: flex-start;
  }
}
#footer .footer .bottom-side div.center-side a {
  margin: 0 12px;
}
@media (max-width: 575px) {
  #footer .footer .bottom-side div.center-side a {
    margin: 0 12px 0 0;
  }
}
#footer .footer .bottom-side div.right-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  #footer .footer .bottom-side div.right-side {
    justify-content: flex-start;
    opacity: 1;
  }
}
