.container {
  width: 100%;
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}
@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 {
  --black: #324B57;
  --text-color: var(--black);
  --accent-color: #C6E320;
  --border-color: #CCCFE2;
  --bg-color: #F4F5F8;
  --brs: 20px;
}

body {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  min-width: 320px;
  color: var(--text-color);
  font-weight: 400;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  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;
}

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

.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;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 110px;
}

.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}
.format-text-p b, .format-text-p strong {
  font-weight: 700;
}

.section {
  margin: 160px 0;
  overflow: hidden;
}
.section-title {
  font-size: 36px;
  margin: 0;
  font-weight: 600;
}
.section-text {
  font-size: 16px;
  line-height: 150%;
  color: #6a6e81;
  max-width: 360px;
  margin-top: 30px;
}

.page-section {
  margin-top: 70px;
}

.btn {
  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-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  padding: 20px 50px;
  color: #fff;
  background-color: var(--black);
  position: relative;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn:hover {
  background-color: #678492;
}
.btn__icon {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn__title + .btn__icon {
  margin-right: 0;
  margin-left: 10px;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn--accent {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-weight: 500;
  -webkit-box-shadow: 0 9px 14px 0 rgba(191, 215, 55, 0.3);
          box-shadow: 0 9px 14px 0 rgba(191, 215, 55, 0.3);
}
.btn--accent:hover {
  background-color: #DEFE30;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn--outline {
  border: 1px solid #848DB1;
  background-color: transparent;
  font-weight: 400;
  color: var(--text-color);
}
.btn--outline:hover {
  color: #fff;
  background-color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover .btn__icon path {
  stroke: #fff;
}
.btn--sm {
  padding: 15px 30px;
}

.back,
.next {
  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: transparent;
  border: 1px solid #848db1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px;
  width: 62px;
  height: 62px;
  cursor: pointer;
  -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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.back:focus-visible,
.next:focus-visible {
  outline: none;
}
.back.swiper-button-disabled,
.next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.back:active,
.next:active {
  background-color: var(--black);
  border-color: var(--black);
}
.back:active svg path,
.next:active svg path {
  stroke: #fff;
}

@media (hover) {
  .back:hover,
  .next:hover {
    background-color: var(--black);
    border-color: var(--black);
  }
  .back:hover svg path,
  .next:hover svg path {
    stroke: #fff;
  }
  .wow {
    visibility: hidden;
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .main {
    margin-top: 80px;
  }
  .section {
    margin: 120px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .page-section {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 575px) {
  :root {
    --brs: 15px;
  }
  body {
    font-size: 14px;
  }
  .section {
    margin: 80px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .section-text {
    font-size: 14px;
  }
  .page-section {
    margin-top: 50px;
  }
  .btn {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .back,
  .next {
    width: 52px;
    height: 52px;
  }
}
.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

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

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

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

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeInScaleOpacity {
  -webkit-animation-name: fadeInScaleOpacity;
          animation-name: fadeInScaleOpacity;
}

.page-content {
  font-size: 16px;
  font-weight: 400;
  color: #6A6E81;
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child {
  margin-bottom: 0;
}
.page-content p {
  margin: 25px 0;
  line-height: 1.5;
}
.page-content b, .page-content strong {
  font-weight: 600;
}
.page-content a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.page-content a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.page-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 25px 0;
}
.page-content ul li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
}
.page-content ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  border-radius: 50%;
  background-image: url("./img/check-icon.svg");
  background-position: center;
  background-size: 8px;
  background-repeat: no-repeat;
}
.page-content ul li + li {
  margin-top: 20px;
}

@media only screen and (max-width: 575px) {
  .page-content {
    font-size: 14px;
  }
  .page-content ul li {
    font-size: 13px;
  }
  .page-content ul li:before {
    top: 0px;
  }
}
.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: 100%;
}

.language {
  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;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  width: 42px;
  height: 50px;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}
.language__title {
  font-size: 14px;
  font-weight: 500;
  color: #9C9FB5;
}
.language:hover {
  background-color: var(--black);
  border-color: var(--black);
}
.language:hover .language__title {
  color: #fff;
}

.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: 20px;
  background-color: transparent;
}
.hamburger .hamburger-box {
  width: 40px;
  height: 20px;
}
.hamburger .hamburger-box .hamburger-inner,
.hamburger .hamburger-box .hamburger-inner::after,
.hamburger .hamburger-box .hamburger-inner::before {
  background-color: var(--black);
  height: 3px;
  width: 40px;
  border-radius: 9999px;
}
.hamburger .hamburger-box .hamburger-inner::before {
  top: 9px;
}
.hamburger .hamburger-box .hamburger-inner::after {
  top: 18px;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner {
  top: -2px;
}
.hamburger.is-active .hamburger-inner:after {
  width: 40px;
  top: 20px;
}

.header {
  z-index: 20;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  border-bottom: 1px solid var(--border-color);
  background-color: #fff;
  height: 110px;
}
.header.is-home {
  border-color: transparent;
}
.header.fixed {
  position: fixed;
  height: 80px;
  border-color: var(--border-color);
}
.header.fixed .header-block {
  height: 80px;
}
.header.fixed .menu {
  margin-left: 40px;
}
.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: 110px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  position: relative;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__cut-logo {
  display: none;
}
.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: 40px;
}
.header-btns .get-discount {
  display: none;
}
.header__language {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  flex-shrink: 0;
  margin-left: 40px;
}
.header-phone {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
  white-space: nowrap;
  position: relative;
}
.header-phone:after {
  position: absolute;
  left: 0;
  width: 0;
  content: "";
  bottom: 0;
  height: 1px;
  background-color: var(--text-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0.3s;
  transition: opacity 0.3s, width 0.3s;
}
.header-phone:hover:after {
  opacity: 1;
  width: 100%;
}
.header__hamburger {
  display: none;
}

.menu {
  margin-left: auto;
  margin-right: auto;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.menu__link {
  font-size: 16px;
  text-decoration: none;
  color: #9497AF;
  line-height: 1.5;
  position: relative;
  padding: 5px 20px;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.menu__link:hover {
  background-color: var(--bg-color);
  color: var(--black);
}
.menu__item.current_page_item .menu__link {
  background-color: var(--bg-color);
  color: var(--black);
}
.menu__hamburger {
  display: none;
}

@media only screen and (max-width: 1329px) {
  .header-phone {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .language {
    width: 42px;
    height: 42px;
  }
  .overlay {
    background-color: var(--black);
    opacity: 0;
    -webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
    transition: opacity 0.2s linear, visibility 0.2s linear;
    visibility: hidden;
    position: fixed;
    top: 0;
    height: 100dvh;
    left: 0;
    right: 0;
    z-index: 10;
    cursor: pointer;
  }
  .overlay.visible {
    opacity: 0.75;
    visibility: visible;
  }
  .header {
    height: 80px;
    position: fixed;
  }
  .header.fixed {
    height: 80px;
  }
  .header.fixed .header-block {
    height: 80px;
  }
  .header.opened .menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header.opened .menu__list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header-block {
    height: 80px;
  }
  .header__language {
    margin-left: 20px;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 30px;
  }
  .header-phone {
    margin-left: auto;
    display: block;
  }
  .header-btns {
    margin-left: 30px;
  }
  .menu {
    margin: 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: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    overflow: hidden;
    margin: 0;
    top: 0;
    width: 360px;
    right: 0;
    left: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    height: 100dvh;
    padding: 80px 30px 0px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--black);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 11;
  }
  .menu__container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 40px;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: right;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    gap: 30px;
  }
  .menu__link {
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: 600;
  }
  .menu__link:hover {
    background-color: transparent;
    color: var(--accent-color);
  }
  .menu__item.current_page_item .menu__link {
    background-color: transparent;
    color: var(--accent-color);
  }
  .menu__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    z-index: 12;
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .menu__hamburger .hamburger-box .hamburger-inner,
  .menu__hamburger .hamburger-box .hamburger-inner::after,
  .menu__hamburger .hamburger-box .hamburger-inner::before {
    background-color: #fff;
  }
}
@media only screen and (min-width: 768px) {
  .header.fixed .header__logo {
    display: none;
  }
  .header.fixed .header__cut-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header.fixed .header__language {
    display: none;
  }
  .header.fixed .header-btns .get-discount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 59px;
  }
  .header__logo img {
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .header-phone {
    display: none;
  }
  .header-btns {
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header__language {
    margin-right: auto;
  }
  .header__logo {
    width: 160px;
  }
  .header-btns {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header__logo {
    width: 110px;
  }
  .menu {
    width: 100vw;
  }
  .menu__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
*::-webkit-input-placeholder {
  font-size: 16px;
  color: #9C9FB5;
  font-weight: 400;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::-moz-placeholder {
  font-size: 16px;
  color: #9C9FB5;
  font-weight: 400;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*:-ms-input-placeholder {
  font-size: 16px;
  color: #9C9FB5;
  font-weight: 400;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::-ms-input-placeholder {
  font-size: 16px;
  color: #9C9FB5;
  font-weight: 400;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::placeholder {
  font-size: 16px;
  color: #9C9FB5;
  font-weight: 400;
  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 {
  position: relative;
  font-size: 16px;
  height: 60px;
  font-weight: 400;
  text-align: left;
  background-color: #fff;
  padding: 0 25px;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 10px;
  -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 textarea {
  resize: none;
  padding: 20px 25px;
  height: 200px;
}
.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 60px #FFF;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form .wpcf7-form-control-wrap {
  display: block;
}
.form-wrap {
  padding: 40px;
  border-radius: 15px;
  background-color: #fff;
}
.form-wrap .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.form-wrap .form-row label {
  width: 25%;
}
.form-wrap .form-row .form__btn {
  width: 25%;
  padding-left: 20px;
  padding-right: 20px;
  height: 60px;
}

.iti {
  width: 100%;
  position: relative;
}
.iti .iti__selected-flag {
  outline: none;
  border-radius: 10px 0 0 10px;
  color: var(--text-color);
  font-size: 16px;
}
.iti__arrow {
  border-top: 4px solid var(--text-color);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid var(--text-color);
}
.iti__country-list {
  max-height: 240px;
  z-index: 11;
  margin: 0;
  margin-top: 10px;
  border: 1px solid var(--border-color);
  white-space: normal;
  color: var(--text-color);
  border-radius: 0;
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.iti__country-list li {
  color: var(--text-color);
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  width: calc(100% - 30px);
}

.jq-selectbox {
  width: 100%;
  font-family: "Geist", sans-serif;
}
.jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.jq-selectbox.focused .jq-selectbox__select {
  border-color: var(--border-color);
}
.jq-selectbox__select {
  width: 100%;
  height: 60px;
  padding: 0 80px 0 25px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-image: none;
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  line-height: 1;
}
.jq-selectbox__select-text {
  font-size: 16px;
  font-weight: 400;
  font-family: "Geist", sans-serif;
  color: var(--text-color);
  height: 100%;
  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;
  white-space: normal;
}
.jq-selectbox__select:hover {
  background-image: none;
  background-color: #FFF;
}
.jq-selectbox__select:active {
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.jq-selectbox.focused.opened .jq-selectbox__select {
  background-color: #FFF;
}
.jq-selectbox.disabled .jq-selectbox__select {
  background-color: #FFF;
}
.jq-selectbox__trigger {
  border: none;
  position: absolute;
  right: 5px;
  top: 4px;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  background-color: #F4F5F8;
  background-image: url("./img/trigger.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}
.jq-selectbox__trigger-arrow {
  display: none;
}
.jq-selectbox__dropdown {
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  overflow: hidden;
  padding: 0;
  margin-top: 10px;
  border: 1px solid var(--border-color);
  border-radius: 0px;
}
.jq-selectbox__dropdown ul {
  max-height: 240px;
}
.jq-selectbox__dropdown li {
  font-size: 16px;
  padding: 10px 25px;
  font-weight: 400;
  font-family: "Geist", sans-serif;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  white-space: normal;
  color: var(--text-color);
  line-height: 1;
}
.jq-selectbox__dropdown li.selected {
  color: var(--text-color);
  background-color: rgba(0, 0, 0, 0.05);
}
.jq-selectbox__dropdown li:hover {
  color: var(--text-color);
  background-color: rgba(0, 0, 0, 0.05);
}
.jq-selectbox__dropdown li.disabled, .jq-selectbox__dropdown li:disabled {
  pointer-events: none;
  color: #9C9FB5;
}

@media only screen and (max-width: 1199px) {
  .form-wrap .form-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form-wrap .form-row label,
  .form-wrap .form-row .form__btn {
    width: calc(50% - 5px);
  }
}
@media only screen and (max-width: 767px) {
  .form-wrap {
    padding: 30px;
  }
  .form-wrap .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-wrap .form-row label,
  .form-wrap .form-row .form__btn {
    width: 100%;
  }
  .form-wrap .form-row .form__btn {
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  *::-webkit-input-placeholder {
    font-size: 13px;
  }
  *::-moz-placeholder {
    font-size: 13px;
  }
  *:-ms-input-placeholder {
    font-size: 13px;
  }
  *::-ms-input-placeholder {
    font-size: 13px;
  }
  *::placeholder {
    font-size: 13px;
  }
  .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 {
    padding-left: 15px;
    padding-right: 15px;
    height: 50px;
    font-size: 13px;
  }
  .form textarea {
    height: 200px;
  }
  .iti .iti__selected-flag {
    font-size: 13px;
  }
  .jq-selectbox__select {
    padding: 0 50px 0 15px;
    height: 50px;
  }
  .jq-selectbox__select-text {
    font-size: 13px;
  }
  .jq-selectbox__dropdown li {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
  }
  .jq-selectbox__trigger {
    right: 5px;
    top: 5px;
    width: 38px;
    height: 38px;
    background-size: 12px;
  }
  .form-wrap {
    padding: 20px;
  }
}
.fancybox-bg {
  background-color: var(--black);
}

.fancybox-is-open .fancybox-bg {
  background-color: var(--black);
  opacity: 0.75;
}

.mfp-bg {
  background-color: var(--black);
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px 0 rgba(50, 75, 87, 0.2);
          box-shadow: 0 0 40px 0 rgba(50, 75, 87, 0.2);
  overflow: hidden;
  border-radius: var(--brs);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  margin: 20px auto;
  color: var(--black);
  position: relative;
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  z-index: 3;
  top: 20px;
  right: 20px;
  border-radius: 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;
}
.popup__title {
  font-weight: 600;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.popup__text {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.callback-popup {
  overflow: visible;
}
.callback-popup .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
.callback-popup .form-row label {
  width: 100%;
}
.callback-popup .form-row label .form__btn {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.thanks-popup {
  text-align: center;
}
.thanks-popup__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 575px) {
  .popup {
    max-width: calc(100% - 40px);
    padding: 50px 30px 30px;
  }
  .popup__title {
    font-size: 20px;
  }
  .popup__title br {
    display: none;
  }
  .thanks-popup {
    padding: 30px;
  }
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-radius: var(--brs);
  overflow: hidden;
}
.hero-bg:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.3;
  z-index: -1;
}
.hero-block {
  position: relative;
  padding: 70px;
  border-radius: var(--brs);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero-form {
  width: 100%;
  margin-top: 130px;
}
.hero-info {
  max-width: 600px;
}
.hero__title {
  margin: 0;
  font-weight: 600;
  font-size: 64px;
  color: #fff;
}
.hero__text {
  font-size: 32px;
  line-height: 150%;
  color: #fff;
  margin-top: 30px;
}
.hero__text strong,
.hero__text b {
  font-weight: 800;
}

.tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 580px;
  margin-right: -10px;
}

.tizer {
  backdrop-filter: blur(10px);
  background: rgba(244, 245, 248, 0.85);
  border-radius: var(--brs);
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - 10px);
}
.tizer__value {
  font-weight: 700;
  font-size: 48px;
}
.tizer__value img {
  width: auto;
  height: 52px;
  margin-bottom: -10px;
}
.tizer__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 150%;
}

@media only screen and (max-width: 1599px) {
  .hero-info {
    max-width: 45%;
  }
  .hero__title {
    font-size: 60px;
  }
  .hero__text {
    font-size: 30px;
  }
  .tizers {
    max-width: 45%;
  }
}
@media only screen and (min-width: 1300px) and (max-height: 800px) {
  .hero-form {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1299px) {
  .hero__text {
    font-size: 30px;
  }
  .hero-form {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-block {
    padding: 60px;
  }
  .hero__title {
    font-size: 50px;
  }
  .hero__text {
    font-size: 24px;
  }
  .tizer {
    padding: 30px;
  }
  .tizer__value {
    font-size: 42px;
  }
  .tizer__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px;
  }
  .hero__text {
    margin-top: 20px;
  }
  .hero-info {
    max-width: 100%;
  }
  .hero-form {
    margin-top: 50px;
  }
  .tizers {
    width: calc(100% + 10px);
    max-width: calc(100% + 10px);
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-block {
    padding: 40px;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-block {
    padding: 30px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__text {
    font-size: 16px;
    margin-top: 10px;
  }
  .hero-form {
    margin-top: 30px;
  }
  .tizers {
    margin-top: 30px;
  }
  .tizer {
    padding: 10px 15px;
  }
  .tizer__value {
    font-size: 24px;
  }
  .tizer__value img {
    height: 31px;
  }
  .tizer__text {
    font-size: 12px;
  }
}
.trigger {
  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;
  gap: 50px;
}
.trigger__title {
  font-size: 80px;
}
.trigger__title span {
  color: var(--accent-color);
}
.trigger-info {
  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;
  width: 375px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 30px;
}
.trigger-info .section-text {
  margin-top: 0;
}

@media only screen and (max-width: 1599px) {
  .trigger__title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .trigger__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .trigger {
    -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;
    gap: 30px;
  }
  .trigger__title {
    font-size: 50px;
  }
  .trigger-info {
    width: auto;
  }
}
@media only screen and (max-width: 575px) {
  .trigger__title {
    font-size: 40px;
  }
}
.services-header {
  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;
}
.services-btns {
  margin-right: 160px;
  margin-left: 30px;
}
.services-slider {
  margin-top: 30px;
  overflow: visible;
  position: relative;
}
.services-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: 30px;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  margin-top: -30px;
  right: 0;
  z-index: 2;
}

.service {
  padding: 40px;
  border-radius: var(--brs);
  height: auto;
  background-color: var(--bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-image {
  aspect-ratio: 1.95;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.service-image:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.2;
}
.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-title {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}
.service-list {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.service-list li {
  font-size: 15px;
  padding-left: 26px;
  position: relative;
}
.service-list li:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
  background-image: url("./img/check-icon.svg");
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}
.service__btn {
  margin-top: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.services {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -10px;
}
.services .service {
  width: calc(33.33% - 10px);
}

@media only screen and (max-width: 1599px) {
  .service {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .services-header {
    -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;
  }
  .services-btns {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .services .service {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .services .service {
    width: calc(100% - 10px);
  }
}
@media only screen and (max-width: 575px) {
  .services-slider {
    padding-bottom: 80px;
  }
  .services-slider__navigation {
    margin-left: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
    margin-top: 0;
    left: 0;
    right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .service-title {
    font-size: 18px;
  }
  .service-list li {
    font-size: 14px;
  }
}
.projects {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
}
.projects-header {
  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;
}
.projects-header .section-text {
  max-width: 100%;
}
.projects-btns {
  margin-left: 30px;
}
.projects-btns.hidden-desktop {
  display: none;
}

.project {
  width: calc(50% - 10px);
  border-radius: var(--brs);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 50px;
  color: #fff;
  min-height: 450px;
  position: relative;
}
.project:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-155deg, rgba(50, 75, 87, 0) 0%, #324b57 100%);
  pointer-events: none;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.project:hover:after {
  opacity: 1;
}
.project__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.project__meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
}
.project__meta-item img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.project__content {
  max-width: 480px;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.project__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}
.project__text {
  line-height: 150%;
  margin-top: 20px;
}

.page-section .projects {
  margin-top: 0;
}

.projects-tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
  background-color: var(--bg-color);
}
.projects-tabs-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--accent-color);
  width: 250px;
  z-index: 1;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.projects-tab {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 2;
  height: 70px;
  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;
  min-width: 250px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
}

@media only screen and (max-width: 1199px) {
  .projects-header {
    -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;
  }
  .projects-btns {
    margin-top: 30px;
    margin-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .projects-btns.hidden-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .projects-btns.hidden-mobile {
    display: none;
  }
  .project {
    padding-left: 40px;
    padding-right: 40px;
  }
  .projects-tabs {
    margin-bottom: 40px;
    width: 100%;
  }
  .projects-tab {
    min-width: auto;
    width: 25%;
    height: 60px;
    padding: 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .projects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .project {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .projects-btns .btn {
    width: 100%;
  }
  .project {
    padding: 30px;
    min-height: 400px;
  }
  .project__meta-item {
    font-size: 14px;
  }
  .project__meta-item img {
    width: 14px;
    height: 14px;
  }
  .project__title {
    font-size: 18px;
  }
  .projects-tabs {
    margin-bottom: 30px;
  }
  .projects-tab {
    height: 50px;
    font-size: 14px;
  }
}
.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.advantages-column {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.advantages-column:nth-child(1) .advantage:nth-child(2n+1) {
  background-color: var(--black);
  color: #fff;
}
.advantages-column:nth-child(3) .advantage:nth-child(2n) {
  background-color: var(--black);
  color: #fff;
}
.advantages-info {
  text-align: center;
  padding: 0 50px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.advantages-info .section-text {
  max-width: 100%;
}

.advantage {
  background-color: var(--bg-color);
  border-radius: var(--brs);
  padding: 30px 40px;
  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;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.advantage__icon {
  width: 47px;
  height: 47px;
}
.advantage__title {
  font-weight: 700;
  font-size: 20px;
}
.advantage__text {
  line-height: 150%;
}

@media only screen and (max-width: 1199px) {
  .advantage {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advantages-column {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 10px;
  }
  .advantages-column:nth-child(1) {
    margin-top: 30px;
  }
  .advantages-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .advantages-info .section-text {
    max-width: 360px;
  }
}
@media only screen and (max-width: 575px) {
  .advantages-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advantages-column:nth-child(1) .advantage:nth-child(2n+1) {
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  .advantages-column:nth-child(1) .advantage:nth-child(2n) {
    background-color: var(--black);
    color: #fff;
  }
  .advantage__title {
    font-size: 18px;
  }
}
.discount {
  padding: 70px;
  position: relative;
  color: #fff;
}
.discount .section-title {
  margin-bottom: 35px;
}
.discount .section-title span {
  font-size: 64px;
  display: block;
}
.discount-bg {
  border-radius: var(--brs);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.discount-bg:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.5;
  border-radius: var(--brs);
  overflow: hidden;
}
.discount-section {
  overflow: visible;
}

@media only screen and (max-width: 1599px) {
  .discount {
    padding: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .discount {
    padding: 50px;
  }
  .discount .section-title span {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .discount {
    padding: 40px;
  }
  .discount .section-title span {
    font-size: 36px;
    color: var(--accent-color);
  }
}
@media only screen and (max-width: 575px) {
  .discount {
    padding: 40px 30px;
  }
  .discount .section-title span {
    font-size: 30px;
  }
}
.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  gap: 10px;
  margin-top: 30px;
}

.step {
  border-radius: var(--brs);
  background-color: var(--black);
  width: calc(33.33% - 10px);
  padding: 30px 40px;
  position: relative;
  min-height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom right;
  overflow: hidden;
}
.step__title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.step__number {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-weight: 700;
  font-size: 64px;
  color: var(--accent-color);
  line-height: 1;
}
.step__term {
  font-size: 12px;
  text-align: right;
  color: #85a0ad;
  text-align: right;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 50%;
  margin-left: 50px;
  margin-top: 5px;
}
.step__term span {
  color: #c6e320;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1599px) {
  .step {
    padding-left: 30px;
    padding-right: 30px;
    background-size: 70%;
  }
  .step__number {
    left: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .step {
    width: calc(50% - 10px);
    background-size: 70%;
  }
  .step__term {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .step {
    width: calc(100% - 10px);
    background-size: auto;
  }
  .step__term {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .step {
    width: calc(100% - 10px);
    background-size: 70%;
    min-height: 230px;
  }
  .step__title {
    font-size: 18px;
  }
  .step__term {
    margin-left: 30px;
  }
}
.payment {
  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;
  gap: 10px;
  margin-top: 30px;
  margin-right: -10px;
}
.payment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: var(--brs);
  background-color: var(--bg-color);
  width: calc(25% - 10px);
  padding: 30px 40px;
}
.payment-item__title {
  font-weight: 600;
  font-size: 20px;
}
.payment-item__text {
  line-height: 150%;
  margin-top: 20px;
  margin-bottom: 30px;
}
.payment-item__icon {
  width: 57px;
  height: 57px;
  margin-top: auto;
}

@media only screen and (max-width: 1199px) {
  .payment-item {
    width: calc(50% - 10px);
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .payment-item {
    width: calc(100% - 10px);
  }
  .payment-item__title {
    font-size: 18px;
  }
  .payment-item__text {
    margin-bottom: 20px;
  }
}
.offer {
  padding: 70px;
  position: relative;
  color: #fff;
}
.offer-bg {
  border-radius: var(--brs);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.offer-bg:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.5;
  border-radius: var(--brs);
  overflow: hidden;
}
.offer-block {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.offer-item {
  width: 25%;
  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;
  padding: 26px 40px;
  background-color: rgba(244, 245, 248, 0.85);
  border-radius: 10px;
  color: var(--text-color);
  backdrop-filter: blur(10px);
}
.offer-item__icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  border-radius: 50%;
  background-image: url("./img/check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.offer-item__text {
  line-height: 1.5;
}
.offer__btn {
  width: 25%;
  padding: 26px 40px;
}

@media only screen and (max-width: 1599px) {
  .offer {
    padding: 60px;
  }
  .offer-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .offer-item__text {
    font-size: 14px;
  }
  .offer__btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .offer {
    padding: 50px;
  }
  .offer-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -10px;
  }
  .offer-item {
    padding-left: 40px;
    padding-right: 40px;
    width: calc(50% - 10px);
  }
  .offer-item__text {
    font-size: 16px;
  }
  .offer__btn {
    padding-left: 40px;
    padding-right: 40px;
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .offer {
    padding: 40px;
  }
  .offer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .offer-item, .offer__btn {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .offer {
    padding: 40px 30px;
  }
  .offer-item {
    padding-left: 30px;
    padding-right: 30px;
  }
  .offer-item__text {
    font-size: 14px;
  }
}
.faq-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}
.faq-image {
  border-radius: var(--brs);
  overflow: hidden;
  position: relative;
  min-height: 100%;
  width: 40%;
}
.faq-image:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.3;
}
.faq-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 50%;
}
.faq-item {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
.faq-item.is-open .faq-item__body {
  max-height: 100vh;
}
.faq-item.is-open .faq-item__content {
  opacity: 1;
  padding-bottom: 25px;
}
.faq-item.is-open .faq-item__toggle {
  -webkit-transform: scale(-1, -1) translateY(50%);
          transform: scale(-1, -1) translateY(50%);
  background-color: var(--bg-color);
}
.faq-item.is-open .faq-item__toggle svg path {
  stroke: var(--black);
}
.faq-item__header {
  padding: 10px 90px 10px 25px;
  min-height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
.faq-item__title {
  font-weight: 600;
  font-size: 20px;
}
.faq-item__toggle {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  border-radius: 7px;
  width: 64px;
  height: 64px;
  background-color: var(--black);
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq-item__body {
  max-height: 0;
  padding: 0 25px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
.faq-item__content {
  opacity: 0;
  padding-top: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 16px;
  line-height: 1.5;
  color: #6A6E81;
}

@media only screen and (max-width: 1199px) {
  .faq-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq-items {
    width: 100%;
  }
  .faq-image {
    width: 100%;
    margin-top: 30px;
    height: 50vw !important;
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .faq-item__header {
    padding-left: 20px;
    padding-right: 70px;
    min-height: 60px;
  }
  .faq-item__title {
    font-size: 16px;
  }
  .faq-item__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-item__content {
    font-size: 14px;
  }
  .faq-item__toggle {
    width: 50px;
    height: 50px;
  }
}
.footer {
  border-top: 1px solid var(--border-color);
  padding: 100px 0;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.footer__logo {
  width: 160px;
}
.footer-phone {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  white-space: nowrap;
  position: relative;
}
.footer-phone:after {
  position: absolute;
  left: 0;
  width: 0;
  content: "";
  bottom: 0;
  height: 1px;
  background-color: var(--text-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0.3s;
  transition: opacity 0.3s, width 0.3s;
}
.footer-phone:hover:after {
  opacity: 1;
  width: 100%;
}
.footer-menu {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.footer-menu a {
  font-size: 16px;
  text-decoration: none;
  color: var(--text-color);
  position: relative;
}
.footer-menu a:after {
  position: absolute;
  left: 0;
  width: 0;
  content: "";
  bottom: 0;
  height: 1px;
  background-color: var(--text-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0.3s;
  transition: opacity 0.3s, width 0.3s;
}
.footer-menu a:hover:after {
  opacity: 1;
  width: 100%;
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.footer-copy {
  font-size: 16px;
  line-height: 1.4;
  color: #31334B;
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 60px;
}
.footer-links a {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border-color);
  color: #31334B;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-links a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

@media only screen and (max-width: 1299px) {
  .footer-top {
    gap: 40px;
  }
  .footer-bottom {
    gap: 50px;
  }
  .footer-links {
    gap: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer {
    padding: 80px 0;
  }
  .footer-block {
    gap: 80px;
  }
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
  .footer-menu {
    margin-left: 0;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0px;
  }
  .footer-links {
    gap: 40px;
    margin-left: 0;
  }
  .footer-copy {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom {
    gap: 30px 0px;
  }
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 60px 0;
  }
  .footer-block {
    gap: 60px;
  }
  .footer-top {
    gap: 30px 0;
  }
  .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
  }
  .footer-copy {
    font-size: 14px;
  }
}
.quiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.quiz-form {
  width: 60%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 100px;
  position: relative;
  z-index: 2;
}
.quiz-popup {
  max-width: 1520px;
  padding: 0;
}
.quiz-popup .popup__close {
  width: 42px;
  height: 42px;
  top: 70px;
  right: 100px;
}
.quiz__image {
  width: 100%;
  position: relative;
  background-color: #ccc;
}
.quiz__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.quiz__image:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.3;
}
.quiz__counter {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  color: #c4c6cd;
}
.quiz__progress {
  height: 50px;
  background: transparent;
  border-radius: 9999px;
  margin-bottom: 50px;
  overflow: hidden;
  border: 1px solid var(--accent-color);
  position: relative;
}
.quiz__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-color);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.quiz__progress-label {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
}
.quiz__progress-value {
  margin-left: 5px;
  font-weight: 800;
}
.quiz__steps {
  position: relative;
}
.quiz__step {
  display: none;
}
.quiz__step.active {
  display: block;
}
.quiz__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 50px;
}
.quiz__option {
  cursor: pointer;
}
.quiz__option input {
  display: none;
}
.quiz__option span {
  display: block;
  padding: 0 100px 0 40px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  background: var(--bg-color);
  border-radius: 10px;
  text-align: left;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  border: 2px solid transparent;
  position: relative;
}
.quiz__option span:after {
  position: absolute;
  content: "";
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  background-image: url("./img/check-icon.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.quiz__option input:checked + span {
  border-color: var(--accent-color);
  -webkit-box-shadow: 0 6px 14px 0 rgba(197, 227, 32, 0.15);
          box-shadow: 0 6px 14px 0 rgba(197, 227, 32, 0.15);
}
.quiz__option input:checked + span:after {
  opacity: 1;
}
.quiz__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin-top: 50px;
}
.quiz__prev:disabled {
  display: none;
}
.quiz__prev .btn__icon, .quiz__next .btn__icon {
  margin-right: 20px;
}
.quiz__prev .btn__title + .btn__icon, .quiz__next .btn__title + .btn__icon {
  margin-right: 0;
  margin-left: 20px;
}
.quiz__total {
  margin-top: 40px;
}
.quiz__total-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.quiz__total-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
  font-size: 20px;
}
.quiz__total-item strong {
  margin-top: 10px;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent-color);
}
.quiz__send-phone {
  margin-top: 50px;
}
.quiz__send-phone-text {
  font-weight: 500;
  font-size: 15px;
  max-width: 455px;
}
.quiz__send-phone-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.quiz__input {
  font-size: 16px;
  height: 60px;
  font-weight: 400;
  text-align: left;
  background-color: transparent;
  padding: 0 25px;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.quiz__input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.quiz__input:focus::-moz-placeholder {
  opacity: 0;
}
.quiz__input:focus:-ms-input-placeholder {
  opacity: 0;
}
.quiz__input:focus::-ms-input-placeholder {
  opacity: 0;
}
.quiz__input:focus::placeholder {
  opacity: 0;
}
.quiz__back-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.quiz__back-link:hover {
  color: #000;
}

.close-quiz-popup {
  max-width: 620px;
  padding: 100px;
}
.close-quiz__text {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.close-quiz__text strong {
  font-weight: 800;
}
.close-quiz__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.close-quiz__btns .btn {
  white-space: nowrap;
}

@media only screen and (max-width: 1599px) {
  .quiz-form {
    padding: 70px;
  }
  .quiz-popup {
    max-width: calc(100% - 40px);
  }
  .quiz-popup .popup__close {
    width: 42px;
    height: 42px;
    top: 30px;
    right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .quiz-form {
    padding: 50px;
  }
  .quiz-popup .popup__close {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
  }
  .quiz__option span {
    padding: 0 70px 0 30px;
  }
  .quiz__option span:after {
    right: 30px;
  }
  .close-quiz-popup {
    padding: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .quiz-form {
    width: 100%;
    padding-top: 60px;
  }
  .quiz-image {
    display: none;
  }
  .quiz-popup .popup__close path {
    fill: var(--black);
  }
}
@media only screen and (max-width: 767px) {
  .close-quiz-popup {
    padding: 50px;
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 575px) {
  .quiz-form {
    padding: 60px 30px 40px;
  }
  .quiz__counter {
    font-size: 16px;
  }
  .quiz__progress {
    height: 40px;
    margin-bottom: 30px;
  }
  .quiz__progress-label {
    font-size: 14px;
  }
  .quiz__options {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
  .quiz__option span {
    height: 50px;
    padding-left: 20px;
    padding-right: 60px;
  }
  .quiz__option span:after {
    right: 20px;
  }
  .quiz__nav {
    margin-top: 30px;
  }
  .quiz__nav .btn {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
  .quiz__nav .btn .btn__icon {
    display: none;
  }
  .quiz__total {
    margin-top: 30px;
  }
  .quiz__total-items {
    gap: 15px;
  }
  .quiz__total-item {
    font-size: 16px;
  }
  .quiz__total-item strong {
    margin-top: 0px;
    font-size: 30px;
  }
  .quiz__send-phone {
    margin-top: 30px;
  }
  .quiz__send-phone-text {
    font-size: 13px;
  }
  .quiz__send-phone-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .quiz__input {
    font-size: 13px;
    height: 50px;
    padding: 0 15px;
  }
  .quiz__back-link {
    margin-top: 20px;
    font-size: 12px;
  }
  .close-quiz-popup {
    padding: 40px 30px;
  }
  .close-quiz__text {
    font-size: 16px;
  }
  .close-quiz__btns {
    margin-top: 30px;
  }
  .close-quiz__btns .btn {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}
.page-hero {
  margin: 70px 0;
}
.page-hero-block {
  min-height: 320px;
  padding: 70px;
  border-radius: var(--brs);
  overflow: hidden;
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-hero-block:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.3;
}
.page-hero-info {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.page-title {
  font-weight: 600;
  font-size: 48px;
  margin: 0;
}
.page-text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 150%;
  max-width: 550px;
}
.page-text strong, .page-text b {
  font-weight: 800;
}

@media only screen and (max-width: 1199px) {
  .page-hero {
    margin: 60px 0;
  }
  .page-hero-block {
    padding: 60px;
    min-height: auto;
  }
  .page-hero-info {
    max-width: 50%;
  }
  .page-title {
    font-size: 40px;
  }
  .page-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .page-hero-block {
    padding: 50px;
  }
  .page-hero-info {
    max-width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .page-hero-block {
    padding: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .page-hero {
    margin: 50px 0;
  }
  .page-hero-block {
    padding: 30px;
  }
  .page-title {
    font-size: 28px;
  }
  .page-text {
    font-size: 14px;
    margin-top: 15px;
  }
}
.service-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-work-cnt {
  width: 570px;
}
.service-work-table {
  width: 755px;
}
.service-work-table .faq-items {
  width: 100%;
}
.service-work-table .faq-item__content {
  padding-top: 0;
}
.service-work-table .faq-item.is-open .faq-item__content {
  padding-bottom: 5px;
}
.service-work__item {
  min-height: 80px;
  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;
  padding-top: 10px;
  padding-bottom: 10px;
}
.service-work__item + .service-work__item {
  border-top: 1px solid var(--border-color);
}
.service-work__item-title {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
}
.service-work__item-text {
  font-weight: 400;
  font-size: 15px;
  color: #9c9fb5;
  text-align: right;
}
.service-work__item-text strong, .service-work__item-text b {
  font-weight: 700;
}
.service-work__item-price {
  display: block;
  font-weight: 700;
  font-size: 20px;
  text-align: right;
  color: var(--text-color);
  margin-left: 20px;
  white-space: nowrap;
}

.service-work-advantages {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
}
.service-work-advantage {
  width: calc(50% - 10px);
  border-radius: var(--brs);
  padding: 30px 40px;
  backdrop-filter: blur(10px);
  background: rgba(244, 245, 248, 0.85);
}
.service-work-advantage__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}
.service-work-advantage__text {
  font-size: 14px;
  line-height: 150%;
  margin-top: 10px;
}
.service-work-advantage:nth-child(4n+2) {
  background: rgba(186, 200, 205, 0.85);
}
.service-work-advantage:nth-child(4n+3) {
  color: #fff;
  background: rgba(50, 75, 87, 0.85);
}
.service-work-advantage:nth-child(4n+4) {
  color: #fff;
  background: rgba(99, 123, 132, 0.85);
}
.service-work__btn {
  width: 100%;
  margin-top: 70px;
  padding: 40px;
}
.service-work__text {
  margin-top: 70px;
}

@media only screen and (max-width: 1599px) {
  .service-work-table {
    width: 45%;
  }
  .service-work-cnt {
    width: 45%;
  }
}
@media only screen and (max-width: 1199px) {
  .service-work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-work-table {
    width: 100%;
  }
  .service-work-cnt {
    width: 100%;
    margin-top: 60px;
  }
  .service-work__btn {
    margin-top: 60px;
  }
  .service-work__text {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .service-work__item-title {
    font-size: 14px;
  }
  .service-work__item-text {
    font-size: 12px;
  }
  .service-work__item-price {
    font-size: 16px;
  }
  .service-work-cnt {
    width: 100%;
    margin-top: 50px;
  }
  .service-work__btn {
    margin-top: 50px;
    padding: 30px;
  }
  .service-work__text {
    margin-top: 50px;
  }
  .service-work-advantage {
    padding: 30px;
  }
  .service-work-advantage__title {
    font-size: 14px;
  }
  .service-work-advantage__text {
    font-size: 12px;
  }
}
.project-hero {
  margin: 70px 0;
}
.project-hero-block {
  aspect-ratio: 2;
  padding: 70px;
  border-radius: var(--brs);
  overflow: hidden;
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.project-hero-block:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.3;
}
.project-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.project-single-cnt {
  width: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.project-single-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.project-single-top__item {
  width: 50%;
  border-radius: 20px;
  background-color: var(--bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.project-single-top__item span {
  line-height: 150%;
}
.project-single-top__item strong {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 36px;
}
.project-single-top__item img {
  margin-bottom: 10px;
}
.project-single-top__item a {
  text-decoration: underline;
  line-height: 150%;
}
.project-single-table {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin-top: 40px;
}
.project-single-table__tr {
  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;
  min-height: 61px;
  padding: 10px 30px;
  gap: 30px;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
}
.project-single-table__tr strong {
  font-weight: 700;
  text-align: right;
}
.project-single-table__tr:last-child {
  border-bottom: none;
}
.project-single__text-block {
  margin-top: 60px;
}
.project-single__title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.project-single-review {
  background-color: var(--bg-color);
  border-radius: var(--brs);
  padding: 30px 40px;
}
.project-single-review__text {
  font-style: italic;
  font-size: 14px;
  line-height: 150%;
}
.project-single-review__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.project-single-review__quotes {
  font-weight: 700;
  font-size: 48px;
  position: relative;
  top: 10px;
  line-height: 1;
}
.project-single-review__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
}
.project-single-gallery {
  width: calc(100% - 675px);
}
.project-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
}
.project-gallery__photo {
  width: calc(33.33% - 10px);
  border-radius: var(--brs);
  aspect-ratio: 1.48;
  overflow: hidden;
  position: relative;
}
.project-gallery__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.project-gallery__photo:nth-child(1) {
  width: calc(100% - 10px);
}

@media only screen and (max-width: 1599px) {
  .project-single-gallery {
    width: calc(100% - 650px);
  }
}
@media only screen and (max-width: 1199px) {
  .project-hero {
    margin: 60px 0;
  }
  .project-hero-block {
    padding: 60px;
  }
  .project-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-single-gallery {
    width: 100%;
    margin-top: 60px;
  }
  .project-single-cnt {
    width: 100%;
  }
  .project-single-top__item strong {
    font-size: 30px;
  }
  .project-gallery__photo {
    width: calc(25% - 10px);
  }
}
@media only screen and (max-width: 991px) {
  .project-hero-block {
    padding: 50px;
    aspect-ratio: auto;
  }
  .project-gallery__photo {
    width: calc(33.33% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .project-hero-block {
    padding: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .project-hero {
    margin: 50px 0;
  }
  .project-hero-block {
    padding: 30px;
  }
  .project-single {
    margin-top: 30px;
  }
  .project-single-gallery {
    margin-top: 40px;
  }
  .project-single-top__item {
    padding: 30px 20px;
  }
  .project-single-top__item span {
    font-size: 14px;
  }
  .project-single-top__item a {
    font-size: 14px;
  }
  .project-single-top__item strong {
    font-size: 24px;
  }
  .project-single-table {
    margin-top: 30px;
  }
  .project-single-table__tr {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  .project-single__text-block {
    margin-top: 40px;
  }
  .project-single__title {
    font-size: 18px;
  }
  .project-single-review {
    padding: 30px;
  }
  .project-single-review__footer {
    margin-top: 20px;
  }
  .project-gallery__photo {
    width: calc(50% - 10px);
  }
}
.consult {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px;
  border-radius: var(--brs);
  overflow: hidden;
  position: relative;
}
.consult:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--black);
  opacity: 0.5;
}
.consult-block {
  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;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.consult__btn {
  padding: 35px 70px;
}

@media only screen and (max-width: 1199px) {
  .consult {
    padding: 60px;
  }
  .consult__btn {
    padding: 20px 50px;
  }
}
@media only screen and (max-width: 991px) {
  .consult {
    padding: 50px;
  }
  .consult-block {
    -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;
  }
}
@media only screen and (max-width: 767px) {
  .consult {
    padding: 40px;
  }
  .consult-block {
    gap: 40px;
  }
  .consult-block {
    gap: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .consult {
    padding: 40px 30px;
  }
  .consult-block {
    gap: 30px;
  }
  .consult__btn {
    padding: 15px 50px;
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px 105px;
}
.about-info {
  width: 570px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: var(--brs);
  overflow: hidden;
  width: 100%;
}
.about-image img {
  width: 100%;
}

.about-tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-right: -10px;
}

.about-tizer {
  background: var(--black);
  border-radius: var(--brs);
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.33% - 10px);
  color: #fff;
}
.about-tizer__value {
  font-weight: 700;
  font-size: 48px;
  color: var(--accent-color);
}
.about-tizer__value img {
  width: auto;
  height: 47px;
  margin-bottom: -10px;
}
.about-tizer__title {
  font-weight: 700;
  font-size: 20px;
  margin-top: 24px;
}
.about-tizer__text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 150%;
}
.about-tizer:nth-child(2n) {
  background-color: var(--bg-color);
  color: var(--text-color);
}

@media only screen and (max-width: 1199px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-info {
    width: 100%;
  }
  .about-tizer {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .about-tizer {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .about-tizer {
    width: calc(100% - 10px);
  }
}
@media only screen and (max-width: 575px) {
  .about {
    gap: 40px 105px;
  }
  .about-tizers {
    margin-top: 30px;
  }
  .about-tizer__value {
    font-size: 42px;
  }
  .about-tizer__title {
    font-size: 18px;
  }
  .about-tizer__text {
    font-size: 14px;
  }
}
.contacts {
  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;
  gap: 40px;
  margin-top: 40px;
}
.contacts-block {
  width: 560px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: var(--brs);
  padding: 40px;
}
.contacts-map {
  padding: 70px;
  border-radius: var(--brs);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.contact__text {
  font-size: 16px;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contact__text b, .contact__text strong {
  font-weight: 600;
}
.contact__text a {
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.contact__text a:hover {
  text-decoration: underline;
  text-decoration-color: inherit;
}

@media only screen and (max-width: 1199px) {
  .contacts-block {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: -40px;
  }
  .contacts-map {
    padding: 0;
    background-image: none !important;
  }
  .contacts-block {
    width: 100%;
    background-color: var(--bg-color);
  }
  .contact {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 991px) {
  .contacts {
    margin-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
  .contacts-block {
    padding: 30px;
  }
  .contact {
    width: 100%;
  }
  .contact__title {
    font-size: 18px;
  }
  .contact__text {
    font-size: 14px;
  }
}