@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/Montserrat-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.container {
  width: 100%;
  max-width: 1580px;
  padding: 0 30px;
  margin: 0 auto;
}

@media only screen and (max-width: 1599px) {
  .container {
    max-width: 1400px;
  }
}
@media only screen and (max-width: 1399px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
:root {
  --text-color: #E4D6C8;
  --body-color: #191111;
  --accent-color: #6E9585;
  --coffee-color: #DFB68F;
  --box-bg: linear-gradient(97deg, rgba(214, 184, 157, 0.50) 0%, rgba(214, 184, 157, 0.20) 100%);
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: 1.5;
  color: var(--text-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--body-color);
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wow {
  visibility: hidden;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: relative;
}
.wrap:before {
  position: absolute;
  content: "";
  left: 100px;
  right: 100px;
  height: 840px;
  top: -670px;
  border-radius: 50%;
  aspect-ratio: 2;
  opacity: 0.45;
  background: #FEAD5F;
  -webkit-filter: blur(210px);
          filter: blur(210px);
  z-index: -1;
}
.wrap.is-home {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 1920px auto;
}
.wrap.is-home::before {
  display: none;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.format-text-p p {
  margin: 30px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 90px 0;
}

.h1, h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.4;
}

.h2, h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.h3, h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10em;
  font-size: 16px;
  font-weight: 700;
  padding: 35px 70px;
  line-height: 1.4;
  color: var(--body-color);
  background-color: transparent;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: var(--coffee-color);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  border-radius: 10em;
}
.btn__title {
  position: relative;
  z-index: 2;
}
.btn:hover {
  -webkit-box-shadow: 0px 21px 64.8px 0px rgba(13, 7, 7, 0.29);
          box-shadow: 0px 21px 64.8px 0px rgba(13, 7, 7, 0.29);
}
.btn:hover:after {
  -webkit-transform: scale(1.15, 1.15);
          transform: scale(1.15, 1.15);
}
.btn--green {
  color: var(--text-color);
}
.btn--green:after {
  background-color: var(--accent-color);
}
.btn--white:after {
  background-color: var(--text-color);
}
.btn--bdr {
  border: 1px solid #fff;
  color: #fff;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.btn--bdr:after {
  display: none;
}
.btn--bdr:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  position: relative;
  z-index: 2;
}
.btn__icon path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.btn__title + .btn__icon {
  margin-left: 10px;
  margin-right: 0;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -20px;
}
.social__link {
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  margin-right: 20px;
  background-color: var(--text-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.social__link svg {
  width: 18px;
  height: 18px;
}
.social__link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.social__link:hover {
  background-color: var(--accent-color);
}
.social__link:hover svg path {
  fill: #fff;
}

.tabs {
  position: relative;
  z-index: 2;
}
.tabs-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -35px;
}
.tabs-content {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.tabs-content.is-visible {
  opacity: 1;
  visibility: visible;
}
.tabs-content.is-fade-in {
  display: block;
}

.tab {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 35px;
  white-space: nowrap;
  padding: 19px 0;
  -webkit-transition: color 0.5s, padding 0.5s;
  transition: color 0.5s, padding 0.5s;
  position: relative;
}
.tab:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 4px;
  background-color: var(--accent-color);
}
.tab:before {
  position: absolute;
  content: "";
  background-color: transparent;
  top: -10px;
  left: 0px;
  right: 0px;
  bottom: -10px;
  border-radius: 10em;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tab.active {
  pointer-events: none;
  padding-left: 40px;
  padding-right: 40px;
}
.tab.active:after {
  background-color: transparent;
}
.tab.active:before {
  background-color: var(--accent-color);
}

@media (hover) {
  .tab:hover {
    color: var(--accent-color);
  }
}
@media only screen and (max-width: 1599px) {
  .wrap.is-home {
    background-size: 1600px auto;
  }
}
@media only screen and (max-width: 1399px) {
  .wrap.is-home {
    background-size: 1400px auto;
  }
  .h1, h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .h2, h2 {
    font-size: 32px;
  }
  .wrap.is-home {
    background-size: 1100px auto;
  }
  .tabs-scroll {
    margin: 0 -20px;
  }
  .tab {
    font-size: 16px;
    margin: 0 20px;
    padding: 15px 0;
  }
}
@media only screen and (max-width: 991px) {
  .wrap.is-home {
    background-size: 900px auto;
    background-position: top 50px center;
  }
}
@media only screen and (max-width: 767px) {
  .wrap.is-home {
    background-size: 1100px auto;
    background-position: left calc(50% + 200px) top 80px;
  }
  .tabs-scroll {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .tab {
    font-size: 16px;
    margin: 0;
    padding: 20px 40px;
    text-align: center;
  }
  .tab:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .tab + .tab {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .wrap.is-home {
    background-size: 800px auto;
    background-position: left calc(50% + 150px) top 80px;
  }
  .section {
    padding: 60px 0;
  }
  .h1, h1 {
    font-size: 32px;
  }
  .h2, h2 {
    font-size: 24px;
  }
  .h3, h3 {
    font-size: 18px;
  }
  .btn {
    padding: 20px 40px;
    font-size: 13px;
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomImage {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomImage {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fadeInLamp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes fadeInLamp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo img {
  width: auto;
  height: 100%;
}

.languages {
  font-size: 16px;
  color: #fff;
  position: relative;
  width: 44px;
  border-radius: 10em;
}
.languages.is-active {
  background-color: var(--accent-color);
}
.languages.is-active .languages__current {
  border-color: var(--accent-color);
}
.languages__current {
  border: 1px solid #fff;
  border-radius: 10em;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.languages__current:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  cursor: pointer;
}
.languages__items {
  display: none;
  padding-top: 6px;
  padding-bottom: 10px;
}
.languages__item {
  color: #fff;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.languages__item + .languages__item {
  margin-top: 15px;
}

.header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 40px 0;
}
.header.is-fixed {
  position: fixed;
  padding: 0;
  background-color: var(--body-color);
}
.header.is-fixed .header__logo {
  height: 38px;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 75px;
  position: relative;
  padding-right: 84px;
}
.header-nav {
  margin-right: 60px;
}
.header__logo {
  height: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__contacts {
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__mobile-cta {
  display: none;
}
.header__phone, .header__mail {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}
.header__phone:hover, .header__mail:hover {
  color: var(--accent-color);
}
.header__mail {
  margin-left: 20px;
}
.header__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 11px 24px;
  font-weight: 400;
  line-height: normal;
  margin-left: 40px;
}
.header__languages {
  position: absolute;
  top: 15px;
  right: 0;
}
.header__social {
  margin-right: 0px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__item {
  margin-right: 60px;
  position: relative;
}
.menu__item:last-child {
  margin-right: 0px;
}
.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  color: #fff;
  height: 100%;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.menu__link:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.menu__link:hover {
  color: var(--accent-color);
}
.menu__link:hover:after {
  background-color: var(--accent-color);
}
.menu__link.current:after {
  right: 0;
  opacity: 1;
}

.hamburger {
  display: none;
}

.mobile-menu__footer {
  display: none;
}

@media (hover) {
  .header.open-popup {
    right: 17px;
  }
}
@media only screen and (max-width: 1399px) {
  .header__social {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header {
    padding: 20px 0;
    position: fixed;
  }
  .header.is-fixed {
    padding: 20px 0;
  }
  .header.is-fixed .header__logo {
    height: 43px;
  }
  .header-block {
    padding-right: 0;
    height: 45px;
  }
  .header__contacts {
    display: none;
  }
  .header__logo {
    height: 43px;
    z-index: 20;
  }
  .header__mobile-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    margin-left: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 20;
  }
  .header__mobile-cta:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
  }
  .header__mobile-phone, .header__mobile-mail {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
  .header__mobile-phone:hover, .header__mobile-mail:hover {
    color: var(--accent-color);
  }
  .header__mobile-mail {
    margin-top: 30px;
  }
  .header-nav {
    margin-right: 0;
    display: block;
    text-align: center;
    position: fixed;
    overflow: hidden;
    margin: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 12;
    background-color: var(--body-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .header-nav.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header-nav.is-visible .menu__list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 130px 0 0;
  }
  .menu__item {
    margin-right: 0;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .menu__item + .menu__item {
    margin-top: 30px;
  }
  .menu__link {
    font-size: 18px;
    height: auto;
    display: inline-block;
  }
  .hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    padding: 0;
    height: 21px;
    background-color: transparent;
    margin-right: 30px;
    z-index: 20;
  }
  .hamburger .hamburger-box {
    width: 36px;
    height: 24px;
  }
  .hamburger .hamburger-inner,
  .hamburger .hamburger-inner::after,
  .hamburger .hamburger-inner::before {
    background-color: var(--text-color);
    height: 3px;
    width: 36px;
    border-radius: 10em;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger .hamburger-inner::before {
    top: 10px;
    width: 28px;
  }
  .mobile-menu__languages {
    width: auto;
    min-width: 120px;
    border-radius: 22px;
    margin-top: 30px;
  }
  .mobile-menu__languages .languages__current {
    width: 100%;
  }
  .mobile-menu__footer {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 70px 0 50px;
  }
}
.banner {
  position: relative;
}
.banner-section {
  min-height: 100vh;
  position: relative;
  padding-top: 76px;
  margin-bottom: 40px;
}
.banner__info {
  background-color: #fff;
  height: 100%;
}
.banner__title {
  text-align: right;
  font-weight: 800;
  line-height: 1.2;
  position: absolute;
  right: 0;
  min-width: auto;
  top: calc(100vh - 330px);
}
.banner__title span {
  color: var(--accent-color);
}
.banner__subtitle {
  margin: 0;
  font-size: 48px;
  text-align: left;
  font-weight: 800;
  line-height: 1.2;
  position: absolute;
  left: calc(50% - 130px);
  min-width: auto;
  top: 12vh;
}
.banner__subtitle span {
  color: var(--accent-color);
}
.banner__btn {
  position: absolute;
  top: calc(50vh + 180px);
  right: calc(50% + 270px);
  z-index: 2;
}
.banner__left-lamp {
  -webkit-filter: blur(175px);
          filter: blur(175px);
  opacity: 0.5;
  -webkit-transform: rotate(-49deg);
          transform: rotate(-49deg);
  position: absolute;
  top: -345px;
  left: -255px;
}
.banner__right-lamp {
  -webkit-filter: blur(175px);
          filter: blur(175px);
  opacity: 0.5;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: -380px;
  top: -770px;
  z-index: -1;
}

.mouse-scroll {
  width: 35px;
  height: 63px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mouse-scroll:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 1px;
  background-color: var(--coffee-color);
  height: 29px;
  left: 50%;
}
.mouse-scroll__body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 47px;
  border-radius: 10em;
  border: 1px solid var(--coffee-color);
}
.mouse-scroll__wheel {
  position: absolute;
  width: 6px;
  height: 11px;
  background-color: var(--coffee-color);
  border-radius: 10em;
  top: 10px;
  left: calc(50% - 3px);
  -webkit-animation: mouseWheel 1.5s infinite;
          animation: mouseWheel 1.5s infinite;
}

@-webkit-keyframes mouseWheel {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mouseWheel {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media only screen and (max-width: 1599px) {
  .banner__subtitle {
    left: 50%;
  }
  .banner__btn {
    top: calc(50vh + 70px);
    right: calc(50% + 200px);
  }
}
@media only screen and (max-width: 1399px) {
  .banner__btn {
    top: calc(50vh + 70px);
    right: calc(50% + 170px);
  }
}
@media only screen and (max-width: 1199px) {
  .banner {
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-section {
    padding-bottom: 50px;
    min-height: auto;
  }
  .banner__left-lamp, .banner__right-lamp {
    opacity: 0.3;
  }
  .banner__subtitle {
    font-size: 36px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-right: 50px;
  }
  .banner__title {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 170px;
  }
  .banner__btn {
    top: 350px;
    right: calc(50% + 100px);
  }
  .mouse-scroll {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .banner__subtitle {
    font-size: 30px;
    margin-right: 0;
  }
  .banner__title {
    margin-top: 150px;
    font-size: 42px;
  }
  .banner__btn {
    padding: 20px 40px;
    font-size: 14px;
    top: 320px;
    right: calc(50% + 95px);
  }
}
@media only screen and (max-width: 767px) {
  .banner__title {
    margin-top: 400px;
  }
  .banner__btn {
    top: 420px;
    right: calc(50% - 60px);
  }
}
@media only screen and (max-width: 575px) {
  .banner {
    padding-top: 30px;
  }
  .banner-section {
    padding-bottom: 0;
  }
  .banner__title {
    margin-top: 330px;
    font-size: 32px;
  }
  .banner__subtitle {
    font-size: 24px;
  }
  .banner__btn {
    top: 320px;
    right: calc(50% - 80px);
  }
}
.services-footer__tabs {
  display: none;
}
.services-section {
  position: relative;
}
.services__tabs .tabs-scroll {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services__title {
  font-size: 36px;
  font-weight: 800;
  position: absolute;
  right: 35px;
  top: 5px;
  width: calc(50% - 10px);
  text-align: right;
  line-height: 1.2;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.services__content {
  margin-top: 110px;
  position: relative;
}
.services__content.is-visible .services__title {
  opacity: 1;
}
.services__content.is-visible .services__item {
  opacity: 1;
}
.services__content.is-visible .services__item-image img {
  opacity: 1;
}
.services__items {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  position: relative;
  margin-bottom: 100px;
  z-index: 3;
}
.services__item {
  margin: 5px;
  width: calc(50% - 10px);
  background-image: var(--box-bg);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.services__item:nth-child(2n+1) {
  top: 100px;
}
.services__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
.services__item-text {
  margin-bottom: 22px;
  font-size: 14px;
  opacity: 0.6;
}
.services__item-foot {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.services__item-icon {
  width: 58px;
  height: 58px;
}
.services__item-btn {
  margin-left: 20px;
  padding: 20px 40px;
}
.services__item-btn:after {
  background-color: var(--text-color);
}
.services__item-image {
  position: absolute;
  top: 0px;
  height: 100%;
  left: calc(50% + 75px);
  width: 885px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.services__item-image img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 0;
}
.services__image {
  position: absolute;
  top: 145px;
  bottom: 0;
  left: calc(50% + 75px);
  width: 885px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services__image:before {
  position: absolute;
  top: -60px;
  left: -60px;
  bottom: -60px;
  right: -60px;
  content: "";
  background-image: url("../img/decor.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top 50px center;
  z-index: -1;
}
.services__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.services__btn {
  position: absolute;
  bottom: 125px;
  left: calc(50% - 125px);
  width: 280px;
  z-index: 3;
}
.services__right-lamp {
  -webkit-filter: blur(175px);
          filter: blur(175px);
  opacity: 0.5;
  -webkit-transform: rotate(37deg);
          transform: rotate(37deg);
  position: absolute;
  right: -225px;
  top: -270px;
  z-index: 3;
  pointer-events: none;
}

@media only screen and (max-width: 1599px) {
  .services__title {
    right: 5px;
  }
  .services__items {
    width: 810px;
  }
  .services__image {
    left: calc(50% - 50px);
  }
  .services__item-image {
    left: calc(50% - 50px);
  }
}
@media only screen and (max-width: 1399px) {
  .services__items {
    width: 710px;
  }
  .services__image {
    left: calc(50% - 100px);
  }
  .services__item-image {
    left: calc(50% - 100px);
  }
}
@media only screen and (max-width: 1199px) {
  .services__title {
    font-size: 30px;
  }
  .services__right-lamp {
    display: none;
  }
  .services__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
  }
  .services__items {
    width: calc(100% + 10px);
  }
  .services__item-image {
    left: auto;
    width: 100%;
    top: 100%;
    margin-top: 100px;
    height: auto;
  }
  .services__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-bottom: -100px;
  }
}
@media only screen and (max-width: 991px) {
  .services__image {
    margin-bottom: -70px;
  }
  .services__btn {
    bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .services-footer__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
  .services-footer__tabs .tabs-scroll {
    width: 100%;
  }
  .services-footer__tabs .tab.active {
    display: none;
  }
  .services__title {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    text-align: left;
    margin-bottom: 30px;
  }
  .services__items {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .services__item {
    margin: 0;
    width: 100%;
  }
  .services__item:nth-child(2n+1) {
    top: auto;
  }
  .services__item + .services__item {
    margin-top: 10px;
  }
  .services__item-image {
    margin-top: 0px;
  }
  .services__image {
    margin-bottom: 0;
  }
  .services__btn {
    bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .services__title {
    font-size: 24px;
  }
  .services__btn {
    padding: 20px 40px;
    width: auto;
    left: calc(50% + 10px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 30px;
  }
  .services__image {
    width: 400px;
    left: calc(50% - 210px);
    margin-bottom: -30px;
  }
  .services__image:before {
    top: -30px;
    left: -30px;
    bottom: -30px;
    right: -30px;
    background-position: top center;
  }
  .services__item {
    padding: 30px;
  }
  .services__item-image {
    width: 400px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .services__item-title {
    font-size: 18px;
  }
  .services__item-text {
    font-size: 12px;
  }
}
.projects__container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.projects-slider .swiper-scrollbar {
  background-color: #110904;
  width: 100%;
  max-width: 614px;
  margin-top: 35px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  left: auto;
}
.projects-slider .swiper-scrollbar-drag {
  background-color: var(--coffee-color);
  height: 9px;
  top: -2px;
}

.project {
  aspect-ratio: 1.854;
  border-radius: 20px;
  overflow: hidden;
  padding: 3.6% 4.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.project:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 10, 10, 0.2);
  z-index: -1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.project__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.project__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
.project__header {
  max-width: 430px;
}
.project__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
}
.project__tag {
  padding: 9px 37px;
  border: 1px solid var(--text-color);
  border-radius: 10em;
  margin-right: 20px;
  white-space: nowrap;
}
.project__title {
  display: block;
}
.project__text {
  display: block;
  font-size: 14px;
  margin-top: 30px;
}
.project__footer {
  margin-left: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.project__rise {
  line-height: 1.4;
}
.project__rise-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
}
.project__rise-value strong {
  font-size: 64px;
}
.project__rise-title {
  font-size: 16px;
}
.project__btn {
  padding: 20px 40px;
  font-weight: 600;
  margin-top: 30px;
}
.project--last-slide {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.project--last-slide:after {
  background-color: rgba(25, 17, 17, 0.6);
}
.project--last-slide .project__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.project--last-slide .project__btns .btn + .btn {
  margin-top: 40px;
}
.project--last-slide .project__btns .btn--bdr {
  padding: 20px 40px;
}

@media (hover) {
  .project:not(.project--last-slide):hover:after {
    background-color: rgba(62, 51, 44, 0.7);
  }
  .project:not(.project--last-slide):hover .project__bg {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 1199px) {
  .project__header {
    max-width: 100%;
  }
  .project__tags {
    display: none;
  }
  .project__text {
    margin-top: 20px;
  }
  .project__footer {
    display: none;
  }
  .project--last-slide .project__btns .btn + .btn {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .project {
    aspect-ratio: 1;
  }
  .projects-slider .swiper-scrollbar {
    max-width: calc(75% - 60px);
  }
}
@media only screen and (max-width: 575px) {
  .project {
    padding: 20px;
    aspect-ratio: 0.6;
  }
  .project__text {
    margin-top: 10px;
    font-size: 12px;
  }
  .project__footer {
    display: none;
  }
  .project--last-slide .project__btns {
    margin-top: 20px;
  }
  .project--last-slide .project__btns .btn {
    width: 100%;
    white-space: normal;
    margin-top: 15px;
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-wrap {
  position: relative;
}
.about__bg {
  position: absolute;
  content: "";
  top: -125px;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  z-index: -1;
}
.about__info {
  width: 480px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about__text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
}
.about__items {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  position: relative;
  margin-bottom: 70px;
  z-index: 2;
}
.about__item {
  margin: 5px;
  width: calc(50% - 10px);
  background-image: var(--box-bg);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  color: #fff;
}
.about__item:nth-child(2n+1) {
  top: 70px;
}
.about__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
.about__item-text {
  margin-bottom: 27px;
  font-size: 14px;
  opacity: 0.6;
}
.about__item-icon {
  margin-top: auto;
  width: 74px;
  height: 74px;
}
.about__btn {
  margin-top: 70px;
}
.about__tizers {
  margin-top: 40px;
}

.tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -40px;
  margin-bottom: -20px;
}

.tizer {
  width: 220px;
  margin-right: 40px;
  margin-bottom: 20px;
}
.tizer__value {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--coffee-color);
}
.tizer__value strong {
  font-size: 64px;
}
.tizer__text {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

@media only screen and (max-width: 1599px) {
  .about__bg {
    top: -50px;
  }
  .about__items {
    width: calc(100% - 530px);
  }
}
@media only screen and (max-width: 1199px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__bg {
    top: 0;
  }
  .about__info {
    width: 100%;
  }
  .about__text {
    font-size: 18px;
  }
  .about__items {
    width: calc(100% + 10px);
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about__items {
    width: 100%;
    margin: 0;
    margin-top: 100px;
  }
  .about__item {
    margin: 0;
    width: 100%;
  }
  .about__item:nth-child(2n+1) {
    top: auto;
  }
  .about__item + .about__item {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .tizers {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .tizer {
    margin-right: 0;
  }
  .tizer__value {
    font-size: 20px;
  }
  .tizer__value strong {
    font-size: 52px;
  }
  .tizer__text {
    font-size: 14px;
  }
  .about-section {
    text-align: center;
  }
  .about__bg {
    background-size: 300% auto;
  }
  .about__text {
    font-size: 16px;
    margin-top: 30px;
  }
  .about__tizers {
    margin-top: 30px;
  }
  .about__btn {
    margin-top: 50px;
  }
  .about__items {
    margin-top: 70px;
  }
  .about__item {
    padding: 30px;
  }
  .about__item-title {
    font-size: 18px;
  }
  .about__item-text {
    font-size: 12px;
  }
}
.advantages {
  width: 530px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.advantages-section {
  position: relative;
  padding-top: 0px;
}
.advantages__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.advantages__info {
  width: 600px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.advantages__image {
  width: 1010px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 50px;
}
.advantages__image:before {
  position: absolute;
  top: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 1024px;
  height: 1024px;
  content: "";
  background-image: url("../img/decor.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top 50px center;
  z-index: -1;
}
.advantages__item {
  width: 100%;
  background-image: var(--box-bg);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.advantages__item-toggle {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: var(--accent-color);
  border: none;
  bpx-shadow: none;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin-left: 30px;
}
.advantages__item-toggle:before {
  display: block;
  position: absolute;
  height: 1px;
  content: "";
  background-color: #fff;
  left: 14px;
  right: 14px;
  top: 50%;
}
.advantages__item-toggle:after {
  display: block;
  position: absolute;
  width: 1px;
  content: "";
  background-color: #fff;
  top: 14px;
  bottom: 14px;
  left: 50%;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.advantages__item-header {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
.advantages__item-text {
  opacity: 0.8;
  margin-top: 15px;
  font-size: 14px;
  display: none;
}
.advantages__item.open .advantages__item-toggle:after {
  opacity: 0;
}
.advantages__item + .advantages__item {
  margin-top: 10px;
}
.advantages__right-lamp {
  -webkit-filter: blur(175px);
          filter: blur(175px);
  opacity: 0.5;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
  position: absolute;
  right: -280px;
  top: -170px;
}
.advantages__btn {
  position: absolute;
  z-index: 2;
  top: calc(50% - 90px);
  left: calc(50% + 275px);
}

@media only screen and (max-width: 1599px) {
  .advantages-section {
    padding-bottom: 0;
  }
  .advantages__image {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  .advantages__btn {
    top: calc(50% - 30px);
    left: calc(50% + 210px);
  }
}
@media only screen and (max-width: 1399px) {
  .advantages {
    width: 100%;
  }
  .advantages-section {
    padding: 30px 0;
  }
  .advantages__info {
    width: 500px;
  }
  .advantages__image {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
  .advantages__btn {
    left: calc(50% + 175px);
  }
}
@media only screen and (max-width: 1199px) {
  .advantages__right-lamp {
    opacity: 0.3;
  }
  .advantages-section {
    padding: 90px 0;
  }
  .advantages__info {
    width: 100%;
  }
  .advantages__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .advantages__image {
    margin-left: 0;
    margin-top: 50px;
    -webkit-transform: none;
            transform: none;
    width: 95%;
  }
  .advantages__image:before {
    top: -90px;
    width: 100%;
    height: auto;
  }
  .advantages__btn {
    position: relative;
    left: auto;
    top: auto;
  }
}
@media only screen and (max-width: 991px) {
  .advantages__image:before {
    top: -90px;
  }
}
@media only screen and (max-width: 575px) {
  .advantages-section {
    padding: 60px 0;
  }
  .advantages__image {
    margin-top: 30px;
  }
  .advantages__item {
    padding: 30px;
  }
  .advantages__item-header {
    font-size: 18px;
  }
  .advantages__item-text {
    font-size: 12px;
  }
}
.fancybox-is-open .fancybox-bg {
  background-color: var(--body-color);
  opacity: 0.75;
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__title {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}
.form__suptitle {
  margin: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.form label {
  position: relative;
  width: 100%;
}
.form label + label {
  margin-top: 20px;
}
.form *::-webkit-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::-moz-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *:-ms-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::-ms-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form input[type=text],
.form input[type=tel],
.form input[type=url],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form textarea {
  width: 100%;
  position: relative;
  font-size: 16px;
  height: 72px;
  font-weight: 500;
  text-align: center;
  background-color: #56675E;
  padding: 0 20px;
  color: #fff;
  border: none;
  width: 100%;
  border-radius: 36px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=tel]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=tel]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=tel]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=tel]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=tel]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 72px #56675E;
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #fff;
}
.form textarea {
  resize: none;
  height: 110px;
  padding: 27px 20px;
}
.form__btn {
  margin-top: 20px;
  padding-left: 90px;
  padding-right: 90px;
  background-color: var(--coffee-color);
}

.popup {
  width: 100%;
  max-width: 700px;
  padding: 60px 80px;
  border-radius: 20px;
  background-color: var(--accent-color);
  text-align: center;
  overflow: visible;
}
.popup__text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.4;
}
.popup__image {
  top: -85px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.popup__form {
  margin-top: 60px;
}
.popup .form__title {
  padding-right: 80px;
  text-align: left;
}
.popup--success {
  padding-top: 120px;
}
.popup--success .form__title {
  text-align: center;
  padding-right: 0;
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-color: var(--text-color);
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  z-index: 3;
  top: 60px;
  right: 80px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.popup__close:hover {
  background-color: var(--coffee-color);
}

.wpcf7-form-control-wrap {
  display: block;
  line-height: 1;
  width: 100%;
}
.wpcf7 form .wpcf7-spinner {
  display: none;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  padding-left: 35px;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 7px;
  height: 24px;
  width: 24px;
  top: 0px;
  left: 0px;
  border: none;
  background-color: #56675E;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  top: 12px;
  left: 11px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  background-color: #56675E;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

@media (hover) {
  .wpcf7-acceptance .wpcf7-list-item-label:hover:before {
    background-color: #6E8277;
  }
}
.iti {
  width: 100%;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10em 0 0 10em;
  color: #fff;
}
.iti__divider {
  margin-bottom: 0;
  padding-bottom: 0;
  border-color: rgba(0, 0, 0, 0.15);
}
.iti__arrow {
  border-top: 4px solid #fff;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #fff;
}
.iti__country-list {
  max-height: 250px;
  z-index: 11;
  margin: 0;
  margin-top: 10px;
  border: none;
  white-space: normal;
  background-color: #56675E;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.iti__country-list li {
  color: #fff;
}
.iti-mobile .iti__divider {
  border-color: #ccc;
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country {
  background-color: #fff;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}
.iti-mobile .iti__country-list li {
  color: #000;
}

.phone {
  padding-left: 20px !important;
}

@media only screen and (max-width: 767px) {
  .popup {
    max-width: calc(100% - 40px);
    padding: 60px;
  }
  .popup--success {
    padding-top: 120px;
  }
  .popup__form {
    margin-top: 50px;
  }
  .popup__close {
    top: 60px;
    right: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .form label + label {
    margin-top: 15px;
  }
  .form *::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form *::-moz-placeholder {
    font-size: 14px;
  }
  .form *:-ms-input-placeholder {
    font-size: 14px;
  }
  .form *::-ms-input-placeholder {
    font-size: 14px;
  }
  .form *::placeholder {
    font-size: 14px;
  }
  .form input[type=text],
  .form input[type=tel],
  .form input[type=url],
  .form input[type=email],
  .form input[type=password],
  .form input[type=number],
  .form textarea {
    border-radius: 30px;
    font-size: 14px;
    height: 60px;
  }
  .form textarea {
    padding: 22px 20px;
    height: 90px;
  }
  .form__title {
    font-size: 24px;
  }
  .form__suptitle {
    font-size: 16px;
  }
  .form__btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .popup {
    max-width: calc(100% - 60px);
    padding: 80px 20px 50px;
  }
  .popup--success {
    padding-top: 120px;
  }
  .popup .form__title {
    text-align: center;
    padding-right: 0;
  }
  .popup__form {
    margin-top: 30px;
  }
  .popup__close {
    top: 20px;
    right: 20px;
  }
  .popup__text {
    font-size: 16px;
    margin-top: 20px;
  }
}
.manager {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.manager__phone {
  font-weight: 600;
  font-size: 32px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
}
.manager__phone:hover {
  color: var(--accent-color);
}
.manager__name {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
}
.manager__name span {
  margin: 0 10px;
}
.manager__name strong {
  font-size: 18px;
  font-weight: 600;
}

.copy {
  max-width: 315px;
  font-size: 14px;
  font-weight: 500;
}
.copy p {
  margin: 20px 0;
}

.contacts {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 315px;
  margin-left: 90px;
}
.contacts-section {
  padding-bottom: 115px;
}
.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.contacts__inner:before {
  position: absolute;
  top: -140px;
  right: calc(50% + 300px);
  bottom: 0;
  width: 652px;
  content: "";
  background-image: url("../img/decor.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top 50px center;
  z-index: -1;
}
.contacts__form {
  width: 700px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 20px;
  background-image: linear-gradient(97deg, rgba(110, 149, 133, 0.5) 0%, rgba(110, 149, 133, 0.5) 100%);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 60px 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.contacts__form .form {
  margin-top: 40px;
}
.contacts__btn {
  padding: 20px 40px;
  font-size: 14px;
  margin-top: 55px;
}
.contacts__copy {
  margin-top: 50px;
}
.contacts__copy a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.contacts__copy a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.contacts__image {
  width: 315px;
  margin-right: 90px;
  position: relative;
}
.contacts__image-inner {
  position: absolute;
  right: -270px;
  top: 10px;
  bottom: 0;
  width: 858px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #fff;
}
.contacts__image-inner img {
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts__left-lamp {
  -webkit-filter: blur(175px);
          filter: blur(175px);
  opacity: 0.5;
  -webkit-transform: rotate(-63deg);
          transform: rotate(-63deg);
  position: absolute;
  top: -360px;
  left: -555px;
  z-index: 2;
}
.contacts__manager {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1599px) {
  .contacts {
    margin-left: 60px;
  }
  .contacts__image {
    margin-right: 60px;
  }
  .contacts__image-inner {
    margin-right: -30px;
  }
  .contacts__inner:before {
    right: calc(50% + 190px);
  }
  .contacts__form {
    width: 600px;
    padding: 60px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 1399px) {
  .contacts__form {
    width: 500px;
  }
  .contacts__inner:before {
    right: calc(50% + 300px);
  }
}
@media only screen and (max-width: 1199px) {
  .contacts {
    width: 100%;
  }
  .contacts__inner:before {
    display: none;
  }
  .contacts__left-lamp {
    opacity: 0.5;
  }
  .contacts__form {
    width: calc(100% - 375px);
  }
  .contacts__image {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    width: 100%;
    margin-top: 100px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .contacts__manager {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .contacts__btn {
    margin-top: 40px;
  }
  .contacts__copy {
    max-width: 100%;
  }
  .contacts-section {
    padding-bottom: 100px;
  }
  .contacts__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__form {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .contacts {
    margin-top: 70px;
  }
  .contacts-section {
    padding-bottom: 70px;
  }
  .contacts__form {
    padding: 50px 20px;
  }
}
.project-banner {
  height: 555px;
  border-radius: 20px;
  margin-top: 224px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
  padding: 60px 144px 60px 90px;
  position: relative;
}
.project-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.project-banner__info {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.project-banner__subtitle {
  font-weight: 600;
  font-size: 20px;
  margin-top: 40px;
  max-width: 455px;
}
.project-banner__footer {
  margin-left: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.project-banner__rises {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -50px;
  margin-bottom: 40px;
}
.project-banner__rise {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4;
  margin-right: 50px;
}
.project-banner__rise-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--coffee-color);
}
.project-banner__rise-value strong {
  font-size: 64px;
}
.project-banner__rise-title {
  font-size: 16px;
}
.project-banner__link {
  background-color: transparent;
  padding: 35px 70px;
  border-radius: 10em;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
.project-banner__link:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: var(--accent-color);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  border-radius: 10em;
}
.project-banner__link span {
  position: relative;
  z-index: 2;
}
.project-banner__link:hover {
  -webkit-box-shadow: 0px 21px 64.8px 0px rgba(13, 7, 7, 0.29);
          box-shadow: 0px 21px 64.8px 0px rgba(13, 7, 7, 0.29);
}
.project-banner__link:hover:after {
  -webkit-transform: scale(1.15, 1.15);
          transform: scale(1.15, 1.15);
}

.project-content {
  margin-top: 100px;
}
.project-content a {
  color: #DFB68F;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #DFB68F;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.project-content a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.project-content b, .project-content strong {
  font-weight: 800;
}
.project-content i {
  font-style: italic;
  font-weight: 500;
}
.project-content h2 {
  margin-bottom: 40px;
}
.project-content h3 {
  margin-top: 40px;
}
.project-content ul, .project-content ol {
  margin: 30px 0 0;
  padding: 0;
}
.project-content ul li, .project-content ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.4;
}
.project-content ul li + li, .project-content ol li + li {
  margin-top: 10px;
}
.project-content ul li:before, .project-content ol li:before {
  position: absolute;
  width: 14px;
  height: 11px;
  content: "";
  background-image: url("../img/check-list.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 0;
  top: 4px;
}
.project-content ol {
  counter-reset: item;
}
.project-content ol li::before {
  background-image: none;
  color: var(--coffee-color);
  font-weight: 700;
  top: 0;
  position: absolute;
  content: counter(item) ".";
  counter-increment: item;
}
.project-content blockquote {
  padding: 40px 60px;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  position: relative;
}
.project-content blockquote:before, .project-content blockquote:after {
  position: absolute;
  content: "“";
  font-size: 64px;
  color: var(--coffee-color);
  line-height: 1;
  font-weight: 500;
  font-style: italic;
}
.project-content blockquote:before {
  top: 15px;
  left: 0;
}
.project-content blockquote:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: 20px;
  right: 0;
}
.project-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
}
.project-text {
  width: 100%;
}
.project-blockquote {
  width: 550px;
  margin-left: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.project-blockquote__author {
  margin-left: auto;
  margin-right: 35px;
  font-size: 14px;
}
.project-body {
  margin-top: 120px;
}
.project-body p, .project-body ul, .project-body ol, .project-body blockquote {
  font-size: 14px;
}
.project-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
}
.project-section + .project-section {
  margin-top: 100px;
}
.project-image {
  width: 1000px;
  margin-left: 95px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.project-image img {
  width: 100%;
  border-radius: 20px;
}
.project-image img + img {
  margin-top: 50px;
}

.projects-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}
.projects-nav__btn {
  margin: 0 10px;
  font-size: 20px;
}
.projects-nav__prev, .projects-nav__next {
  font-size: 32px;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}
.projects-nav__prev svg, .projects-nav__next svg {
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.projects-nav__prev svg path, .projects-nav__next svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.projects-nav__prev:hover, .projects-nav__next:hover {
  color: var(--accent-color);
}
.projects-nav__prev:hover svg path, .projects-nav__next:hover svg path {
  fill: var(--accent-color);
}
.projects-nav__prev svg {
  margin-right: 10px;
}
.projects-nav__next {
  text-align: right;
}
.projects-nav__next svg {
  margin-left: 10px;
}

@media only screen and (max-width: 1599px) {
  .project-image {
    width: 60%;
  }
}
@media only screen and (max-width: 1399px) {
  .project-banner {
    margin-top: 180px;
    padding: 60px 90px;
  }
  .project-banner__subtitle {
    font-size: 18px;
  }
  .project-banner__rises {
    margin-right: -30px;
  }
  .project-banner__rise {
    margin-right: 30px;
  }
  .project-banner__rise-value {
    font-size: 20px;
  }
  .project-banner__rise-value strong {
    font-size: 50px;
  }
  .project-blockquote {
    margin-left: 60px;
  }
  .project-image {
    margin-left: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-banner {
    margin-top: 100px;
    padding: 60px;
    height: auto;
  }
  .project-banner__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .project-banner__footer {
    margin-left: 0;
    margin-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .project-banner__rises {
    margin-right: -50px;
  }
  .project-banner__rise {
    margin-right: 50px;
  }
  .project-content {
    margin-top: 60px;
  }
  .project-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-blockquote {
    margin-left: 0px;
    margin-top: 20px;
    margin-left: auto;
  }
  .project-body {
    margin-top: 100px;
  }
  .project-image {
    margin-left: 60px;
  }
  .projects-nav {
    margin-top: 60px;
  }
  .projects-nav__prev, .projects-nav__next {
    font-size: 20px;
  }
  .projects-nav__btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-section + .project-section {
    margin-top: 70px;
  }
  .project-image {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .project-banner__rises {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-banner__rise {
    margin-right: 0;
  }
  .project-banner__rise + .project-banner__rise {
    margin-top: 20px;
  }
  .project-blockquote {
    width: 100%;
  }
  .projects-nav__prev, .projects-nav__next {
    font-size: 16px;
  }
  .projects-nav__btn {
    font-size: 13px;
    padding: 20px 40px;
  }
}
@media only screen and (max-width: 575px) {
  .project-banner {
    padding: 30px 35px;
    margin-top: 85px;
  }
  .project-banner__subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
  .project-banner__footer {
    margin-top: 30px;
  }
  .project-banner__rises {
    margin-bottom: 30px;
  }
  .project-banner__rise-value {
    font-size: 13px;
  }
  .project-banner__rise-value strong {
    font-size: 40px;
  }
  .project-banner__rise-title {
    font-size: 13px;
  }
  .project-banner__rise + .project-banner__rise {
    margin-top: 17px;
  }
  .project-banner__link {
    width: 100%;
    padding: 20px 40px;
    font-size: 13px;
  }
  .project-content {
    margin-top: 40px;
  }
  .project-content blockquote {
    padding: 30px 40px;
  }
  .project-header {
    font-size: 14px;
  }
  .project-blockquote {
    margin-top: 10px;
  }
  .projects-nav__prev svg, .projects-nav__next svg {
    width: 30px;
    height: 30px;
  }
  .projects-nav__prev span, .projects-nav__next span {
    display: none;
  }
}
.cta {
  background-image: var(--box-bg);
  border-radius: 20px;
  padding: 68px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cta-section {
  position: relative;
  padding: 0;
  margin-top: 200px;
}
.cta__info {
  width: 100%;
  max-width: 455px;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-weight: 800;
  line-height: 1.5;
}
.cta__title span {
  color: var(--accent-color);
}
.cta__text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}
.cta__btn {
  font-size: 20px;
  position: relative;
  z-index: 2;
}
.cta__image {
  position: absolute;
  top: -110px;
  left: calc(50% + 90px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 1199px) {
  .cta {
    padding: 60px 70px;
  }
  .cta__info {
    max-width: 350px;
  }
  .cta__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: center;
  }
  .cta__info {
    max-width: 100%;
  }
  .cta__btn {
    margin-top: 40px;
  }
  .cta__image {
    position: relative;
    -webkit-transform: none;
            transform: none;
    top: auto;
    left: 10%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: -150px;
    width: 150%;
    max-width: 150%;
    margin-bottom: -50px;
  }
}
@media only screen and (max-width: 575px) {
  .cta {
    padding: 40px;
  }
  .cta-section {
    margin-top: 170px;
  }
  .cta__text {
    font-size: 14px;
  }
  .cta__btn {
    font-size: 13px;
  }
  .cta__image {
    width: 500px;
    max-width: 500px;
    margin-top: -100px;
  }
}
.footer {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__btn {
  padding: 20px 40px;
  font-size: 14px;
}
.footer__copy a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.footer__copy a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

@media only screen and (max-width: 1199px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer__manager {
    margin-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__manager {
    margin-bottom: 40px;
  }
  .footer__btn {
    margin-top: 40px;
  }
  .footer__copy {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 40px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 70px 0;
  }
  .footer__btn {
    font-size: 13px;
  }
}
.up {
  width: 60px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #463933;
  background-image: linear-gradient(133deg, rgba(214, 184, 157, 0.5) 0%, rgba(214, 184, 157, 0.5) 100%);
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.up:hover {
  background-color: transparent;
}
.up svg {
  height: 20px;
  width: 20px;
}
.up.is-visible {
  opacity: 1;
  visibility: visible;
}

.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 70px -20px -40px;
}
.catalog__item {
  width: calc(66.5% - 40px);
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: none;
  margin: 0 20px 40px;
}
.catalog__item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: -1;
}
.catalog__item:nth-child(4n+2), .catalog__item:nth-child(4n+3) {
  width: calc(33.5% - 40px);
}
.catalog__item-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
.catalog__item-description {
  font-size: 14px;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.catalog__item-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 60px;
}
.catalog__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-section {
  margin-top: 224px;
}
.catalog__filters .tabs-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (hover) {
  .catalog__item:hover:after {
    background-color: rgba(62, 51, 44, 0.7);
  }
  .catalog__item:hover .catalog__item-bg {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
  }
  .catalog__item:hover .catalog__item-description {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 30px;
    opacity: 1;
    visibility: visible;
    height: auto;
  }
}
@media only screen and (max-width: 1599px) {
  .catalog__item {
    height: 614px;
  }
  .catalog__item-link {
    padding: 50px;
  }
}
@media only screen and (max-width: 1399px) {
  .catalog {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }
  .catalog-section {
    margin-top: 180px;
  }
  .catalog__item {
    height: 520px;
    margin: 0 15px 30px;
    width: calc(66.5% - 30px);
  }
  .catalog__item:nth-child(4n+2), .catalog__item:nth-child(4n+3) {
    width: calc(33.5% - 30px);
  }
  .catalog__item-title {
    font-size: 36px;
  }
  .catalog__item-link {
    padding: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .catalog-section {
    margin-top: 130px;
  }
  .catalog__item {
    height: 410px;
  }
  .catalog__item-title {
    font-size: 32px;
  }
  .catalog__item-link {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .catalog {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -30px;
  }
  .catalog__item {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
    height: auto;
    aspect-ratio: 1.4;
  }
  .catalog__item:nth-child(4n+2), .catalog__item:nth-child(4n+3) {
    width: 100%;
  }
  .catalog__item-link {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .catalog__item-link {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .catalog {
    margin-top: 50px;
    margin-bottom: -20px;
  }
  .catalog__item {
    margin-bottom: 20px;
  }
  .catalog__item-title {
    font-size: 24px;
  }
  .catalog__item-link {
    padding: 20px;
  }
  .catalog-section {
    margin-top: 100px;
  }
}
.is-calculator-page .footer {
  background-color: #110C0C;
  margin-top: 130px;
}

.calculator {
  margin-top: 155px;
  text-align: center;
}
.calculator-section {
  padding-top: 204px;
}
.calculator-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.calculator-hero__header {
  width: 550px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.calculator-hero__title {
  line-height: normal;
}
.calculator-hero__title span {
  color: var(--accent-color);
}
.calculator-hero__body {
  width: 480px;
  margin-bottom: 15px;
  margin-right: 130px;
}
.calculator-hero__text {
  margin-top: 27px;
  font-size: 14px;
}
.calculator-tabs {
  margin-bottom: 120px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 790px;
}
.calculator-tabs:before {
  position: absolute;
  content: "";
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-color: #100A0A;
  border-radius: 10em;
}
.calculator-tabs__slider {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 33.3333333333%;
  background-color: var(--accent-color);
  border-radius: 10em;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 1;
}
.calculator-tab {
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  z-index: 2;
  white-space: nowrap;
}
.calculator-tab__icon {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 37px;
  margin-right: 20px;
}
.calculator-tab.completed {
  color: var(--accent-color);
}
.calculator-tab.completed .calculator-tab__icon {
  display: block;
}
.calculator-form {
  text-align: left;
}
.calculator-step {
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.calculator-step__title {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
.calculator-step.visible {
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.calculator-step__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  padding: 60px 50px;
  background-color: #100A0A;
  margin-bottom: 40px;
  width: 100%;
}
.calculator-step__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 80px;
  width: 100%;
}
.calculator-step__label {
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #4a3939;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.calculator-step__label--right {
  right: 0;
  left: auto;
}
.calculator-step__label--left {
  left: 0;
  right: auto;
}
.calculator-step__site-type {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #4a3939;
}
.calculator-step__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calculator-step__options-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  margin-right: 30px;
}
.calculator-step__options-count {
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  white-space: nowrap;
}
.calculator-step__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calculator-step__price-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  margin-right: 30px;
}
.calculator-step__price-value {
  font-weight: 700;
  font-size: 28px;
  line-height: 115%;
  color: var(--accent-color);
  text-align: right;
}
.calculator-step__next-btn {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 20px;
}
.calculator-step__next-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.calculator-step__prev-btn {
  font-size: 16px;
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding: 0;
  margin-right: 70px;
}
.calculator-step__prev-btn:after {
  display: none;
}
.calculator-step__prev-btn .btn__title--mobile {
  display: none;
}
.calculator-step__prev-btn:hover {
  color: var(--coffee-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.calculator-step__prev-btn:hover:after {
  -webkit-transform: none;
          transform: none;
}
.calculator-step__prev-btn:hover .btn__icon path {
  fill: var(--coffee-color);
}
.calculator-step__send-btn {
  color: var(--text-color);
  font-size: 20px;
  white-space: normal;
}
.calculator-step__send-btn:after {
  background-color: var(--accent-color);
}
.calculator-step--site-options .calculator-card:after {
  top: auto;
  right: auto;
  left: 50px;
  bottom: 50px;
}
.calculator-step--site-options .calculator-card__input {
  margin-bottom: 30px;
}
.calculator-step--contacts-data .calculator-step__title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.calculator-step--contacts-data .calculator-step__price {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calculator-step--contacts-data .calculator-step__price-text {
  font-size: 24px;
}
.calculator-step--contacts-data .calculator-step__price-value {
  font-size: 40px;
}
.calculator-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -20px -40px;
}
.calculator-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  width: calc(25% - 40px);
  margin: 0 20px 40px;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  background-image: linear-gradient(133deg, rgba(214, 184, 157, 0.3) 0%, rgba(214, 184, 157, 0.12) 100%);
}
.calculator-card:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid #a9917d;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.calculator-card:after {
  position: absolute;
  content: "";
  width: 37px;
  height: 37px;
  top: 60px;
  right: 50px;
  background-image: url("./img/calculator-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.calculator-card.selected {
  background-image: linear-gradient(133deg, rgba(214, 184, 157, 0.7) 0%, rgba(214, 184, 157, 0.28) 100%);
}
.calculator-card.selected:before {
  opacity: 1;
}
.calculator-card.selected:after {
  opacity: 1;
}
.calculator-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calculator-card__title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.calculator-card__text {
  margin-bottom: 30px;
  font-size: 14px;
}
.calculator-card__price {
  margin-top: auto;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  text-align: right;
  color: #6e9585;
  white-space: nowrap;
}
.calculator-card__input {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calculator-card__label {
  margin-right: 26px;
  font-size: 14px;
}
.calculator-card__count {
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  height: 50px;
  font-weight: 500;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 0 20px;
  color: #fff;
  border: 1px solid #453434;
  width: 100%;
  border-radius: 10em;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.calculator-card__count.input-error {
  -webkit-box-shadow: 0 0 10px var(--accent-color);
          box-shadow: 0 0 10px var(--accent-color);
}
.calculator-card__info {
  top: 0;
  right: 0;
  position: absolute;
  border-radius: 20px;
  padding: 30px;
  width: 340px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--body-color);
  background: linear-gradient(133deg, rgba(214, 184, 157, 0.3) 0%, rgba(214, 184, 157, 0.3) 100%), #e4d6c8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 3;
}
.calculator-card__info-block {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  position: relative;
}
.calculator-card__info-block:hover .calculator-card__info {
  opacity: 1;
  visibility: visible;
}
.calculator-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calculator-fixed-panel {
  display: none;
}

.calculator-contacts {
  border-radius: 20px;
  padding: 80px;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background-image: linear-gradient(133deg, rgba(214, 184, 157, 0.3) 0%, rgba(214, 184, 157, 0.12) 100%);
}
.calculator-contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: -40px;
}
.calculator-contacts .form-input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  text-align: center;
}
.calculator-contacts .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calculator-contacts .form-row .form-input {
  width: calc(50% - 20px);
}
.calculator-contacts .form-label {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.calculator-contacts input[type=text],
.calculator-contacts input[type=tel],
.calculator-contacts input[type=url],
.calculator-contacts input[type=email],
.calculator-contacts input[type=password],
.calculator-contacts input[type=number],
.calculator-contacts textarea {
  width: 100%;
  font-size: 16px;
  height: 72px;
  font-weight: 500;
  text-align: center;
  background-color: #332A25;
  padding: 0 20px;
  color: #fff;
  border: 2px solid #453434;
  width: 100%;
  border-radius: 45px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.calculator-contacts input[type=text]:focus,
.calculator-contacts input[type=tel]:focus,
.calculator-contacts input[type=url]:focus,
.calculator-contacts input[type=email]:focus,
.calculator-contacts input[type=password]:focus,
.calculator-contacts input[type=number]:focus,
.calculator-contacts textarea:focus {
  border-color: #604c4c;
}
.calculator-contacts input:-webkit-autofill,
.calculator-contacts input:-webkit-autofill:hover,
.calculator-contacts input:-webkit-autofill:focus,
.calculator-contacts input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 72px #332A25;
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s, border-color 0.3s;
  transition: background-color 5000s ease-in-out 0s, border-color 0.3s;
  caret-color: #fff;
}
.calculator-contacts textarea {
  resize: none;
  height: 220px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.calculator-contacts .iti__country-list {
  background-color: #332A25;
  border: 2px solid #604c4c;
  border-radius: 45px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.calculator-contacts .iti__country-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.calculator-contacts .jq-selectbox {
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
.calculator-contacts .jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.calculator-contacts .jq-selectbox__select {
  width: 100%;
  height: 72px;
  border-radius: 45px;
  padding: 0 20px;
  border: 2px solid #453434;
  background-image: none;
  background-color: #332A25;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  color: #fff;
}
.calculator-contacts .jq-selectbox__select-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: normal;
}
.calculator-contacts .jq-selectbox__select:hover {
  background-image: none;
  background-color: #332A25;
}
.calculator-contacts .jq-selectbox__select:active {
  background-color: #332A25;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.calculator-contacts .jq-selectbox.focused .jq-selectbox__select {
  background-color: #332A25;
  border-color: #453434;
}
.calculator-contacts .jq-selectbox.focused.opened .jq-selectbox__select {
  background-color: #332A25;
  border-color: #604c4c;
}
.calculator-contacts .jq-selectbox.disabled .jq-selectbox__select {
  background-color: #332A25;
}
.calculator-contacts .jq-selectbox__trigger {
  border: none;
  position: absolute;
  right: 20px;
  top: 30px;
  width: 15px;
  height: 13px;
  border-radius: 0;
  background-color: transparent;
  background-image: url("./img/trigger.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.calculator-contacts .jq-selectbox__trigger-arrow {
  display: none;
}
.calculator-contacts .jq-selectbox__dropdown {
  width: 100%;
  background-color: #332A25;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  border: 2px solid #604c4c;
  border-radius: 45px;
  margin-top: 10px;
  color: #fff;
}
.calculator-contacts .jq-selectbox__dropdown ul {
  max-height: 250px;
}
.calculator-contacts .jq-selectbox__dropdown li {
  font-size: 16px;
  padding: 15px 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  white-space: normal;
  line-height: 1;
}
.calculator-contacts .jq-selectbox__dropdown li.selected {
  background-color: rgba(0, 0, 0, 0.05);
}
.calculator-contacts .jq-selectbox__dropdown li:hover {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.calculator-contacts .jq-selectbox__dropdown li.disabled, .calculator-contacts .jq-selectbox__dropdown li:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.promocode {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.promocode__title {
  font-size: 20px;
  line-height: 140%;
  color: #968473;
}
.promocode__title strong {
  font-weight: 700;
  color: var(--text-color);
}
.promocode__input {
  width: 100%;
  margin-top: 30px;
  width: auto;
  font-size: 16px;
  height: 72px;
  font-weight: 500;
  text-align: center;
  background-color: #100B0B;
  padding: 0 20px;
  color: #fff;
  border: 2px solid #453434;
  width: 530px;
  border-radius: 45px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.promocode__input:focus {
  border-color: #604c4c;
}
.promocode input:-webkit-autofill,
.promocode input:-webkit-autofill:hover,
.promocode input:-webkit-autofill:focus,
.promocode input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 72px #100B0B;
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s, border-color 0.3s;
  transition: background-color 5000s ease-in-out 0s, border-color 0.3s;
  caret-color: #fff;
}
.promocode__text {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
  display: none;
}
.promocode__text.visible {
  display: block;
}
.promocode__text strong {
  font-weight: 700;
}

@media only screen and (max-width: 1599px) {
  .calculator-cards {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
  }
  .calculator-step--site-options .calculator-card:after {
    left: 40px;
    bottom: 40px;
  }
  .calculator-card {
    padding: 40px;
    margin: 0 15px 30px;
    width: calc(25% - 30px);
  }
  .calculator-card:after {
    top: 50px;
    right: 40px;
  }
  .calculator-card__info {
    width: 300px;
  }
}
@media only screen and (max-width: 1399px) {
  .calculator-hero__header {
    width: 450px;
  }
  .calculator-hero__body {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .calculator-card {
    padding: 30px;
  }
  .calculator-card:after {
    top: 40px;
    right: 30px;
  }
  .calculator-card__title {
    font-size: 20px;
  }
  .calculator-card__price {
    font-size: 26px;
  }
  .calculator-card__text {
    font-size: 12px;
  }
  .calculator-card__label {
    font-size: 12px;
  }
  .calculator-step--site-options .calculator-card:after {
    left: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .is-calculator-page .footer {
    margin-top: 100px;
  }
  .calculator {
    margin-top: 100px;
  }
  .calculator-section {
    padding-top: 120px;
  }
  .calculator-hero__header {
    width: 45%;
  }
  .calculator-hero__body {
    width: 45%;
  }
  .calculator-tabs {
    width: 700px;
    margin-bottom: 80px;
  }
  .calculator-tabs:before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
  .calculator-tab {
    height: 64px;
    font-size: 20px;
  }
  .calculator-tab__icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
  }
  .calculator-step__header {
    padding: 50px;
    display: none;
  }
  .calculator-step__header > svg {
    display: none;
  }
  .calculator-step__label {
    display: none;
  }
  .calculator-step__next-btn {
    font-size: 18px;
  }
  .calculator-step__prev-btn {
    font-size: 14px;
    margin-right: 50px;
  }
  .calculator-step__send-btn {
    font-size: 18px;
  }
  .calculator-step__footer {
    margin-top: 60px;
  }
  .calculator-step--site-options .calculator-step__header {
    display: none;
  }
  .calculator-step--contacts-data .calculator-step__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .calculator-step--contacts-data .calculator-step__price-text {
    font-size: 20px;
  }
  .calculator-step--contacts-data .calculator-step__price-value {
    font-size: 32px;
  }
  .calculator-card {
    width: calc(50% - 30px);
  }
  .calculator-card__title {
    font-size: 20px;
  }
  .calculator-card__info {
    width: 420px;
  }
  .calculator-fixed-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    background-color: var(--accent-color);
    color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    font-size: 20px;
    padding: 20px;
  }
  .calculator-fixed-panel .calculator-step__options-count {
    font-size: 24px;
    font-weight: 600;
  }
  .calculator-fixed-panel__item + .calculator-fixed-panel__item {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 2px solid #fff;
  }
  .calculator-fixed-panel__label {
    font-size: 14px;
    margin-right: 10px;
  }
  .calculator-fixed-panel__value {
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
  }
  .calculator-contacts {
    padding: 60px;
  }
  .calculator-contacts .form-label {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .calculator-contacts .form-row .form-input {
    width: calc(50% - 15px);
  }
  .promocode {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .calculator-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .calculator-hero__header {
    width: 100%;
    max-width: 550px;
  }
  .calculator-hero__body {
    width: 100%;
    max-width: 480px;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .calculator-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .calculator-card__info {
    width: 310px;
  }
  .calculator-contacts .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calculator-contacts .form-row .form-input {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .calculator-card {
    width: calc(100% - 30px);
  }
  .calculator-card__info {
    width: 230px;
    font-size: 12px;
    padding: 20px;
  }
  .calculator-step__site-type {
    color: var(--text-color);
    font-size: 20px;
  }
  .calculator-step__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calculator-step__next-btn {
    font-size: 16px;
  }
  .calculator-step__prev-btn {
    font-size: 16px;
    margin-right: 30px;
  }
  .calculator-step__prev-btn .btn__title {
    display: none;
  }
  .calculator-step__prev-btn .btn__title--mobile {
    display: block;
  }
  .calculator-step__send-btn {
    font-size: 16px;
  }
  .calculator-step__send-btn .btn__title span {
    display: none;
  }
  .calculator-step--site-options .calculator-card {
    width: calc(50% - 30px);
    padding: 30px;
  }
  .calculator-step--site-options .calculator-card:after {
    left: 30px;
    bottom: 30px;
  }
  .calculator-step--contacts-data .calculator-step__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .calculator-step--contacts-data .calculator-step__price-text {
    margin-right: 0;
  }
  .calculator-step--contacts-data .calculator-step__price-value {
    margin-top: 20px;
    text-align: center;
  }
  .calculator-contacts {
    padding: 50px;
  }
  .promocode {
    width: 100%;
  }
  .promocode__input {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .calculator {
    margin-top: 80px;
  }
  .calculator-section {
    padding-top: 100px;
  }
  .calculator-hero__body {
    margin-top: 20px;
  }
  .calculator-hero__text {
    font-size: 12px;
    margin-top: 20px;
  }
  .calculator-tabs {
    margin-bottom: 40px;
  }
  .calculator-tabs:before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }
  .calculator-tab {
    font-size: 16px;
    height: 54px;
  }
  .calculator-tab__icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
  .calculator-cards {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
  }
  .calculator-card {
    padding: 30px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    width: calc(100% - 20px);
  }
  .calculator-card:after {
    top: 40px;
    right: 30px;
  }
  .calculator-card__icon {
    margin-bottom: 20px;
  }
  .calculator-card__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .calculator-card__text {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .calculator-card__input {
    margin-bottom: 40px;
  }
  .calculator-card__label {
    font-size: 12px;
  }
  .calculator-card__price {
    font-size: 26px;
  }
  .calculator-card__count {
    font-size: 14px;
  }
  .calculator-card__info {
    width: 50vw;
  }
  .calculator-step__header {
    margin-bottom: 20px;
  }
  .calculator-step__footer {
    margin-top: 40px;
  }
  .calculator-step__title {
    margin-bottom: 30px;
  }
  .calculator-step--site-options .calculator-card {
    width: calc(100% - 20px);
  }
  .calculator-step--site-options .calculator-card__input {
    margin-bottom: 20px;
  }
  .calculator-step--contacts-data .calculator-step__header {
    padding: 30px;
  }
  .calculator-step--contacts-data .calculator-step__price-text {
    font-size: 16px;
  }
  .calculator-step--contacts-data .calculator-step__price-value {
    font-size: 24px;
  }
  .calculator-contacts {
    padding-left: 30px;
    padding-right: 30px;
  }
  .calculator-contacts-block {
    margin-top: 40px;
  }
  .calculator-contacts .form-input {
    margin-bottom: 30px;
  }
  .calculator-contacts .form-label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .calculator-contacts input[type=text],
  .calculator-contacts input[type=tel],
  .calculator-contacts input[type=url],
  .calculator-contacts input[type=email],
  .calculator-contacts input[type=password],
  .calculator-contacts input[type=number],
  .calculator-contacts textarea {
    font-size: 14px;
    height: 60px;
    border-radius: 30px;
  }
  .calculator-contacts textarea {
    height: 220px;
  }
  .calculator-contacts .jq-selectbox__select {
    height: 60px;
  }
  .calculator-contacts .jq-selectbox__select-text {
    font-size: 14px;
  }
  .calculator-contacts .jq-selectbox__trigger {
    top: 24px;
  }
  .calculator-contacts .jq-selectbox__dropdown li {
    font-size: 14px;
  }
  .calculator-contacts .iti__country-list li {
    font-size: 14px;
  }
  .calculator-contacts .iti .iti__selected-flag {
    font-size: 14px;
  }
  .promocode {
    margin-top: 30px;
  }
  .promocode__title {
    font-size: 16px;
  }
  .promocode__input {
    margin-top: 15px;
    font-size: 14px;
    height: 60px;
  }
  .calculator-fixed-panel {
    padding: 15px 0;
  }
  .calculator-fixed-panel .calculator-step__options-count {
    font-size: 20px;
  }
  .calculator-fixed-panel__item + .calculator-fixed-panel__item {
    margin-left: 10px;
    padding-left: 10px;
  }
  .calculator-fixed-panel__label {
    font-size: 12px;
    margin-right: 0;
  }
  .calculator-fixed-panel__value {
    font-size: 18px;
  }
}