/* Bootstrap part start */
@import "../fonts/fontawesome/faces.min.css";
@import "../fonts/uniform/faces.css";
@import "../fonts/chonburi/faces.css";
@import "../fonts/montserrat/faces.css";

/* common styles start */
:root {
  --color-error: #dc3545;
  --color-blackText: #3a3a3c;
  --color-blackBg: #1d1f23;
  --color-whiteText: #ffffff;
  --color-whiteBg: #ffffff;
  --color-yellowBg: #b29c51;
  --color-yellowTransparent: rgba(178, 156, 81, 0.9);
  --color-yellowText: #b29c51;
  --color-grayText: #adadad;
  --color-grayBg: #ececec;
  --color-grayLine: #6a6b6d;
  --font-family-m: "Montserrat", sans-serif;
  --font-family-2: "Uniform 2", sans-serif;
  --font-family-3: "Uniform 3", sans-serif;
  --font-family-4: "Uniform 4", sans-serif;
  --font-family-6: "Uniform 6", sans-serif;
  --font-family-c: "Chonburi", sans-serif;
  --grid-column-gap: 30px;
  --grid-row-gap: 30px;
  --border-radius: 5px;
}

html,
body {
  font-family: var(--font-family-3);
  color: var(--color-blackText);
  scroll-behavior: smooth;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  line-height: 26px;
}

header {
  height: 100%;
}

.inner header {
  height: auto;
}

body[data-id="79"] header {
  height: 80%;
}

footer {
  background: var(--color-blackBg);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 1350px) {
  .container,
  .container-fluid {
    max-width: 100%;
  }
  .container {
    --bs-gutter-x: 30px;
  }
}

.row.reverse-row {
  flex-direction: row-reverse;
}

.row.bigger-gap > div:first-child {
  padding-right: 50px;
}

.row.bigger-gap > div:last-child {
  padding-left: 50px;
}

.row.bigger-gap.reverse-row > div:first-child {
  padding-left: 50px;
}

.row.bigger-gap.reverse-row > div:last-child {
  padding-right: 50px;
}

@media (max-width: 991.98px) {
  .row.bigger-gap > div:first-child {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .row.bigger-gap > div:last-child {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .row.bigger-gap.reverse-row > div:first-child {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .row.bigger-gap.reverse-row > div:last-child {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

.block_circle,
.featurette__link,
.roundabout__navigation button {
  border-radius: 50%;
}

.flex_center,
.button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.absolute_cover,
#call-section:before,
.banner:after,
.banner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* buttons styles start */
.btn:focus,
.bootbox-close-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.button {
  font-family: var(--font-family-4);
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding: 26px 26px 22px;
  border-radius: calc(var(--border-radius) * 8);
  border: none;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.button i {
  font-size: 24px;
}
.button_yellow {
  background: var(--color-yellowBg);
  color: var(--color-whiteText);
}
.button_yellow:hover,
.button_yellow:focus {
  color: var(--color-whiteText);
}
.button_framed {
  background: none !important;
  border-width: 1px;
  border-style: solid;
}
.button_rounded {
  border-radius: 30px;
}
.button:focus {
  outline: none;
  box-shadow: none;
}

/* buttons styles end */
.block-header__prepend {
  font-size: 14px;
  font-family: var(--font-family-3);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--color-grayText);
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.block-header__prepend:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: -60px;
  margin-top: -1px;
  width: 47px;
  height: 1px;
  border-top: 1px solid var(--color-grayText);
}
.block-header.block-header_centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block-header.block-header_white {
  color: var(--color-whiteText);
}
.block-header.block-header_centered > * {
  text-align: center;
}
.block-header.block-header_centered .block-header__prepend:after {
  display: none;
}
.block-header h2 {
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 60px;
  font-weight: normal;
  font-family: var(--font-family-c);
  line-height: 60px;
  color: var(--color-blackText);
}
.block-header_white h2 {
  color: var(--color-whiteText);
}
@media (max-width: 991.98px) {
  .block-header h2 {
    margin-bottom: 30px;
    font-size: 55px;
    line-height: 55px;
  }
}
@media (max-width: 767.98px) {
  .block-header h2 {
    margin-bottom: 30px;
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 450px) {
  .block-header h2 {
    font-size: 42px;
    line-height: 42px;
  }
}

@media (max-width: 360px) {
  .block-header h2 {
    margin-bottom: 30px;
    font-size: 42px;
    line-height: 42px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .block-header h2 {
    font-size: 46px;
    line-height: 50px;
  }
}
.custom-checkbox-group {
  display: flex;
  align-items: flex-start;
}
.custom-checkbox-group label {
  line-height: 24px;
}
.custom-checkbox-group ~ div.error {
  display: none !important;
}
.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .custom-checkbox {
    margin-right: 20px;
  }
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: #fff;
  border-radius: 3px;
}
.checkmark.error {
  background-color: var(--color-error);
}

.contact-form__form .form-group .error ~ .checkmark {
  background-color: var(--color-error);
}

.custom-checkbox input:checked ~ .checkmark,
.custom-checkbox input:checked {
  background-color: #fff !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 19px;
  height: 19px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==")
    2px 2px no-repeat;
  animation: checkbox 0.3s linear;
}

@keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 19px;
  }
}
.modal {
  font-size: 16px;
}

.modal-header {
  font-size: 24px;
}
.modal-header button {
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 30px;
  padding-top: 4px;
}

.bootbox.modal .modal-footer .btn {
  font-family: var(--font-family-4);
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 66px 14px;
  border-radius: calc(var(--border-radius) * 8);
  border: none;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--color-yellowBg);
  color: var(--color-whiteText);
}
.bootbox.modal .modal-header button {
  border: none;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 18px;
  padding-top: 4px;
}
.bootbox-body {
  font-size: 18px;
  line-height: 32px;
}

.bootbox.modal .modal-footer {
  justify-content: center !important;
}

@media (max-width: 575.98px) {
  .modal-body {
    overflow-y: auto;
    scrollbar-width: none;
  }
  .modal-body::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }
}

.modal-title {
  font-size: 24px;
  margin-top: 0;
}

#modal_backdrop.invisible {
  -webkit-transition: visibility 0.3s ease-out;
  transition: visibility 0.3s ease-out;
}

#modal_backdrop.WOLoading i {
  display: none;
}

#modal_backdrop .modal-backdrop {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

#modal_backdrop.invisible .modal-backdrop i {
  animation: none !important;
}

#modal_backdrop:not(.invisible) .modal-backdrop {
  opacity: 0.7;
  color: #fff;
  z-index: 1100;
}

#modal_backdrop:not(.invisible) .modal-backdrop i {
  width: auto;
}
/*commmon styles end */

/* Cookie Warning */
#cookie {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1100;
}

.CookiePreferencesPopup {
  z-index: 1101;
}

#cookie-content {
  width: calc(100% - 40px);
  max-width: 350px;
  position: fixed;
  z-index: 999;
  left: 20px;
  bottom: 20px;
  background-color: var(--color-whiteBg);
  color: var(--color-blackText);
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px;

  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#cookie .cookie-text {
  padding-bottom: 0;
  text-align: center;
}

#cookie .cookie_learn_more {
  padding-bottom: 10px;
}

#cookie .cookie_learn_more a {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-yellowText);
  text-align: center;
}

#cookie .cookie_preferences_button button {
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--font-family-4);
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding: 26px 26px 22px;
  border-radius: calc(var(--border-radius) * 8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-blackText);
}

#cookie #cookie-content > .btn {
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding: 26px 26px 22px;
  border-radius: calc(var(--border-radius) * 8);
  border: none;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellowBg);
  color: var(--color-whiteText);
}

.CookiePreferencesPopup .modal-header {
  position: absolute;
  right: 0;
  z-index: 9;
}

.cookiepref h2.title {
  font-weight: 400;
  font-size: 22px;
  margin: 0;
}

.cookiepref div.company_name {
  font-size: 14px;
}

.cookiepref .nav a {
  font-size: 14px;
  color: var(--color-blackText) !important;
  padding: 5px 15px !important;
}

.cookiepref .nav a.active {
  color: var(--color-whiteText) !important;
  background-color: var(--color-blackBg);
  border-radius: 0;
}

.cookiepref .main-body {
  display: flex;
  flex-direction: column;
}

.cookiepref .main-body .tabs .tab-pane:not(.active) {
  display: none;
}

.cookiepref .main-body .tabs .text {
  font-size: 14px;
}

.cookiepref .main-body .tabs .text a {
  color: var(--body-color);
}

.cookiepref .main-body .tabs .text > *:last-child {
  margin-bottom: 0;
}

.cookiepref .main-body .tabs h4 {
  font-weight: 400;
}

.cookiepref .line {
  position: relative;
  margin-top: 15px;
}

.cookiepref .line ~ .line {
  margin-top: 10px;
}

.cookiepref .line input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookiepref .line input + label,
.cookiepref .line.forced label {
  padding-left: 45px;
  cursor: pointer;
  transform: translateY(0px);
  display: inline;
}

.cookiepref .line input + label:before,
.cookiepref .line.forced label:before {
  content: "";
  width: 40px;
  height: 20px;
  display: block;
  background-color: #f38787;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 20px;
  border: 1px solid #cccccc;
  transition: 0.2s all;
}

.cookiepref .line input + label:after,
.cookiepref .line.forced label:after {
  content: "";
  height: 18px;
  width: 18px;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 1px;
  top: 4px;
  transition: 0.2s all;
}

.cookiepref .line input:checked + label:before,
.cookiepref .line.forced label:before {
  background-color: #61a746;
}

.cookiepref .line input:checked + label:after,
.cookiepref .line.forced label:after {
  left: 20px;
}

.cookiepref .btn {
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding: 26px 26px 22px;
  border-radius: calc(var(--border-radius) * 8);
  border: none;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellowBg);
  color: var(--color-whiteText);
  margin-left: auto;
}

body.backdrop-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .cookiepref .main-body {
    display: flex;
    flex-direction: row;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .CookiePreferencesPopup .modal-dialog {
    min-width: 700px;
  }

  .cookiepref .nav {
    width: 200px;
  }

  .cookiepref .nav a {
    width: 200px;
    max-width: 200px;
    transition: 0.2s all;
    padding: 20px 15px !important;
  }

  .cookiepref .nav a:not(.active):hover {
    background-color: var(--color-grayBg);
  }

  .cookiepref .main-body .tabs {
    border-left: 1px solid var(--color-blackBg);
  }

  .CookiePreferencesPopup .modal-body {
    padding-left: 0;
    padding-right: 0;
  }
}

.bottom-control {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 400;
}

.bottom-control > * ~ * {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .bottom-control {
    opacity: 0.4;
    transition: 0.2s all;
  }

  .bottom-control:hover {
    opacity: 1;
  }
}

.backtotop {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-yellowBg);
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  cursor: pointer;
  transition: 0.4s all;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1031;
}

.backtotop.show {
  opacity: 1;
  transition: 0.4s all;
  pointer-events: all;
}

.mobile-fixed-email-button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-yellowBg);
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 100;
  -webkit-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  -webkit-animation: bounce_border 5s ease-out 1.5s infinite;
  -webkit-transform-origin: 50% 50%;
  animation: bounce_border 5s ease-out 1.5s infinite;
  transform-origin: 50% 50%;
  justify-content: center;
  align-items: center;
  z-index: 1;
  display: none;
}

.mobile-fixed-email-button:hover {
  color: #fff;
}

@media (max-width: 767.98px) {
  .mobile-fixed-email-button {
    display: flex;
  }
}

@keyframes bounce_border {
  0% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }

  17% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }

  22% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
  }

  25% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }

  30% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
  }

  35% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }
}
@media (max-height: 600px) {
  .galleries-modal .modal-dialog .modal-title {
    margin-bottom: 0px !important;
  }
}
.galleries-modal .modal-content {
  justify-content: center;
  background: none;
  border: none;
}

.galleries-modal .modal-dialog {
  width: 100vw;
  height: 100vh;
  max-width: unset;
  background-color: #fff;
  margin: 0;
  pointer-events: auto;
}

.galleries-modal .modal-dialog .modal-header,
.galleries-modal .modal-dialog .modal-body {
  width: 80vw;
  margin: 0 auto;
}

.galleries-modal .modal-dialog > img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  top: 0;
  left: 0;
}

.galleries-modal .modal-dialog > .loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  font-size: 10vw;
  color: #000;
}

.galleries-modal .modal-dialog::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.galleries-modal .modal-dialog .modal-header {
  position: relative;
  z-index: 1;
  border: none;
  height: 20vh;
}

.galleries-modal .modal-dialog .modal-header .addline {
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-whiteText) !important;
  border-bottom: 2px solid transparent;
  height: 100%;
}

.galleries-modal .modal-dialog .modal-header .addline::after {
  background-color: var(--color-whiteText);
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  right: -70px;
  top: 50%;
}

.galleries-modal .modal-dialog .modal-header .close {
  background: no-repeat;
  border: none;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.galleries-modal .modal-dialog .modal-header .close span {
  transform: translateY(1px);
}
.galleries-modal .modal-dialog .modal-body {
  z-index: 1;
  height: 80vh;
  overflow-y: auto;
  padding-top: 0px;
}

.galleries-modal .modal-dialog .modal-title {
  color: var(--color-whiteText);
  font-size: 60px;
  z-index: 2;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: -1px;
  font-weight: normal;
  font-family: var(--font-family-c);
  line-height: 60px;
}

.galleries-modal .modal-dialog .modal-body {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.galleries-modal .modal-dialog .modal-body::-webkit-scrollbar {
  /* chrome based */
  width: 0px; /* ширина scrollbar'a */
  background: transparent; /* опционально */
  scrollbar-width: none;
}

.galleries-modal-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  justify-content: center;
}

.galleries-modal-content .gallery-modal-item {
  border-radius: 10px;
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  height: 15vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.galleries-modal-content .gallery-modal-item::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.galleries-modal-content .gallery-modal-item h4 {
  color: var(--color-whiteText);
  z-index: 1;
  font-size: 30px;
  font-family: var(--font-family-2);
  margin-bottom: 13px;
}

.galleries-modal-content .gallery-modal-item .addline {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-whiteText) !important;
  border-bottom: 2px solid transparent;
  height: 100%;
}

.galleries-modal-content .gallery-modal-item .addline::after {
  background-color: var(--color-whiteText);
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  right: -70px;
  top: 50%;
}

.galleries-modal-content .gallery-modal-item .addline {
  width: fit-content;
  height: unset;
  position: relative;
}

.galleries-modal-content .gallery-modal-item a {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

.galleries-modal-content .gallery-modal-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.gallery-modal-item a img {
  z-index: 999;
}
@media (max-width: 1199.98px) {
  .galleries-modal .modal-dialog .modal-header,
  .galleries-modal .modal-dialog .modal-body {
    width: 95vw;
  }
}
@media (max-width: 767.98px) {
  .galleries-modal-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .galleries-modal .modal-dialog .modal-header {
    height: auto;
    margin-bottom: 15px;
  }

  .galleries-modal-content {
    grid-gap: 20px;
  }

  .galleries-modal .modal-dialog .modal-body {
    padding-top: 0px;
  }

  .galleries-modal-content .gallery-modal-item {
    height: 25vw;
  }

  .galleries-modal .modal-dialog .modal-title {
    font-size: 45px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .galleries-modal-content {
    grid-template-columns: 1fr;
  }

  .galleries-modal-content .gallery-modal-item {
    height: 50vw;
  }
}
@media (max-width: 400px) {
  .galleries-modal .modal-dialog .modal-title {
    font-size: 35px;
    line-height: 40px;
  }
  .galleries-modal .modal-dialog .modal-header .close span {
    transform: none;
  }
  .galleries-modal .modal-dialog .modal-header .close {
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .galleries-modal .modal-dialog .modal-title {
    font-size: 45px;
    line-height: 50px;
  }
}
.whatsapplink {
  background-color: #00c307;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  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;
  font-size: 28px;
  text-decoration: none;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 400;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 195, 7, 0.7);
  box-shadow: 0 0 0 0 rgba(0, 195, 7, 0.7);
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}
.whatsapplink:hover,
.whatsapplink:focus {
  color: #fff;
}
@media (max-width: 576px) {
  .whatsapplink {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 30px rgba(0, 195, 7, 0);
    box-shadow: 0 0 0 30px rgba(0, 195, 7, 0);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 195, 7, 0);
    box-shadow: 0 0 0 0 rgba(0, 195, 7, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 30px rgba(0, 195, 7, 0);
    box-shadow: 0 0 0 30px rgba(0, 195, 7, 0);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 195, 7, 0);
    box-shadow: 0 0 0 0 rgba(0, 195, 7, 0);
  }
}

/* === globalheader === *//* navbar start */
.navbar {
  transition: all 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  background: var(--color-whiteBg);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar.scrolled {
  box-shadow: 0px 0px 13px -2px rgb(0, 0, 0);
}

.navbar__toggler {
  position: relative;
  color: var(--color-grayText);
  text-transform: uppercase;
  border: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
  padding: 40px 35px 50px;
}

.navbar__toggler b {
  font-weight: 400;
}

.navbar__toggler span {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  background: var(--color-blackBg);
}

.navbar__toggler span:after {
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 2px;
  background: var(--color-blackBg);
  content: " ";
  display: block;
}

.navbar__toggler:focus {
  outline: none;
}

.menu__booking .navbar__phone i {
  font-size: 22px;
}

@media (max-width: 575.98px) {
  .navbar__toggler b {
    display: none;
  }
}

.navbar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__right {
  display: flex;
  flex-flow: row;
  padding-right: 35px;
}

.navbar__right .button {
  padding: 24px 26px 22px;
}

.navbar__right .button i {
  font-size: 22px;
}

@media (min-width: 1200px) {
  .container__navbar {
    max-width: 1920px;
  }
}

.container__navbar {
  --bs-gutter-x: 0px;
  padding: 0;
}


@media (max-width: 991.98px) {
  .navbar__logo svg {
    max-width: 198px;
  }
}

.navbar__phone {
  font-size: 1.125rem;
  line-height: 22px;
  font-weight: 700;
  font-family: var(--font-family-m);
  color: var(--color-yellowText);
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.navbar__phone i {
  font-size: 16px;
  margin-right: 10px;
}

.navbar__phone:hover,
.navbar__phone:focus {
  color: var(--color-yellowText);
}

@media (max-width: 1399.98px) {
  .navbar__right {
    display: flex;
    flex-flow: column-reverse;
    padding-right: 35px;
    gap: 6px;
  }

  .navbar__right .navbar__phone {
    margin: auto;
  }
}

@media (max-width: 1399.98px) {
  .navbar__right {
    gap: 12px;
    max-height: 22px;
    flex-flow: column;
  }

  .navbar.scrolled .navbar__right .button {
    box-shadow: 0px 5px 10px -4px rgba(0, 0, 0, 0.75);
    transition: all 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  }
}


@media (max-width: 991.98px) {

  .navbar.scrolled .navbar__right .button {
    box-shadow: unset;
  }

  .navbar__right .navbar__phone span {
    display: none;
  }

  .navbar__right .navbar__phone i {
    font-size: 22px;
  }

  .navbar__right {
    max-height: unset;
  }

  .navbar__right {
    flex-flow: row;
  }

  .navbar__right .button span {
    display: none;
  }

  .navbar__right .button {
    aspect-ratio: 1/1;
    padding: 22px;
    background: var(--color-whiteText);
    color: var(--color-yellowBg);
  }

  .navbar__right .button i {
    font-size: 26px;
    padding-bottom: 1px;
  }

  .navbar__right .navbar__phone {
    display: none;
  }

  .navbar__right {
    padding-right: 0;
  }

}

@media (max-width: 767.98px) {
  .navbar__phone i {
    font-size: calc(1.275rem + 0.3vw);
  }
}

@media (max-width: 767.98px) and (min-width: 1200px) {
  .navbar__phone i {
    font-size: 1.5rem;
  }
}

@media (max-width: 420px) {
  .navbar__toggler {
    padding: 40px 20px 50px;
  }

  .navbar__right .button {
    width: 60px;
  }

  .navbar__phone {
    margin-right: 15px;
  }
}

/* navbar end */
/* site menu start */
.menu {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.5s ease-out;
  background: var(--color-whiteBg);
  max-width: 495px;
}

.menu__opened {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.5s ease-out;
}

.menu__opened:after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 495px;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.menu__toggler {
  background: none;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 25px;
  right: -31px;
  width: 62px;
  height: 62px;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  background: var(--color-yellowBg);
  border-radius: 50%;
  z-index: 9;
}

.menu__toggler:before {
  display: block;
  content: " ";
  background: var(--color-whiteBg);
  width: 30px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.menu__toggler:after {
  display: block;
  content: " ";
  background: var(--color-whiteBg);
  width: 30px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

.menu__toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu__toggler:hover {
  transform: rotate(180deg);
}

.menu ul {
  margin: auto 0;
  padding: 0;
}

.menu ul li {
  text-align: center;
  margin-bottom: 45px;
  display: block;
}

.menu ul li a {
  font-size: 50px;
  line-height: 1;
  color: var(--color-blackText);
  font-family: var(--font-family-c);
}

.menu__footer {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
}

.menu__booking {
  background: var(--color-yellowBg);
}

.menu__booking.menu__footer .navbar__phone {
  color: var(--color-whiteText) !important;
}

.menu__footer .navbar__phone {
  color: var(--color-yellowBg) !important;
}

@media (max-width: 767.98px) {
  .menu {
    background-size: cover;
  }
}

@media (max-width: 575.98px) {
  .menu {
    background-size: contain;
    max-width: 85%;
  }

  .menu__opened:after {
    left: 100%;
    width: 100vw;
  }

  .menu ul li {
    margin-bottom: 25px;
  }

  .menu ul li a {
    font-size: 40px;
  }

  .menu__footer {
    height: 75px;
  }

  .menu__footer.menu__booking {
    height: 90px;
  }
}

@media (max-height: 630px) {
  .menu {
    padding: 30px 0;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .menu {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .menu ul li a {
    font-size: 45px;
  }
}

@media (max-width: 360px) {
  .menu {
    max-width: 280px;
  }

  .menu__opened:after {
    left: 280px;
  }
}

/* site menu end */
/* === navbar === *//* main banner start */
#main-banner {
  height: 100%;
}
.banner {
  height: 100%;
  position: relative;
  font-family: var(--font-family-4);
  font-size: 24px;
  line-height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  color: var(--color-whiteText);
}
.banner > .container {
  position: relative;
  z-index: 3;
}
.banner:before {
  content: " ";
  display: block;
  background-image: linear-gradient(180deg, transparent 0%, #000000 80%);
  opacity: 0.7;
}
.banner:after {
  content: " ";
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}
.banner__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.banner__caption .button {
  width: 280px;
}
.banner__header {
  font-size: 70px;
  font-family: var(--font-family-c);
  line-height: 70px;
  font-weight: normal;
  margin: 0;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .banner__header {
    padding: 0 165px;
  }
}
@media (max-width: 991.98px) and (min-width: 1200px) {
  .banner__header {
    font-size: 3.75rem;
  }
}
@media (max-width: 991.98px) {
  .banner__header {
    padding: 0;
    width: 660px;
  }
}
@media (max-width: 767.98px) and (min-width: 1200px) {
  .banner__header {
    font-size: 2.8125rem;
  }
}
@media (max-width: 767.98px) {
  .banner__header {
    font-size: 61px;
    line-height: 61px;
    width: 100%;
    margin-bottom: 10px;
  }
  .banner__caption > p {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 610px) {
  .banner__header {
    font-size: 55px;
    line-height: 55px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .banner__header {
    font-size: 45px;
    line-height: 45px;
  }
}
@media (max-width: 460px) {
  .banner__header {
    font-size: 46px;
    line-height: 46px;
    margin-bottom: 25px;
  }
  .banner__caption .button {
    max-width: 100%;
  }
  .banner > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 360px) {
  .banner__header {
    font-size: 32px;
    line-height: 32px;
  }
  .banner__caption {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 575.98px) and (min-width: 1200px) {
  .banner__header {
    font-size: 2.375rem;
  }
}
.banner__caption > p {
  font-family: var(--font-family-4);
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 24px;
  text-align: center;
}
.banner__caption > p span {
  font-weight: 400;
  color: var(--color-yellowBg);
  font-size: 24px;
  margin-left: 19px;
  margin-right: 19px;
}
@media (max-width: 767.98px) {
  .banner__caption > p {
    font-size: 20px;
    line-height: 29px;
  }
}
@media (max-width: 575.98px) {
  .banner__caption > p {
    font-size: 18px;
    line-height: 26px;
    display: none;
  }
}
.banner__scroll {
  position: absolute;
  top: 100%;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--font-family-3);
  color: #fff;
  border-bottom: 1px solid var(--color-grayLine);
  padding: 30px 35px;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  padding-left: 135px;
  z-index: 4;
  opacity: 0.8;
}
.banner__scroll span {
  position: relative;
  margin-bottom: -30px;
}
.banner__scroll span::before {
  content: " ";
  width: 15px;
  height: 23px;
  display: block;
  position: absolute;
  top: -5px;
  left: -6px;
  background: url("../images/icons/mouse.png") 0 0 no-repeat;
  transform: rotate(90deg);
  margin-left: -40px;
}
@media (max-width: 991.98px) {
  .banner__scroll {
    display: none;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .banner__header {
    font-size: 55px;
    line-height: 60px;
  }
}
/* main banner end */

/* === main-banner === */.center-text {
  background-color: rgb(255, 255, 255);
  font-family: var(--font-family-3);
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 100px;
}
.center-text p {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .center-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .center-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* === center-text === */.previews {
  padding-bottom: 90px;
}
.icons-set {
  display: flex;
  gap: 25px;
}
@media (max-width: 991.98px) {
  .icons-set {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .icons-set {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}
.icons-set > * {
  text-align: center;
}
@media (max-width: 767.98px) {
  .icons-set > * {
    text-align: left;
  }
}
.icons-set .icon-pane {
  background: var(--color-grayBg);
  border-radius: 5px;
  width: 25%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--color-blackText);
}
.icons-set .icon-pane:hover {
  color: var(--color-whiteText);
}
.icons-set .icon-pane .icon-info {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.icons-set .icon-pane:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 35px);
  background: url("../images/backgrounds/services.png") -85% 100% no-repeat var(--color-yellowBg);
  border-radius: 5px;
  content: " ";
  display: block;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s linear;
}
.icons-set .icon-pane:hover:before {
  opacity: 1;
}
@media (max-width: 1399.98px) {
  .icons-set .icon-pane {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991.98px) {
  .icons-set .icon-pane {
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .icons-set .icon-pane {
    flex-direction: row;
    padding-top: 33px;
    padding-bottom: 33px;
    padding-right: 33px;
  }
  .icons-set .icon-pane .icon-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .icons-set .icon-pane:hover:before {
    opacity: 0;
  }
  .icons-set .icon-pane:hover {
    color: var(--color-blackText);
  }
}
@media (max-width: 495px) {
  .icons-set .icon-pane {
    padding-left: 33px;
  }
}
.icons-set .icon-pane .icon-image {
  height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 33px;
}
.icons-set .icon-pane .icon-image img {
  max-width: 62px;
}
.icons-set .icon-pane .icon-image img:last-child {
  display: none;
}
.icons-set .icon-pane:hover .icon-image img:first-child {
  display: none;
}
.icons-set .icon-pane:hover .icon-image img:last-child {
  display: block;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .icons-set .icon-pane .icon-image {
    width: 140px;
    flex-shrink: 0;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 8px;
  }
  .icons-set .icon-pane:hover .icon-image img:first-child {
    display: block;
  }
  .icons-set .icon-pane:hover .icon-image img:last-child {
    display: none;
  }
}
@media (max-width: 495px) {
  .icons-set .icon-pane .icon-image {
    display: none;
  }
}
.icons-set .icon-pane h4 {
  font-size: 30px;
  font-family: var(--font-family-2);
  margin-bottom: 13px;
  font-family: 400;
}
@media (max-width: 495px) {
  .icons-set .icon-pane h4 {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
.icons-set .icon-pane h4 img {
  display: none;
}
@media (max-width: 495px) {
  .icons-set .icon-pane h4 img:first-child {
    display: block;
    max-width: 35px;
  }
}
.icons-set .icon-pane p {
  margin-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .icons-set .icon-pane p {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 18px;
  }
}
.icons-set .icon-pane a {
  text-transform: uppercase;
  color: var(--color-whiteText);
  font-weight: 400;
  font-size: 14px;
  font-family: var(--font-family-4);
  line-height: 100%;
  position: relative;
  display: block;
  padding: 24px;
  letter-spacing: 2px;
  margin-top: auto;
  border: 2px solid var(--color-whiteText);
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.icons-set .icon-pane:hover a {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .icons-set .icon-pane a {
    opacity: 1;
    margin-bottom: 15px;
    background: var(--color-yellowBg);
    border: none;
  }
}
@media (max-width: 575.98px) {
  .previews {
    padding-bottom: 60px;
  }
}
@media (max-width: 495px) {
  .icons-set .icon-pane a {
    margin-bottom: 0;
    padding: 18px 24px;
  }
  .icons-set .icon-pane h4 {
    font-size: 24px;
  }
  .previews .block-header h2 {
    font-size: 34px;
    line-height: 18px;
  }
}

/* === previews === */.gallery_slider {
  position: relative;
}
.slider__image:after,
.slider__image:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slider__nav {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider {
  width: 100%;
}
.slider .slick-track {
  padding: 0;
}
.slider__image {
  max-height: 890px;
  position: relative;
}
.slider__image img {
  aspect-ratio: 2/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .slider__image img {
    aspect-ratio: 3/2;
  }
}
@media (max-width: 575.98px) {
  .slider__image img {
    aspect-ratio: 3/4;
  }
}
.slider__image:before {
  content: " ";
  display: block;
  background-image: linear-gradient(
    0deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.01) 0%,
    rgb(0, 0, 0) 100%
  );
  opacity: 0.6;
}
.slider__image:after {
  content: " ";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
}
.slider__navigation {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.slider__nav {
  width: 60px;
  height: 60px;
  background: var(--color-yellowBg);
  color: var(--color-whiteText);
  border: none;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  font-size: 16px;
  line-height: 1;
}
.slider__nav:hover {
  opacity: 0.8;
}
.gallery_slider {
  position: relative;
}
.gallery_slider .gallery__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 75px;
}

.gallery_slider .gallery__content .container .row .col-md-6:last-child {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .gallery_slider .gallery__content {
    height: 100%;
  }
}
.gallery_slider .block-header h2 {
  font-size: 60px;
  z-index: 2;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.gallery_slider .gallery__header {
  position: relative;
  border-radius: 0 0 var(--big-border-radius) 0;
  padding: 50px 0;
  padding-right: 20px;
}
.gallery_slider .gallery__header:before {
  content: " ";
  display: block;
  position: absolute;
  left: -50%;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .gallery_slider .gallery__header {
    padding: 25px 0;
    border-radius: 0;
  }
}
.gallery_slider .gallery__full {
  position: relative;
  color: var(--color-whiteText);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  line-height: 28px;
  font-family: var(--font-family-4);
  text-transform: uppercase;
  border: 2px solid var(--color-whiteText);
  border-radius: 50px;
  padding: 16px 34px;
  letter-spacing: 1px;
}

@media (max-width: 991.98px) {
  .gallery_slider .gallery__full {
    background: var(--color-yellowBg);
    border: none;
  }
}
@media (max-width: 767.98px) {
  .gallery_slider .gallery__content .container .row .col-md-6:last-child {
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    left: 0;
  }
  .gallery_slider .gallery__content {
    padding-top: 60px;
  }
}

@media (max-width: 575.98px) {
  .gallery_slider .block-header h2 {
    line-height: 1;
  }
}

@media (max-width: 460px) {
  .gallery_slider .gallery__content .container .row .col-md-6:last-child {
    flex-direction: column;
    gap: 10px;
    bottom: 15px;
  }
  .gallery_slider .gallery__full {
    padding: 12px 34px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .gallery_slider .block-header h2 {
    font-size: 45px;
    line-height: 50px;
  }
  .gallery_slider .gallery__content {
    padding-top: 50px;
  }
}

@media (max-width: 450px) {
  .gallery_slider .block-header h2 {
    font-size: 42px !important;
    line-height: 42px !important;
  }
}

/* === gallery_slider === */.features-navigator {
  padding-top: 95px;
  padding-bottom: 0px;
}
.features-nav {
  border-bottom: 1px solid #ececec;
}
@media (max-width: 767.98px) {
  .features-navigator {
    padding-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .features-navigator {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .features-navigator {
    padding-top: 50px;
  }
}
.features-selector {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 48px;
  overflow-x: auto;
  padding-bottom: 0;
  margin-bottom: 0;
  scrollbar-width: none;
}
.features-selector::-webkit-scrollbar {
  display: none;
}
.features-selector li a {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-yellowText) !important;
  border-bottom: 2px solid transparent;
  padding-bottom: 15px;
  height: 100%;
}
.features-selector li a.active {
  color: var(--color-blackText) !important;
  border-bottom: 2px solid var(--color-blackText);
}

.features-selector li a:hover,
.features-selector li a:focus {
  color: var(--color-blackText) !important;
}

.features-tabs {
  position: relative;
}

.features-tab {
  padding-top: 50px;
  z-index: 2;
  position: relative;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 575.98px) {
  .features-tab {
    padding-top: 39px;
  }
}
.features-navigator .feature-description {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 270px;
  gap: 40px;
}
.features-navigator .feature-description .feature-list {
  padding-bottom: 70px;
}
@media (max-width: 767.98px) {
  .features-navigator .feature-description .feature-list {
    padding-bottom: 0;
  }
}
.features-navigator .feature-description ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding-left: 0;
  margin: 0;
}
.features-navigator .feature-description ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.features-navigator .feature-description ul li:before {
  content: "+";
  font-size: 25px;
  line-height: 1;
}
.features-navigator .feature-description img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 5px;
}

.features-navigator .feature-description img:nth-child(4) {
  grid-area: 2/2/3/3;
  aspect-ratio: 3/2;
}
.features-navigator .feature-description img:nth-child(5) {
  grid-area: 2/3/3/4;
}

@media (max-width: 991.98px) {
  .features-navigator .feature-description {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-rows: 0;
  }
  .features-navigator .feature-description img:nth-child(4) {
    grid-area: auto;
    aspect-ratio: 3/2;
  }
  .features-navigator .feature-description img:nth-child(5) {
    grid-area: auto;
  }
  .features-navigator .feature-description .feature-list {
    padding-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .features-navigator .feature-description img {
    aspect-ratio: 2/1;
    max-height: 270px;
  }
  .features-navigator .feature-description img {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 575.98px) {
  .features-navigator .feature-description {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 0;
  }
  .features-navigator .feature-description .feature-list {
    padding-bottom: 15px;
  }
}

/* === features-navigator === */.book-to-action {
  padding-top: 300px;
  padding-bottom: 200px;
  border-top: 1px solid #006aa6;
  position: relative;
  margin-top: -130px;
}
.book-to-action:before {
  content: " ";
  display: block;
  background-image: linear-gradient(
    0deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.01) 0%,
    rgb(0, 0, 0) 100%
  );
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.book-to-action:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: " ";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
}
.book-to-action > .container {
  position: relative;
  z-index: 2;
}
.call-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.call-banner-head {
  text-align: center;
  margin-bottom: 17px;
}
.call-banner-head h2 {
  font-family: var(--font-family-c);
  font-size: 116px;
  line-height: 0;
  font-weight: 400;
  color: var(--color-yellowText);
}
.call-banner-head h2 span {
  display: block;
  font-size: 226px;
  line-height: 150px;
  color: var(--color-whiteText);
}
@media (max-width: 767.98px) {
  .call-banner-head h2 span {
    font-size: 177px;
    line-height: 122px;
  }
}
@media (max-width: 575.98px) {
  .call-banner-head h2 span {
    font-size: 140px;
    line-height: 98px;
    margin-bottom: 10px;
    line-height: 61px;
  }
}
@media (max-width: 495px) {
  .call-banner-head h2 span {
    font-size: 85px;
    line-height: 61px;
    margin-bottom: 0;
  }
}
@media (max-width: 390px) {
  .call-banner-head h2 span {
    margin-bottom: -20px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .call-banner-head h2 span {
    font-size: 160px;
    line-height: 100px;
  }
}
@media (max-width: 865px) {
  .call-banner-head h2 {
    font-size: 120px;
  }
}
@media (max-width: 767.98px) {
  .call-banner-head h2 {
    font-size: 120px;
  }
}
@media (max-width: 685px) {
  .call-banner-head h2 {
    font-size: 100px;
  }
}
@media (max-width: 575.98px) {
  .call-banner-head h2 {
    font-size: 85px;
  }
}
@media (max-width: 495px) {
  .call-banner-head h2 {
    font-size: 60px;
  }
}
@media (max-width: 390px) {
  .call-banner-head h2 {
    line-height: 42px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .call-banner-head h2 {
    font-size: 90px;
  }
}
.call-banner-subhead {
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
  margin-top: 60px;
  margin-bottom: 26px;
  text-transform: none;
  text-align: center;
}
.call-banner-subhead br {
  display: none;
}

.call-banner-button .button {
  font-size: 12px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 27px;
  background: var(--color-yellowBg);
  color: var(--color-whiteText);
  border-radius: 50px;
  border: none;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
}
@media (max-width: 991.98px) {
  .call-banner-head h2 span {
    font-size: 190px;
  }
  .call-banner-head h2 {
    font-size: 103px;
  }
  .call-banner-subhead {
    font-size: 25px;
    line-height: 34px;
  }
}
@media (max-width: 767.98px) {
  .call-banner-subhead {
    font-size: 20px;
    line-height: 29px;
  }
  .book-to-action {
    padding-top: 215px;
    padding-bottom: 150px;
  }
  .call-banner-head h2 span {
    font-size: 160px;
  }
  .call-banner-head h2 {
    font-size: 85px;
  }
}
@media (max-width: 575.98px) {
  .call-banner-subhead {
    margin-top: 30px;
  }
  .call-banner-subhead br {
    display: block;
  }
  .book-to-action {
    padding-top: 185px;
    padding-bottom: 60px;
  }
  .call-banner-head h2 span {
    font-size: 120px;
    line-height: 0;
  }
  .call-banner-head h2 {
    font-size: 63px;
    line-height: 1;
  }
  .call-banner-button .button {
    margin-top: 0;
  }
}
@media (max-width: 380px) {
  .call-banner-head h2 span {
    font-size: 90px;
    line-height: 60px;
  }
  .call-banner-head h2 {
    font-size: 42px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .call-banner-subhead {
    margin-top: 40px;
    margin-bottom: 19px;
  }
  .book-to-action {
    padding-top: 170px;
    padding-bottom: 60px;
  }
}

/* === book-to-action === */.testimonials-carousel {
  padding-top: 90px;
  padding-bottom: 105px;
  background: var(--color-grayBg);
  position: relative;
}
.roundabout {
  margin-top: 55px;
}
.roundabout__rating {
  display: flex;
  align-items: center;
  gap: 6;
  color: var(--color-yellowText);
  font-size: 36px;
  margin-bottom: 45px;
}
.roundabout__text {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
}
.roundabout__author {
  font-family: var(--font-family-2);
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 35px;
}
.roundabout__navigation {
  display: flex;
  align-items: center;
  gap: 5px;
}
.roundabout__navigation button {
  display: block;
  color: var(--color-whiteText);
  background: var(--color-yellowBg);
  font-size: 14px;
  line-height: 14px;
  width: 48px;
  height: 48px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .roundabout {
    margin-top: 0;
  }
  .testimonials-carousel {
    padding-bottom: 65px;
    padding-top: 85px;
  }
}
@media (max-width: 575.98px) {
  .roundabout__text {
    font-size: 20px;
    line-height: 26px;
  }
  .testimonials-carousel {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .roundabout__text {
    font-size: 20px;
    line-height: 22px;
  }
  .testimonials-carousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .roundabout__rating {
    margin-bottom: 15px;
  }
  .roundabout__text {
    margin-bottom: 15px;
  }
  .roundabout__author {
    margin-bottom: 15px;
  }
}

/* === testimonials-carousel === */.contact-form {
  color: var(--color-whiteText);
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}
@media (max-width: 1350px) {
  .contact-form .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact-form .block-header h2 {
  margin-bottom: 21px;
}
.contact-form .border-start {
  border-left: 1px solid rgba(255, 255, 255, 0.34) !important;
}
@media (max-width: 991.98px) {
  .footer-contacts {
    border-top: 1px solid rgba(255, 255, 255, 0.34) !important;
  }
  .contact-form .border-start {
    border-top-color: transparent !important;
  }
}
.contact-form .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34) !important;
}

.contact-form > .container {
  position: relative;
  z-index: 3;
}
.contact-form .container-fluid,
.contact-form .container-sm,
.contact-form .container-md,
.contact-form .container-lg,
.contact-form .container-xl,
.contact-form .container-xxl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.contact-form .container-fluid {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  z-index: 3;
}
.contact-form .container-fluid > .row,
.contact-form .container-sm > .row,
.contact-form .container-md > .row,
.contact-form .container-lg > .row,
.contact-form .container-xl > .row,
.contact-form .container-xxl > .row {
  height: 100%;
}
.contact-form .footer-contact__links a svg {
    fill: #fff;
    height: 20px;
    width: 20px;
}
@media (max-width: 991.98px) {
  .contact-form .container-fluid,
  .contact-form .container-sm,
  .contact-form .container-md,
  .contact-form .container-lg,
  .contact-form .container-xl,
  .contact-form .container-xxl {
    display: block;
    position: relative;
  }
  .contact-form .container-fluid {
    display: block;
    position: relative;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .contact-form {
    padding-top: 45px;
    padding-bottom: 0;
  }
}
.contact-form__slogan {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
}
.contact-form__slogan a {
  color: var(--color-whiteText);
}
.contact-form__form {
  font-size: 16px;
  line-height: 24px;
  padding-right: 15%;
}
.contact-form__form .form-control {
  font-family: var(--font-family-4);
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 3px;
  height: 53px;
}
.contact-form__form .form-control:hover,
.contact-form__form .form-control:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.contact-form__form textarea.form-control {
  height: 183px;
}
.contact-form__form label {
  margin-bottom: 2px;
}
.contact-form__form .form-group {
  margin-bottom: 23px;
}
.contact-form__form .form-group .error {
  color: var(--color-error);
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .contact-form__form {
    padding-right: 0;
  }
}
.contact-form__form .form-button .button {
  width: 205px;
}
@media (max-width: 991.98px) {
  .contact-form__form .form-button {
    display: flex;
    margin-bottom: 60px;
  }
  .contact-form__slogan br {
    display: none;
  }
}

.footer-contacts {
  height: 100%;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50%;
  padding-top: 10px;
}
.footer-contact__icon {
  font-size: 60px;
  line-height: 24px;
  color: var(--color-yellowBg);
}
.footer-contact__label {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  padding: 17px 0px 10px;
  color: var(--color-yellowBg);
  font-family: var(--font-family-m);
}
.footer-contact__inner {
  font-family: var(--font-family-3);
  font-size: 16px;
  line-height: 24px;
}
.footer-contact__text {
  text-align: center;
}
.footer-contact__text p {
  margin-bottom: 0;
}
@media (max-width: 1140px) {
  .footer-contact__text {
    font-size: 13px;
  }
}
@media (max-width: 991.98px) {
  .footer-contact__text br {
    display: none;
  }
  .footer-contacts .footer-contact:nth-child(4) .footer-contact__text br {
    display: inline-flex;
  }
}
@media (max-width: 991.98px) {
  .footer-contact__text {
    font-size: 16px;
  }
  .footer-contact__text br {
    display: inline-flex;
  }
}
.footer-contact__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
  font-family: var(--font-family-2);
  font-size: 22px;
  line-height: 36px;
  justify-content: center;
  gap: 13px;
}
.footer-contact__links.inline {
  flex-direction: row;
}
.footer-contact__links.buttons {
  padding-top: 16px;
}
.footer-contact__links.buttons a {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid var(--color-whiteText);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  font-weight: normal;
  border-radius: 50%;
}
.footer-contact__links a {
  color: var(--color-whiteText);
  font-size: 22px;
  line-height: 36px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .footer-contact__links.footer-contact__email a {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .footer-contact {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media (max-width: 575.98px) {
  .contact-form .border-bottom {
    border-bottom: none;
  }
  .contact-form .border-start {
    border-top: none !important;
    border-left: none !important;
  }
  .contact-form {
    border-bottom: none;
    padding-top: 60px;
  }
  .footer-contact {
    height: auto;
    border: none !important;
    border-bottom: 1px solid #6a6b6e !important;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .contact-form {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* === footer-form === */.footer__menu {
  padding-top: 80px;
  padding-bottom: 40px;
  color: var(--color-whiteText);
}
.footer__menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}
.footer__menu ul li a {
  color: var(--color-whiteText);
  font-size: 20px;
  line-height: 24px;
}
.footer__rights {
  display: flex;
  font-size: 14px;
  line-height: 18px;
  align-items: center;
}
.footer__copyright a {
  color: var(--color-whiteText);
}
.footer__copyright i {
  font-style: normal;
}
.footer__authors {
  display: flex;
  align-items: center;
}
.footer__authors a {
  color: var(--color-whiteText);
}
.footer__authors img {
  height: 17px;
}

@media (max-width: 767.98px) {
  .footer__menu {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .footer__menu ul {
    flex-direction: column;
    gap: 15px;
  }
  .footer__rights {
    flex-direction: column;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright i {
    display: none;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .footer__menu {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

/* === footer-menu === */