@charset "UTF-8";
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5.5vw;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 30px;
  }
}
@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%;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Regular.woff2") format("woff2"), url("../../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Medium.woff2") format("woff2"), url("../../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-MediumItalic.woff2") format("woff2"), url("../../fonts/Inter-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-SemiBold.woff2") format("woff2"), url("../../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Bold.woff2") format("woff2"), url("../../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #1C1313;
  --text-color: var(--black);
  --grey: #A19F8D;
  --yellow: #FFD23F;
  --red: #E11F1A;
  --accent: var(--red);
  --bg-color: #F0EFE5;
  --brs: 4px;
  --font-family: "Inter", sans-serif;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  min-width: 320px;
  line-height: normal;
  color: var(--text-color);
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  margin: 0;
}
body.noscroll {
  overflow: hidden;
}

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

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-line: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration-line: none;
}

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

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

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

input, select, button {
  outline: none;
}

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

input:disabled {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

.clearfix:after {
  clear: both;
}

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

.hidden {
  display: none;
}

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

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

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

.h1 {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
}

.h2 {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
}

.h3 {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 60px;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  background-color: var(--accent);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn:active {
  background-color: #FF150F;
}
.btn--white {
  background-color: #fff;
  color: var(--text-color);
}
.btn--white:active {
  color: #fff;
  background-color: var(--accent);
}
.btn--outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 19px 60px;
}
.btn--outline:active {
  background-color: var(--accent);
  color: #fff;
}

@media (hover) {
  .btn:hover {
    background-color: #FF150F;
  }
  .btn--white:hover {
    color: #fff;
    background-color: var(--accent);
  }
  .btn--outline:hover {
    background-color: var(--accent);
    color: #fff;
  }
}
.section {
  margin: 160px 0;
}
.section-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-body {
  width: clamp(900px, 65vw, 2000px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.section-subtitle {
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--grey);
  margin-top: 20px;
}

.blockquote-content {
  padding: 110px 50px;
  background-color: var(--bg-color);
  border-radius: var(--brs);
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  position: relative;
}
.blockquote-content:after {
  position: absolute;
  content: "";
  right: 28px;
  top: calc(100% - 2px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 32px 0 0;
  border-color: var(--bg-color) transparent transparent transparent;
}
.blockquote-content--yellow {
  background-color: var(--yellow);
}
.blockquote-content--yellow:after {
  border-color: var(--yellow) transparent transparent transparent;
}
.blockquote blockquote {
  padding: 0;
  margin: 0;
  line-height: 130%;
  position: relative;
}
.blockquote blockquote:before, .blockquote blockquote:after {
  position: absolute;
  font-weight: 700;
  font-size: 48px;
  font-style: normal;
  line-height: 1;
}
.blockquote blockquote:before {
  content: "“";
  left: 0px;
  top: -75px;
}
.blockquote blockquote:after {
  content: "”";
  right: 0px;
  bottom: -75px;
}
.blockquote-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-left: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blockquote-author__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blockquote-author__name strong {
  font-weight: 700;
  font-size: 16px;
}
.blockquote-author__name span {
  font-weight: 400;
  font-size: 16px;
  margin-top: 7px;
}
.blockquote-author__avatar {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 14px;
  position: relative;
  overflow: hidden;
}
.blockquote-author__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 40px;
  position: relative;
  border-bottom: 1px solid #e3be45;
  margin-bottom: 40px;
}
.tabs-slider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background-color: var(--accent);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tabs-content {
  opacity: 0;
  z-index: -1;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
}
.tabs-content.active {
  opacity: 1;
  z-index: 0;
  position: relative;
  pointer-events: auto;
}

.tab {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  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-height: 56px;
  padding: 16px 0px;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: var(--text-color);
}
.tab:hover, .tab.active {
  color: var(--accent);
}

.wow {
  visibility: hidden;
}

@media only screen and (max-width: 1599px) {
  .section {
    margin: 130px 0;
  }
  .blockquote-content {
    padding: 100px 40px;
    font-size: 22px;
  }
  .blockquote-author {
    margin-left: 40px;
  }
  .h1 {
    font-size: 44px;
  }
  .h2 {
    font-size: 32px;
  }
  .h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1299px) {
  .section-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .section-body {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .main {
    margin-top: 72px;
  }
  .section {
    margin: 100px 0;
  }
  .section-subtitle {
    font-size: 20px;
    margin-top: 15px;
  }
  .blockquote-content {
    font-size: 20px;
  }
  .h1 {
    font-size: 40px;
  }
  .h2 {
    font-size: 28px;
  }
  .h3 {
    font-size: 24px;
  }
  .tab {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .blockquote--wide .blockquote-content:after {
    right: auto;
    left: 373px;
  }
}
@media only screen and (max-width: 575px) {
  .section {
    margin: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
  .blockquote-content {
    padding: 90px 30px;
    font-size: 16px;
  }
  .blockquote-author {
    margin-left: 10px;
  }
  .h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .btn--white {
    padding: 15px 40px;
    font-size: 13px;
  }
  .tabs {
    margin-bottom: 30px;
    gap: 30px;
  }
  .tab {
    font-size: 16px;
  }
}
.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

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

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  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(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  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(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  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(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  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 rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.rotateImage {
  -webkit-animation-name: rotateImage;
          animation-name: rotateImage;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

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

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

.page-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content > *:last-child {
  margin-bottom: 0;
}
.page-content a {
  text-decoration: underline;
}
.page-content a:hover {
  text-decoration: none;
}
.page-content p {
  margin: 20px 0;
}
.page-content b, .page-content strong {
  font-weight: 500;
}
.page-content ol, .page-content ul {
  padding: 0;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.page-content ol {
  counter-reset: item;
}
.page-content ol li {
  padding-left: 25px;
  position: relative;
}
.page-content ol li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  text-align: center;
  content: "";
  content: counter(item) ".";
  counter-increment: item;
  font-weight: 700;
  color: var(--accent);
}
.page-content ul li {
  position: relative;
  padding-left: 19px;
}
.page-content ul li:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--accent);
  left: 0;
  top: 8px;
}
.page-content h1 {
  margin: 30px 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
}
.page-content h2 {
  margin: 30px 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
}
.page-content h3 {
  margin: 30px 0;
  font-weight: 700;
  font-size: 24px;
}
.page-content h4 {
  margin: 20px 0;
  font-weight: 500;
  font-size: 20px;
}

@media only screen and (max-width: 1599px) {
  .page-content h1 {
    font-size: 44px;
  }
  .page-content h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .page-content {
    font-size: 14px;
  }
  .page-content h1 {
    font-size: 40px;
  }
  .page-content h2 {
    font-size: 28px;
  }
  .page-content h3 {
    font-size: 22px;
  }
  .page-content h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .page-content {
    font-size: 13px;
  }
  .page-content h1 {
    font-size: 36px;
  }
  .page-content h2 {
    font-size: 24px;
  }
  .page-content h3 {
    font-size: 20px;
    margin: 20px 0;
  }
  .page-content h4 {
    font-size: 15px;
  }
  .page-content ul,
  .page-content ol {
    gap: 15px;
  }
  .page-content ul li:before {
    top: 5px;
  }
}
.mfp-bg {
  background-color: var(--black);
  opacity: 0.75;
}

*::-webkit-input-placeholder {
  color: var(--text-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-moz-placeholder {
  color: var(--text-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*:-ms-input-placeholder {
  color: var(--text-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-ms-input-placeholder {
  color: var(--text-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::placeholder {
  color: var(--text-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input[type=text],
input[type=password],
input[type=url],
input[type=email],
input[type=number],
textarea {
  text-align: left;
  color: var(--text-color);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  height: 64px;
  padding: 0 30px;
  padding-top: 20px;
  border: none;
  border-radius: 4px;
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=text]:focus::-webkit-input-placeholder, input[type=password]:focus::-webkit-input-placeholder, input[type=url]:focus::-webkit-input-placeholder, input[type=email]:focus::-webkit-input-placeholder, input[type=number]:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input[type=text]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=url]:focus::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=number]:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input[type=text]:focus:-ms-input-placeholder, input[type=password]:focus:-ms-input-placeholder, input[type=url]:focus:-ms-input-placeholder, input[type=email]:focus:-ms-input-placeholder, input[type=number]:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
input[type=text]:focus::-ms-input-placeholder, input[type=password]:focus::-ms-input-placeholder, input[type=url]:focus::-ms-input-placeholder, input[type=email]:focus::-ms-input-placeholder, input[type=number]:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
input[type=text]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=number]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}
input[type=text].phone,
input[type=password].phone,
input[type=url].phone,
input[type=email].phone,
input[type=number].phone,
textarea.phone {
  padding-top: 0;
  padding-right: 30px;
}

textarea {
  resize: none;
  height: 95px;
  padding-top: 30px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 64px #fff;
  -webkit-text-fill-color: var(--text-color);
}

.form-field {
  display: block;
  position: relative;
}
.form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
}
.form-label {
  font-weight: 400;
  font-size: 13px;
  color: #c4c4c4;
  position: absolute;
  left: 30px;
  top: 10px;
  pointer-events: none;
  z-index: 2;
}
.form-label span {
  color: var(--accent);
}
.form-links {
  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;
  margin-top: 20px;
  gap: 10px;
}
.form-link {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-color);
}
.form-link a {
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form-link a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.iti {
  width: 100%;
  position: relative;
  z-index: 3;
}
.iti .iti__selected-flag {
  outline: none;
  border-radius: 4px 0 0 4px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  background-color: var(--bg-color) !important;
}
.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: 1px;
  margin-bottom: 1px;
  border: none;
  white-space: normal;
  color: var(--text-color);
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.iti__country-list li {
  color: var(--text-color);
  font-weight: 500;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.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);
}

.fancybox-bg {
  background-color: var(--black);
}

.fancybox-is-open .fancybox-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 {
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 50px;
  padding-top: 80px;
  width: 100%;
  max-width: 500px;
  position: relative;
  display: none;
  margin: 20px auto;
  background-color: var(--yellow);
}
.popup-title {
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 32px;
}
.popup-text {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close-btn {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
}
.popup__close-btn svg {
  width: 15px;
  height: 15px;
}
.popup-form .btn {
  width: 100%;
  margin-top: 20px;
}
.popup-form .form-fields {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup-form__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}
.popup-form__btns .btn {
  margin-top: 0;
}
.popup--booking input[type=text],
.popup--booking input[type=password],
.popup--booking input[type=url],
.popup--booking input[type=email],
.popup--booking input[type=number] {
  height: 85px;
  padding-top: 30px;
}
.popup--booking input:-webkit-autofill,
.popup--booking input:-webkit-autofill:hover,
.popup--booking input:-webkit-autofill:focus,
.popup--booking input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 85px #fff;
}
.popup--booking .form-label {
  top: 20px;
}
.popup--booking .form-fields {
  -webkit-box-shadow: 0 5px 10px 0 rgba(211, 161, 0, 0.3);
          box-shadow: 0 5px 10px 0 rgba(211, 161, 0, 0.3);
}

@media only screen and (max-width: 575px) {
  input[type=text],
  input[type=password],
  input[type=url],
  input[type=email],
  input[type=number],
  textarea {
    padding-left: 20px;
    padding-right: 20px;
  }
  input[type=text].phone,
  input[type=password].phone,
  input[type=url].phone,
  input[type=email].phone,
  input[type=number].phone,
  textarea.phone {
    padding-right: 20px;
  }
  .form-label {
    left: 20px;
  }
  .form-link {
    font-size: 14px;
  }
  .popup {
    padding-left: 30px;
    padding-right: 30px;
    max-width: calc(100% - 40px);
  }
}
.ui-datepicker {
  border-radius: 4px;
}
.ui-datepicker-title {
  background-color: #fff;
  color: var(--text-color);
}
.ui-datepicker.ui-widget.ui-widget-content {
  border: 1px solid var(#000000, 0.2);
}
.ui-datepicker-header {
  border-radius: 4px;
  background-color: var(--bg-color);
}
.ui-datepicker-calendar {
  color: var(--text-color);
  font-family: "Inter", sans-serif;
}
.ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
  background-color: var(--yellow);
}
.ui-datepicker-calendar .ui-datepicker-today .ui-state-default:hover, .ui-datepicker-calendar .ui-datepicker-today .ui-state-default.ui-state-active {
  background-color: var(--accent);
}
.ui-datepicker-calendar .ui-state-default {
  text-align: center;
  background-color: var(--bg-color);
  border-color: transparent;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  color: var(--text-color);
  font-weight: 500;
}
.ui-datepicker-calendar .ui-state-default:hover {
  background-color: var(--accent);
  color: #fff;
}
.ui-datepicker-calendar .ui-state-default.ui-state-active {
  background-color: var(--accent);
  color: #fff;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: center;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: transparent;
  border: none;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-prev {
  background-image: url("../../images/datepicker-prev.svg");
}
.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-next {
  background-image: url("../../images/datepicker-next.svg");
}
.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
  top: 2px;
}

.wpcf7-list-item-label {
  display: inline-block;
  cursor: pointer;
  padding-left: 30px;
  text-align: left;
  line-height: auto;
  position: relative;
}
.wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 3px;
  height: 20px;
  width: 20px;
  top: 0px;
  left: 0px;
  background-color: #fff;
}
.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background-image: url("../../images/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  left: 3px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wpcf7-list-item input[type=checkbox] {
  display: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-acceptance {
  margin-top: 10px;
  display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.form-checkbox {
  margin-top: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.form-checkbox__input {
  display: none;
}
.form-checkbox__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.form-checkbox__label a {
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form-checkbox__label a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: none;
  background-color: #fff;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.custom-checkbox::after {
  display: block;
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background-image: url("../../images/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  left: 3px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form-checkbox__input:checked + .form-checkbox__label .custom-checkbox::after {
  opacity: 1;
}

.input-password input {
  width: 100%;
  padding-right: 50px;
}
.input-password__toggle {
  border: none;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: absolute;
  background-color: transparent;
  cursor: pointer;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: 0;
  width: 20px;
  height: 20px;
  background-image: url("../../images/eye-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.input-password__toggle.is-active {
  opacity: 1;
}

@media only screen and (max-width: 575px) {
  .popup-title {
    font-size: 24px;
  }
  .popup-text {
    font-size: 14px;
  }
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 14px;
  }
  .form-checkbox {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo img {
  width: 100%;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social__link {
  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;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.social__link svg {
  width: 22px;
  height: 22px;
}
.social__link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.social__link:active svg path {
  fill: var(--accent);
}

@media (hover) {
  .social__link:hover svg path {
    fill: var(--accent);
  }
}
.language {
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-size: 14px;
  font-weight: 500;
}
.language__current {
  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;
}
.language.active {
  background-color: var(--yellow);
}
.language.active .language__icon {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.language__dropdown {
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0px;
  right: 0px;
  padding: 10px 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
  background-color: var(--yellow);
}
.language__dropdown.visible {
  pointer-events: auto;
  opacity: 1;
}
.language__item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.language__item:hover {
  color: var(--accent);
}
.language__icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3.5px 0 3.5px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-color: var(--text-color) transparent transparent transparent;
  margin-left: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: 1px;
}
.language__text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.hamburger {
  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;
  padding: 0;
  width: 50px;
  height: 13px;
  background-color: transparent;
  z-index: 12;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hamburger .hamburger-box {
  width: 100%;
  height: 13px;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
  background-color: var(--accent);
  height: 3px;
  width: 100%;
  border-radius: 9999em;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger .hamburger-inner::after {
  opacity: 0;
  top: 20px;
}
.hamburger .hamburger-inner::before {
  top: 10px;
  width: 25px;
}
.hamburger.is-active {
  height: 38px;
}
.hamburger.is-active .hamburger-inner {
  top: -3px;
}
.hamburger.is-active .hamburger-inner::after {
  opacity: 1;
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.header.fixed {
  height: 72px;
}
.header.fixed .menu {
  top: 72px;
}
.header.fixed .header-block {
  height: 72px;
}
.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;
  gap: 30px;
  height: 90px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 208px;
  margin-right: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__logo--white {
  display: none;
}
.header-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-navbar__cell {
  min-height: 100%;
  padding: 0 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid rgba(28, 19, 19, 0.2);
  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;
}
.header-navbar__cell:last-child {
  border-right: none;
}
.header-navbar__cell--language {
  padding: 0;
}
.header-navbar__cell--language .language {
  padding: 0 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-phone {
  white-space: nowrap;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header-login svg {
  margin-right: 5px;
  width: 24px;
  height: 24px;
  flex-sharink: 0;
}
.header-login svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.header.opened {
  background-color: var(--yellow);
}
.header.opened .header__language .language__dropdown {
  background-color: #fff;
}
.header.opened .menu {
  opacity: 1;
  visibility: visible;
}
.header--transparent:not(.fixed):not(.opened) {
  background-color: transparent;
  border-color: #ccc;
  color: #fff;
}
.header--transparent:not(.fixed):not(.opened) .header__logo {
  display: none;
}
.header--transparent:not(.fixed):not(.opened) .header__logo--white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header--transparent:not(.fixed):not(.opened) .header-navbar__cell {
  border-color: rgba(255, 255, 255, 0.2);
}
.header--transparent:not(.fixed):not(.opened) .social__link svg path {
  fill: #fff;
}
.header--transparent:not(.fixed):not(.opened) .social__link:active svg path {
  fill: var(--accent);
}
.header--transparent:not(.fixed):not(.opened) .header-phone {
  color: #fff;
}
.header--transparent:not(.fixed):not(.opened) .header-phone:hover {
  color: var(--accent);
}
.header--transparent:not(.fixed):not(.opened) .header-login {
  color: #fff;
}
.header--transparent:not(.fixed):not(.opened) .header-login svg path {
  fill: #fff;
}
.header--transparent:not(.fixed):not(.opened) .header-login:hover {
  color: var(--accent);
}
.header--transparent:not(.fixed):not(.opened) .header-login:hover svg path {
  fill: var(--accent);
}
.header--transparent:not(.fixed):not(.opened) .language__current {
  color: #fff;
}
.header--transparent:not(.fixed):not(.opened) .language__icon {
  border-color: #fff transparent transparent transparent;
}
.header--transparent:not(.fixed):not(.opened) .language.active .language__current {
  color: var(--text-color);
}
.header--transparent:not(.fixed):not(.opened) .language.active .language__icon {
  border-color: var(--text-color) transparent transparent transparent;
}
.header--transparent:not(.fixed):not(.opened) .hamburger .hamburger-inner,
.header--transparent:not(.fixed):not(.opened) .hamburger .hamburger-inner::after,
.header--transparent:not(.fixed):not(.opened) .hamburger .hamburger-inner::before {
  background-color: #fff;
}

@media (hover) {
  .header-phone:hover {
    color: var(--accent);
  }
  .header-login:hover {
    color: var(--accent);
  }
  .header-login:hover svg path {
    fill: var(--accent);
  }
  .header--transparent .social__link:hover svg path {
    fill: var(--accent);
  }
}
.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;
  overflow: hidden;
  position: absolute;
  top: 90px;
  right: 0;
  left: 0;
  padding: 60px 0;
  height: auto;
  background-color: var(--yellow);
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px 50px;
}
.menu__item.current_page_item .menu__link {
  color: var(--accent);
}
.menu__link {
  font-size: 24px;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu__link:hover {
  color: var(--accent);
}
.menu__link svg {
  width: 20px;
  height: 20px;
  top: 2px;
  position: relative;
}
.menu-contacts {
  display: none;
}

.overlay {
  background-color: rgba(28, 19, 19, 0.75);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  position: fixed;
  top: 0;
  height: 100dvh;
  left: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
}
.overlay.visible {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1199px) {
  .header {
    height: 72px;
    -webkit-transition: none;
    transition: none;
  }
  .header-block {
    height: 72px;
    -webkit-transition: none;
    transition: none;
  }
  .header__logo {
    width: 180px;
  }
  .header-navbar__cell--social {
    display: none;
  }
  .menu {
    top: 72px;
  }
}
@media only screen and (max-width: 991px) {
  .header-navbar__cell--phone {
    display: none;
  }
  .menu {
    padding: 0;
    height: 100dvh;
    position: fixed;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu .container {
    padding: 120px 0;
    min-height: calc(100% - 72px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-top: 150px;
  }
  .menu-email {
    font-weight: 500;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .menu-email:hover {
    color: var(--accent);
  }
  .menu-phone {
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .menu-phone:hover {
    color: var(--accent);
  }
  .menu__social {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hamburger .hamburger-inner::before {
    width: 25px;
    right: 0;
  }
  .header-navbar {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(28, 19, 19, 0.2);
    display: none;
    background-color: var(--yellow);
  }
  .header-navbar__cell {
    width: 50%;
    padding: 0;
  }
  .header__language {
    width: 100%;
  }
  .header-login {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header.opened .header-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header--transparent:not(.fixed):not(.opened) {
    border-color: rgba(28, 19, 19, 0.2);
  }
  .header--transparent:not(.fixed):not(.opened) .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header--transparent:not(.fixed):not(.opened) .header__logo--white {
    display: none;
  }
  .header--transparent:not(.fixed):not(.opened) .hamburger .hamburger-inner,
  .header--transparent:not(.fixed):not(.opened) .hamburger .hamburger-inner::after,
  .header--transparent:not(.fixed):not(.opened) .hamburger .hamburger-inner::before {
    background-color: var(--text-color);
  }
  .menu .container {
    padding-top: 190px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .menu-contacts {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .header__logo {
    width: 126px;
  }
  .menu .container {
    padding-top: 160px;
  }
  .menu-contacts {
    margin-top: 75px;
  }
}
.header.has-btn {
  height: 150px;
}
.header.has-btn .header-navbar {
  min-height: auto;
  height: 70px;
  border-top: 1px solid rgba(28, 19, 19, 0.2);
}
.header.has-btn.opened + .main .hero__btn {
  display: none;
}

.hero {
  min-height: 860px;
  position: relative;
  margin-top: -90px;
  padding-top: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero-block {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero__container {
  padding-right: 50px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-image {
  display: none;
}
.hero__btn {
  display: none;
}
.hero-info {
  color: #fff;
  padding-bottom: 100px;
}
.hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 60px);
  line-height: 150%;
  max-width: 500px;
}
.hero-text {
  font-size: 16px;
  margin-top: 40px;
  line-height: 1.5;
  max-width: 580px;
}

.booking-form {
  background-color: var(--yellow);
  padding: 70px 100px;
}
.booking-form__tabs {
  border-color: var(#1C1313, 0.2);
}
.booking-form .form-fields {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.booking-form .form-field {
  width: 100%;
}
.booking-form .form-label {
  top: 20px;
}
.booking-form input[type=text],
.booking-form input[type=password],
.booking-form input[type=url],
.booking-form input[type=email],
.booking-form input[type=number] {
  height: 91px;
  padding-top: 30px;
}
.booking-form input:-webkit-autofill,
.booking-form input:-webkit-autofill:hover,
.booking-form input:-webkit-autofill:focus,
.booking-form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 91px #fff;
}
.booking-form .btn {
  margin-top: 40px;
  min-width: 250px;
}

@media only screen and (min-width: 2000px) {
  .hero {
    aspect-ratio: 2.5;
  }
}
@media only screen and (min-width: 3000px) {
  .hero {
    aspect-ratio: 2.75;
  }
}
@media only screen and (max-width: 1599px) {
  .hero {
    min-height: 760px;
  }
  .booking-form {
    padding: 50px 70px;
  }
}
@media only screen and (max-width: 1299px) {
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .hero-bg {
    min-height: auto;
  }
  .hero__container {
    padding-right: 0;
  }
  .hero-block {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hero-body {
    width: 100%;
  }
  .hero-info {
    padding-bottom: 0;
    max-width: 50%;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-header {
    margin-bottom: 80px;
  }
  .booking-form {
    padding: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero {
    margin-top: -75px;
    padding-top: 120px;
  }
  .hero-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero__container {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-text {
    font-size: 14px;
    margin-top: 30px;
  }
  .hero-info {
    max-width: 60%;
  }
  .booking-form {
    padding: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero {
    background-color: var(--yellow);
  }
  .hero-bg {
    display: none;
  }
  .hero-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .hero-image img {
    width: 100%;
  }
  .hero-info {
    color: var(--text-color);
    max-width: 100%;
  }
  .hero__btn {
    margin-top: 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .booking-form {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    margin-top: -75px;
    padding-top: 105px;
  }
  .hero-header {
    margin-bottom: 30px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-text {
    font-size: 13px;
    margin-top: 25px;
  }
  .hero__btn {
    margin-top: 30px;
    width: 100%;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    will-change: transform;
  }
  .hero__btn.fixed {
    position: fixed;
    left: 30px;
    right: 30px;
    top: 40px;
    width: calc(100% - 60px);
    z-index: 20;
  }
}
.service-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.service-cards-section {
  margin-top: 0;
}
.service-cards-section .section-block {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.service-cards__blockquote {
  margin-top: auto;
  max-width: 295px;
}

.service-card {
  width: 50%;
  padding: 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--bg-color);
}
.service-card__label {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  border: 1px solid rgba(225, 31, 26, 0.4);
  border-radius: 2px;
  padding: 5px 15px;
  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;
}
.service-card__label img {
  min-width: 12px;
  margin-right: 12px;
}
.service-card__list {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin-bottom: 50px;
  font-size: 15px;
  font-size: 15px;
  line-height: 150%;
}
.service-card__list li {
  padding-left: 26px;
  position: relative;
}
.service-card__list li:before {
  position: absolute;
  content: "";
  left: 2px;
  top: 5px;
  width: 12px;
  height: 10px;
  background-image: url("../../images/red-crown.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service-card__btn {
  width: 100%;
  margin-top: auto;
  width: 100%;
}
.service-card--dark {
  color: #fff;
  background-color: var(--black);
}
.service-card--dark .service-card__label {
  color: var(--yellow);
  border: 1px solid rgba(255, 210, 63, 0.4);
}
.service-card--dark .service-card__list li:before {
  background-image: url("../../images/yellow-crown.svg");
}

@media only screen and (max-width: 1599px) {
  .service-card {
    padding: 80px 60px;
  }
}
@media only screen and (max-width: 1299px) {
  .service-cards__blockquote {
    display: none;
  }
  .service-cards-section .section-header {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .service-card__label {
    margin-bottom: 30px;
  }
  .service-card__list {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .service-card {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .service-card {
    padding: 40px;
    background-color: var(--yellow);
  }
  .service-card--dark {
    background-color: var(--black);
  }
}
@media only screen and (max-width: 575px) {
  .service-cards {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .service-cards::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    padding: 30px;
    min-width: 274px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .service-card__label {
    margin-bottom: 20px;
  }
  .service-card__list {
    font-size: 12px;
    margin-bottom: 0px;
  }
  .service-card__btn {
    margin-top: 30px;
  }
}
.tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}

.tizer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 210px;
}
.tizer__value {
  font-weight: 700;
  font-size: 48px;
  color: var(--accent);
}
.tizer__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  margin-top: 6px;
}

@media only screen and (max-width: 1199px) {
  .tizer__value {
    font-size: 40px;
  }
  .tizer__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .tizers {
    -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;
  }
  .tizer {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .tizer__value {
    font-size: 32px;
  }
  .tizer__text {
    font-size: 12px;
  }
}
.price {
  background-color: var(--bg-color);
  padding: 80px 0;
}
.price-content {
  width: 100%;
}
.price-tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.price-tables-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
.price-tables-column .price-table {
  width: 100%;
}
.price-tables__text {
  margin-top: 30px;
  margin-right: 50px;
}
.price-table {
  width: 50%;
  background-color: var(--yellow);
  line-height: 130%;
}
.price-table__row {
  padding: 30px 40px;
  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;
  border-bottom: 1px solid #e3be45;
  font-size: 15px;
  gap: 30px;
}
.price-table__row:last-child {
  border-bottom: none;
}
.price-table__value {
  font-weight: 600;
  font-size: 20px;
  text-align: right;
  white-space: nowrap;
}
.price-table--additionally {
  background-color: var(--black);
  color: #fff;
}
.price-table--additionally .price-table__row {
  border-color: #2a2121;
}
.price-table--additionally .price-table__title {
  font-size: 13px;
}
.price-table--additionally .price-table__value {
  font-size: 16px;
}

@media only screen and (max-width: 1299px) {
  .price {
    padding: 0;
  }
  .price-section {
    background-color: var(--bg-color);
    padding: 130px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .price-section {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .price-tables {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price-tables-column {
    width: 100%;
  }
  .price-tables-column .price-table {
    width: 100%;
  }
  .price-tables__text {
    margin-right: 0px;
  }
  .price-table {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .price-section {
    padding: 60px 0;
  }
  .price-table__row {
    padding: 20px 20px;
    min-height: auto;
  }
}
.meeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 190px;
}
.meeting__blockquote {
  width: 40%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 1599px) {
  .meeting {
    gap: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .meeting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .meeting__blockquote {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .meeting {
    gap: 30px;
  }
}
.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.service {
  width: 33.33%;
  aspect-ratio: 0.7;
  padding: 48px 55px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(36, 36, 36, 0.5)), to(rgba(36, 36, 36, 0.15)));
  background-image: linear-gradient(180deg, rgba(36, 36, 36, 0.5) 0, rgba(36, 36, 36, 0.15) 100%);
}
.service__title {
  position: relative;
  z-index: 2;
}
.service__subtitle {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  line-height: 1.5;
  font-size: 15px;
}
.service__btn {
  width: 100%;
  margin-top: auto;
  z-index: 2;
}

@media only screen and (min-width: 2000px) {
  .service {
    min-height: 587px;
    aspect-ratio: auto;
  }
}
@media only screen and (max-width: 1599px) {
  .service {
    padding: 40px 45px;
  }
  .service__btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .service__subtitle {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .service {
    padding: 30px;
  }
  .service__btn {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-section {
    margin-bottom: 0;
  }
  .service {
    width: 100%;
    aspect-ratio: auto;
    min-height: 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service__subtitle {
    margin-bottom: 40px;
  }
  .service__btn {
    width: auto;
  }
}
@media only screen and (max-width: 575px) {
  .service__subtitle {
    font-size: 13px;
    margin-top: 10px;
  }
}
.faq-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.faq-items {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq-items + .faq-items {
  margin-left: -1px;
}
.faq-item {
  width: 100%;
  border: 1px solid #E3E0C8;
  border-bottom: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.faq-item:last-child {
  border-bottom: 1px solid #E3E0C8;
}
.faq-item.is-open {
  background-color: var(--bg-color);
}
.faq-item.is-open .faq-item__toggle {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.faq-item.is-open .faq-item__body {
  margin: -30px 0 60px;
  opacity: 1;
}
.faq-item__header {
  padding: 60px 100px;
  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;
  cursor: pointer;
}
.faq-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
}
.faq-item__toggle {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 38px;
  background-image: url("../../images/faq-toggle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.faq-item__body {
  padding: 0 100px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.35s ease;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.35s ease;
  font-size: 15px;
  line-height: 130%;
}

@media only screen and (max-width: 1599px) {
  .faq-item__header {
    padding-left: 70px;
    padding-right: 70px;
  }
  .faq-item__body {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media only screen and (max-width: 1299px) {
  .faq-section {
    background-color: var(--bg-color);
    padding: 130px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .faq-section {
    padding: 100px 0;
  }
  .faq-item__header {
    padding-left: 50px;
    padding-right: 50px;
  }
  .faq-item__toggle {
    margin-right: 30px;
  }
  .faq-item__title {
    font-size: 18px;
  }
  .faq-item__body {
    font-size: 14px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq-items {
    width: 100%;
  }
  .faq-items + .faq-items {
    margin-left: 0;
  }
  .faq-items:last-child .faq-item:last-child {
    border-bottom: 1px solid #E3E0C8;
  }
  .faq-item:last-child {
    border-bottom: none;
  }
}
@media only screen and (max-width: 575px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-item.is-open .faq-item__body {
    margin: 0px 0 30px;
  }
  .faq-item__header {
    padding: 30px;
  }
  .faq-item__toggle {
    margin-right: 20px;
  }
  .faq-item__title {
    font-size: 15px;
  }
  .faq-item__body {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .faq__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.payment-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.payment-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
}

.footer {
  background-color: var(--yellow);
  padding: 80px 0;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 200px;
}
.footer-info {
  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;
}
.footer__logo {
  width: 208px;
}
.footer-copy {
  font-size: 16px;
  line-height: 140%;
  margin-top: auto;
}
.footer-nav {
  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: 30px;
  margin-left: auto;
}
.footer-men, .footer-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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.footer-menu a {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  position: relative;
}
.footer-menu a:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-color);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.footer-menu a:active:after {
  width: 100%;
}
.footer-links {
  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;
  margin-top: auto;
  gap: 15px;
}
.footer-links a {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-line: underline;
  text-decoration-color: var(--text-color);
  -webkit-transition: text-decoration-color 0.3s ease;
  transition: text-decoration-color 0.3s ease;
}
.footer-links a:active {
  text-decoration-line: none;
  text-decoration-color: transparent;
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-phone {
  font-weight: 500;
  font-size: 20px;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-phone:hover {
  color: var(--accent);
}
.footer-email {
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-email:hover {
  color: var(--accent);
}
.footer__social {
  margin: 50px 0;
}

@media (hover) {
  .footer-menu a:hover:after {
    width: 100%;
  }
  .footer-links a:hover {
    text-decoration-line: none;
    text-decoration-color: transparent;
  }
}
.fixed-btn {
  display: none;
}

@media only screen and (max-width: 1599px) {
  .footer-block {
    gap: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-block {
    gap: 50px;
  }
  .footer-nav {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .footer-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-info {
    width: calc(50% - 25px);
  }
  .footer-nav {
    width: calc(50% - 25px);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer-menu, .footer-links {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer-contacts {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  .footer-contacts .payment-methods {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__social {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-block {
    -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;
  }
  .footer-info {
    width: 100%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-nav {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-menu, .footer-links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer-contacts .payment-methods {
    margin-top: 50px;
  }
  .footer__social {
    margin-top: 50px;
  }
  .footer-copy {
    text-align: center;
  }
  .fixed-btn {
    display: block;
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    padding: 20px;
    z-index: 10;
    border-top: 1px solid rgba(28, 19, 19, 0.2);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .fixed-btn.visible {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .fixed-btn .btn {
    width: 100%;
  }
  .wrap:has(.fixed-btn) .footer {
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 60px 0;
  }
  .footer-copy {
    font-size: 13px;
  }
}
.page-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.page-hero {
  margin-bottom: 100px;
}
.page-hero + .section {
  margin-top: 0px;
}
.page-image {
  width: clamp(900px, 65vw, 2000px);
  margin-right: -5.5vw;
  aspect-ratio: 4.195;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  position: relative;
}
.page-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-content > *:first-child {
  margin-top: 0;
}
.text-content > *:last-child {
  margin-bottom: 0;
}
.text-section {
  margin: 70px 0;
}
.text-image {
  width: calc(100% + 5.5vw);
  max-width: calc(100% + 5.5vw);
}
.text-image img {
  width: 100%;
}

.table {
  width: 100%;
}
.table table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 25px 40px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}
.table thead th {
  background-color: #E3E0C8;
  font-weight: 600;
}
.table tbody td {
  background-color: var(--bg-color);
  border-top: 1px solid #E3E0C8;
}
.table strong {
  font-weight: 600;
}

.table-accordion-toggle {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

@media (max-width: 767px) {
  .table table,
  .table thead,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table thead {
    display: none;
  }
  .table tbody {
    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;
  }
  .table strong {
    font-weight: 400;
  }
  .table .table-title {
    padding: 0;
    background-color: #E3E0C8;
  }
  .table-accordion-toggle {
    padding: 25px 40px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
    color: var(--text-color);
  }
  .table-accordion-toggle:after {
    position: absolute;
    content: "";
    right: 40px;
    top: 50%;
    width: 20px;
    height: 20px;
    background-image: url("../../images/table-toggle.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    treansform-origin: center;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .table-accordion-row td:not(.table-title) {
    display: none;
  }
  .table-accordion-row td[data-label] {
    position: relative;
    text-align: right;
  }
  .table-accordion-row td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    font-weight: 600;
    width: 50%;
    text-align: left;
  }
  .table-accordion-row.active .table-accordion-toggle:after {
    -webkit-transform: translateY(-50%) scale(-1, -1);
            transform: translateY(-50%) scale(-1, -1);
  }
  .table-accordion-row.active td:not(.table-title) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .table td,
  .table th {
    padding: 20px;
  }
  .table-accordion-toggle {
    padding: 20px;
  }
  .table-accordion-toggle:after {
    right: 20px;
  }
}
@media only screen and (max-width: 1299px) {
  .page-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-image {
    width: 113vw;
    margin-left: -6.5vw;
    margin-right: -6.5vw;
  }
  .text-image {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .page-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-hero {
    margin-bottom: 70px;
  }
  .page-image {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2.45;
  }
}
@media only screen and (max-width: 575px) {
  .page-hero {
    margin-bottom: 40px;
  }
  .page-image {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
    max-width: calc(100% + 60px);
  }
  .text-section {
    margin: 40px 0;
  }
  .text-image {
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
  }
}
.payment {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.payment-section {
  margin-top: 0;
}
.payment-header {
  margin-top: 100px;
}

.payment-item {
  padding: 80px 100px;
  background-color: var(--bg-color);
  width: 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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.payment-item:nth-child(4n+2), .payment-item:nth-child(4n+3) {
  background-color: var(--yellow);
}
.payment-item:nth-child(4n+2) .payment-item__qr, .payment-item:nth-child(4n+3) .payment-item__qr {
  background-color: #DBB431;
}
.payment-item__text {
  font-size: 15px;
  line-height: 1.5;
}
.payment-item__text strong, .payment-item__text b {
  font-weight: 700;
}
.payment-item__text a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.payment-item__text a:hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.payment-item__qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  width: 180px;
  height: 180px;
  padding: 8px;
  margin-left: -8px;
  background-color: #CDCBBC;
}
.payment-item__qr img {
  width: 100%;
}

@media only screen and (max-width: 1599px) {
  .payment-item {
    padding: 60px 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .payment-item__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .payment-header {
    margin-top: 70px;
  }
  .payment-item {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .payment-item {
    width: 100%;
  }
  .payment-item:nth-child(4n+2), .payment-item:nth-child(4n+3) {
    background-color: var(--bg-color);
  }
  .payment-item:nth-child(4n+2) .payment-item__qr, .payment-item:nth-child(4n+3) .payment-item__qr {
    background-color: #CDCBBC;
  }
  .payment-item:nth-child(2n) {
    background-color: var(--yellow);
  }
  .payment-item:nth-child(2n) .payment-item__qr {
    background-color: #CDCBBC;
  }
}
@media only screen and (max-width: 575px) {
  .payment-header {
    margin-top: 40px;
  }
  .payment-item {
    padding: 40px 30px;
  }
  .payment-item__text {
    font-size: 13px;
  }
}
