@charset "UTF-8";
.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  display: none;
}

@font-face {
  font-family: "Suisse-reg";
  src: url("../fonts/SuisseIntl-Regular.woff2") format("woff2"), url("../fonts/SuisseIntl-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse-bold";
  src: url("../fonts/SuisseIntl-SemiBold.woff2") format("woff2"), url("../fonts/SuisseIntl-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Suisse-med";
  src: url("../fonts/SuisseIntl-Medium.woff2") format("woff2"), url("../fonts/SuisseIntl-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

._btn {
  border-radius: 6px;
  padding: 12px 20px;
  color: #ffffff;
  background-color: #b18b6b;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  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;
}

._btn._big-btn {
  padding: 23px 44px;
  margin: 0 auto;
  font-size: 16px;
}

._btn._border-btn {
  background-color: inherit;
  border-radius: 6px;
  padding: 10px 20px;
  color: #b18b6b;
  border: 1px solid #b18b6b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

._btn._border-btn:hover {
  color: #fefefc;
  background-color: #b18b6b;
}

._btn:hover {
  background-color: #856952;
}

._h2 {
  font-weight: 600;
  font-size: 48px;
  font-family: "Suisse-bold";
  font-weight: 600;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  ._h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

._h4 {
  font-weight: 400;
  font-size: 24px;
}

@media (max-width: 767px) {
  ._h4 {
    font-size: 18px;
  }
}

._margin-b {
  margin-bottom: 130px;
}

@media (max-width: 992px) {
  ._margin-b {
    margin-bottom: 65px;
  }
}

._margin-s {
  margin-bottom: 64px;
}

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

/* Убираем стрелочки в Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus, :active {
  outline: none;
}

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

aside, nav, footer, header, section {
  display: block;
}

html, body {
  height: 100%;
}

body {
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

a, a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.45);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  max-width: 533px;
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
  background: #fff;
  padding: 64px;
  height: 100%;
}

.lock .popup__content {
  visibility: visible;
}

@media (max-width: 767px) {
  .popup__content {
    max-width: 100%;
  }
}

.popup__body {
  text-align: center;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup__close:hover {
  opacity: 0.7;
}

.popup__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup__icon {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup__icon img {
  width: 60px;
}

@media (max-width: 767px) {
  .popup__icon img {
    width: 40px;
  }
}

.popup__icon:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .popup__icon {
    width: 40px;
    height: 40px;
  }
}

.popup__phone {
  background-color: #b18b6b;
  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__phone img {
  width: 60%;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

html._lock {
  overflow: hidden;
}

html.lock {
  overflow: hidden;
}

a {
  color: #1f2123;
}

.wrapper {
  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;
  min-height: 100%;
}

body {
  color: #1f2123;
  font-size: 16px;
  font-family: "Suisse-reg";
  font-weight: 400;
  height: 100%;
  background-color: #fefefc;
  position: relative;
}

body._lock {
  overflow: hidden;
}

body.lock {
  overflow: hidden;
}

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

[class*="__container"] {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0px 15px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header__container {
  max-width: 1550px;
}

.header__body {
  width: 100%;
  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: 81px;
}

@media (max-width: 1030px) {
  .header__body {
    -webkit-transform: translate(0%, -100%);
            transform: translate(0%, -100%);
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: #fefefc;
    z-index: 3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 115px;
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__body.active {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (max-width: 1200px) {
  .header__list {
    gap: 20px;
  }
}

@media (max-width: 1030px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.header__item:ntn-child(1) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.header__item:ntn-child(5) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.header__item_arrow {
  position: relative;
}

.header__item_arrow span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__item_arrow svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__item_arrow:hover .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__item_arrow:hover svg path {
  fill: #b18b6b;
}

@media (max-width: 1030px) {
  .header__item_arrow span,
  .header__item_arrow svg {
    display: none;
  }
}

.header__link {
  color: #1f2123;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__link:hover {
  color: #b18b6b;
}

@media (max-width: 1030px) {
  .header__link {
    font-size: 20px;
  }
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

@media (max-width: 1030px) {
  .header__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 24px;
  }
}

.header__phone {
  font-size: 24px;
  line-height: 150%;
  font-weight: "Suisse-bold";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__phone:hover {
  color: #b18b6b;
}

@media (max-width: 1030px) {
  .header__phone {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 1030px) {
  .header__button {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 60px;
  }
}

.header .header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

@media (max-width: 1030px) {
  .header .header__icons {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-bottom: 16px;
  }
}

.header__icon {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 38px;
  height: 38px;
}

.header__icon img {
  width: 38px;
  height: 38px;
}

.header__icon:hover {
  opacity: 0.7;
}

.sub-menu {
  display: none;
  position: absolute;
  z-index: 5;
  top: 31px;
  left: 0;
}

@media (max-width: 1030px) {
  .sub-menu {
    display: block;
    position: static;
  }
}

.sub-menu::before {
  content: '';
  width: 100%;
  height: 20px;
  opacity: 0;
  position: absolute;
  top: -15px;
  left: 0;
}

@media (max-width: 1030px) {
  .sub-menu::before {
    display: none;
  }
}

@media (min-width: 1030px) {
  .sub-menu__wrapper {
    border-radius: 12px;
    padding: 24px;
    width: 299px;
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
    background: #ffffff;
  }
}

.sub-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

@media (max-width: 1030px) {
  .sub-menu__list {
    gap: 40px;
  }
}

@media (max-width: 1030px) {
  .sub-menu__item {
    text-align: center;
  }
}

.sub-menu__link {
  line-height: 160%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sub-menu__link:hover {
  color: #b18b6b;
}

@media (max-width: 1030px) {
  .sub-menu__link {
    font-size: 20px;
    text-align: center;
  }
}

.mobile-contact {
  display: none;
}

@media (max-width: 1030px) {
  .mobile-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 60px;
    top: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.mobile-contact__link img {
  width: 30px;
}

.mobile-contact__tel {
  font-size: 14px;
}

@media (max-width: 370px) {
  .mobile-contact__tel {
    font-size: 12px;
  }
}

@media (max-width: 350px) {
  .mobile-contact__tel {
    display: none;
  }
}

.header__burger {
  display: none;
}

@media (max-width: 1030px) {
  .header__burger {
    display: block;
    position: absolute;
    width: 30px;
    height: 23px;
    cursor: pointer;
    z-index: 10;
    right: 15px;
    top: 25px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .header__burger span {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 3px;
    min-height: 3px;
    max-height: 3px;
    border-radius: 10px;
    background-color: #1f2123;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger.active {
    height: 17px;
  }
  .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #1f2123;
  }
  .header__burger.active span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 6px;
  }
  .header__burger.active span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 8px;
  }
}

.pc-none {
  display: none;
}

@media (max-width: 1030px) {
  .pc-none {
    display: block;
    text-align: center;
  }
}

.mob-none {
  display: block;
}

@media (max-width: 1030px) {
  .mob-none {
    display: none;
  }
}

.intro-main {
  padding-top: 250px;
}

@media (max-width: 1030px) {
  .intro-main {
    padding-top: 16px;
  }
}

.intro-main__container {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

@media (max-width: 1030px) {
  .intro-main__container {
    text-align: left;
    gap: 32px;
  }
}

.intro-main__logo img {
  width: 144px;
}

@media (max-width: 767px) {
  .intro-main__logo img {
    width: 100px;
  }
}

@media (max-width: 1030px) {
  .intro-main__logo {
    margin-bottom: 32px;
  }
}

.intro-main__title {
  font-weight: 600;
  font-size: 60px;
  font-family: "Suisse-bold";
  line-height: 120%;
}

@media (max-width: 1030px) {
  .intro-main__title {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .intro-main__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .intro-main__title {
    font-size: 28px;
  }
}

@media (max-width: 1030px) {
  .intro-main__subtitle {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .rates__container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .rates .service__text {
    padding: 0px 15px;
  }
}

@media (max-width: 767px) {
  .rates__title {
    padding: 0px 15px;
  }
}

.rates__subtitle {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .rates__subtitle {
    margin-bottom: 20px;
    padding: 0px 15px;
  }
}

@media (max-width: 767px) {
  .rates__bottom {
    padding: 0px 15px;
  }
  .rates__bottom .rates__subtitle {
    padding: 0;
  }
}

.rates__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .rates__items {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .rates__items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
}

.rates__item {
  height: 200px;
  padding: 32px;
  border-radius: 12px;
  background-color: #f7f6f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .rates__item {
    height: 160px;
    padding: 16px;
  }
}

.rates__header {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.rates__value {
  font-size: 28px;
  line-height: 120%;
  font-family: "Suisse-med";
  font-weight: 500;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .rates__value {
    font-size: 20px;
  }
}

.rates .currency-table {
  margin-bottom: 60px;
}

.currency-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
}

.currency-table th,
.currency-table td {
  padding: 40px 64px;
  text-align: left;
}

@media (max-width: 992px) {
  .currency-table th,
  .currency-table td {
    font-size: 14px;
    padding: 16px 20px;
  }
}

@media (max-width: 767px) {
  .currency-table th,
  .currency-table td {
    padding: 20px 0px 20px 16px;
  }
}

.currency-table td {
  padding: 27px 64px;
}

@media (max-width: 992px) {
  .currency-table td {
    font-size: 14px;
    padding: 16px 20px;
  }
}

@media (max-width: 767px) {
  .currency-table td {
    padding: 20px 0px 20px 16px;
  }
  .currency-table td span {
    display: none;
  }
}

.currency-table th {
  background-color: #edecea;
  font-weight: 400;
  font-size: 24px;
}

@media (max-width: 992px) {
  .currency-table th {
    font-size: 14px;
  }
}

.currency-table th:first-child {
  border-radius: 12px 0 0 0;
}

.currency-table th:last-child {
  border-radius: 0 12px 0 0;
}

.currency-table tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

@media (max-width: 767px) {
  .currency-table tr:last-child td:last-child {
    border-radius: 0;
  }
}

.currency-table tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}

@media (max-width: 767px) {
  .currency-table tr:last-child td:first-child {
    border-radius: 0;
  }
}

.currency-table td {
  background-color: #f7f6f4;
}

@media (max-width: 767px) {
  .rates .currency-table {
    margin-bottom: 40px;
  }
}

.calculator-rates__body {
  background-color: #f7f6f4;
  border-radius: 12px;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 1310px) {
  .calculator-rates__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .calculator-rates__body {
    padding: 32px 16px;
    border-radius: 0px;
  }
}

.calculator-rates__error {
  position: absolute;
  bottom: 33px;
  left: 32px;
  color: #1f2123;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.calculator-rates__error.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.calculator-rates__update {
  font-size: 14px;
}

@media (max-width: 767px) {
  .calculator-rates__update {
    text-align: left;
  }
}

.calculator-rates__calculator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

@media (max-width: 1310px) {
  .calculator-rates__calculator {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 992px) {
  .calculator-rates__calculator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.calculator-rates__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

@media (max-width: 992px) {
  .calculator-rates__left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.calculator-rates__input {
  width: 290px;
  height: 50px;
  border: 1px solid #e2e3e4;
  border-radius: 6px;
  padding-left: 20px;
  font-weight: 600;
  font-size: 16px;
  font-weight: "Suisse-bold";
  color: #1f2123;
  cursor: pointer;
}

.calculator-rates__input::-webkit-input-placeholder {
  color: #1f2123;
}

.calculator-rates__input:-ms-input-placeholder {
  color: #1f2123;
}

.calculator-rates__input::-ms-input-placeholder {
  color: #1f2123;
}

.calculator-rates__input::placeholder {
  color: #1f2123;
}

@media (max-width: 1310px) {
  .calculator-rates__input {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .calculator-rates__input {
    width: 100%;
  }
}

.calculator-rates__input:focus {
  border: 1px solid #8c8c8c;
}

.calculator-rates__input:active {
  border: 1px solid #8c8c8c;
}

.calculator-rates__select {
  width: 150px;
  height: 50px;
}

.calculator-rates__reverse {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #e2e3e4;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.calculator-rates__reverse:hover {
  border: 1px solid #1f2123;
}

.calculator-rates__reverse:active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 992px) {
  .calculator-rates__reverse {
    margin: 0 auto;
  }
}

.calculator-rates__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

@media (max-width: 992px) {
  .calculator-rates__right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.calculator-rates__buttons div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1310px) {
  .calculator-rates__buttons div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1310px) {
  .calculator-rates__buttons {
    text-align: center;
  }
}

.calculator-rates__button {
  height: 50px;
  width: 100%;
  max-width: 176px;
  font-size: 16px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .calculator-rates__button {
    max-width: 100%;
  }
}

.top-calculator__select-wrapper {
  width: 150px;
  min-width: 150px;
  height: 50px;
  border-radius: 6px;
  position: relative;
}

.calculator-rates__arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  height: 6px;
}

.choices[data-type*='select-one'] .choices__input {
  width: 150px !important;
  min-width: 150px;
  height: 50px;
  border-radius: 6px;
}

.choices__inner {
  height: 50px;
  border-radius: 6px;
  background-color: #edecea !important;
}

.choices__list--single .choices__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.select-image {
  width: 30px !important;
  height: 30px !important;
  border-radius: 100%;
}

.choices__list--single {
  padding: 0 !important;
  padding-left: 10px !important;
}

.choices__item .choices__item--selectable {
  font-size: 14px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #edecea !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 17px !important;
  white-space: nowrap;
}

.choices__list--dropdown .choices__item--selectable,
.choices__list[aria-expanded] .choices__item--selectable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 17px !important;
  white-space: nowrap;
}

.choices[data-type*='select-one']::after {
  display: none;
}

.level {
  padding-bottom: 32px;
}

.level__title {
  max-width: 880px;
}

.level__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.level__item {
  border-radius: 12px;
  padding: 32px 64px;
  width: 530px;
  max-width: 530px;
  height: 600px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.level__item_purple {
  background: radial-gradient(154.17% 102.78% at 26.07% -12.47%, #e1d5eb 0%, #d0c3eb 86.0%, #cdc0eb 100%);
}

.level__item_purple .level__label {
  background: rgba(245, 247, 250, 0.2);
}

.level__item_green {
  background: radial-gradient(130.78% 87.18% at 8.62% 4.12%, #b2eac2 0%, #c5f4d5 50%, #bbedd2 99.0%, #b9ebd0 100%);
}

.level__item_green .level__label {
  background: rgba(245, 247, 250, 0.2);
}

.level__item_blue {
  background: radial-gradient(130.78% 87.18% at 8.62% 4.12%, #b6d7ff 0%, #b3d3ff 50%, #aac7ff 99.0%, #aac7ff 100%);
}

.level__item_blue .level__label {
  background: rgba(245, 247, 250, 0.2);
}

@media (max-width: 992px) {
  .level__item {
    width: 320px;
    height: 490px;
  }
}

.level__label {
  border-radius: 6px;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 30px;
}

.level__button {
  width: 200px;
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.level__name {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  font-family: "Suisse-bold";
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .level__name {
    font-size: 22px;
  }
}

.level__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.level__link {
  max-width: 130px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .level__icon img {
    width: 100%;
  }
}

.slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.level__wrapper {
  position: relative;
}

.swiper-scrollbar {
  background: #f7f6f4;
  /* Цвет фона полосы прокрутки */
  border-radius: 10px;
  /* Радиус скругления углов полосы прокрутки */
  height: 4px;
  /* Высота полосы прокрутки */
  min-width: 100%;
  position: absolute;
  bottom: -60px;
  left: 0;
}

@media (max-width: 992px) {
  .swiper-scrollbar {
    bottom: -32px;
  }
}

.swiper-scrollbar-drag {
  background: #b18b6b;
  /* Цвет ползунка полосы прокрутки */
  border-radius: 4px;
  /* Радиус скругления углов ползунка */
  height: 100%;
  /* Высота ползунка */
}

.advantages__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  margin-bottom: 140px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 992px) {
  .advantages__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .advantages__body {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 64px;
  }
}

.advantages__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33% - 40px);
          flex: 0 1 calc(33% - 40px);
  -ms-grid-column-align: center;
      justify-self: center;
}

@media (max-width: 767px) {
  .advantages__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .advantages__item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .advantages__item:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .advantages__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.advantages__icon {
  margin-bottom: 34px;
}

@media (max-width: 767px) {
  .advantages__icon {
    margin-bottom: 16px;
  }
}

.advantages__name {
  margin-bottom: 16px;
  font-size: 20px;
  font-family: "Suisse-med";
}

@media (max-width: 767px) {
  .advantages__name {
    font-size: 18px;
  }
}

.advantages__text {
  line-height: 150%;
}

@media (max-width: 767px) {
  .advantages__text {
    font-size: 14px;
  }
}

.advantages__bottom {
  max-width: 825px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 120px;
}

@media (max-width: 992px) {
  .advantages__bottom {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .advantages__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.advantages__image img {
  width: 278px;
}

.advantages__content-title {
  font-size: 32px;
  font-family: "Suisse-bold";
  font-weight: 600;
  line-height: 115%;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .advantages__content-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.advantages__button {
  margin-top: 40px;
  cursor: pointer;
  border-radius: 6px;
  padding: 5px 20px;
  width: 219px;
  height: 48px;
  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;
  background: #2aabee;
  color: #ffffff;
  gap: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.advantages__button:hover {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .advantages__button {
    margin-top: 20px;
  }
}

.reviews__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 32px;
}

.reviews__value {
  font-weight: 600;
  font-size: 48px;
  font-family: "Suisse-bold";
  font-weight: 600;
}

.reviews__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5px;
}

.reviews__star {
  width: 16px;
  height: 16px;
}

.reviews__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  margin-bottom: 60px;
  gap: 20px;
}

@media (max-width: 767px) {
  .reviews__items {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
}

.reviews__item {
  background-color: #ffffff;
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 30px -12px rgba(17, 12, 46, 0.16);
          box-shadow: 0 4px 30px -12px rgba(17, 12, 46, 0.16);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 767px) {
  .reviews__item {
    background-color: inherit;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}

.reviews__avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .reviews__avatar {
    display: none;
  }
}

.reviews__name {
  margin-bottom: 10px;
}

.reviews__stars-wrapper {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.reviews__button {
  padding: 23px 32px !important;
}

@media (max-width: 767px) {
  .program__container {
    padding: 0;
  }
}

.program__title {
  max-width: 1080px;
}

@media (max-width: 767px) {
  .program__title {
    max-width: 390px;
    padding: 0px 15px;
  }
}

.program__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .program__body {
    -ms-grid-columns: (280px)[3];
        grid-template-columns: repeat(3, 280px);
    overflow: auto;
    padding: 0px 15px;
    padding-bottom: 10px;
  }
}

.program__item {
  padding: 32px;
  border-radius: 12px;
  background-color: #f7f6f4;
}

@media (max-width: 992px) {
  .program__item {
    min-width: 280px;
    width: 280px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.program__icon {
  margin-bottom: 68px;
}

.program__icon img {
  width: 64px;
  height: 64px;
}

@media (max-width: 992px) {
  .program__icon {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.program__name {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #393737;
  margin-bottom: 8px;
  font-family: "Suisse-med";
}

@media (max-width: 992px) {
  .program__name {
    font-size: 20px;
  }
}

.program__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 992px) {
  .program__description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .news__container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .news__title {
    padding: 0 15px;
  }
}

.news__title_main {
  display: none;
}

@media (max-width: 767px) {
  .news__title_main {
    display: block;
  }
}

.news__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  grid-auto-rows: 1fr;
}

@media (max-width: 992px) {
  .news__body {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .news__body {
    -ms-grid-columns: (280px)[6];
        grid-template-columns: repeat(6, 280px);
    overflow: auto;
    padding: 0 15px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .news__body_main {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .news__body_main .news__item {
    width: 100%;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .news__item {
    width: 280px;
  }
}

.news__img {
  width: 100%;
  aspect-ratio: 21 / 10;
  overflow: hidden;
}

.news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}

.news__content {
  background-color: #f7f6f4;
  border-radius: 0px 0px 12px 12px;
  padding: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (max-width: 767px) {
  .news__content {
    padding: 16px;
  }
}

.news__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #393737;
  font-family: "Suisse-med";
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .news__name {
    font-size: 16px;
  }
}

.news__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .news__description {
    font-size: 14px;
  }
}

.news__button {
  width: 129px;
}

.news__link {
  padding: 23px 32px !important;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  margin-top: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.navigation__item {
  width: 50px;
  height: 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;
  border-radius: 6px;
  border: 1px solid #e2e3e4;
  cursor: pointer;
  color: #959595;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navigation__item.active {
  border: 1px solid #b18b6b;
  background-color: #b18b6b;
  color: #fefefc;
}

.navigation__item:hover {
  border: 1px solid #b18b6b;
}

@media (max-width: 767px) {
  .navigation__item:nth-child(4), .navigation__item:nth-child(5) {
    display: none;
  }
}

.navigation__dot {
  width: 50px;
  height: 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;
}

.intro {
  padding: 166px 0px 106px 0px;
  background: radial-gradient(84.78% 116.18% at 10.62% 4.12%, #f8efea 0%, #fff8f5 80%, #fff6f1 99.9%, #faeee9 100%);
  margin-bottom: 105px;
}

@media (max-width: 1030px) {
  .intro {
    padding-top: 16px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .intro {
    margin-bottom: 36px;
  }
}

.intro_purple {
  background: radial-gradient(84.78% 116.18% at 10.62% 4.12%, #e1d5eb 0%, #f0e7f9 50%, #efe5f7 99.9%, #e8dcf2 100%);
}

.intro_blue {
  background: radial-gradient(84.78% 116.18% at 10.62% 4.12%, #cee4ff 0%, #d2e5ff 50%, #d4e3fe 99.9%, #c7dbfe 100%);
}

.intro_green {
  background: radial-gradient(84.78% 116.18% at 10.62% 4.12%, #cdf7d9 0%, #dcfbe6 50%, #d1f6e2 99.9%, #bff2d6 100%);
}

@media (max-width: 767px) {
  .intro_news {
    margin-bottom: 0;
  }
}

.intro__container {
  position: relative;
}

.intro__logo img {
  width: 144px;
}

@media (max-width: 767px) {
  .intro__logo img {
    width: 100px;
  }
}

.intro__image {
  position: absolute;
  right: 0;
  bottom: -256px;
}

.intro__image img {
  width: 280px;
}

@media (max-width: 992px) {
  .intro__image {
    bottom: -84px;
    right: 15px;
  }
  .intro__image img {
    width: 100px;
  }
}

.intro__image_word img {
  width: 500px;
}

@media (max-width: 1330px) {
  .intro__image_word {
    right: 15px;
  }
}

@media (max-width: 992px) {
  .intro__image_word img {
    width: 155px;
  }
}

@media (max-width: 370px) {
  .intro__image_word img {
    width: 135px;
  }
}

.intro__image_green {
  bottom: -306px;
}

.intro__image_green img {
  width: 381px;
}

@media (max-width: 1330px) {
  .intro__image_green img {
    width: 300px;
  }
}

@media (max-width: 1020px) {
  .intro__image_green img {
    width: 155px;
  }
}

@media (max-width: 380px) {
  .intro__image_green img {
    width: 120px;
  }
}

@media (max-width: 1330px) {
  .intro__image_green {
    bottom: -205px;
    right: 15px;
  }
}

@media (max-width: 1020px) {
  .intro__image_green {
    bottom: -105px;
    right: 15px;
  }
}

.intro__title {
  margin-top: 40px;
  font-weight: 600;
  font-size: 60px;
  font-family: "Suisse-bold";
}

@media (max-width: 767px) {
  .intro__title {
    font-size: 28px;
    margin-top: 103px;
  }
}

@media (max-width: 767px) {
  .intro__title_usdt {
    max-width: 350px;
  }
}

.intro__title_word {
  max-width: 1020px;
}

@media (max-width: 992px) {
  .intro__title_word {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .intro__title_word {
    max-width: 320px;
  }
}

@media (max-width: 1330px) {
  .intro__title_green {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .intro__title_green {
    max-width: 230px;
  }
}

@media (max-width: 380px) {
  .intro__title_green {
    font-size: 24px;
  }
}

.choices__item::after {
  display: none !important;
}

@media (max-width: 767px) {
  .service__title {
    font-size: 28px;
  }
}

.service__subtitle {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #393737;
  font-family: "Suisse-med";
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .service__subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.service__text {
  margin-bottom: 64px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 767px) {
  .service__text {
    margin-bottom: 32px;
  }
}

.form {
  background-color: #f7f6f4;
  padding: 64px;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .form {
    padding: 16px;
  }
}

.form__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #393737;
  font-family: "Suisse-med";
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .form__title {
    font-size: 24px;
  }
}

.form__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .form__body {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form__label._text {
  grid-column: span 2;
}

@media (max-width: 767px) {
  .form__label._text {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .form__label p {
    font-size: 14px;
  }
}

.form__textarea {
  width: 100%;
  height: 50px;
  padding-top: 10px;
  resize: none;
  border: 1px solid #e2e3e4;
  border-radius: 6px;
  padding-left: 20px;
  font-weight: 600;
  font-size: 16px;
  font-weight: "Suisse-bold";
  color: #1f2123;
  cursor: pointer;
}

.form__textarea::-webkit-input-placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__textarea:-ms-input-placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__textarea::-ms-input-placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__textarea::placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__textarea:focus {
  border: 1px solid #8c8c8c;
}

.form__textarea:active {
  border: 1px solid #8c8c8c;
}

.form__input {
  width: 100%;
  height: 50px;
  border: 1px solid #e2e3e4;
  border-radius: 6px;
  padding-left: 20px;
  font-weight: 600;
  font-size: 16px;
  font-weight: "Suisse-bold";
  color: #1f2123;
  cursor: pointer;
}

.form__input::-webkit-input-placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__input:-ms-input-placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__input::-ms-input-placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__input::placeholder {
  color: #c4c5c6;
  font-weight: "Suisse-reg";
  font-weight: 400;
}

.form__input:focus {
  border: 1px solid #8c8c8c;
}

.form__input:active {
  border: 1px solid #8c8c8c;
}

.form__button {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

._label-wallet {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  position: relative;
  width: 100%;
}

._label-wallet a {
  color: #b18b6b;
}

@media (max-width: 767px) {
  ._label-wallet {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

._checkbox-wallet {
  display: none;
}

._fake-wallet {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  height: 14px;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  border: 1.6px solid #b18b6b;
}

._fake-wallet:hover {
  border: 1.6px solid #b18b6b;
}

._fake-wallet.errore {
  border: 1.5px solid #df5d5d;
}

._fake-wallet::before {
  content: '';
  position: absolute;
  display: block;
  background-color: #b18b6b;
  top: -0.5px;
  left: -0.5px;
  width: 105%;
  height: 105%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

._fake-wallet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  background-image: url("../img/icons/input-checkbox.svg");
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8.68px;
  height: 6.36px;
  opacity: 0;
}

._checkbox-wallet:checked + ._fake-wallet::after {
  opacity: 1;
}

._checkbox-wallet:checked + ._fake-wallet {
  border: 1.5px solid #b18b6b;
}

._wallet-chectext {
  margin-left: 7px;
  font-size: 14px;
  text-align: left;
  width: 100%;
}

._wallet-chectext a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  ._wallet-chectext {
    font-size: 12px;
  }
}

.word__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

@media (max-width: 767px) {
  .word__items {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    margin-bottom: 32px;
  }
}

.word p {
  line-height: 150%;
}

@media (max-width: 767px) {
  .word p {
    font-size: 14px;
  }
}

.word__item {
  min-height: 310px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f7f6f4;
  padding: 32px;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .word__item {
    min-height: auto;
    gap: 16px;
    padding: 16px;
  }
}

.word__symbol {
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  font-family: "Suisse-reg";
}

.word__body {
  margin-bottom: 64px;
}

@media (max-width: 767px) {
  .word__body {
    margin-bottom: 32px;
  }
}

.word__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .word__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }
}

.word__row-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 63%;
          flex: 0 1 63%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f7f6f4;
  padding: 32px;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .word__row-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

@media (max-width: 767px) {
  .word__row-item {
    gap: 24px;
  }
}

.word__row-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37%;
          flex: 0 1 37%;
}

.word__row-image img {
  width: 100%;
}

@media (max-width: 992px) {
  .word__row-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

.word__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

@media (max-width: 1200px) {
  .word__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .word__bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.word__bigitem {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f7f6f4;
  padding: 32px;
  border-radius: 12px;
}

@media (max-width: 1200px) {
  .word__bigitem {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

@media (max-width: 767px) {
  .word__bigitem {
    gap: 24px;
  }
}

.word__smallitem {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 21%;
          flex: 0 1 21%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f7f6f4;
  padding: 32px;
  border-radius: 12px;
}

@media (max-width: 1200px) {
  .word__smallitem {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(60% - 18px);
            flex: 0 1 calc(60% - 18px);
  }
}

@media (max-width: 767px) {
  .word__smallitem {
    gap: 24px;
  }
}

.word__bottom-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 29%;
          flex: 0 1 29%;
}

.word__bottom-img img {
  width: 100%;
}

@media (max-width: 1200px) {
  .word__bottom-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(40% - 18px);
            flex: 0 1 calc(40% - 18px);
  }
}

.service .rates__calculator {
  margin: 40px 0px;
}

@media (max-width: 767px) {
  .invoice {
    padding-top: 32px;
  }
}

@media (max-width: 767px) {
  .invoice ._h2 {
    font-size: 24px;
  }
}

.invoice__row {
  background-color: #f7f6f4;
  padding: 32px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .invoice__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.invoice__symbol {
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  font-family: "Suisse-reg";
}

.invoice__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.invoice__texts a {
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  color: #b18b6b;
}

.invoice__texts p {
  font-size: 16px;
  line-height: 150%;
}

.invoice__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .invoice__body {
    -ms-grid-columns: (250px)[4];
        grid-template-columns: repeat(4, 250px);
    overflow: auto;
    padding-bottom: 10px;
  }
}

.invoice__item {
  padding: 32px;
  border-radius: 12px;
  background-color: #f7f6f4;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 310px;
}

@media (max-width: 992px) {
  .invoice__item {
    min-height: 250px;
    gap: 20px;
  }
}

.invoice__num {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  font-weight: "Suisse-med";
  color: #b18b6b;
}

.invoice__decription {
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 992px) {
  .invoice__decription {
    font-size: 14px;
  }
}

.invoice__label-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.invoice__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 44px 0px;
  margin-bottom: 32px;
}

.invoice__label p {
  font-weight: 600;
  font-size: 32px;
  font-weight: "Suisse-bold";
}

@media (max-width: 992px) {
  .invoice__label {
    padding: 16px 0px;
  }
  .invoice__label p {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .invoice__label p {
    font-size: 17px;
  }
}

.gallery-invoice {
  margin: 40px 0px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 767px) {
  .gallery-invoice {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.gallery-invoice__bigitem {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
}

.gallery-invoice__bigitem img {
  width: 100%;
}

.gallery-invoice__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: 40px;
}

@media (max-width: 767px) {
  .gallery-invoice__items {
    gap: 20px;
  }
}

.gallery-invoice__item {
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.07);
}

.gallery-invoice__item img {
  width: 100%;
}

.main-news p {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .main-news__container {
    margin: 0px;
    padding: 0px;
  }
}

.main-news__header {
  background-color: #f7f6f4;
  border-radius: 12px;
  padding: 64px;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .main-news__header {
    padding: 32px 15px;
    border-radius: 0;
  }
}

.main-news .form__input {
  height: 60px;
  border-radius: 0;
  padding-left: 54px;
}

.main-news__search {
  margin-bottom: 32px;
}

.main-news__label {
  position: relative;
}

.main-news__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.main-news__triggers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-news__trigger {
  border: 1px solid #b18b6b;
  border-radius: 6px;
  padding: 10px 20px;
  color: #b18b6b;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-news__trigger:hover {
  background-color: #b18b6b;
  color: #fefefc;
}

.main-news__trigger.active {
  background-color: #b18b6b;
  color: #fefefc;
}

.single__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 992px) {
  .single__container {
    display: block;
  }
}

.single__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59%;
          flex: 0 1 59%;
}

@media (max-width: 992px) {
  .single__left {
    margin-bottom: 64px;
  }
}

.single__subtitle {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #393737;
  margin-bottom: 32px;
  font-weight: "Suisse-med";
}

@media (max-width: 992px) {
  .single__subtitle {
    font-size: 20px;
  }
}

.single__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 992px) {
  .single__description {
    font-size: 14px;
  }
}

.single__image {
  margin-top: 32px;
  border-radius: 12px;
}

.single__image img {
  width: 100%;
  border-radius: 12px;
}

.single__items-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  font-weight: "Suisse-med";
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .single__items-title {
    font-weight: 600;
    font-size: 32px;
    font-weight: "Suisse-bold";
  }
}

.single__items {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32%;
          flex: 0 1 32%;
}

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

@media (max-width: 992px) {
  .single__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (280px)[3];
        grid-template-columns: repeat(3, 280px);
    overflow: auto;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
}

.single .news__link {
  display: none;
}

@media (max-width: 992px) {
  .single .news__link {
    display: block;
  }
}

@media (max-width: 992px) {
  .contacts__container {
    padding: 0;
  }
}

.contacts__body {
  border-radius: 12px;
  padding: 64px;
  background-color: #f7f6f4;
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 104px;
}

@media (max-width: 992px) {
  .contacts__body {
    background-color: inherit;
    padding: 32px 15px 64px 15px;
    margin-bottom: 0;
    text-align: center;
    display: block;
  }
}

.contacts__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

@media (max-width: 992px) {
  .contacts__items {
    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;
    text-align: center;
    gap: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 992px) {
  .contacts .footer__icons {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contacts__item p {
  font-weight: 400;
  font-size: 16px;
  color: #a1a3a5;
  margin-bottom: 10px;
}

.contacts__item a {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #1f2123;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Suisse-med";
}

.contacts__item a:hover {
  color: #b18b6b;
}

.footer {
  background-color: #f7f6f4;
  padding: 80px 0px;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 32px;
    padding: 64px 0px;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 128px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1360px) {
  .footer__container {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer__container {
    -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;
  }
}

@media (max-width: 767px) {
  .footer__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

@media (max-width: 1200px) {
  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .footer__left {
    gap: 0;
  }
}

.footer__logo img {
  width: 144px;
}

@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 32px;
  }
}

.footer__row {
  margin-bottom: 40px;
}

.footer__name {
  color: #a1a3a5;
  margin-bottom: 10px;
}

.footer__phone {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  font-family: "Suisse-med";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__phone:hover {
  color: #b18b6b;
}

.footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.footer__icon {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 38px;
  height: 38px;
}

.footer__icon img {
  width: 38px;
  height: 38px;
}

.footer__icon:hover {
  opacity: 0.7;
}

.footer__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1200px) {
  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__menu {
  margin-top: 30px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.footer__link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 150%;
}

.footer__link:hover {
  color: #b18b6b;
}

.footer__button {
  width: 179px;
  height: 41px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.footer__bottom a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__bottom a:hover {
  opacity: 0.7;
}
