@font-face {
  font-family: "Neue Regrade";
  src: url("../fonts/NeueRegrade-Light.woff2") format("woff2"), url("../fonts/NeueRegrade-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Regrade";
  src: url("../fonts/NeueRegrade-Regular-Italic.woff2") format("woff2"), url("../fonts/NeueRegrade-Regular-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Neue Regrade";
  src: url("../fonts/NeueRegrade-Medium.woff2") format("woff2"), url("../fonts/NeueRegrade-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Neue Regrade";
  font-weight: 500;
  /* overflow-x: hidden; */
  scrollbar-width: none;
  font-size: 100%;
}

@media screen and (max-width: 1024px) {
  html,
  body {
    font-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 75%;
  }
}
@media screen and (max-width: 700px) {
  html,
  body {
    font-size: 50%;
  }
}
p {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  p {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    padding-inline: 20px;
  }
}

.trans,
.button,
a,
.buttion {
  transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
}

.main,
#newsletter-email {
  font-family: "Readex Pro", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  width: 100%;
  max-width: calc(1400px + 6%);
}
.wrap.max_1400 {
  max-width: 1400px;
}
.wrap.max_1200 {
  max-width: 1200px;
}
@media (max-width: 1500px) {
  .wrap {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media (max-width: 768px) {
  .wrap {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.buttion {
  outline: none;
  border: 0;
  background: #67aec3;
  padding: 15px 22px 15px 22px;
  border-radius: 28px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
}
.buttion:hover {
  background: #559bb1;
}
.buttion.but_line {
  background: transparent;
  border: solid 1px #fff;
}
.buttion.but_line:hover {
  background: #559bb1;
}
.buttion.but_line.black {
  border-color: #0f2238;
  color: #0f2238;
}
.buttion.but_line.black:hover {
  border-color: #559bb1;
  color: #fff;
}
.buttion.white {
  background: white;
  color: #0d2338;
  font-weight: 600;
  text-transform: uppercase;
}
.buttion.white:hover {
  background: #dcedf2;
}
.buttion.black_bg {
  background: #0e223a;
  color: #ffffff;
  font-weight: 600;
}
.buttion.black_bg:hover {
  background: #000000;
}
@media (max-width: 820px) {
  .buttion {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .buttion {
    padding: 11px 15px 11px 15px;
  }
}

.h_auto {
  height: auto !important;
}

.w_auto {
  width: auto !important;
}

.w_50 {
  width: 50%;
}

.w_100 {
  width: 100%;
}

.h_100 {
  height: 100%;
}

.h_100vh {
  height: 100vh;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_d_none {
  text-decoration: none;
}

.list_none {
  list-style: none;
}

.p_relative {
  position: relative;
}

.p_absolute {
  position: absolute;
}

.pos_t_0 {
  top: 0;
}

.pos_b_0 {
  bottom: 0;
}

.pos_l_0 {
  left: 0;
}

.pos_r_0 {
  right: 0;
}

.img_mx_fluid {
  width: 100%;
  height: auto;
  display: block;
}

.img_fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.d_none {
  display: none;
}

.d_flex {
  display: flex;
}

.d_flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex_end {
  align-items: flex-end;
}

.flex_start {
  align-items: flex-start;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

.justify_center {
  justify-content: center;
}

.justify_space_bet {
  justify-content: space-between;
}

.overflow_hide {
  overflow: hidden;
}

.overflow_x_hide {
  overflow-x: hidden;
}

.overflow_y_hide {
  overflow-y: hidden;
}

.radius_5 {
  border-radius: 5px;
  overflow: hidden;
}

.radius_10 {
  border-radius: 10px;
  overflow: hidden;
}

.radius_20 {
  border-radius: 20px;
  overflow: hidden;
}

.radius_30 {
  border-radius: 30px;
  overflow: hidden;
}

.w_90 {
  width: 90% !important;
}
@media only screen and (max-width: 600px) {
  .w_90 {
    width: 100%;
  }
}

.w_80 {
  width: 80% !important;
}
@media only screen and (max-width: 600px) {
  .w_80 {
    width: 100%;
  }
}

.w_70 {
  width: 70% !important;
}
@media only screen and (max-width: 600px) {
  .w_70 {
    width: 100%;
  }
}

.w_60 {
  width: 60% !important;
}
@media only screen and (max-width: 600px) {
  .w_60 {
    width: 100%;
  }
}

.w_40 {
  width: 40% !important;
}
@media only screen and (max-width: 600px) {
  .w_40 {
    width: 100%;
  }
}

.pl_0 {
  padding-left: 0 !important;
}

.pt_0 {
  padding-top: 0 !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}

.pt_5 {
  padding-top: 5px;
}
@media only screen and (max-width: 600px) {
  .pt_5 {
    padding-top: 0px;
  }
}

.pb_5 {
  padding-bottom: 5px;
}
@media only screen and (max-width: 600px) {
  .pb_5 {
    padding-bottom: 0px;
  }
}

.pt_10 {
  padding-top: 10px;
}
@media only screen and (max-width: 600px) {
  .pt_10 {
    padding-top: 5px;
  }
}

.pb_10 {
  padding-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  .pb_10 {
    padding-bottom: 5px;
  }
}

.pt_15 {
  padding-top: 15px;
}
@media only screen and (max-width: 600px) {
  .pt_15 {
    padding-top: 10px;
  }
}

.pb_15 {
  padding-bottom: 15px;
}
@media only screen and (max-width: 600px) {
  .pb_15 {
    padding-bottom: 10px;
  }
}

.pt_20 {
  padding-top: 20px;
}
@media only screen and (max-width: 600px) {
  .pt_20 {
    padding-top: 10px;
  }
}

.pb_20 {
  padding-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .pb_20 {
    padding-bottom: 10px;
  }
}

.pt_25 {
  padding-top: 25px;
}
@media only screen and (max-width: 600px) {
  .pt_25 {
    padding-top: 15px;
  }
}

.pb_25 {
  padding-bottom: 25px;
}
@media only screen and (max-width: 600px) {
  .pb_25 {
    padding-bottom: 15px;
  }
}

.pt_30 {
  padding-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .pt_30 {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_30 {
    padding-top: 10px;
  }
}

.pb_30 {
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .pb_30 {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_30 {
    padding-bottom: 10px;
  }
}

.pt_35 {
  padding-top: 35px;
}
@media only screen and (max-width: 1440px) {
  .pt_35 {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_35 {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_35 {
    padding-top: 17px;
  }
}

.pb_35 {
  padding-bottom: 35px;
}
@media only screen and (max-width: 1440px) {
  .pb_35 {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb_35 {
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_35 {
    padding-bottom: 17px;
  }
}

.pt_40 {
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .pt_40 {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_40 {
    padding-top: 10px;
  }
}

.pb_40 {
  padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .pb_40 {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_40 {
    padding-bottom: 10px;
  }
}

.pt_45 {
  padding-top: 45px;
}
@media only screen and (max-width: 600px) {
  .pt_45 {
    padding-top: 22px;
  }
}

.pb_45 {
  padding-bottom: 45px;
}
@media only screen and (max-width: 600px) {
  .pb_45 {
    padding-bottom: 22px;
  }
}

.pt_50 {
  padding-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .pt_50 {
    padding-top: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_50 {
    padding-top: 25px;
  }
}

.pb_50 {
  padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .pb_50 {
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_50 {
    padding-bottom: 25px;
  }
}

.pt_55 {
  padding-top: 55px;
}
@media only screen and (max-width: 1024px) {
  .pt_55 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_55 {
    padding-top: 27px;
  }
}

.pb_55 {
  padding-bottom: 55px;
}
@media only screen and (max-width: 1024px) {
  .pb_55 {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_55 {
    padding-bottom: 27px;
  }
}

.pb_60 {
  padding-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .pb_60 {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_60 {
    padding-bottom: 30px;
  }
}

.pt_60 {
  padding-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .pt_60 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_60 {
    padding-top: 30px;
  }
}

.pb_65 {
  padding-bottom: 65px;
}
@media only screen and (max-width: 600px) {
  .pb_65 {
    padding-bottom: 32px;
  }
}

.pt_65 {
  padding-top: 65px;
}
@media only screen and (max-width: 600px) {
  .pt_65 {
    padding-top: 32px;
  }
}

.pb_70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .pb_70 {
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_70 {
    padding-bottom: 25px;
  }
}

.pt_70 {
  padding-top: 70px;
}
@media only screen and (max-width: 1024px) {
  .pt_70 {
    padding-top: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_70 {
    padding-top: 25px;
  }
}

.pb_75 {
  padding-bottom: 75px;
}
@media only screen and (max-width: 1024px) {
  .pb_75 {
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_75 {
    padding-bottom: 25px;
  }
}

.pt_75 {
  padding-top: 75px;
}
@media only screen and (max-width: 600px) {
  .pt_75 {
    padding-top: 36px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .pt_80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_80 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_80 {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .pt_80 {
    padding-top: 30px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .pb_80 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_80 {
    padding-bottom: 30px;
  }
}

.pt_85 {
  padding-top: 85px;
}
@media only screen and (max-width: 600px) {
  .pt_85 {
    padding-top: 42px;
  }
}

.pb_85 {
  padding-bottom: 85px;
}
@media only screen and (max-width: 600px) {
  .pb_85 {
    padding-bottom: 42px;
  }
}

.pt_90 {
  padding-top: 90px;
}
@media only screen and (max-width: 1024px) {
  .pt_90 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_90 {
    padding-top: 46px;
  }
}

.pb_90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 1024px) {
  .pb_90 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_90 {
    padding-bottom: 46px;
  }
}

.pt_100 {
  padding-top: 100px;
}
@media only screen and (max-width: 1024px) {
  .pt_100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_100 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_100 {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .pt_100 {
    padding-top: 40px;
  }
}

.pb_100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .pb_100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 820px) {
  .pb_100 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_100 {
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .pb_100 {
    padding-bottom: 40px;
  }
}

.pt_110 {
  padding-top: 110px;
}
@media only screen and (max-width: 1024px) {
  .pt_110 {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 820px) {
  .pt_110 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_110 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .pt_110 {
    padding-top: 30px;
  }
}

.pb_110 {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1024px) {
  .pb_110 {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb_110 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_110 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .pb_110 {
    padding-bottom: 30px;
  }
}

.pt_115 {
  padding-top: 115px;
}
@media only screen and (max-width: 1024px) {
  .pt_115 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_115 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_115 {
    padding-top: 57px;
  }
}

.pb_115 {
  padding-bottom: 115px;
}
@media only screen and (max-width: 1024px) {
  .pb_115 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb_115 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_115 {
    padding-bottom: 57px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1395px) {
  .pb_120 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb_120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_120 {
    padding-bottom: 50px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media only screen and (max-width: 1395px) {
  .pt_120 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .pt_120 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_120 {
    padding-top: 50px;
  }
}

.pt_125 {
  padding-top: 125px;
}
@media only screen and (max-width: 600px) {
  .pt_125 {
    padding-top: 62px;
  }
}

.pb_125 {
  padding-bottom: 125px;
}
@media only screen and (max-width: 600px) {
  .pb_125 {
    padding-bottom: 62px;
  }
}

.pt_130 {
  padding-top: 130px;
}
@media only screen and (max-width: 1024px) {
  .pt_130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_130 {
    padding-top: 65px;
  }
}

.pb_130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1024px) {
  .pb_130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_130 {
    padding-bottom: 65px;
  }
}

.pt_135 {
  padding-top: 135px;
}
@media only screen and (max-width: 1024px) {
  .pt_135 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_135 {
    padding-top: 67px;
  }
}

.pb_135 {
  padding-bottom: 135px;
}
@media only screen and (max-width: 1024px) {
  .pb_135 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_135 {
    padding-bottom: 67px;
  }
}

.pb_140 {
  padding-bottom: 140px;
}
@media only screen and (max-width: 1024px) {
  .pb_140 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_140 {
    padding-bottom: 50px;
  }
}

.pt_140 {
  padding-top: 140px;
}
@media only screen and (max-width: 600px) {
  .pt_140 {
    padding-top: 70px;
  }
}

.pt_145 {
  padding-top: 145px;
}
@media only screen and (max-width: 1024px) {
  .pt_145 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_145 {
    padding-top: 72px;
  }
}

.pb_145 {
  padding-bottom: 145px;
}
@media only screen and (max-width: 1024px) {
  .pb_145 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_145 {
    padding-bottom: 25px;
  }
}

.pt_150 {
  padding-top: 150px;
}
@media only screen and (max-width: 1024px) {
  .pt_150 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_150 {
    padding-top: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .pt_150 {
    padding-top: 45px;
  }
}

.pb_150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .pb_150 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_150 {
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .pb_150 {
    padding-bottom: 45px;
  }
}

.pt_155 {
  padding-top: 155px;
}
@media only screen and (max-width: 600px) {
  .pt_155 {
    padding-top: 77px;
  }
}

@media only screen and (max-width: 600px) {
  .pb_155 {
    padding-bottom: 77px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media only screen and (max-width: 1024px) {
  .pt_160 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media only screen and (max-width: 820px) {
  .pb_160 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

.pt_165 {
  padding-top: 165px;
}
@media only screen and (max-width: 600px) {
  .pt_165 {
    padding-top: 82px;
  }
}

.pb_165 {
  padding-bottom: 165px;
}
@media only screen and (max-width: 600px) {
  .pb_165 {
    padding-bottom: 82px;
  }
}

.pt_170 {
  padding-top: 170px;
}
@media only screen and (max-width: 600px) {
  .pt_170 {
    padding-top: 85px;
  }
}

.pb_170 {
  padding-bottom: 170px;
}
@media only screen and (max-width: 600px) {
  .pb_170 {
    padding-bottom: 85px;
  }
}

.pb_175 {
  padding-bottom: 175px;
}
@media only screen and (max-width: 1024px) {
  .pb_175 {
    padding-bottom: 87px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_175 {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 480px) {
  .pb_175 {
    padding-bottom: 40px;
  }
}

.pt_175 {
  padding-top: 175px;
}
@media only screen and (max-width: 600px) {
  .pt_175 {
    padding-top: 87px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_175 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .pt_175 {
    padding-top: 40px;
  }
}

.pb_180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 600px) {
  .pb_180 {
    padding-bottom: 90px;
  }
}

.pt_180 {
  padding-top: 180px;
}
@media only screen and (max-width: 1024px) {
  .pt_180 {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_180 {
    padding-top: 51px;
  }
}

.pb_185 {
  padding-bottom: 185px;
}
@media only screen and (max-width: 1024px) {
  .pb_185 {
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_185 {
    padding-bottom: 51px;
  }
}

.pt_185 {
  padding-top: 185px;
}
@media only screen and (max-width: 1024px) {
  .pt_185 {
    padding-top: 105px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_185 {
    padding-top: 92px;
  }
}

.pb_190 {
  padding-bottom: 190px;
}
@media only screen and (max-width: 1024px) {
  .pb_190 {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb_190 {
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_190 {
    padding-bottom: 95px;
  }
}

.pt_190 {
  padding-top: 190px;
}
@media only screen and (max-width: 1024px) {
  .pt_190 {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt_190 {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_190 {
    padding-top: 95px;
  }
}

.pb_195 {
  padding-bottom: 195px;
}
@media only screen and (max-width: 1024px) {
  .pb_195 {
    padding-bottom: 115px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_195 {
    padding-bottom: 97px;
  }
}

.pt_195 {
  padding-top: 195px;
}
@media only screen and (max-width: 1024px) {
  .pt_195 {
    padding-top: 115px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_195 {
    padding-top: 97px;
  }
}

.pb_200 {
  padding-bottom: 200px;
}
@media only screen and (max-width: 1024px) {
  .pb_200 {
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_200 {
    padding-bottom: 100px;
  }
}

.pt_200 {
  padding-top: 200px;
}
@media only screen and (max-width: 1024px) {
  .pt_200 {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_200 {
    padding-top: 100px;
  }
}

.pt_240 {
  padding-top: 240px;
}
@media only screen and (max-width: 1024px) {
  .pt_240 {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 600px) {
  .pt_240 {
    padding-top: 110px;
  }
}

.pb_240 {
  padding-bottom: 240px;
}
@media only screen and (max-width: 1024px) {
  .pb_240 {
    padding-bottom: 160px;
  }
}
@media only screen and (max-width: 600px) {
  .pb_240 {
    padding-bottom: 110px;
  }
}

.mt_0 {
  margin-top: 0 !important;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.m_auto {
  margin: auto;
}

.mt_auto {
  margin-top: auto;
}

.mb_auto {
  margin-bottom: auto;
}

.ml_auto {
  margin-left: auto;
}

.mr_auto {
  margin-right: auto;
}

.mt_5 {
  margin-top: 5px;
}

.mb_5 {
  margin-bottom: 5px;
}

.mt_10 {
  margin-top: 10px;
}
@media only screen and (max-width: 600px) {
  .mt_10 {
    margin-top: 5px;
  }
}

.mb_10 {
  margin-bottom: 10px !important;
}
@media only screen and (max-width: 600px) {
  .mb_10 {
    margin-bottom: 5px;
  }
}

.mt_15 {
  margin-top: 15px;
}
@media only screen and (max-width: 600px) {
  .mt_15 {
    margin-top: 10px;
  }
}

.mb_15 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 600px) {
  .mb_15 {
    margin-bottom: 10px;
  }
}

.mt_20 {
  margin-top: 20px !important;
}
@media only screen and (max-width: 600px) {
  .mt_20 {
    margin-top: 10px !important;
  }
}

.mb_20 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .mb_20 {
    margin-bottom: 8px;
  }
}

.mt_30 {
  margin-top: 30px;
}
@media only screen and (max-width: 600px) {
  .mt_30 {
    margin-top: 15px;
  }
}

.mb_30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .mb_30 {
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_30 {
    margin-bottom: 15px;
  }
}

.mt_35 {
  margin-top: 35px;
}
@media only screen and (max-width: 1024px) {
  .mt_35 {
    margin-top: 17px;
  }
}
@media only screen and (max-width: 1024px) {
  .mt_35 {
    margin-top: 9px;
  }
}
@media only screen and (max-width: 600px) {
  .mt_35 {
    margin-top: 17px;
  }
}

.mb_35 {
  margin-bottom: 35px;
}
@media only screen and (max-width: 600px) {
  .mb_35 {
    margin-bottom: 17px;
  }
}

.mt_40 {
  margin-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .mt_40 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .mt_40 {
    margin-top: 20px;
  }
}

.mb_40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 600px) {
  .mb_40 {
    margin-bottom: 20px;
  }
}

.mt_45 {
  margin-top: 45px;
}
@media only screen and (max-width: 600px) {
  .mt_45 {
    margin-top: 22px;
  }
}

.mb_45 {
  margin-bottom: 45px;
}
@media only screen and (max-width: 600px) {
  .mb_45 {
    margin-bottom: 22px;
  }
}

.mt_50 {
  margin-top: 50px;
}
@media only screen and (max-width: 600px) {
  .mt_50 {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .mt_50 {
    margin-top: 20px;
  }
}

.mb_50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .mb_50 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_50 {
    margin-bottom: 15px;
  }
}

.mt_55 {
  margin-top: 55px;
}
@media only screen and (max-width: 1024px) {
  .mt_55 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .mt_55 {
    margin-top: 27px;
  }
}

.mb_55 {
  margin-bottom: 55px;
}
@media only screen and (max-width: 600px) {
  .mb_55 {
    margin-bottom: 27px;
  }
}
@media only screen and (max-width: 1024px) {
  .mb_55 {
    margin-bottom: 40px;
  }
}

.mb_60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .mb_60 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_60 {
    margin-bottom: 30px;
  }
}

.mt_60 {
  margin-top: 60px;
}
@media only screen and (max-width: 600px) {
  .mt_60 {
    margin-top: 30px;
  }
}

.mb_65 {
  margin-bottom: 65px;
}
@media only screen and (max-width: 600px) {
  .mb_65 {
    margin-bottom: 32px;
  }
}

.mt_65 {
  margin-top: 65px;
}
@media only screen and (max-width: 600px) {
  .mt_65 {
    margin-top: 32px;
  }
}

.mb_70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 600px) {
  .mb_70 {
    margin-bottom: 35px;
  }
}

.mt_70 {
  margin-top: 70px;
}
@media only screen and (max-width: 600px) {
  .mt_70 {
    margin-top: 35px;
  }
}

.mb_75 {
  margin-bottom: 75px;
}
@media only screen and (max-width: 600px) {
  .mb_75 {
    margin-bottom: 36px;
  }
}

.mt_75 {
  margin-top: 75px;
}
@media only screen and (max-width: 600px) {
  .mt_75 {
    margin-top: 36px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media only screen and (max-width: 600px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 600px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mt_85 {
  margin-top: 85px;
}
@media only screen and (max-width: 600px) {
  .mt_85 {
    margin-top: 42px;
  }
}

.mb_85 {
  margin-bottom: 85px;
}
@media only screen and (max-width: 600px) {
  .mb_85 {
    margin-bottom: 42px;
  }
}

.mb_90 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 600px) {
  .mb_90 {
    margin-bottom: 35px;
  }
}

.mt_100 {
  margin-top: 100px;
}
@media only screen and (max-width: 1024px) {
  .mt_100 {
    margin-top: 45px;
  }
}
@media only screen and (max-width: 600px) {
  .mt_100 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .mt_100 {
    margin-top: 20px;
  }
}

.mb_100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .mb_100 {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_100 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .mb_100 {
    margin-bottom: 20px;
  }
}

.mt_115 {
  margin-top: 115px;
}
@media only screen and (max-width: 600px) {
  .mt_115 {
    margin-top: 57px;
  }
}

.mb_115 {
  margin-bottom: 115px;
}
@media only screen and (max-width: 600px) {
  .mb_115 {
    margin-bottom: 57px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1200px) {
  .mb_120 {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_120 {
    margin-bottom: 60px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media only screen and (max-width: 1200px) {
  .mt_120 {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  .mt_120 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .mt_120 {
    margin-top: 60px;
  }
}

.mt_125 {
  margin-top: 125px;
}
@media only screen and (max-width: 600px) {
  .mt_125 {
    margin-top: 62px;
  }
}

.mb_125 {
  margin-bottom: 125px;
}
@media only screen and (max-width: 600px) {
  .mb_125 {
    margin-bottom: 62px;
  }
}

.mt_130 {
  margin-top: 130px;
}
@media only screen and (max-width: 1024px) {
  .mt_130 {
    margin-top: 75px;
  }
}
@media only screen and (max-width: 600px) {
  .mt_130 {
    margin-top: 65px;
  }
}

.mb_130 {
  margin-bottom: 130px;
}
@media only screen and (max-width: 1024px) {
  .mb_130 {
    margin-bottom: 75px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_130 {
    margin-bottom: 65px;
  }
}

.mt_135 {
  margin-top: 135px;
}
@media only screen and (max-width: 600px) {
  .mt_135 {
    margin-top: 67px;
  }
}

.mb_135 {
  margin-bottom: 135px;
}
@media only screen and (max-width: 600px) {
  .mb_135 {
    margin-bottom: 67px;
  }
}

.mt_140 {
  margin-top: 140px;
}
@media only screen and (max-width: 600px) {
  .mt_140 {
    margin-top: 70px;
  }
}

.mb_140 {
  margin-bottom: 140px;
}
@media only screen and (max-width: 600px) {
  .mb_140 {
    margin-bottom: 70px;
  }
}

.mt_145 {
  margin-top: 145px;
}
@media only screen and (max-width: 600px) {
  .mt_145 {
    margin-top: 72px;
  }
}

.mb_145 {
  margin-bottom: 145px;
}
@media only screen and (max-width: 600px) {
  .mb_145 {
    margin-bottom: 72px;
  }
}

.mt_150 {
  margin-top: 150px;
}
@media only screen and (max-width: 600px) {
  .mt_150 {
    margin-top: 75px;
  }
}

.mb_150 {
  margin-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .mb_150 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_150 {
    margin-bottom: 45px;
  }
}

.mt_155 {
  margin-top: 155px;
}
@media only screen and (max-width: 600px) {
  .mt_155 {
    margin-top: 77px;
  }
}

@media only screen and (max-width: 600px) {
  .mb_155 {
    margin-bottom: 77px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media only screen and (max-width: 600px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media only screen and (max-width: 600px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.mt_165 {
  margin-top: 165px;
}
@media only screen and (max-width: 600px) {
  .mt_165 {
    margin-top: 82px;
  }
}

.mb_165 {
  margin-bottom: 165px;
}
@media only screen and (max-width: 600px) {
  .mb_165 {
    margin-bottom: 82px;
  }
}

.mt_170 {
  margin-top: 170px;
}
@media only screen and (max-width: 600px) {
  .mt_170 {
    margin-top: 85px;
  }
}

.mb_170 {
  margin-bottom: 170px;
}
@media only screen and (max-width: 600px) {
  .mb_170 {
    margin-bottom: 85px;
  }
}

.mb_175 {
  margin-bottom: 175px;
}
@media only screen and (max-width: 1024px) {
  .mb_175 {
    margin-bottom: 87px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_175 {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 480px) {
  .mb_175 {
    margin-bottom: 40px;
  }
}

.mt_175 {
  margin-top: 175px;
}
@media only screen and (max-width: 600px) {
  .mt_175 {
    margin-top: 87px;
  }
}
@media only screen and (max-width: 1024px) {
  .mt_175 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .mt_175 {
    margin-top: 40px;
  }
}

.mb_180 {
  margin-bottom: 180px;
}
@media only screen and (max-width: 600px) {
  .mb_180 {
    margin-bottom: 90px;
  }
}

.mt_180 {
  margin-top: 180px;
}
@media only screen and (max-width: 600px) {
  .mt_180 {
    margin-top: 90px;
  }
}

.mb_185 {
  margin-bottom: 185px;
}
@media only screen and (max-width: 600px) {
  .mb_185 {
    margin-bottom: 92px;
  }
}

.mt_185 {
  margin-top: 185px;
}
@media only screen and (max-width: 600px) {
  .mt_185 {
    margin-top: 92px;
  }
}

.mb_190 {
  margin-bottom: 185px;
}
@media only screen and (max-width: 600px) {
  .mb_190 {
    margin-bottom: 95px;
  }
}

.mt_190 {
  margin-top: 185px;
}
@media only screen and (max-width: 600px) {
  .mt_190 {
    margin-top: 95px;
  }
}

.mb_195 {
  margin-bottom: 195px;
}
@media only screen and (max-width: 600px) {
  .mb_195 {
    margin-bottom: 97px;
  }
}

.mt_195 {
  margin-top: 195px;
}
@media only screen and (max-width: 600px) {
  .mt_195 {
    margin-top: 97px;
  }
}

.mb_200 {
  margin-bottom: 200px;
}
@media only screen and (max-width: 1024px) {
  .mb_200 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 600px) {
  .mb_200 {
    margin-bottom: 100px;
  }
}

.mt_200 {
  margin-top: 200px;
}
@media only screen and (max-width: 600px) {
  .mt_200 {
    margin-top: 80px;
  }
}

.rtl .search_icn {
  left: unset;
  right: 0;
}

.flex_wrap {
  flex-wrap: wrap;
}

.rtl .close_btn {
  right: unset;
  left: 0;
}
.rtl .sub_menu_right_block_top_row {
  padding-left: 3%;
  padding-right: unset;
}

.rtl .sub_menu_right_block_top_row {
  padding-left: unset;
  padding-right: 7%;
}

.primary-button {
  background-color: #c5b17f;
  border-radius: 112px;
  color: #ffffff;
  font-size: 16px;
  height: 48px;
  border: none;
  padding-inline: 45px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
}
.primary-button .su_button_circle {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #b64910;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: width 0.6s ease, height 0.6s ease;
}
.primary-button .su_button_circle.explode-circle {
  width: 300px;
  height: 300px;
}
.primary-button .su_button_circle.desplode-circle {
  width: 0;
  height: 0;
  transition: width 0.4s ease, height 0.4s ease;
}
.primary-button:hover {
  color: #ffffff;
}
.primary-button.contact-section-button {
  background-color: #b64910 !important;
}
.primary-button.contact-section-button .su_button_circle {
  background-color: #000000;
}
.primary-button.contact-section-button:hover, .primary-button.contact-section-button.hovered {
  background-color: #000000 !important;
}
@media screen and (max-width: 768px) {
  .primary-button {
    height: 42px;
  }
}

.contact-us-button {
  background-color: #b64910;
  border-radius: 112px;
  color: #ffffff;
  font-size: 16px;
  height: 48px;
  border: none;
  padding-inline: 45px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  line-height: 48px;
}
.contact-us-button .su_button_circle {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #000000;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: width 0.6s ease, height 0.6s ease;
}
.contact-us-button .su_button_circle.explode-circle {
  width: 300px;
  height: 300px;
}
.contact-us-button .su_button_circle.desplode-circle {
  width: 0;
  height: 0;
  transition: width 0.4s ease, height 0.4s ease;
}
.contact-us-button:hover {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact-us-button {
    height: 42px;
    line-height: 42px;
  }
}

.primary-button {
  font-family: "Neue Regrade", sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C5B17F;
  color: #fff;
  border-radius: 112px;
  font-size: 16px;
  height: 48px;
  padding-inline: 45px;
  line-height: 1;
  z-index: 1;
  font-weight: 500;
  transition: all 0.4s ease;
}
.primary-button:hover {
  background-color: #b64910;
}
@media only screen and (max-width: 768px) {
  .primary-button {
    height: 42px;
  }
}

.contact-us-button {
  font-family: "Neue Regrade", sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b64910;
  color: #fff;
  border-radius: 112px;
  font-size: 16px;
  height: 48px;
  padding-inline: 45px;
  line-height: 48px;
  z-index: 1;
}
.contact-us-button .su_button_circle {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #000;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: width 0.6s ease, height 0.6s ease;
}
.contact-us-button .su_button_circle.explode-circle {
  width: 300px;
  height: 300px;
}
.contact-us-button .su_button_circle.desplode-circle {
  width: 0;
  height: 0;
  transition: width 0.4s ease, height 0.4s ease;
}
.contact-us-button:hover {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .contact-us-button {
    height: 42px;
    line-height: 42px;
  }
}

.book-visit-button {
  font-family: "Neue Regrade", sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  background-color: #C5B17F;
  color: #fff;
  border-radius: 4px;
  padding: 12px 32px;
  flex-shrink: 0;
  white-space: nowrap;
}
.book-visit-button:hover {
  background-color: #b59c5c;
}
.book-visit-button:active {
  background-color: #aa904d;
}

.br_102 {
  border-radius: 102px;
  overflow: hidden;
}

header.main-header,
#headerMainSection.main-header,
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 1px solid #c5b17f;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.main-header:not(.scrolled),
#headerMainSection.main-header:not(.scrolled),
.main-header:not(.scrolled) {
  background: transparent !important;
  background-color: transparent !important;
}
header.main-header.dropdown_open,
#headerMainSection.main-header.dropdown_open,
.main-header.dropdown_open {
  background-color: #fff !important;
}
header.main-header.dropdown_open .header-nav .nav-item a,
#headerMainSection.main-header.dropdown_open .header-nav .nav-item a,
.main-header.dropdown_open .header-nav .nav-item a {
  color: #000;
}
header.main-header.header-scroll-active,
#headerMainSection.main-header.header-scroll-active,
.main-header.header-scroll-active {
  background-color: #fff !important;
  background: #fff !important;
}
header.main-header .header-container,
#headerMainSection.main-header .header-container,
.main-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  background: transparent;
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  header.main-header .header-container,
  #headerMainSection.main-header .header-container,
  .main-header .header-container {
    height: 80px;
    padding: 0 15px;
  }
}
header.main-header .header-logo,
#headerMainSection.main-header .header-logo,
.main-header .header-logo {
  flex-shrink: 0;
  z-index: 1001;
}
header.main-header .header-logo a,
#headerMainSection.main-header .header-logo a,
.main-header .header-logo a {
  display: block;
}
header.main-header .header-logo img,
#headerMainSection.main-header .header-logo img,
.main-header .header-logo img {
  height: 55px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1024px) {
  header.main-header .header-logo img,
  #headerMainSection.main-header .header-logo img,
  .main-header .header-logo img {
    height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  header.main-header .header-logo img,
  #headerMainSection.main-header .header-logo img,
  .main-header .header-logo img {
    height: 40px;
  }
}
header.main-header .header-nav,
#headerMainSection.main-header .header-nav,
.main-header .header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  header.main-header .header-nav,
  #headerMainSection.main-header .header-nav,
  .main-header .header-nav {
    display: none;
  }
}
header.main-header .header-nav .nav-menu,
#headerMainSection.main-header .header-nav .nav-menu,
.main-header .header-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1440px) {
  header.main-header .header-nav .nav-menu,
  #headerMainSection.main-header .header-nav .nav-menu,
  .main-header .header-nav .nav-menu {
    gap: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  header.main-header .header-nav .nav-menu,
  #headerMainSection.main-header .header-nav .nav-menu,
  .main-header .header-nav .nav-menu {
    gap: 25px;
  }
}
header.main-header .header-nav .nav-item,
#headerMainSection.main-header .header-nav .nav-item,
.main-header .header-nav .nav-item {
  position: relative;
}
header.main-header .header-nav .nav-item a,
#headerMainSection.main-header .header-nav .nav-item a,
.main-header .header-nav .nav-item a {
  font-family: "Neue Regrade";
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
header.main-header .header-nav .nav-item a:hover,
#headerMainSection.main-header .header-nav .nav-item a:hover,
.main-header .header-nav .nav-item a:hover {
  color: #c5b17f;
}
@media only screen and (max-width: 1200px) {
  header.main-header .header-nav .nav-item a,
  #headerMainSection.main-header .header-nav .nav-item a,
  .main-header .header-nav .nav-item a {
    font-size: 14px;
  }
}
header.main-header .header-nav .nav-item-with-dropdown .nav-link-with-dropdown,
#headerMainSection.main-header .header-nav .nav-item-with-dropdown .nav-link-with-dropdown,
.main-header .header-nav .nav-item-with-dropdown .nav-link-with-dropdown {
  cursor: pointer;
}
header.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow,
#headerMainSection.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow,
.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #fff;
  margin-left: 8px;
}
header.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow svg,
#headerMainSection.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow svg,
.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow svg {
  width: 10px;
  height: 6px;
}
header.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow.dropdown_active,
#headerMainSection.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow.dropdown_active,
.main-header .header-nav .nav-item-with-dropdown .dropdown_arrow.dropdown_active {
  transform: rotate(180deg);
  color: #c5b17f;
}
header.main-header .header-nav .nav-item-with-dropdown > a,
#headerMainSection.main-header .header-nav .nav-item-with-dropdown > a,
.main-header .header-nav .nav-item-with-dropdown > a {
  cursor: pointer;
}
header.main-header .header-nav .nav-menu .menu-item-has-children,
#headerMainSection.main-header .header-nav .nav-menu .menu-item-has-children,
.main-header .header-nav .nav-menu .menu-item-has-children {
  position: relative;
}
header.main-header .header-nav .nav-menu .menu-item-has-children > a,
#headerMainSection.main-header .header-nav .nav-menu .menu-item-has-children > a,
.main-header .header-nav .nav-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 8px;
}
header.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow,
#headerMainSection.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow,
.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #e5e5e5;
  margin-left: 8px;
}
header.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow svg,
#headerMainSection.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow svg,
.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow svg {
  width: 10px;
  height: 6px;
}
header.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow.dropdown_active,
#headerMainSection.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow.dropdown_active,
.main-header .header-nav .nav-menu .menu-item-has-children .dropdown_arrow.dropdown_active {
  transform: rotate(180deg);
  color: #c5b17f;
}
header.main-header .header-utilities,
#headerMainSection.main-header .header-utilities,
.main-header .header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  header.main-header .header-utilities,
  #headerMainSection.main-header .header-utilities,
  .main-header .header-utilities {
    gap: 15px;
  }
}
header.main-header .header-utilities .header-icon,
#headerMainSection.main-header .header-utilities .header-icon,
.main-header .header-utilities .header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
header.main-header .header-utilities .header-icon img,
#headerMainSection.main-header .header-utilities .header-icon img,
.main-header .header-utilities .header-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header.main-header .header-utilities .header-icon.desktop-menu-toggle,
#headerMainSection.main-header .header-utilities .header-icon.desktop-menu-toggle,
.main-header .header-utilities .header-icon.desktop-menu-toggle {
  padding-left: 20px;
}
header.main-header .header-utilities .mobile-menu-toggle,
#headerMainSection.main-header .header-utilities .mobile-menu-toggle,
.main-header .header-utilities .mobile-menu-toggle {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header.main-header .header-utilities .mobile-menu-toggle,
  #headerMainSection.main-header .header-utilities .mobile-menu-toggle,
  .main-header .header-utilities .mobile-menu-toggle {
    display: flex;
  }
}
header.main-header .dropdown_menu_fullwidth,
#headerMainSection.main-header .dropdown_menu_fullwidth,
.main-header .dropdown_menu_fullwidth {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  header.main-header .dropdown_menu_fullwidth,
  #headerMainSection.main-header .dropdown_menu_fullwidth,
  .main-header .dropdown_menu_fullwidth {
    top: 70px;
  }
}
header.main-header .dropdown_menu_fullwidth.dropdown_open,
#headerMainSection.main-header .dropdown_menu_fullwidth.dropdown_open,
.main-header .dropdown_menu_fullwidth.dropdown_open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 600px;
  background-color: #fff;
}
header.main-header .dropdown_menu_fullwidth .dropdown-container,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-container,
.main-header .dropdown_menu_fullwidth .dropdown-container {
  padding: 40px 20px;
}
@media only screen and (max-width: 1024px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-container,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-container,
  .main-header .dropdown_menu_fullwidth .dropdown-container {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 768px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-container,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-container,
  .main-header .dropdown_menu_fullwidth .dropdown-container {
    padding: 20px 15px;
  }
}
header.main-header .dropdown_menu_fullwidth .dropdown-content,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content,
.main-header .dropdown_menu_fullwidth .dropdown-content {
  display: flex;
  gap: 30px;
  width: 100%;
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title {
  color: #8b4513;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 30px 0;
  padding-bottom: 15px;
  width: 35%;
}
@media only screen and (max-width: 1024px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title {
  color: #c5b17f;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
}
@media only screen and (max-width: 1024px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-column-title {
    font-size: 15px;
  }
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list li,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list li,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list li {
  margin-bottom: 10px;
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list li:last-child,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list li:last-child,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list li:last-child {
  margin-bottom: 0;
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item {
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item:hover,
#headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item:hover,
.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item:hover {
  color: #c5b17f;
}
@media only screen and (max-width: 1024px) {
  header.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item,
  #headerMainSection.main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item,
  .main-header .dropdown_menu_fullwidth .dropdown-content .dropdown-column .dropdown-list .dropdown_item {
    font-size: 14px;
  }
}
header.main-header .mobile-menu-overlay,
#headerMainSection.main-header .mobile-menu-overlay,
.main-header .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}
header.main-header .mobile-menu-overlay.mobile_menu_open,
#headerMainSection.main-header .mobile-menu-overlay.mobile_menu_open,
.main-header .mobile-menu-overlay.mobile_menu_open {
  opacity: 1;
  visibility: visible;
}
header.main-header .mobile-menu-overlay .mobile-menu-content,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu-content,
.main-header .mobile-menu-overlay .mobile-menu-content {
  padding: 100px 20px 40px;
  max-width: 600px;
  margin: 0 auto;
}
header.main-header .mobile-menu-overlay .mobile-menu,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu,
.main-header .mobile-menu-overlay .mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item {
  margin-bottom: 20px;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item:last-child,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item:last-child,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item:last-child {
  margin-bottom: 0;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item > a,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item > a,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item > a {
  color: #e5e5e5;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item > a:hover,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item > a:hover,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item > a:hover {
  color: #c5b17f;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5e5e5;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle:hover,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle:hover,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle:hover {
  color: #c5b17f;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle .mobile-submenu-arrow,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle .mobile-submenu-arrow,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle .mobile-submenu-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle .mobile-submenu-arrow svg,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle .mobile-submenu-arrow svg,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle .mobile-submenu-arrow svg {
  width: 10px;
  height: 6px;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle.mobile_submenu_toggle_active,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle.mobile_submenu_toggle_active,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle.mobile_submenu_toggle_active {
  color: #c5b17f;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle.mobile_submenu_toggle_active .mobile-submenu-arrow,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle.mobile_submenu_toggle_active .mobile-submenu-arrow,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu_toggle.mobile_submenu_toggle_active .mobile-submenu-arrow {
  transform: rotate(180deg);
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu.mobile_submenu_open,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu.mobile_submenu_open,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu.mobile_submenu_open {
  max-height: 1000px;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li {
  margin-bottom: 10px;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li:last-child,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li:last-child,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li:last-child {
  margin-bottom: 0;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li a,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li a,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li a {
  color: #b0b0b0;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}
header.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li a:hover,
#headerMainSection.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li a:hover,
.main-header .mobile-menu-overlay .mobile-menu .mobile_menu_item_has_submenu .mobile_menu_submenu li a:hover {
  color: #c5b17f;
}

body.header_visible .main-header {
  opacity: 1;
  visibility: visible;
}

body.overflow_body_hidden {
  overflow: hidden;
}

.header-initial-container {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header-initial-container.header-inactive {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  background: transparent;
  z-index: 1001;
}
@media only screen and (max-width: 1024px) {
  .header-scroll-container {
    height: 80px;
  }
}
.header-scroll-container.header-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-booking-form {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-booking-form .header-booking-form-inputs {
  display: flex;
  gap: 0;
  flex: 1;
  align-items: center;
  border: 1px solid #c5b17f;
  padding: 0 30px;
  border-radius: 200px;
  justify-content: flex-start;
  width: 820px;
  height: 48px;
  overflow: visible;
  min-width: 0;
  background-color: rgba(244, 244, 244, 0.79);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05) inset, 0px -1px 4px 0px rgba(0, 0, 0, 0.05) inset;
}
.header-booking-form .header-booking-form-inputs > *:not(:last-child) {
  border-right: 0.5px solid rgba(197, 177, 127, 0.44);
}
.header-booking-form .header-form-field-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
  flex-shrink: 0;
  height: 60%;
  max-width: 100%;
}
.header-booking-form .header-form-field-wrapper.header-form-field-fullname {
  width: 93px;
  padding-right: 20px;
}
.header-booking-form .header-form-field-wrapper.header-form-field-email {
  width: 132px;
  padding-inline: 18px;
}
.header-booking-form .header-form-field-wrapper.header-form-field-phone {
  width: 107px;
  padding-inline: 18px;
}
.header-booking-form .header-form-field-wrapper.header-form-field-event-type {
  width: 151px;
  padding-inline: 18px;
}
.header-booking-form .header-form-field-wrapper.header-form-field-event-date {
  width: 139px;
  padding-inline: 18px;
}
.header-booking-form .header-form-field-wrapper.header-form-field-preferred-time {
  width: 155px;
  padding-left: 18px;
}
.header-booking-form .header-form-field-wrapper .header-form-field-display {
  display: block;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #191919;
  opacity: 0.7;
  white-space: nowrap;
  cursor: text;
  pointer-events: none;
}
.header-booking-form .header-form-field-wrapper:has(select) .header-form-field-display, .header-booking-form .header-form-field-wrapper:has(.header-choices) .header-form-field-display {
  display: none;
}
.header-booking-form .header-form-field-wrapper:has(select) select, .header-booking-form .header-form-field-wrapper:has(.header-choices) select {
  display: block;
}
.header-booking-form .header-form-field-wrapper:has(select) .header-choices, .header-booking-form .header-form-field-wrapper:has(.header-choices) .header-choices {
  display: flex;
}
.header-booking-form .header-form-field-wrapper.is-focused .header-form-field-display, .header-booking-form .header-form-field-wrapper:focus-within .header-form-field-display {
  display: none;
}
.header-booking-form .header-form-field-wrapper.is-focused .header-form-input:not(select), .header-booking-form .header-form-field-wrapper:focus-within .header-form-input:not(select) {
  display: block;
}
.header-booking-form .header-form-field-wrapper.has-value .header-form-field-display {
  display: none;
}
.header-booking-form .header-form-field-wrapper.has-value .header-form-input:not(select) {
  display: block;
}
.header-booking-form .header-form-field-wrapper .header-choices {
  display: none;
}
@media only screen and (max-width: 1440px) {
  .header-booking-form {
    gap: 10px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-booking-form {
    gap: 8px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-booking-form {
    display: none;
  }
}
.header-booking-form .header-form-input {
  display: none;
  min-width: 0;
  width: 100%;
  background: transparent;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #191919;
  outline: none;
  transition: border-color 0.3s ease;
  border: none;
  outline: none;
  padding: 0;
  flex-shrink: 1;
  flex-grow: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.header-booking-form .header-form-input::-moz-placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.7;
  white-space: nowrap;
}
.header-booking-form .header-form-input::placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #191919;
  opacity: 0.7;
  white-space: nowrap;
}
.header-booking-form .header-form-input:focus {
  border-color: #c5b17f;
}
.header-booking-form .header-form-input:required:invalid {
  border-color: #c5b17f;
}
.header-booking-form .header-form-input[type=text][id=headerEventDate], .header-booking-form .header-form-input[type=date] {
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  width: 100%;
  flex-shrink: 0;
}
.header-booking-form .header-form-input[type=text][id=headerEventDate]::-moz-placeholder, .header-booking-form .header-form-input[type=date]::-moz-placeholder {
  white-space: nowrap;
}
.header-booking-form .header-form-input[type=text][id=headerEventDate]::placeholder, .header-booking-form .header-form-input[type=date]::placeholder {
  white-space: nowrap;
}
.header-booking-form .header-form-input[type=select],
.header-booking-form .header-form-input select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/icons/scroll_header_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 13px 7px;
  padding-right: 25px;
  display: block;
  visibility: visible;
  opacity: 1;
  width: 100%;
  min-width: 0;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-booking-form .header-form-input[type=select] option,
.header-booking-form .header-form-input select option {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #191919;
  background: #fff;
  padding: 5px;
}
.header-booking-form .header-choices {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  flex-shrink: 0;
  flex-grow: 0;
}
.header-booking-form .header-choices .choices__inner {
  background: transparent;
  border: none;
  padding: 0;
  padding-right: 30px;
  min-height: auto;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #191919;
  display: flex;
  align-items: center;
  padding-bottom: 0 !important;
  width: auto;
  min-width: 0;
}
.header-booking-form .header-choices .choices__list--single {
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.header-booking-form .header-choices .choices__list--single .choices__item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.header-booking-form .header-choices .choices__item--selectable {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #191919;
  white-space: nowrap;
}
.header-booking-form .header-choices .choices__placeholder {
  opacity: 0.7;
  color: #191919;
  white-space: nowrap;
}
.header-booking-form .header-choices .choices__list--dropdown {
  border: 1px solid #c5b17f;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  min-width: auto;
  width: auto;
  max-width: none;
}
.header-booking-form .header-choices .choices__list--dropdown .choices__item--choice {
  white-space: nowrap;
  padding: 10px 15px;
}
.header-booking-form .header-choices .choices[data-type*=select-one] {
  position: relative;
}
.header-booking-form .header-choices .choices[data-type*=select-one] {
  position: relative;
}
.header-booking-form .header-choices .choices[data-type*=select-one] .choices__inner {
  padding-right: 30px;
}
.header-booking-form .header-choices .choices[data-type*=select-one]::after {
  display: none !important;
  content: "" !important;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
  border-style: none !important;
  border-color: transparent !important;
  border-width: 0 !important;
  position: static !important;
  margin: 0 !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.header-booking-form .header-choices .choices[data-type*=select-one]::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 7px;
  background-image: url("../images/icons/scroll_header_arrow.svg");
  background-repeat: no-repeat;
  background-size: 13px 7px;
  background-position: center;
  border: none;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}
.header-booking-form .header-choices .choices[data-type*=select-one].is-open::before {
  transform: translateY(-50%) rotate(180deg);
}
.header-booking-form .header-form-date-wrapper .header-form-input {
  padding-right: 40px;
}
.header-booking-form .header-form-date-wrapper .header-form-calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 13px;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
  opacity: 0.7;
}
.header-booking-form .header-form-date-wrapper .header-form-calendar-icon:hover {
  opacity: 1;
}
.header-booking-form .header-form-date-wrapper .header-form-field-display {
  padding-right: 20px;
}
.header-booking-form .header-form-date-wrapper.is-focused .header-form-calendar-icon, .header-booking-form .header-form-date-wrapper:focus-within .header-form-calendar-icon, .header-booking-form .header-form-date-wrapper.has-value .header-form-calendar-icon {
  opacity: 1;
}
.header-booking-form .header-form-input-small {
  width: auto;
  min-width: 0;
  flex-shrink: 1;
}
.header-booking-form .header-form-input-large {
  width: auto;
  min-width: 0;
  flex-shrink: 1;
}
.header-booking-form .header-form-button {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 32px;
  background: #c5b17f;
  color: #fff;
  border: none;
  border-radius: 200px;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.header-booking-form .header-form-button:hover {
  background: #b5a16f;
  transform: translateY(-1px);
}
.header-booking-form .header-form-button:active {
  transform: translateY(0);
}
@media only screen and (max-width: 1440px) {
  .header-booking-form .header-form-button {
    padding: 10px 28px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-booking-form .header-form-button {
    padding: 8px 24px;
    font-size: 14px;
  }
}

.fullscreen-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
.fullscreen-nav-menu.fullscreen-nav-open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.fullscreen-nav-menu .fullscreen-nav-left {
  width: 50%;
  background-color: #b64910;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  width: 100%;
  max-width: 500px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content.has-submenu-active .fullscreen-nav-main-content {
  display: none;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-logo img {
  width: auto;
  height: 115px;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  width: 100%;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid .fullscreen-nav-grid-item .fullscreen-nav-grid-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 12px 0;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid .fullscreen-nav-grid-item .fullscreen-nav-grid-sub {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 0;
  will-change: opacity, transform;
  transform-origin: bottom;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid .fullscreen-nav-grid-item .fullscreen-nav-grid-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  will-change: opacity, transform;
  transform-origin: bottom;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid .fullscreen-nav-grid-item .fullscreen-nav-grid-social a {
  width: 48%;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content {
  display: none;
  width: 100%;
  text-align: left;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content.fullscreen-nav-submenu-active {
  display: block;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-wrapper {
  display: none;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-wrapper.fullscreen-nav-submenu-wrapper-active {
  display: block;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-heading::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 14px;
  background-image: url("../images/icons/opennav_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-categories {
  display: flex;
  flex-direction: column;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category .fullscreen-nav-submenu-category-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 0 0 25px 0;
  font-weight: 500;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category .fullscreen-nav-submenu-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category .fullscreen-nav-submenu-category-list li a {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #c5b17f;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: block;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category .fullscreen-nav-submenu-category-list li a:hover {
  opacity: 1;
}
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category .fullscreen-nav-submenu-category-heading,
.fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-submenu-content .fullscreen-nav-submenu-category .fullscreen-nav-submenu-category-list {
  margin-left: 20%;
}
.fullscreen-nav-menu .fullscreen-nav-right {
  width: 50%;
  background-color: #e5c7a5;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  will-change: transform;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-close:hover {
  transform: scale(1.1);
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-close img {
  width: 49px;
  height: 24px;
  display: block;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items {
  width: 100%;
  will-change: opacity, transform;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item {
  width: 100%;
  border-bottom: 1px solid #c5b17f;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-link {
  padding: 30px 10px 30px 90px;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #b64910;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-link:hover {
  opacity: 0.8;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-link .fullscreen-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: transform 0.3s ease;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-link .fullscreen-nav-arrow img {
  width: 25px;
  height: 14px;
  display: block;
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item.fullscreen-nav-item-active .fullscreen-nav-link .fullscreen-nav-arrow {
  transform: rotate(90deg);
}
.fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-submenu-data {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .fullscreen-nav-menu {
    flex-direction: column;
  }
  .fullscreen-nav-menu .fullscreen-nav-left,
  .fullscreen-nav-menu .fullscreen-nav-right {
    width: 100%;
    height: 50vh;
  }
  .fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content {
    gap: 40px;
  }
  .fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-logo img {
    max-width: 200px;
  }
  .fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid {
    gap: 30px 20px;
  }
  .fullscreen-nav-menu .fullscreen-nav-right {
    padding: 40px 40px;
  }
  .fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-close {
    top: 20px;
    right: 20px;
  }
  .fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-link {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .fullscreen-nav-menu .fullscreen-nav-left {
    padding: 40px 20px;
  }
  .fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content {
    gap: 30px;
  }
  .fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-logo img {
    max-width: 150px;
  }
  .fullscreen-nav-menu .fullscreen-nav-left .fullscreen-nav-left-content .fullscreen-nav-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .fullscreen-nav-menu .fullscreen-nav-right {
    padding: 30px 20px;
  }
  .fullscreen-nav-menu .fullscreen-nav-right .fullscreen-nav-menu-items .fullscreen-nav-list .fullscreen-nav-item .fullscreen-nav-link {
    font-size: 28px;
  }
}

body.fullscreen-nav-open {
  overflow: hidden;
}

/**
 * Footer Component Styles
 * Converted from Footer.module.scss for WordPress
 * All classes are scoped with 'footer-' prefix to avoid conflicts
 */
.footer {
  background-color: #ffffff;
  width: 100%;
  color: #000000;
  background-image: url("../images/footer-bg.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  /* Logo Section */
  /* Newsletter Section */
  /* Navigation Links Section */
  /* Responsive Styles */
}
.footer .footer-container {
  min-height: 602px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-container .footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
.footer .footer-container .footer-main-content .footer-logo {
  width: 242px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-container .footer-bottom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: auto;
}
.footer .footer-container .footer-bottom-section .footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.footer .footer-container .footer-bottom-section .footer-bottom-left .footer-copyright {
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
}
.footer .footer-container .footer-bottom-section .footer-bottom-left .footer-copyright .footer-legal-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-container .footer-bottom-section .footer-bottom-left .footer-copyright .footer-legal-link:hover {
  color: #c5b17f;
}
.footer .footer-container .footer-bottom-section .footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .footer-container .footer-bottom-section .footer-bottom-right .footer-social-link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer .footer-container .footer-bottom-section .footer-bottom-right .footer-social-link:hover {
  color: #c5b17f;
}
.footer .footer-logo-section {
  flex-shrink: 0;
}
.footer .footer-newsletter-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}
.footer .footer-newsletter-section .footer-newsletter-heading {
  color: #c5b17f;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.footer .footer-newsletter-section .footer-newsletter-form {
  display: flex;
  gap: 10px;
  width: 90%;
}
.footer .footer-newsletter-section .footer-newsletter-form .footer-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 37px;
  background-color: rgba(240, 240, 240, 0.7411764706);
  color: #000000;
  font-size: 14px;
  outline: none;
  border: 1px solid transparent;
}
.footer .footer-newsletter-section .footer-newsletter-form .footer-newsletter-input::-moz-placeholder {
  color: #6b6b6b;
}
.footer .footer-newsletter-section .footer-newsletter-form .footer-newsletter-input::placeholder {
  color: #6b6b6b;
}
.footer .footer-newsletter-section .footer-newsletter-form .footer-newsletter-input:focus {
  border: 1px solid #c5b17f;
}
.footer .footer-newsletter-section .footer-newsletter-form .footer-newsletter-button {
  padding: 12px 24px;
  background-color: #c5b17f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.footer .footer-newsletter-section .footer-newsletter-form .footer-newsletter-button:hover {
  background-color: #b89950;
}
.footer .footer-link-list {
  display: flex;
  gap: 60px;
  flex-shrink: 0;
}
.footer .footer-link-list .footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer-link-list .footer-link-column .footer-link-heading {
  color: #c5b17f;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.footer .footer-link-list .footer-link-column .footer-link-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer-link-list .footer-link-column .footer-link-items li {
  margin: 0;
}
.footer .footer-link-list .footer-link-column .footer-link-items a {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1875rem;
}
.footer .footer-link-list .footer-link-column .footer-link-items a:hover {
  color: #c5b17f;
}
@media screen and (max-width: 1200px) {
  .footer .footer-container .footer-main-content {
    gap: 40px;
  }
  .footer .footer-container .footer-link-list {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-container {
    min-height: auto;
  }
  .footer .footer-container .footer-main-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer .footer-container .footer-main-content .footer-logo-section {
    text-align: center;
  }
  .footer .footer-container .footer-main-content .footer-newsletter-section {
    width: 100%;
  }
  .footer .footer-container .footer-main-content .footer-link-list {
    justify-content: center;
    width: 100%;
    gap: 40px;
  }
  .footer .footer-container .footer-bottom-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-left {
    justify-content: center;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-right {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-main-content {
    gap: 30px;
  }
  .footer .footer-container .footer-main-content .footer-logo {
    width: 200px;
  }
  .footer .footer-container .footer-main-content .footer-newsletter-section .footer-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .footer .footer-container .footer-main-content .footer-newsletter-section .footer-newsletter-form .footer-newsletter-button {
    width: 100%;
  }
  .footer .footer-container .footer-main-content .footer-link-list {
    gap: 30px;
    width: 100%;
  }
  .footer .footer-container .footer-main-content .footer-link-list .footer-link-column {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-left .footer-copyright {
    font-size: 12px;
    text-align: center;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-right {
    gap: 10px;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-right .footer-social-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .footer .footer-container .footer-main-content .footer-logo {
    width: 180px;
  }
  .footer .footer-container .footer-main-content .footer-newsletter-section .footer-newsletter-heading {
    font-size: 16px;
  }
  .footer .footer-container .footer-main-content .footer-link-list {
    flex-direction: column;
  }
  .footer .footer-container .footer-main-content .footer-link-list .footer-link-column .footer-link-heading {
    font-size: 16px;
  }
  .footer .footer-container .footer-main-content .footer-link-list .footer-link-column .footer-link-items a {
    font-size: 14px;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-left .footer-copyright {
    font-size: 11px;
    line-height: 1.6;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-right {
    gap: 8px;
  }
  .footer .footer-container .footer-bottom-section .footer-bottom-right .footer-social-link {
    font-size: 11px;
  }
}

.contact-us-container {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-us-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.contact-us-container .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.contact-us-container .contact-us-title {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px 0;
  text-align: left;
}
.contact-us-container .contact-us-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #fff;
  margin-block: 0px 56px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .contact-us-container {
    min-height: 450px;
    padding: 60px 0;
  }
  .contact-us-container .contact-us-title {
    font-size: 42px;
    margin-bottom: 18px;
  }
  .contact-us-container .contact-us-description {
    font-size: 17px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-container {
    min-height: 400px;
    padding: 50px 0;
  }
  .contact-us-container .contact-us-title {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .contact-us-container .contact-us-description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 600px) {
  .contact-us-container {
    min-height: 350px;
    padding: 40px 0;
  }
  .contact-us-container .contact-us-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .contact-us-container .contact-us-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-us-container {
    min-height: 320px;
    padding: 30px 0;
  }
  .contact-us-container .contact-us-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact-us-container .contact-us-description {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

.text-center {
  text-align: center;
}

.banner-container {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.banner-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}
.banner-container .banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-container .banner-content .container {
  position: absolute;
  bottom: 60px;
  left: 0;
}
.banner-container .banner-title {
  font-family: "Neue Regrade", sans-serif;
  font-family: "Neue Regrade", sans-serif;
  font-size: 70px;
  line-height: 86px;
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 4.375rem;
  font-weight: 600;
  font-style: normal;
  line-height: 86px;
  letter-spacing: 0px;
  color: #fff;
  margin: 0;
  text-align: left;
  text-transform: capitalize;
}
@media (max-width: 700px) {
  .banner-container {
    min-height: 300px;
  }
}

html.banner-animating,
body.banner-animating {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: none !important;
}

.main-banner-container {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.main-banner-container .main-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), linear-gradient(180deg, rgba(0, 0, 0, 0) 37.44%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 27.83%, rgba(0, 0, 0, 0.67) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 57.11%);
  z-index: 4;
}
.main-banner-container .main-banner-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  perspective: 1000px;
}
.main-banner-container .main-banner-mask img,
.main-banner-container .main-banner-mask .main-banner-mask-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  shape-rendering: crispEdges;
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  opacity: 1;
  animation: svgScaleFade 3s ease-in-out forwards;
}
.main-banner-container .main-banner-mask svg.main-banner-mask-img {
  display: block;
}
@keyframes svgScaleFade {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.5);
    opacity: 0;
  }
}
.main-banner-container .main-banner-content {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0;
}
.main-banner-container .main-banner-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  padding-inline: 25px;
}
.main-banner-container .main-banner-title-wrapper {
  flex: 0 0 auto;
  max-width: 50%;
}
.main-banner-container .main-banner-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 150px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.83);
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.main-banner-container .main-banner-subtitle-wrapper {
  flex: 0 0 auto;
  text-align: right;
  max-width: 400px;
}
.main-banner-container .main-banner-subtitle {
  font-family: "Neue Regrade", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  margin: 0;
  opacity: 0.95;
}
.main-banner-container .main-banner-form-wrapper {
  overflow: visible;
  position: relative;
  z-index: 10;
}
.main-banner-container .main-banner-form {
  display: flex;
  align-items: center;
  background: rgb(255, 255, 255);
  padding: 25px;
  flex-wrap: nowrap;
  border: 1px solid #7a6f55;
  border-radius: 102px;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.main-banner-container .main-banner-form .form-label {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #C5B17F;
  white-space: nowrap;
  margin-bottom: 10px;
}
.main-banner-container .main-banner-form input,
.main-banner-container .main-banner-form select {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: "Neue Regrade", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.main-banner-container .main-banner-form input::-moz-placeholder, .main-banner-container .main-banner-form select::-moz-placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input::placeholder,
.main-banner-container .main-banner-form select::placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input::-webkit-input-placeholder,
.main-banner-container .main-banner-form select::-webkit-input-placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input::-moz-placeholder,
.main-banner-container .main-banner-form select::-moz-placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
  opacity: 1;
}
.main-banner-container .main-banner-form input:-ms-input-placeholder,
.main-banner-container .main-banner-form select:-ms-input-placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input:focus,
.main-banner-container .main-banner-form select:focus {
  outline: none;
}
.main-banner-container .main-banner-form input option,
.main-banner-container .main-banner-form select option {
  color: #000;
  background: #fff;
}
.main-banner-container .main-banner-form input option[value=""],
.main-banner-container .main-banner-form select option[value=""] {
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input[type=date],
.main-banner-container .main-banner-form select[type=date] {
  position: relative;
  cursor: pointer;
}
.main-banner-container .main-banner-form input[type=date]::-webkit-calendar-picker-indicator,
.main-banner-container .main-banner-form select[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.main-banner-container .main-banner-form input[type=date]:hover::-webkit-calendar-picker-indicator,
.main-banner-container .main-banner-form select[type=date]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.main-banner-container .main-banner-form .choices-form {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
.main-banner-container .main-banner-form .choices-form select.choices__input {
  display: none;
}
.main-banner-container .main-banner-form .choices-form::after {
  display: none !important;
}
.main-banner-container .main-banner-form .choices-form .choices__inner {
  background: transparent;
  border: none;
  padding: 0;
  padding-right: 24px;
  min-height: auto;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
.main-banner-container .main-banner-form .choices-form .choices__list--single {
  padding: 0;
}
.main-banner-container .main-banner-form .choices-form .choices__item--selectable {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
  padding: 0;
}
.main-banner-container .main-banner-form .choices-form .choices__placeholder {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ABAFB1;
  opacity: 1;
}
.main-banner-container .main-banner-form .choices-form.has-value .choices__item--selectable {
  color: #000;
}
.main-banner-container .main-banner-form .choices-form .choices__inner::after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ABAFB1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  margin-top: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.main-banner-container .main-banner-form .choices-form .choices__list--dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  z-index: 10000;
  position: absolute;
}
.main-banner-container .main-banner-form .choices-form .choices__list--dropdown .choices__item--choice {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
}
.main-banner-container .main-banner-form .choices-form .choices__list--dropdown .choices__item--choice.is-highlighted {
  background-color: #f5f5f5;
}
.main-banner-container .main-banner-form select:not(.choices__input) {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ABAFB1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 24px;
  cursor: pointer;
  color: #ABAFB1;
}
.main-banner-container .main-banner-form select:not(.choices__input).has-value {
  color: #000;
}
.main-banner-container .main-banner-form select:not(.choices__input) option[value=""] {
  color: #ABAFB1;
}
.main-banner-container .main-banner-form select:not(.choices__input) option:not([value=""]) {
  color: #000;
}
.main-banner-container .main-banner-form input[type=date] {
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input[type=date]:not(:invalid), .main-banner-container .main-banner-form input[type=date].has-value {
  color: #000;
}
.main-banner-container .main-banner-form input[type=date]:-moz-placeholder-shown {
  color: #ABAFB1;
}
.main-banner-container .main-banner-form input[type=date]:placeholder-shown {
  color: #ABAFB1;
}
.main-banner-container .form-field {
  flex: 0 1 auto;
  padding-left: 20px;
  border-left: 1px solid #abafb1;
}
.main-banner-container .form-field:first-child {
  border-left: none;
  padding-left: 0;
}
.main-banner-container .form-field:nth-child(1), .main-banner-container .form-field:nth-child(2), .main-banner-container .form-field:nth-child(3) {
  min-width: 100px;
  max-width: 140px;
}
.main-banner-container .form-field:nth-child(4), .main-banner-container .form-field:nth-child(5), .main-banner-container .form-field:nth-child(6) {
  min-width: 150px;
  max-width: 200px;
}
.main-banner-container .book-visit-button {
  font-family: "Neue Regrade", sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C5B17F;
  color: #fff;
  border-radius: 112px;
  font-size: 16px;
  height: 48px;
  padding-inline: 45px;
  line-height: 1;
  z-index: 1;
  font-weight: 500;
  transition: all 0.4s ease;
}
.main-banner-container .book-visit-button:hover {
  background-color: #b64910;
}
@media only screen and (max-width: 768px) {
  .main-banner-container .book-visit-button {
    height: 42px;
  }
}
.main-banner-container .main-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}
.main-banner-container .main-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.where-ever-page {
  width: 100%;
  min-height: 100vh;
}

.where-ever-content {
  background-color: #fff;
  min-height: 100vh;
}
.where-ever-content .container {
  position: relative;
}
.where-ever-content .where_ever_text_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.where-ever-content .where-ever-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0 0 30px 0;
  text-align: left;
  text-transform: capitalize;
}

.where-ever-left-block {
  width: 50%;
}
.where-ever-left-block h2.where-ever-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #C5B17F;
  margin: 0;
}

.where-ever-right-block {
  width: 36%;
}
.where-ever-right-block p.where-ever-description {
  font-family: "Neue Regrade", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 20px;
  color: #282828;
  font-weight: 500;
}

.where-ever-video-wrapper {
  width: 100%;
  margin-top: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.where-ever-video-container {
  position: relative;
  width: 100%;
  max-width: 1306px;
  aspect-ratio: 1306/734;
  border-radius: 20px;
  overflow: hidden;
  transition: all 1s ease;
  will-change: width, height, left, max-width;
  margin: 0 auto;
}
.where-ever-video-container:hover {
  position: relative;
  max-width: 100vw;
  z-index: 100;
  border-radius: 0;
}
.where-ever-video-container:hover .where-ever-play-button {
  opacity: 0;
  pointer-events: none;
}

.where-ever-video-thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.where-ever-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.where-ever-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  background: rgba(217, 217, 217, 0.2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.where-ever-play-button:hover {
  background: rgba(217, 217, 217, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}
.where-ever-play-button svg {
  width: 30px;
  height: 36px;
  margin-left: 4px;
}
.where-ever-play-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.statistics-container {
  background-color: #fff;
  width: 100%;
}
.statistics-container .container {
  position: relative;
}
.statistics-container .statistics-wrapper {
  width: 100%;
}
.statistics-container .statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  width: 100%;
}
.statistics-container .stat-item {
  background-color: #fff;
  aspect-ratio: 347/347;
  border: 1px solid #abb277;
  border-radius: 20px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.statistics-container .stat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 144px;
  height: 218px;
  background-image: url("../images/static_hover_decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0;
  transform: translate(100%, 100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.statistics-container .stat-item:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}
.statistics-container .stat-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
  color: #1D1D1B;
}
.statistics-container .stat-value {
  font-family: "Neue Regrade", sans-serif;
  font-size: 80px;
  line-height: 1;
  display: flex;
  color: #C5B17F;
  font-weight: 500;
  gap: 5px;
  margin-top: auto;
}
.statistics-container .stat-value .statNumber,
.statistics-container .stat-value .stat-plus {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: inherit;
  color: inherit;
}
@media only screen and (max-width: 1024px) {
  .statistics-container .statistics-grid {
    gap: 25px;
  }
  .statistics-container .stat-item {
    padding: 35px 25px;
    min-height: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .statistics-container .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .statistics-container .stat-item {
    padding: 30px 20px;
    min-height: 160px;
  }
}
@media only screen and (max-width: 600px) {
  .statistics-container .statistics-grid {
    gap: 15px;
  }
  .statistics-container .stat-item {
    padding: 25px 18px;
    min-height: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .statistics-container .statistics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .statistics-container .stat-item {
    padding: 25px 20px;
    min-height: 140px;
  }
}

.services-stack-container {
  width: 100%;
  position: relative;
  background-color: #000;
  min-height: 100vh;
}
.services-stack-container .services-stack-card {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.services-stack-container .services-stack-card .services-stack-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.services-stack-container .services-stack-card .services-stack-card-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(112.79deg, rgba(0, 0, 0, 0) 51.28%, rgba(0, 0, 0, 0.3) 93.28%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: 2;
}
.services-stack-container .services-stack-card .services-stack-card-content {
  position: absolute;
  top: 250px;
  z-index: 2;
  left: max(60px, (100vw - 1400px) / 2 - 30px);
  color: #fff;
  margin-bottom: auto;
  transform: translateY(0);
}
.services-stack-container .services-stack-card .services-stack-card-tag {
  font-family: "Neue Regrade", sans-serif;
  font-size: 20px;
  line-height: 60px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 12%;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  color: #C5B17F;
}
.services-stack-container .services-stack-card .services-stack-card-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 60px;
  line-height: 100%;
  font-weight: 600;
  font-style: normal;
  line-height: 130%;
  color: #fff;
  margin: 0 0 20px 0;
}
.services-stack-container .services-stack-card .services-stack-card-description {
  font-family: "Neue Regrade", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
  max-width: 600px;
}
.services-stack-container .services-stack-card .services-stack-arrow-link {
  position: absolute;
  bottom: 100px;
  right: max(60px, (100vw - 1400px) / 2 - 30px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.5s ease;
  background: transparent;
}
.services-stack-container .services-stack-card .services-stack-arrow-link:hover {
  background: rgba(197, 177, 127, 0.2);
  border: 1px solid #C5B17F;
  transform: rotate(-45deg);
}
.services-stack-container .services-stack-card .services-stack-arrow-link:hover svg {
  color: #C5B17F;
}
.services-stack-container .services-stack-card .services-stack-arrow-link svg {
  width: 37px;
  height: 22px;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .services-stack-container {
    padding-top: 70px;
  }
  .services-stack-container .services-stack-card .services-stack-card-content {
    padding: 35px 50px;
  }
  .services-stack-container .services-stack-card .services-stack-arrow-link {
    width: 70px;
    height: 70px;
    bottom: 35px;
    right: 50px;
  }
  .services-stack-container .services-stack-card .services-stack-arrow-link svg {
    width: 32px;
    height: 19px;
  }
}
@media only screen and (max-width: 768px) {
  .services-stack-container {
    padding-top: 60px;
  }
  .services-stack-container .services-stack-card .services-stack-card-content {
    padding: 30px 40px;
  }
  .services-stack-container .services-stack-card .services-stack-arrow-link {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 40px;
  }
  .services-stack-container .services-stack-card .services-stack-arrow-link svg {
    width: 28px;
    height: 17px;
  }
}
@media only screen and (max-width: 600px) {
  .services-stack-container {
    padding-top: 50px;
  }
  .services-stack-container .services-stack-card .services-stack-card-content {
    padding: 25px 30px;
  }
  .services-stack-container .services-stack-card .services-stack-arrow-link {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 30px;
  }
  .services-stack-container .services-stack-card .services-stack-arrow-link svg {
    width: 25px;
    height: 15px;
  }
}

.about-page-services-stack-wrapper .services-stack-card {
  justify-content: center;
}
.about-page-services-stack-wrapper .services-stack-card .services-stack-card-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(262.3deg, rgba(0, 0, 0, 0) 20.88%, rgba(0, 0, 0, 0.62) 90.48%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: 2;
}
.about-page-services-stack-wrapper .services-stack-card .services-stack-card-content {
  position: absolute !important;
  top: 50% !important;
  left: max(60px, (100vw - 1400px) / 2 - 30px) !important;
  transform: translateY(-50%) !important;
  margin-bottom: 0 !important;
}

.partners-container {
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
.partners-container .partners-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.partners-container .partners-marquee {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  animation: marquee 30s linear infinite;
}
.partners-container .partners-marquee:hover {
  animation-play-state: paused;
}
.partners-container .partners-item {
  flex-shrink: 0;
  border: solid 1px rgba(171, 178, 119, 0.4);
  border-radius: 10px;
  aspect-ratio: 230/136;
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  position: relative;
}
.partners-container .partners-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.partners-container .partners-logo img {
  max-height: 90%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1024px) {
  .partners-container .partners-item {
    padding: 0 30px;
  }
  .partners-container .partners-logo {
    height: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .partners-container .partners-marquee {
    animation-duration: 25s;
  }
  .partners-container .partners-item {
    padding: 0 25px;
  }
  .partners-container .partners-logo {
    height: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .partners-container .partners-marquee {
    animation-duration: 20s;
  }
  .partners-container .partners-item {
    padding: 0 20px;
  }
  .partners-container .partners-logo {
    height: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .partners-container .partners-marquee {
    animation-duration: 18s;
  }
  .partners-container .partners-item {
    padding: 0 15px;
  }
}

.partners-marquee-header {
  text-align: center;
  margin-bottom: 20px;
}

.sub-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #b64910;
  margin: 0;
}

.testimonials-container {
  width: 100%;
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #c5b17f;
}
.testimonials-container .testimonials-background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 1;
}
.testimonials-container .testimonials-background-image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonials-container .testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.testimonials-container .testimonials-header .testimonials-tag {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  font-style: normal;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #b64910;
  margin-bottom: 20px;
}
.testimonials-container .testimonials-header .testimonials-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 86px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
}
.testimonials-container .testimonials-swiper-section {
  position: relative;
  width: 100%;
  opacity: 1;
}
.testimonials-container .testimonials-swiper-section .testimonials-overlay {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.testimonials-container .testimonials-swiper-section .testimonials-overlay-left {
  left: 0;
  background: linear-gradient(270deg, rgba(197, 177, 127, 0) 0%, #c5b17f 81.3%);
}
.testimonials-container .testimonials-swiper-section .testimonials-overlay-right {
  right: 0;
  background: linear-gradient(90deg, rgba(197, 177, 127, 0) 0%, #c5b17f 81.3%);
}
.testimonials-container .testimonials-swiper-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
.testimonials-container .testimonials-swiper-wrapper:last-child {
  margin-bottom: 0;
}
.testimonials-container .testimonials-swiper-wrapper .testimonials-swiper-container {
  position: relative;
  width: 100%;
  padding: 0 250px;
  overflow: hidden;
}
.testimonials-container .testimonials-swiper-wrapper .testimonials-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  z-index: 10;
}
.testimonials-container .testimonials-swiper-wrapper .testimonials-track.testimonials-track-top {
  animation: scrollLeft 30s linear infinite;
}
.testimonials-container .testimonials-swiper-wrapper .testimonials-track.testimonials-track-bottom {
  animation: scrollRight 30s linear infinite;
}
.testimonials-container .testimonials-swiper-wrapper:hover {
  animation: none;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-slide {
  flex-shrink: 0;
  width: 587px;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .testimonials-container .testimonials-swiper-wrapper .testimonial-slide {
    width: 450px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonials-container .testimonials-swiper-wrapper .testimonial-slide {
    width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials-container .testimonials-swiper-wrapper .testimonial-slide {
    width: 450px;
  }
}
@media only screen and (max-width: 600px) {
  .testimonials-container .testimonials-swiper-wrapper .testimonial-slide {
    width: 350px;
  }
}
@media only screen and (max-width: 480px) {
  .testimonials-container .testimonials-swiper-wrapper .testimonial-slide {
    width: 300px;
  }
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  justify-content: space-between;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-review {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18.06px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #1d1d1b;
  margin-bottom: 15px;
  margin-top: 0;
  flex-grow: 1;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-author .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-author .testimonial-info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-author .testimonial-info .testimonial-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18.06px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #1d1d1b;
  margin-bottom: 8px;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-author .testimonial-info .testimonial-rating {
  display: flex;
  gap: 4px;
}
.testimonials-container .testimonials-swiper-wrapper .testimonial-card .testimonial-author .testimonial-info .testimonial-rating .star {
  width: 22px;
  height: 21px;
  flex-shrink: 0;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.single-testimonial-container {
  width: 100%;
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single-testimonial-container .single-testimonial-background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  height: 100%;
}
.single-testimonial-container .single-testimonial-background-image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.single-testimonial-container .single-testimonial-overlay {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
.single-testimonial-container .single-testimonial-overlay-left {
  left: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 81.3%);
}
.single-testimonial-container .single-testimonial-overlay-right {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 81.3%);
}
.single-testimonial-container .single-testimonial-header {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.single-testimonial-container .single-testimonial-header .single-testimonial-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 86px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #c5b17f;
  margin: 0;
}
.single-testimonial-container .single-testimonial-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container {
  position: relative;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper {
  width: 100%;
  height: 100%;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide {
  height: auto;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-review {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18.06px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #1d1d1b;
  margin-bottom: 15px;
  margin-top: 0;
  flex-grow: 1;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-author .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-author .testimonial-info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-author .testimonial-info .testimonial-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18.06px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #1d1d1b;
  margin-bottom: 8px;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-author .testimonial-info .testimonial-rating {
  display: flex;
  gap: 4px;
}
.single-testimonial-container .single-testimonial-content .single-testimonial-swiper-container .single-testimonial-swiper .swiper-slide .testimonial-card .testimonial-author .testimonial-info .testimonial-rating .star {
  width: 22px;
  height: 21px;
  flex-shrink: 0;
}

.contact-page-testimonial-wrapper .single-testimonial-container {
  background-color: #C5B17F;
}
.contact-page-testimonial-wrapper .single-testimonial-title {
  color: #fff !important;
}
.contact-page-testimonial-wrapper .single-testimonial-overlay-left {
  background: linear-gradient(270deg, rgba(197, 177, 127, 0) 0%, #C5B17F 81.3%);
}
.contact-page-testimonial-wrapper .single-testimonial-overlay-right {
  background: linear-gradient(90deg, rgba(197, 177, 127, 0) 0%, #C5B17F 81.3%);
}

.news-articles-container {
  padding: 80px 0;
  background-color: #fff;
  width: 100%;
}
.news-articles-container .container {
  position: relative;
}
.news-articles-container .title-block {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-articles-container .news-articles-slider-wrapper {
  position: relative;
  padding: 0 50px;
}
.news-articles-container .news-articles-swiper {
  overflow: visible;
}
.news-articles-container .swiper-slide {
  transition: transform 0.3s ease;
}
.news-articles-container .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.85);
  opacity: 1;
}
.news-articles-container .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}
.news-articles-container .news-article-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 594px;
  height: 432px;
  aspect-ratio: 594/432;
  max-width: 100%;
}
.news-articles-container .news-article-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}
.news-articles-container .news-article-image .news-article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  pointer-events: none;
  z-index: 2;
}
.news-articles-container .news-article-image .news-article-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 45px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  z-index: 3;
}
.news-articles-container .news-article-image .news-article-left {
  flex: 1;
  min-width: 0;
}
.news-articles-container .news-article-image .news-article-left .news-article-date {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 12px;
  vertical-align: middle;
}
.news-articles-container .news-article-image .news-article-left .news-article-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #ffffff;
  margin: 0;
}
.news-articles-container .news-article-image .news-article-right {
  flex-shrink: 0;
}
.news-articles-container .news-article-image .news-article-right .news-article-learn-more {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}
.news-articles-container .news-article-image .news-article-right .news-article-learn-more:hover .news-article-learn-icon {
  transform: translateX(3px);
}
.news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-text {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  vertical-align: middle;
}
.news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}
.news-articles-container .news-articles-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
.news-articles-container .news-articles-prev-btn,
.news-articles-container .news-articles-next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  color: #000;
}
.news-articles-container .news-articles-prev-btn:hover,
.news-articles-container .news-articles-next-btn:hover {
  background-color: #00a859;
  border-color: #00a859;
  color: #fff;
  transform: scale(1.1);
}
.news-articles-container .news-articles-prev-btn:disabled,
.news-articles-container .news-articles-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.news-articles-container .news-articles-prev-btn svg,
.news-articles-container .news-articles-next-btn svg {
  width: 20px;
  height: 20px;
}
.news-articles-container .news-articles-prev-btn {
  left: 0;
}
.news-articles-container .news-articles-next-btn {
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .news-articles-container {
    padding: 70px 0;
  }
  .news-articles-container .news-articles-slider-wrapper {
    padding: 0 40px;
  }
  .news-articles-container .news-article-image {
    height: 250px;
  }
  .news-articles-container .news-article-image .news-article-content {
    padding: 15px;
    gap: 15px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-date {
    font-size: 13px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-heading {
    font-size: 16px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-text {
    font-size: 14px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon {
    width: 30px;
    height: 30px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon svg {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .news-articles-container {
    padding: 60px 0;
  }
  .news-articles-container .news-articles-slider-wrapper {
    padding: 0 30px;
  }
  .news-articles-container .news-article-image {
    height: 200px;
  }
  .news-articles-container .news-article-image .news-article-content {
    padding: 15px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-date {
    font-size: 12px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-heading {
    font-size: 15px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-text {
    font-size: 14px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon {
    width: 28px;
    height: 28px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon svg {
    width: 12px;
    height: 12px;
  }
  .news-articles-container .news-articles-prev-btn,
  .news-articles-container .news-articles-next-btn {
    width: 40px;
    height: 40px;
  }
  .news-articles-container .news-articles-prev-btn svg,
  .news-articles-container .news-articles-next-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .news-articles-container {
    padding: 50px 0;
  }
  .news-articles-container .news-articles-slider-wrapper {
    padding: 0 20px;
  }
  .news-articles-container .news-article-image {
    height: 180px;
  }
  .news-articles-container .news-article-image .news-article-content {
    padding: 12px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-date {
    font-size: 11px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-heading {
    font-size: 14px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-text {
    font-size: 13px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon {
    width: 26px;
    height: 26px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon svg {
    width: 11px;
    height: 11px;
  }
}
@media only screen and (max-width: 480px) {
  .news-articles-container {
    padding: 40px 0;
  }
  .news-articles-container .news-articles-slider-wrapper {
    padding: 0 15px;
  }
  .news-articles-container .news-article-image {
    height: 160px;
  }
  .news-articles-container .news-article-image .news-article-content {
    padding: 10px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-date {
    font-size: 10px;
  }
  .news-articles-container .news-article-image .news-article-left .news-article-heading {
    font-size: 13px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-text {
    font-size: 12px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon {
    width: 24px;
    height: 24px;
  }
  .news-articles-container .news-article-image .news-article-right .news-article-learn-more .news-article-learn-icon svg {
    width: 10px;
    height: 10px;
  }
}

.virtual-tour-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000000;
}
.virtual-tour-container .virtual-tour-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.virtual-tour-container .virtual-tour-image-wrapper .virtual-tour-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 100vw;
}
.virtual-tour-container .virtual-tour-overlay {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content {
  position: relative;
  width: 100vw;
  padding: 0 20px;
  text-align: center;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 86px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0 0 15px 0;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-subtitle {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 0 0 40px 0;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: #C5B17F;
  margin: 0 auto;
  margin-top: 100px;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-arrow {
  position: absolute;
  top: -28px;
  width: 57px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-arrow-left {
  left: calc(50% - 200px);
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-arrow-left img {
  transform: rotate(180deg);
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-arrow-right {
  right: calc(50% - 200px);
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.virtual-tour-container .virtual-tour-overlay .virtual-tour-line .virtual-tour-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1440px) {
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-title {
    font-size: 48px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-subtitle {
    font-size: 16px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow {
    width: 50px;
    height: 49px;
    top: -25px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-left {
    left: calc(50% - 180px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-right {
    right: calc(50% - 180px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-icon {
    width: 110px;
    height: 110px;
  }
}
@media only screen and (max-width: 1200px) {
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-title {
    font-size: 42px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-subtitle {
    font-size: 15px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow {
    width: 45px;
    height: 44px;
    top: -22px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-left {
    left: calc(50% - 160px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-right {
    right: calc(50% - 160px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-icon {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-title {
    font-size: 36px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow {
    width: 40px;
    height: 39px;
    top: -20px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-left {
    left: calc(50% - 140px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-right {
    right: calc(50% - 140px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-subtitle {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow {
    width: 35px;
    height: 34px;
    top: -17px;
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-left {
    left: calc(50% - 120px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-arrow-right {
    right: calc(50% - 120px);
  }
  .virtual-tour-container .virtual-tour-overlay .virtual-tour-overlay-content .virtual-tour-line .virtual-tour-icon {
    width: 60px;
    height: 60px;
  }
}

.title-block h5 {
  font-size: 20px;
  color: #c5b17f;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
}
.title-block h2 {
  font-size: 40px;
  color: #000;
  font-weight: 600;
  margin: 0;
  font-size: 3.75rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.title_style_1 {
  font-size: 3.75rem;
  margin: 0 0 10px 0;
  line-height: 130%;
}
.title_style_1.yello {
  color: #C5B17F;
}

.venue-at-a-glance {
  padding: 80px 0;
  background-color: #fff;
}
.venue-at-a-glance .container {
  position: relative;
}
.venue-at-a-glance .venue-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: #C5B17F;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  position: absolute;
  top: 64px;
  left: 60px;
  z-index: 9;
}
.venue-at-a-glance .venue-swiper-container {
  position: relative;
}
.venue-at-a-glance .venue-main-swiper {
  width: 100%;
  height: 670px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(229.57deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(to left, rgba(0, 0, 0, 0.29), rgba(0, 0, 0, 0.34));
  width: 100%;
  height: 100%;
  z-index: 2;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-info {
  position: absolute;
  left: 35px;
  bottom: 60px;
  z-index: 9;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-capacity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-capacity .capacity-label {
  font-size: 3.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-capacity .capacity-value {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #C5B17F;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-top: 25px;
}
.venue-at-a-glance .venue-main-swiper .swiper-slide .venue-slide-content .venue-button:hover {
  background-color: #b59c5c;
  transform: translateY(-2px);
}
.venue-at-a-glance .venue-navigation {
  position: absolute;
  top: 35px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 10;
}
.venue-at-a-glance .venue-navigation .venue-swiper-prev img {
  transform: rotate(180deg);
}
.venue-at-a-glance .venue-navigation .venue-swiper-prev,
.venue-at-a-glance .venue-navigation .venue-swiper-next {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
}
.venue-at-a-glance .venue-navigation .venue-swiper-prev:hover,
.venue-at-a-glance .venue-navigation .venue-swiper-next:hover {
  background-color: #C5B17F;
  transform: scale(1.1);
  border-color: #C5B17F;
}
.venue-at-a-glance .venue-navigation .venue-swiper-prev:active,
.venue-at-a-glance .venue-navigation .venue-swiper-next:active {
  transform: scale(0.95);
}
.venue-at-a-glance .venue-navigation .venue-swiper-prev svg,
.venue-at-a-glance .venue-navigation .venue-swiper-next svg {
  width: 20px;
  height: 20px;
}
.venue-at-a-glance .venue-navigation .venue-swiper-prev.swiper-button-disabled,
.venue-at-a-glance .venue-navigation .venue-swiper-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.venue-at-a-glance .venue-thumbnail-swiper {
  width: 100%;
  height: 120px;
  max-width: 770px;
  position: absolute;
  right: 35px;
  bottom: 35px;
}
.venue-at-a-glance .venue-thumbnail-swiper .swiper-slide {
  width: auto;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.venue-at-a-glance .venue-thumbnail-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.venue-at-a-glance .venue-thumbnail-swiper .swiper-slide .venue-thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
.venue-at-a-glance .venue-thumbnail-swiper .swiper-slide .venue-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.venue-at-a-glance .venue-thumbnail-swiper .swiper-slide.swiper-slide-thumb-active .venue-thumbnail {
  border-color: #C5B17F;
}
.venue-at-a-glance .venue-thumbnail-swiper .swiper-slide:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 1024px) {
  .venue-at-a-glance {
    padding: 70px 0;
  }
  .venue-at-a-glance .venue-title {
    font-size: 2.625rem;
    margin-bottom: 40px;
  }
  .venue-at-a-glance .venue-main-swiper {
    height: 500px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-overlay {
    padding: 30px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-label {
    font-size: 1.375rem;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-value {
    font-size: 1.75rem;
  }
  .venue-at-a-glance .venue-thumbnail-swiper {
    height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .venue-at-a-glance {
    padding: 60px 0;
  }
  .venue-at-a-glance .venue-title {
    font-size: 2.25rem;
    margin-bottom: 30px;
  }
  .venue-at-a-glance .venue-main-swiper {
    height: 400px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-overlay {
    padding: 25px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-info {
    gap: 15px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-label {
    font-size: 1.25rem;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-value {
    font-size: 1.5rem;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-button {
    padding: 10px 25px;
    font-size: 0.875rem;
  }
  .venue-at-a-glance .venue-navigation {
    top: 15px;
    right: 15px;
    gap: 8px;
  }
  .venue-at-a-glance .venue-navigation .venue-swiper-prev,
  .venue-at-a-glance .venue-navigation .venue-swiper-next {
    width: 40px;
    height: 40px;
  }
  .venue-at-a-glance .venue-navigation .venue-swiper-prev svg,
  .venue-at-a-glance .venue-navigation .venue-swiper-next svg {
    width: 16px;
    height: 16px;
  }
  .venue-at-a-glance .venue-thumbnail-swiper {
    height: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .venue-at-a-glance {
    padding: 50px 0;
  }
  .venue-at-a-glance .venue-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .venue-at-a-glance .venue-main-swiper {
    height: 350px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-overlay {
    padding: 20px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-label {
    font-size: 1.125rem;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-value {
    font-size: 1.375rem;
  }
  .venue-at-a-glance .venue-thumbnail-swiper {
    height: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .venue-at-a-glance {
    padding: 40px 0;
  }
  .venue-at-a-glance .venue-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .venue-at-a-glance .venue-main-swiper {
    height: 300px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-overlay {
    padding: 15px;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-label {
    font-size: 1rem;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-capacity .capacity-value {
    font-size: 1.25rem;
  }
  .venue-at-a-glance .venue-main-swiper .venue-slide-content .venue-button {
    padding: 8px 20px;
    font-size: 0.75rem;
  }
  .venue-at-a-glance .venue-navigation {
    top: 10px;
    right: 10px;
  }
  .venue-at-a-glance .venue-navigation .venue-swiper-prev,
  .venue-at-a-glance .venue-navigation .venue-swiper-next {
    width: 35px;
    height: 35px;
  }
  .venue-at-a-glance .venue-navigation .venue-swiper-prev svg,
  .venue-at-a-glance .venue-navigation .venue-swiper-next svg {
    width: 14px;
    height: 14px;
  }
  .venue-at-a-glance .venue-thumbnail-swiper {
    height: 60px;
  }
}

.image-text-section {
  padding: 100px 0;
  background-color: #fff;
}
.image-text-section .container {
  position: relative;
}
.image-text-section .image-text-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.image-text-section .image-text-left {
  width: 42.3%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.image-text-section .image-text-left img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-text-section .image-text-right {
  width: 48%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.image-text-section .image-text-right p {
  margin-top: 0;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 1px;
  color: #282828;
}
.image-text-section .image-text-right p:last-child {
  margin-bottom: 0;
}
.image-text-section .image-text-right .image-text-button {
  margin-top: 20px;
}
.image-text-section .image-text-headline {
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  display: block;
  font-size: 60px;
  color: #C5B17F;
  font-weight: 500;
}
.image-text-section .image-text-headline .headline-line-1 {
  margin-bottom: 5px;
}
.image-text-section .image-text-headline .headline-line-2 {
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .image-text-section {
    padding: 70px 0;
  }
  .image-text-section .image-text-wrapper {
    gap: 50px;
  }
  .image-text-section .image-text-left,
  .image-text-section .image-text-right {
    width: 48%;
  }
  .image-text-section .image-text-headline .headline-line-1,
  .image-text-section .image-text-headline .headline-line-2 {
    font-size: 2.625rem;
  }
  .image-text-section .image-text-paragraph {
    font-size: 1.0625rem;
  }
}
@media only screen and (max-width: 768px) {
  .image-text-section {
    padding: 60px 0;
  }
  .image-text-section .image-text-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .image-text-section .image-text-left,
  .image-text-section .image-text-right {
    width: 100%;
  }
  .image-text-section .image-text-headline {
    margin-bottom: 25px;
  }
  .image-text-section .image-text-headline .headline-line-1,
  .image-text-section .image-text-headline .headline-line-2 {
    font-size: 2.25rem;
  }
  .image-text-section .image-text-paragraph {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .image-text-section {
    padding: 50px 0;
  }
  .image-text-section .image-text-wrapper {
    gap: 30px;
  }
  .image-text-section .image-text-headline {
    margin-bottom: 20px;
  }
  .image-text-section .image-text-headline .headline-line-1,
  .image-text-section .image-text-headline .headline-line-2 {
    font-size: 2rem;
  }
  .image-text-section .image-text-paragraph {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 480px) {
  .image-text-section {
    padding: 40px 0;
  }
  .image-text-section .image-text-headline {
    margin-bottom: 18px;
  }
  .image-text-section .image-text-headline .headline-line-1,
  .image-text-section .image-text-headline .headline-line-2 {
    font-size: 1.75rem;
  }
  .image-text-section .image-text-paragraph {
    font-size: 0.875rem;
  }
}

.timeline-slider {
  padding: 80px 0;
  background-color: #C5B17F;
  position: relative;
}
.timeline-slider .container {
  position: relative;
}
.timeline-slider .timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 60px;
  position: relative;
}
.timeline-slider .timeline-header-left {
  flex: 0 0 30%;
}
.timeline-slider .timeline-headline {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.timeline-slider .timeline-header-right {
  flex: 1;
}
.timeline-slider .timeline-header-right p {
  font-size: 18px;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
  max-width: 660px;
  margin-left: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.timeline-slider .timeline-description {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000;
  margin: 0 0 30px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.timeline-slider .timeline-navigation {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: -40px;
  right: 25px;
}
.timeline-slider .timeline-navigation .timeline-swiper-prev img {
  transform: rotate(180deg);
}
.timeline-slider .timeline-navigation .timeline-swiper-prev,
.timeline-slider .timeline-navigation .timeline-swiper-next {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}
.timeline-slider .timeline-navigation .timeline-swiper-prev img,
.timeline-slider .timeline-navigation .timeline-swiper-next img {
  width: 24px;
  height: 24px;
  display: block;
}
.timeline-slider .timeline-navigation .timeline-swiper-prev:hover,
.timeline-slider .timeline-navigation .timeline-swiper-next:hover {
  background-color: #C5B17F;
  transform: scale(1.1);
}
.timeline-slider .timeline-navigation .timeline-swiper-prev:active,
.timeline-slider .timeline-navigation .timeline-swiper-next:active {
  background-color: #C5B17F;
  transform: scale(1.1);
}
.timeline-slider .timeline-navigation .timeline-swiper-prev.swiper-button-disabled,
.timeline-slider .timeline-navigation .timeline-swiper-next.swiper-button-disabled {
  cursor: not-allowed;
}
.timeline-slider .timeline-swiper-container {
  margin-bottom: 60px;
}
.timeline-slider .timeline-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}
.timeline-slider .timeline-card:hover {
  transform: translateY(-5px);
}
.timeline-slider .timeline-card p {
  max-width: 350px;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.timeline-slider .timeline-card .timeline-card-content {
  position: absolute;
  left: 35px;
  bottom: 35px;
}
.timeline-slider .timeline-year {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  z-index: 2;
  line-height: 1;
  margin-bottom: 20px;
}
.timeline-slider .timeline-image {
  width: 100%;
  height: 343px;
  overflow: hidden;
  position: relative;
}
.timeline-slider .timeline-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.timeline-slider .timeline-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.71) 100%);
}
.timeline-slider .timeline-card-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  margin: 0;
  padding: 25px 30px;
}
.timeline-slider .timeline-indicator {
  position: relative;
  margin-top: 80px;
  width: 100%;
}
.timeline-slider .timeline-line {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.23);
  transform: translateY(-50%);
  overflow: hidden;
}
.timeline-slider .timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #fff;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  will-change: width;
}
.timeline-slider .timeline-years {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 84%;
  margin: 0 auto;
}
.timeline-slider .timeline-year-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: all 0.3s ease;
}
.timeline-slider .timeline-year-btn .timeline-year-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d9d9d9;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}
.timeline-slider .timeline-year-btn .timeline-year-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}
.timeline-slider .timeline-year-btn .timeline-year-label {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.timeline-slider .timeline-year-btn.active .timeline-year-mark {
  background-color: #C5B17F;
  width: 16px;
  height: 16px;
}
.timeline-slider .timeline-year-btn.active .timeline-year-mark::after {
  width: 8px;
  height: 8px;
  background-color: #C5B17F;
}
.timeline-slider .timeline-year-btn.active .timeline-year-label {
  color: #fff;
  font-weight: 500;
}
.timeline-slider .timeline-year-btn:hover .timeline-year-mark {
  background-color: #fff;
}
.timeline-slider .timeline-year-btn:hover .timeline-year-label {
  color: #fff;
}
.timeline-slider .timeline-main-swiper {
  width: 100%;
  overflow: visible;
}
.timeline-slider .timeline-main-swiper .swiper-wrapper {
  align-items: flex-end;
}
.timeline-slider .timeline-main-swiper .swiper-slide {
  transition: all 0.3s ease-in-out;
}
.timeline-slider .timeline-main-swiper .swiper-slide-active {
  height: auto;
  flex-basis: 55% !important;
  max-width: 55%;
}
.timeline-slider .timeline-main-swiper .swiper-slide-active .timeline-image {
  height: 414px;
}
.timeline-slider .timeline-main-swiper .swiper-slide-active .timeline-year {
  font-size: 50px;
}
.timeline-slider .timeline-main-swiper .swiper-slide:not(.swiper-slide-active) {
  flex-basis: 45% !important;
  max-width: 45%;
}
@media only screen and (max-width: 1024px) {
  .timeline-slider {
    padding: 70px 0;
  }
  .timeline-slider .timeline-header {
    margin-bottom: 50px;
    gap: 40px;
  }
  .timeline-slider .timeline-headline {
    font-size: 2.625rem;
  }
  .timeline-slider .timeline-description {
    font-size: 1.0625rem;
  }
  .timeline-slider .timeline-image {
    height: 350px;
  }
}
@media only screen and (max-width: 768px) {
  .timeline-slider {
    padding: 60px 0;
  }
  .timeline-slider .timeline-header {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 30px;
  }
  .timeline-slider .timeline-header-left {
    flex: 1;
    width: 100%;
  }
  .timeline-slider .timeline-header-right {
    flex: 1;
    width: 100%;
  }
  .timeline-slider .timeline-navigation {
    position: static;
    margin-top: 20px;
  }
  .timeline-slider .timeline-headline {
    font-size: 2.25rem;
  }
  .timeline-slider .timeline-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .timeline-slider .timeline-image {
    height: 300px;
  }
  .timeline-slider .timeline-year {
    font-size: 3.5rem;
    top: 20px;
    left: 20px;
  }
  .timeline-slider .timeline-card-description {
    padding: 20px;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 600px) {
  .timeline-slider {
    padding: 50px 0;
  }
  .timeline-slider .timeline-headline {
    font-size: 2rem;
  }
  .timeline-slider .timeline-image {
    height: 250px;
  }
  .timeline-slider .timeline-year {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  .timeline-slider {
    padding: 40px 0;
  }
  .timeline-slider .timeline-headline {
    font-size: 1.75rem;
  }
  .timeline-slider .timeline-description {
    font-size: 0.875rem;
  }
  .timeline-slider .timeline-image {
    height: 200px;
  }
  .timeline-slider .timeline-year {
    font-size: 2.5rem;
    top: 15px;
    left: 15px;
  }
  .timeline-slider .timeline-card-description {
    padding: 15px;
    font-size: 0.875rem;
  }
}

.vision-mission-stack-container {
  width: 100%;
  position: relative;
  background-color: #000;
  min-height: 100vh;
}
.vision-mission-stack-container .vision-mission-stack-cards {
  position: relative;
  width: 100%;
}
.vision-mission-stack-container .vision-mission-stack-card {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-content {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  color: #fff;
  margin-bottom: auto;
  margin-top: 200px;
}
.vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 60px;
  line-height: 100%;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 20px 0;
}
.vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-description {
  font-family: "Neue Regrade", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
  max-width: 600px;
}
@media only screen and (max-width: 1024px) {
  .vision-mission-stack-container {
    padding-top: 70px;
  }
  .vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-content {
    padding: 35px 50px;
  }
}
@media only screen and (max-width: 768px) {
  .vision-mission-stack-container {
    padding-top: 60px;
  }
  .vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-content {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 600px) {
  .vision-mission-stack-container {
    padding-top: 50px;
  }
  .vision-mission-stack-container .vision-mission-stack-card .vision-mission-stack-card-content {
    padding: 25px 30px;
  }
}

.contact-form-section {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.contact-form-wrapper {
  display: flex;
  width: 100%;
  min-height: 600px;
}
@media only screen and (max-width: 768px) {
  .contact-form-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}

.contact-form-image {
  width: 51.5%;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.contact-form-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .contact-form-image {
    width: 100%;
    height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-form-image {
    height: 300px;
  }
}

.contact-form-container {
  width: 49.5%;
  background-color: #f2ece1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
}
@media only screen and (max-width: 1024px) {
  .contact-form-container {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form-container {
    width: 100%;
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-form-container {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-form-container {
    padding: 30px 20px;
  }
}

.contact-form-title {
  font-size: 3.125rem;
  font-weight: 600;
  color: #C5B17F;
  margin: 0 0 40px 0;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .contact-form-title {
    font-size: 32px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.contact-form {
  width: 100%;
}

.contact-form-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  .contact-form-list {
    gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-form-list {
    gap: 18px;
  }
}

.contact-form-item {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.contact-form-item.contact-form-item-message {
  flex: 1;
}
.contact-form-item.contact-form-item-submit {
  margin-top: 10px;
}

.contact-form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
@media only screen and (max-width: 600px) {
  .contact-form-label {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-weight: 500;
  border: 1px solid #c5b17f;
  border-radius: 24px;
  font-size: 16px;
  font-family: "Neue Regrade", sans-serif;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: #C5B17F;
  box-shadow: 0 0 0 2px rgba(197, 177, 127, 0.1);
}
.contact-form-input::-moz-placeholder, .contact-form-textarea::-moz-placeholder {
  color: #ABAFB1;
  opacity: 0.7;
}
.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #ABAFB1;
  opacity: 0.7;
}
@media only screen and (max-width: 600px) {
  .contact-form-input,
  .contact-form-textarea {
    padding: 10px 14px;
    font-size: 14px;
  }
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}
@media only screen and (max-width: 600px) {
  .contact-form-textarea {
    min-height: 100px;
  }
}

.contact-form-submit {
  padding: 14px 24px;
  background-color: #C5B17F;
  color: #fff;
  border: 1px solid #C5B17F;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Neue Regrade", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  text-align: center;
}
.contact-form-submit:hover {
  background-color: #b59c5c;
  border-color: #b59c5c;
}
.contact-form-submit:active {
  background-color: #aa904d;
  border-color: #aa904d;
}
@media only screen and (max-width: 600px) {
  .contact-form-submit {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.contact-info-map-section {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .contact-info-map-section {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 600px) {
  .contact-info-map-section {
    padding: 20px 0;
  }
}

.contact-info-map-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .contact-info-map-wrapper {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-info-map-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.contact-info-container {
  flex: 1;
  max-width: 500px;
}
@media only screen and (max-width: 768px) {
  .contact-info-container {
    max-width: 100%;
    width: 100%;
  }
}
.contact-info-container p {
  font-size: 18px;
  color: #282828;
}

.contact-info-title {
  font-weight: 600;
  color: #000;
  margin: 0 0 40px 0;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .contact-info-title {
    font-size: 32px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-info-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-info-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 5%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .contact-info-list {
    gap: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-info-list {
    gap: 20px;
    margin-top: 25px;
  }
}

.contact-info-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media only screen and (max-width: 600px) {
  .contact-info-item {
    gap: 15px;
  }
}

.contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #C5B17F;
}
.contact-info-icon svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 600px) {
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 18px;
  font-weight: 600;
  color: #282828;
  margin: 0 0 3px 0;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 600px) {
  .contact-info-label {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

.contact-info-value {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.contact-info-value a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
}
.contact-info-value a:hover {
  color: #C5B17F;
}
@media only screen and (max-width: 600px) {
  .contact-info-value {
    font-size: 14px;
  }
}

.contact-map-container {
  flex: 1;
  border-radius: 20px;
  border: 1px solid rgba(197, 177, 127, 0.5);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .contact-map-container {
    width: 100%;
    min-height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-map-container {
    min-height: 300px;
    border-radius: 12px;
  }
}

.contact-map-embed {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
@media only screen and (max-width: 768px) {
  .contact-map-embed {
    min-height: 400px;
  }
  .contact-map-embed iframe {
    min-height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-map-embed {
    min-height: 300px;
  }
  .contact-map-embed iframe {
    min-height: 300px;
  }
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.contact-map-iframe iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
@media only screen and (max-width: 768px) {
  .contact-map-iframe {
    min-height: 400px;
  }
  .contact-map-iframe iframe {
    min-height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .contact-map-iframe {
    min-height: 300px;
  }
  .contact-map-iframe iframe {
    min-height: 300px;
  }
}

.contact_map_wrapper {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .contact_map_wrapper {
    min-height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .contact_map_wrapper {
    min-height: 300px;
  }
}

.contact_map_container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .contact_map_container {
    min-height: 400px;
    border-radius: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .contact_map_container {
    min-height: 300px;
    border-radius: 12px;
  }
}

.press-release-detail-section {
  width: 100%;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  .press-release-detail-section {
    padding: 40px 0;
  }
}

.press-release-detail-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.press-release-detail-meta {
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .press-release-detail-meta {
    margin-bottom: 15px;
  }
}

.press-release-detail-date {
  font-size: 16px;
  font-weight: 500;
  color: #C5B17F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 600px) {
  .press-release-detail-date {
    font-size: 14px;
  }
}

.press-release-detail-title {
  font-size: 42px;
  font-weight: 600;
  color: #000;
  margin: 0 0 40px 0;
  line-height: 1.3;
}
@media only screen and (max-width: 1024px) {
  .press-release-detail-title {
    font-size: 36px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .press-release-detail-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .press-release-detail-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

.press-release-detail-image {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.press-release-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  .press-release-detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 600px) {
  .press-release-detail-image {
    margin-bottom: 25px;
  }
}

.press-release-detail-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.press-release-detail-content p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #282828;
}
.press-release-detail-content p:last-child {
  margin-bottom: 0;
}
.press-release-detail-content h2, .press-release-detail-content h3, .press-release-detail-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}
.press-release-detail-content h2 {
  font-size: 32px;
}
.press-release-detail-content h3 {
  font-size: 28px;
}
.press-release-detail-content h4 {
  font-size: 24px;
}
.press-release-detail-content ul, .press-release-detail-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.press-release-detail-content li {
  margin-bottom: 10px;
}
.press-release-detail-content a {
  color: #C5B17F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.press-release-detail-content a:hover {
  color: #b59c5c;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .press-release-detail-content {
    font-size: 16px;
    line-height: 1.7;
  }
  .press-release-detail-content h2 {
    font-size: 28px;
  }
  .press-release-detail-content h3 {
    font-size: 24px;
  }
  .press-release-detail-content h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .press-release-detail-content {
    font-size: 15px;
    line-height: 1.6;
  }
}

.share-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.press-release-detail-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4%;
  padding-right: 4%;
}

.share-links li {
  padding-left: 5px;
  padding-right: 5px;
}

.share-links li a:hover {
  opacity: 0.8;
}

.press-release-detail-wrap {
  max-width: 1165px;
  margin-left: auto;
  margin-right: auto;
}

.press-release-detail-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
}
.press-release-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

.press-release-detail-content-block {
  max-width: 894px;
  margin-left: auto;
  margin-right: auto;
}
.press-release-detail-content-block p {
  line-height: 110%;
}

.title-block-related {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-news-item {
  display: flex;
  flex-wrap: wrap;
}

.related-news-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-press-releases-section {
  width: 100%;
  padding: 60px 0;
  background-color: #f9f9f9;
}
@media only screen and (max-width: 768px) {
  .related-press-releases-section {
    padding: 40px 0;
  }
}

.related-press-releases-carousel-wrapper {
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .related-press-releases-carousel-wrapper {
    margin-top: 40px;
  }
}

.related-press-releases-carousel {
  overflow: visible;
  padding-bottom: 20px;
}

.related-press-release-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.related-press-release-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-press-release-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.related-press-release-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.related-press-release-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.related-press-release-image:hover img {
  transform: scale(1.05);
}
@media only screen and (max-width: 768px) {
  .related-press-release-image {
    height: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .related-press-release-image {
    height: 180px;
  }
}

.related-press-release-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .related-press-release-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .related-press-release-content {
    padding: 18px;
  }
}

.related-press-release-date {
  font-size: 14px;
  font-weight: 500;
  color: #C5B17F;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}
@media only screen and (max-width: 600px) {
  .related-press-release-date {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.related-press-release-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.related-press-release-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.related-press-release-title a:hover {
  color: #C5B17F;
}
@media only screen and (max-width: 768px) {
  .related-press-release-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .related-press-release-title {
    font-size: 16px;
  }
}

.related-press-releases-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .related-press-releases-navigation {
    margin-top: 30px;
  }
}

.related-press-releases-prev-btn,
.related-press-releases-next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #C5B17F;
  color: #C5B17F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.related-press-releases-prev-btn svg,
.related-press-releases-next-btn svg {
  width: 24px;
  height: 24px;
}
.related-press-releases-prev-btn:hover,
.related-press-releases-next-btn:hover {
  background-color: #C5B17F;
  color: #fff;
}
.related-press-releases-prev-btn:disabled,
.related-press-releases-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media only screen and (max-width: 600px) {
  .related-press-releases-prev-btn,
  .related-press-releases-next-btn {
    width: 45px;
    height: 45px;
  }
  .related-press-releases-prev-btn svg,
  .related-press-releases-next-btn svg {
    width: 20px;
    height: 20px;
  }
}

.perfect-day-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.perfect-day-section .perfect-day-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.perfect-day-section .perfect-day-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61);
  z-index: 2;
}
.perfect-day-section .container {
  position: relative;
  z-index: 3;
}
.perfect-day-section .perfect-day-content {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}
.perfect-day-section .perfect-day-header {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.perfect-day-section .perfect-day-header .perfect-day-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #fff;
  margin: 0;
  flex: 0 0 auto;
  max-width: 460px;
}
.perfect-day-section .perfect-day-header .perfect-day-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  flex: 1;
  max-width: 600px;
}
.perfect-day-section .perfect-day-slider {
  position: relative;
  padding: 20px 0 40px 0;
  z-index: 3;
  width: 100%;
  overflow: visible;
}
.perfect-day-section .perfect-day-slider .swiper-slide {
  height: auto;
  max-width: 466px;
  width: auto;
  flex-shrink: 0;
}
.perfect-day-section .swiper-slide.perfect-day-card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: 466px;
  height: 292px;
}
.perfect-day-section .swiper-slide.perfect-day-card:hover .perfect-day-card-decor {
  opacity: 1;
  transform: translate(0, 0);
}
.perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-decor {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 172px;
  height: 143px;
  opacity: 0;
  transform: translate(20px, -20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #c5b17f;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
}
.perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 120%;
  color: #000;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1440px) {
  .perfect-day-section {
    padding: 60px 0;
  }
  .perfect-day-section .perfect-day-header .perfect-day-heading {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 60px;
    line-height: 130%;
    letter-spacing: 0px;
    font-size: 50px;
  }
  .perfect-day-section .perfect-day-header .perfect-day-paragraph {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    font-size: 16px;
  }
  .perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-heading {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    font-size: 24px;
  }
  .perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-paragraph {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 120%;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .perfect-day-section {
    padding: 50px 0;
  }
  .perfect-day-section .perfect-day-header {
    flex-direction: column;
    gap: 30px;
  }
  .perfect-day-section .perfect-day-header .perfect-day-heading {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 60px;
    line-height: 130%;
    letter-spacing: 0px;
    font-size: 40px;
    min-width: auto;
  }
  .perfect-day-section .perfect-day-header .perfect-day-paragraph {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
  }
  .perfect-day-section .swiper-slide.perfect-day-card {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .perfect-day-section {
    padding: 40px 0;
  }
  .perfect-day-section .perfect-day-header .perfect-day-heading {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 60px;
    line-height: 130%;
    letter-spacing: 0px;
    font-size: 32px;
  }
  .perfect-day-section .perfect-day-header .perfect-day-paragraph {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    font-size: 14px;
  }
  .perfect-day-section .swiper-slide.perfect-day-card {
    padding: 25px 20px;
  }
  .perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-heading {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    font-size: 22px;
  }
  .perfect-day-section .swiper-slide.perfect-day-card .perfect-day-card-paragraph {
    font-family: "Neue Regrade", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 120%;
    font-size: 14px;
  }
}

.two-image-text-section {
  background-color: rgba(197, 177, 127, 0.19);
  position: relative;
  width: 100%;
}
.two-image-text-section .container {
  position: relative;
  z-index: 1;
}
.two-image-text-section .two-image-text-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  color: #c5b17f;
  margin: 0 0 20px 0;
}
.two-image-text-section .two-image-text-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 5%;
  text-align: center;
  color: #282828;
  margin: 0 auto 60px auto;
  max-width: 850px;
}
.two-image-text-section .two-image-text-cards-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}
.two-image-text-section .two-image-text-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 50%;
  height: 523px;
  background-color: #000;
  cursor: pointer;
}
.two-image-text-section .two-image-text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(199.86deg, rgba(0, 0, 0, 0) 13.27%, rgba(0, 0, 0, 0.6) 65.89%);
  z-index: 2;
}
.two-image-text-section .two-image-text-card .two-image-text-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.two-image-text-section .two-image-text-card .two-image-text-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.two-image-text-section .two-image-text-card .two-image-text-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.8s ease;
  transform: translateY(calc(100% - 100px));
}
.two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 15px 0;
  position: relative;
}
.two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 5%;
  color: #fff;
  margin: 0 0 15px 0;
  opacity: 0;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-button {
  margin-top: 10px;
}
.two-image-text-section .two-image-text-card:hover .two-image-text-card-overlay {
  transform: translateY(0);
}
.two-image-text-section .two-image-text-card:hover .two-image-text-card-overlay .two-image-text-card-paragraph {
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .two-image-text-section .two-image-text-cards-wrapper {
    gap: 25px;
  }
  .two-image-text-section .two-image-text-card .two-image-text-card-overlay {
    padding: 35px 25px;
  }
  .two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-heading {
    font-size: 24px;
  }
  .two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-paragraph {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .two-image-text-section .two-image-text-heading {
    font-size: 40px;
  }
  .two-image-text-section .two-image-text-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .two-image-text-section .two-image-text-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .two-image-text-section .two-image-text-card .two-image-text-card-overlay {
    padding: 30px 20px;
  }
  .two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-heading {
    font-size: 22px;
  }
  .two-image-text-section .two-image-text-card .two-image-text-card-overlay .two-image-text-card-paragraph {
    font-size: 14px;
  }
}

.overflow-slider-section {
  background-color: rgba(197, 177, 127, 0.19);
  position: relative;
  width: 100%;
}
.overflow-slider-section .container {
  position: relative;
  z-index: 1;
}
.overflow-slider-section .overflow-slider-section-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  color: #c5b17f;
  margin: 0 0 20px 0;
}
.overflow-slider-section .overflow-slider-section-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 5%;
  text-align: center;
  color: #282828;
  margin: 0 auto 60px auto;
  max-width: 850px;
}
.overflow-slider-section .overflow-slider-swiper-container {
  width: 100%;
  overflow: visible;
}
.overflow-slider-section .overflow-slider-swiper {
  overflow: visible;
  padding-bottom: 20px;
}
.overflow-slider-section .swiper-slide {
  height: auto;
}
.overflow-slider-section .overflow-slider-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 523px;
  background-color: #000;
  cursor: pointer;
}
.overflow-slider-section .overflow-slider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(199.86deg, rgba(0, 0, 0, 0) 13.27%, rgba(0, 0, 0, 0.5) 65.89%);
  z-index: 2;
}
.overflow-slider-section .overflow-slider-card .overflow-slider-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.overflow-slider-section .overflow-slider-card .overflow-slider-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.8s ease;
  transform: translateY(calc(100% - 100px));
}
.overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 15px 0;
  position: relative;
}
.overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 5%;
  color: #fff;
  margin: 0 0 15px 0;
  opacity: 0;
  position: relative;
  transition: all 0.2s ease;
}
.overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-button {
  margin-top: 10px;
}
.overflow-slider-section .overflow-slider-card:hover .overflow-slider-card-overlay {
  transform: translateY(0);
}
.overflow-slider-section .overflow-slider-card:hover .overflow-slider-card-overlay .overflow-slider-card-paragraph {
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .overflow-slider-section .overflow-slider-section-heading {
    font-size: 50px;
  }
  .overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay {
    padding: 35px 25px;
    transform: translateY(calc(100% - 70px));
  }
  .overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-heading {
    font-size: 24px;
  }
  .overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-paragraph {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .overflow-slider-section .overflow-slider-section-heading {
    font-size: 40px;
  }
  .overflow-slider-section .overflow-slider-section-paragraph {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay {
    padding: 30px 20px;
    transform: translateY(calc(100% - 60px));
  }
  .overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-heading {
    font-size: 22px;
  }
  .overflow-slider-section .overflow-slider-card .overflow-slider-card-overlay .overflow-slider-card-paragraph {
    font-size: 14px;
  }
}

.container-slider-section {
  background-color: rgba(197, 177, 127, 0.19);
  position: relative;
  width: 100%;
}
.container-slider-section .container {
  position: relative;
  z-index: 1;
}
.container-slider-section .container-slider-section-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  color: #c5b17f;
  margin: 0 0 20px 0;
}
.container-slider-section .container-slider-section-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 5%;
  text-align: center;
  color: #282828;
  margin: 0 auto 60px auto;
  max-width: 850px;
}
.container-slider-section .container-slider-swiper-container {
  width: 100%;
  overflow: visible;
}
.container-slider-section .container-slider-swiper {
  overflow: visible;
  padding-bottom: 20px;
}
.container-slider-section .swiper-slide {
  height: auto;
}
.container-slider-section .container-slider-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 523px;
  background-color: #000;
  cursor: pointer;
}
.container-slider-section .container-slider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(199.86deg, rgba(0, 0, 0, 0) 13.27%, rgba(0, 0, 0, 0.5) 65.89%);
  z-index: 2;
}
.container-slider-section .container-slider-card .container-slider-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.container-slider-section .container-slider-card .container-slider-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.container-slider-section .container-slider-card .container-slider-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.8s ease;
  transform: translateY(calc(100% - 100px));
}
.container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  white-space: nowrap;
  color: #fff;
  margin: 0 0 15px 0;
  position: relative;
}
.container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 5%;
  color: #fff;
  margin: 0 0 15px 0;
  opacity: 0;
  position: relative;
  transition: all 0.2s ease;
}
.container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-button {
  margin-top: 10px;
}
.container-slider-section .container-slider-card:hover .container-slider-card-overlay {
  transform: translateY(0);
}
.container-slider-section .container-slider-card:hover .container-slider-card-overlay .container-slider-card-paragraph {
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .container-slider-section .container-slider-section-heading {
    font-size: 50px;
  }
  .container-slider-section .container-slider-card .container-slider-card-overlay {
    padding: 35px 25px;
    transform: translateY(calc(100% - 70px));
  }
  .container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-heading {
    font-size: 24px;
  }
  .container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-paragraph {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .container-slider-section .container-slider-section-heading {
    font-size: 40px;
  }
  .container-slider-section .container-slider-section-paragraph {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .container-slider-section .container-slider-card .container-slider-card-overlay {
    padding: 30px 20px;
    transform: translateY(calc(100% - 60px));
  }
  .container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-heading {
    font-size: 22px;
  }
  .container-slider-section .container-slider-card .container-slider-card-overlay .container-slider-card-paragraph {
    font-size: 14px;
  }
}

.three-image-text-section {
  background-color: #fff;
}
.three-image-text-section .container {
  position: relative;
}
.three-image-text-section .three-image-text-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 60px;
}
.three-image-text-section .three-image-text-wrapper.three-image-text-wrapper-image-left .three-image-text-image {
  order: 1;
}
.three-image-text-section .three-image-text-wrapper.three-image-text-wrapper-image-left .three-image-text-text {
  order: 2;
}
.three-image-text-section .three-image-text-wrapper.three-image-text-wrapper-image-right .three-image-text-image {
  order: 2;
}
.three-image-text-section .three-image-text-wrapper.three-image-text-wrapper-image-right .three-image-text-text {
  order: 1;
}
.three-image-text-section .three-image-text-wrapper.three-image-text-wrapper-text-bottom .three-image-text-text {
  justify-content: flex-end;
}
.three-image-text-section .three-image-text-wrapper-image-left .three-image-text-image {
  width: 52.5%;
}
.three-image-text-section .three-image-text-wrapper-image-left .three-image-text-text {
  width: 548px;
}
.three-image-text-section .three-image-text-wrapper-image-right {
  padding-top: 30px;
}
.three-image-text-section .three-image-text-wrapper-image-right .three-image-text-image {
  width: 462px;
}
.three-image-text-section .three-image-text-wrapper-image-right .three-image-text-text {
  padding-top: 70px;
  width: 58.2%;
}
.three-image-text-section .three-image-text-image {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
.three-image-text-section .three-image-text-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.three-image-text-section .three-image-text-image:hover img {
  transform: scale(1.05);
}
.three-image-text-section .three-image-text-text {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
}
.three-image-text-section .three-image-text-text.three-image-text-text-last {
  margin-top: auto;
  padding-bottom: 70px;
}
.three-image-text-section .three-image-text-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #c5b17f;
}
.three-image-text-section .three-image-text-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #C5B17F;
  letter-spacing: -1.9px;
  white-space: nowrap;
  margin: 0 0 10px 0;
}
.three-image-text-section .three-image-text-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #282828;
  margin: 0;
}
.three-image-text-section .three-image-text-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #282828;
  margin: 0 0 20px 0;
}
.three-image-text-section .three-image-text-paragraph:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .three-image-text-section {
    padding: 70px 0;
  }
  .three-image-text-section .three-image-text-wrapper {
    gap: 50px;
  }
  .three-image-text-section .three-image-text-wrapper-image-left .three-image-text-image {
    width: 52.5%;
  }
  .three-image-text-section .three-image-text-wrapper-image-left .three-image-text-text {
    width: 548px;
  }
  .three-image-text-section .three-image-text-wrapper-image-right .three-image-text-image {
    width: 462px;
  }
  .three-image-text-section .three-image-text-wrapper-image-right .three-image-text-text {
    width: 58.2%;
  }
  .three-image-text-section .three-image-text-heading {
    font-size: 36px;
  }
  .three-image-text-section .three-image-text-description,
  .three-image-text-section .three-image-text-paragraph {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .three-image-text-section {
    padding: 60px 0;
  }
  .three-image-text-section .three-image-text-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .three-image-text-section .three-image-text-wrapper-image-right .three-image-text-image {
    order: 1;
  }
  .three-image-text-section .three-image-text-wrapper-image-right .three-image-text-text {
    order: 2;
  }
  .three-image-text-section .three-image-text-image,
  .three-image-text-section .three-image-text-text {
    width: 100% !important;
  }
  .three-image-text-section .three-image-text-heading {
    font-size: 32px;
  }
  .three-image-text-section .three-image-text-description,
  .three-image-text-section .three-image-text-paragraph {
    font-size: 16px;
  }
}

.full-video-section {
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.full-video-section .full-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 800px;
}
.full-video-section .full-video-container .full-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 1;
}
.full-video-section .full-video-container .full-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  z-index: 2;
  pointer-events: none;
}
.full-video-section .full-video-container .full-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}
.full-video-section .full-video-container .full-video-play-button:hover {
  background: rgba(217, 217, 217, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}
.full-video-section .full-video-container .full-video-play-button svg {
  width: 30px;
  height: 36px;
  margin-left: 4px;
}
.full-video-section .full-video-container .full-video-play-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.full-video-section .full-video-container .full-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.facilities-section {
  width: 100%;
  background-color: #fff;
}
.facilities-section .container {
  position: relative;
}
.facilities-section .facilities-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 30px;
}
.facilities-section .facilities-header .facilities-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: #000;
  margin: 0;
  flex: 0 0 auto;
}
.facilities-section .facilities-header .facilities-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 0;
  width: 510px;
  flex: 0 0 auto;
}
.facilities-section .facilities-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.facilities-section .facilities-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 300px;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.facilities-section .facilities-card .facilities-card-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 301px;
}
.facilities-section .facilities-card .facilities-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.facilities-section .facilities-card .facilities-card-image:hover img {
  transform: scale(1.05);
}
.facilities-section .facilities-card .facilities-card-content {
  padding: 50px 20px 0 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 418px;
}
.facilities-section .facilities-card .facilities-card-content .facilities-card-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #282828;
  margin: 0 0 15px 0;
}
.facilities-section .facilities-card .facilities-card-content .facilities-card-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #282828;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
.facilities-section .facilities-card .facilities-card-content .facilities-card-button {
  margin-top: auto;
}
@media only screen and (max-width: 1024px) {
  .facilities-section .facilities-header {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .facilities-section .facilities-header .facilities-heading {
    font-size: 50px;
  }
  .facilities-section .facilities-header .facilities-description {
    width: 100%;
    max-width: 548px;
  }
  .facilities-section .facilities-card {
    flex: 1 1 calc(50% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .facilities-section .facilities-header {
    margin-bottom: 40px;
  }
  .facilities-section .facilities-header .facilities-heading {
    font-size: 40px;
  }
  .facilities-section .facilities-header .facilities-description {
    font-size: 16px;
  }
  .facilities-section .facilities-cards {
    flex-direction: column;
  }
  .facilities-section .facilities-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .facilities-section .facilities-card .facilities-card-content {
    padding: 25px 20px;
  }
  .facilities-section .facilities-card .facilities-card-content .facilities-card-title {
    font-size: 24px;
  }
  .facilities-section .facilities-card .facilities-card-content .facilities-card-description {
    font-size: 16px;
  }
}

.related-services-section {
  width: 100%;
  background-color: rgba(197, 177, 127, 0.19);
}
.related-services-section .container {
  position: relative;
}
.related-services-section .related-services-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  color: #c5b17f;
  margin: 0 0 20px 0;
}
.related-services-section .related-services-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #282828;
  margin: 0 auto 60px auto;
  max-width: 800px;
  text-align: center;
}
.related-services-section .related-services-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.related-services-section .related-services-card {
  position: relative;
  width: 100%;
  height: 523px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
}
.related-services-section .related-services-card .related-services-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.related-services-section .related-services-card .related-services-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.related-services-section .related-services-card .related-services-card-image .related-services-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(215.74deg, rgba(0, 0, 0, 0) 20.92%, rgba(0, 0, 0, 0.86) 73.06%);
  z-index: 2;
  pointer-events: none;
}
.related-services-section .related-services-card .related-services-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 3;
  max-width: 845px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.related-services-section .related-services-card .related-services-card-content .related-services-card-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 15px 0;
}
.related-services-section .related-services-card .related-services-card-content .related-services-card-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 20px 0;
}
.related-services-section .related-services-card .related-services-card-content .related-services-card-button {
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .related-services-section .related-services-heading {
    font-size: 50px;
  }
  .related-services-section .related-services-description {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .related-services-section .related-services-card {
    height: 450px;
  }
  .related-services-section .related-services-card .related-services-card-content {
    padding: 35px 25px;
  }
  .related-services-section .related-services-card .related-services-card-content .related-services-card-title {
    font-size: 24px;
  }
  .related-services-section .related-services-card .related-services-card-content .related-services-card-description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .related-services-section .related-services-heading {
    font-size: 40px;
  }
  .related-services-section .related-services-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .related-services-section .related-services-card {
    height: 400px;
  }
  .related-services-section .related-services-card .related-services-card-content {
    padding: 30px 20px;
  }
  .related-services-section .related-services-card .related-services-card-content .related-services-card-title {
    font-size: 22px;
  }
  .related-services-section .related-services-card .related-services-card-content .related-services-card-description {
    font-size: 14px;
  }
}

.related-news-section {
  width: 100%;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .related-news-section {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 600px) {
  .related-news-section {
    padding: 40px 0;
  }
}

.related-news-section .container {
  max-width: 1440px;
  margin: 0 auto;
}

.title-block-related {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .title-block-related {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .title-block-related {
    margin-bottom: 30px;
  }
}
.title-block-related .primary-button {
  padding-inline: 60px;
}

.related-news-carousel-wrapper {
  position: relative;
}

.related-news-carousel {
  overflow: visible;
  padding-bottom: 20px;
}

.related-news-item {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-news-image {
  width: 100%;
  aspect-ratio: 710/359;
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
}
.related-news-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.related-news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.related-news-image:hover img {
  transform: scale(1.05);
}
@media only screen and (max-width: 768px) {
  .related-news-image {
    height: 220px;
  }
}
@media only screen and (max-width: 600px) {
  .related-news-image {
    height: 200px;
    border-radius: 15px;
  }
}

.related-news-content {
  padding: 35px 4%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .related-news-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .related-news-content {
    padding: 18px;
  }
}

.related-news-date {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}
@media only screen and (max-width: 600px) {
  .related-news-date {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.related-news-title {
  font-size: 24px;
  width: calc(100% - 140px);
  font-weight: 500;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.related-news-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  font-weight: 500;
}
.related-news-title a:hover {
  color: #C5B17F;
}
@media only screen and (max-width: 768px) {
  .related-news-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .related-news-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 820px) {
  .related-news-title {
    width: calc(100% - 30px);
  }
}

.related-news-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .related-news-excerpt {
    font-size: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .related-news-excerpt {
    font-size: 14px;
  }
}

.related-news-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .related-news-navigation {
    margin-top: 30px;
  }
}

.related-news-prev-btn,
.related-news-next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #C5B17F;
  color: #C5B17F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.related-news-prev-btn svg,
.related-news-next-btn svg {
  width: 24px;
  height: 24px;
}
.related-news-prev-btn:hover,
.related-news-next-btn:hover {
  background-color: #C5B17F;
  color: #fff;
}
.related-news-prev-btn:disabled,
.related-news-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media only screen and (max-width: 600px) {
  .related-news-prev-btn,
  .related-news-next-btn {
    width: 45px;
    height: 45px;
  }
  .related-news-prev-btn svg,
  .related-news-next-btn svg {
    width: 20px;
    height: 20px;
  }
}

.read-more-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.read-more-link:hover {
  opacity: 0.8;
}

@media (max-width: 820px) {
  .read-more-text {
    display: none;
  }
}

@media (max-width: 820px) {
  .read_icon {
    width: 30px;
  }
}

.news-list-section {
  width: 100%;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .news-list-grid {
    gap: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .news-list-grid {
    gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.related-news-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .related-news-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.news-list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .news-list-pagination {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .news-list-pagination {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.news-list-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-list-pagination .page-numbers:hover {
  border-color: #C5B17F;
  color: #C5B17F;
}
.news-list-pagination .page-numbers.current {
  background-color: #C5B17F;
  border-color: #C5B17F;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .news-list-pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    padding: 0 12px;
    font-size: 14px;
  }
}

.news-list-empty {
  text-align: center;
  padding: 60px 20px;
}
.news-list-empty p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.news-list-title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .news-list-title-block {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.news-list-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #C5B17F;
  border-radius: 50px;
  padding: 12px 20px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M14.9405%206.71289L10.0505%2011.6029C9.47305%2012.1804%208.52805%2012.1804%207.95055%2011.6029L3.06055%206.71289%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px 18px;
  padding-right: 50px;
  min-width: 120px;
}
.news-list-select:hover {
  border-color: #d5c6a2;
}
.news-list-select:focus {
  border-color: #ddd1b4;
}
.news-list-select option {
  background-color: #000;
  color: #fff;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .news-list-select {
    padding: 10px 25px;
    padding-right: 45px;
    font-size: 14px;
    min-width: 100px;
  }
}
@media only screen and (max-width: 600px) {
  .news-list-select {
    padding: 8px 20px;
    padding-right: 40px;
    font-size: 13px;
    min-width: 90px;
  }
}

.news-tabs-nav {
  width: 100%;
  padding: 0;
  position: relative;
}
.news-tabs-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #C5B17F;
  opacity: 0.5;
}

.news-tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.news-tabs-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-tabs-item.active .news-tabs-link {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(197, 177, 127, 0.2) 100%);
  color: #C5B17F;
  position: relative;
}
.news-tabs-item.active .news-tabs-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 4px 4px;
  pointer-events: none;
}

.news-tabs-link {
  display: block;
  padding: 30px 40px;
  font-size: 24px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.news-tabs-link:hover {
  color: #C5B17F;
}
@media only screen and (max-width: 1024px) {
  .news-tabs-link {
    padding: 18px 35px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .news-tabs-link {
    padding: 15px 25px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  .news-tabs-link {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.gallery-grid-section {
  padding: 60px 0;
  width: 100%;
}
.gallery-grid-section .container {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .gallery-grid {
    gap: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.gallery-grid-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 768px) {
  .gallery-grid-item {
    border-radius: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-grid-item {
    border-radius: 12px;
  }
}

.gallery-grid-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.gallery-grid-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-grid-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .gallery-grid-overlay {
    padding: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-grid-overlay {
    padding: 12px;
  }
}

.gallery-grid-item:hover .gallery-grid-image img {
  transform: scale(1.1);
}
.gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}

.gallery-grid-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .gallery-grid-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-grid-title {
    font-size: 15px;
  }
}

.breadcrumbs {
  width: 100%;
  padding: 25px 0;
  border-bottom: solid 1px #C5B17F;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 15px 0;
  }
}

.breadcrumbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.breadcrumbs-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.breadcrumbs-link {
  font-size: 16px;
  font-weight: 500;
  color: #C5B17F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs-link:hover {
  color: #d5c6a2;
  text-decoration: underline;
}
@media only screen and (max-width: 600px) {
  .breadcrumbs-link {
    font-size: 14px;
  }
}

.breadcrumbs-current {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
@media only screen and (max-width: 600px) {
  .breadcrumbs-current {
    font-size: 14px;
  }
}

.breadcrumbs-separator {
  font-size: 16px;
  color: #666;
  margin: 0 10px;
}
@media only screen and (max-width: 600px) {
  .breadcrumbs-separator {
    font-size: 14px;
    margin: 0 8px;
  }
}

.dual-slider-container {
  width: 100%;
  padding: 100px 0;
  position: relative;
}
.dual-slider-container .container {
  position: relative;
}
.dual-slider-container .dual-slider-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}
.dual-slider-container .dual-slider-text-wrapper {
  flex: 0 0 37.7%;
  max-width: 528px;
  width: 100%;
  position: relative;
}
.dual-slider-container .dual-slider-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  color: #C5B17F;
  line-height: 1.2;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 10;
  pointer-events: none;
}
.dual-slider-container .dual-slider-text-swiper {
  width: 100%;
  height: auto;
  padding-top: 180px;
}
.dual-slider-container .dual-slider-text-content {
  width: 100%;
}
.dual-slider-container .dual-slider-subheading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 36px;
  color: #282828;
  line-height: 1.3;
  margin: 0 0 20px 0;
}
.dual-slider-container .dual-slider-description {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #282828;
  line-height: 1.6;
  margin: 0;
}
.dual-slider-container .dual-slider-image-wrapper {
  flex: 0 0 54.9%;
  max-width: 768px;
  width: 100%;
}
.dual-slider-container .dual-slider-image-swiper {
  width: 100%;
  height: 528px;
}
.dual-slider-container .dual-slider-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.dual-slider-container .dual-slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dual-slider-container .dual-slider-navigation {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.dual-slider-container .dual-slider-prev,
.dual-slider-container .dual-slider-next {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 0;
  position: relative;
}
.dual-slider-container .dual-slider-prev::before,
.dual-slider-container .dual-slider-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0.6px #282828;
  pointer-events: none;
  transition: all 0.5s ease;
}
.dual-slider-container .dual-slider-prev:hover,
.dual-slider-container .dual-slider-next:hover {
  background: #c5b17f;
}
.dual-slider-container .dual-slider-prev:hover svg path,
.dual-slider-container .dual-slider-next:hover svg path {
  stroke: #fff;
}
.dual-slider-container .dual-slider-prev:hover::before,
.dual-slider-container .dual-slider-next:hover::before {
  box-shadow: 0 0 0 0.6px #fff;
}
.dual-slider-container .dual-slider-prev:active,
.dual-slider-container .dual-slider-next:active {
  transform: scale(0.95);
}
.dual-slider-container .dual-slider-prev svg,
.dual-slider-container .dual-slider-next svg {
  width: 27px;
  height: 16px;
}
.dual-slider-container .dual-slider-next svg {
  transform: rotate(180deg);
}
@media only screen and (max-width: 1024px) {
  .dual-slider-container {
    padding: 80px 0;
  }
  .dual-slider-container .dual-slider-wrapper {
    gap: 40px;
  }
  .dual-slider-container .dual-slider-heading {
    font-size: 48px;
  }
  .dual-slider-container .dual-slider-subheading {
    font-size: 32px;
  }
  .dual-slider-container .dual-slider-description {
    font-size: 16px;
  }
  .dual-slider-container .dual-slider-image-swiper {
    height: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .dual-slider-container {
    padding: 60px 0;
  }
  .dual-slider-container .dual-slider-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .dual-slider-container .dual-slider-text-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .dual-slider-container .dual-slider-image-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .dual-slider-container .dual-slider-heading {
    font-size: 36px;
  }
  .dual-slider-container .dual-slider-subheading {
    font-size: 28px;
  }
  .dual-slider-container .dual-slider-description {
    font-size: 16px;
  }
  .dual-slider-container .dual-slider-image-swiper {
    height: 300px;
  }
  .dual-slider-container .dual-slider-navigation {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .dual-slider-container {
    padding: 40px 0;
  }
  .dual-slider-container .dual-slider-heading {
    font-size: 28px;
  }
  .dual-slider-container .dual-slider-subheading {
    font-size: 24px;
  }
  .dual-slider-container .dual-slider-description {
    font-size: 14px;
  }
  .dual-slider-container .dual-slider-image-swiper {
    height: 250px;
  }
  .dual-slider-container .dual-slider-prev,
  .dual-slider-container .dual-slider-next {
    width: 50px;
    height: 50px;
  }
  .dual-slider-container .dual-slider-prev svg,
  .dual-slider-container .dual-slider-next svg {
    width: 24px;
    height: 14px;
  }
}

.sustainability-container {
  width: 100%;
  padding: 100px 0;
  background-color: #F4F1E7;
}
.sustainability-container .sustainability-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 70px;
}
.sustainability-container .sustainability-header-left {
  flex: 0 0 auto;
}
.sustainability-container .sustainability-header-right {
  flex: 0 0 auto;
  max-width: 640px;
}
.sustainability-container .sustainability-tag {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #B64910;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.sustainability-container .sustainability-heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  font-size: 60px;
  color: #C5B17F;
  line-height: 1.2;
  margin: 0;
}
.sustainability-container .sustainability-paragraph {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #282828;
  line-height: 1.6;
  margin: 0;
}
.sustainability-container .sustainability-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.sustainability-container .sustainability-image-wrapper {
  flex: 0 0 54.86%;
  max-width: 768px;
  width: 100%;
  transition: all 0.5s ease;
  overflow: hidden;
  border-radius: 20px;
}
.sustainability-container .sustainability-image-wrapper:hover img {
  transform: scale(1.05);
}
.sustainability-container .sustainability-image {
  width: 100%;
  height: 468px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}
.sustainability-container .sustainability-cards {
  flex: 0 0 46.57%;
  max-width: 652px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: 468px;
}
.sustainability-container .sustainability-card {
  width: calc(50% - 10px);
  height: calc(50% - 10px);
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
  text-align: left;
}
.sustainability-container .sustainability-card-icon {
  width: 47px;
  height: 47px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sustainability-container .sustainability-card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sustainability-container .sustainability-card-text {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #282828;
  line-height: 1.4;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .sustainability-container {
    padding: 80px 0;
  }
  .sustainability-container .sustainability-content {
    flex-direction: column;
  }
  .sustainability-container .sustainability-image-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .sustainability-container .sustainability-image {
    height: 400px;
  }
  .sustainability-container .sustainability-cards {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
  }
  .sustainability-container .sustainability-card {
    width: calc(50% - 10px);
    height: auto;
    min-height: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .sustainability-container {
    padding: 60px 0;
  }
  .sustainability-container .sustainability-heading {
    font-size: 48px;
  }
  .sustainability-container .sustainability-paragraph {
    font-size: 16px;
  }
  .sustainability-container .sustainability-image {
    height: 300px;
  }
  .sustainability-container .sustainability-cards {
    gap: 15px;
  }
  .sustainability-container .sustainability-card {
    width: calc(50% - 7.5px);
    padding: 20px 15px;
  }
  .sustainability-container .sustainability-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .sustainability-container .sustainability-card-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .sustainability-container {
    padding: 40px 0;
  }
  .sustainability-container .sustainability-tag {
    font-size: 18px;
  }
  .sustainability-container .sustainability-heading {
    font-size: 36px;
  }
  .sustainability-container .sustainability-paragraph {
    font-size: 14px;
  }
  .sustainability-container .sustainability-image {
    height: 250px;
  }
  .sustainability-container .sustainability-cards {
    flex-direction: column;
    height: auto;
  }
  .sustainability-container .sustainability-card {
    width: 100%;
    height: auto;
    min-height: 150px;
  }
}/*# sourceMappingURL=main.css.map */