@import '/assets/css/_reset.css';
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

body {
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@font-face {
  font-family: "Avenir-Light";
  src: url("../fonts/Avenir Next LT Pro/AvenirNextLTPro-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Avenir-Regular";
  src: url("../fonts/Avenir Next LT Pro/AvenirNextLTPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Avenir-Bold";
  src: url("../fonts/Avenir Next LT Pro/AvenirNextLTPro-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Futura-Medium";
  src: url("../fonts/Futura PT/FuturaPT-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Futura-Heavy";
  src: url("../fonts/Futura PT/FuturaPT-Heavy.otf") format("opentype");
}
@font-face {
  font-family: "Futura-Normal";
  src: url("../fonts/Futura PT/FuturaPT-Book.otf") format("opentype");
}
@font-face {
  font-family: "MO-Exceptional";
  src: url("../fonts/MO Exceptional/MOExceptional-Regular.otf") format("opentype");
}
.btn-discovery {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .btn-discovery {
    font-size: 12px;
  }
}
.btn-discovery {
  opacity: 1;
  transition: opacity cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-discovery:hover {
  opacity: 0.5;
}
.btn-discovery.active {
  font-family: "Futura-Heavy", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .btn-discovery.active {
    font-size: 12px;
  }
}
.btn-discovery.btn-underline {
  padding-bottom: 8px;
}
.btn-discovery.btn-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #B59060;
}

.btn-inquire {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .btn-inquire {
    font-size: 12px;
  }
}
.btn-inquire {
  background-color: #EEE6D3;
  padding: 0 22px;
  max-height: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all ease-in-out 0.5s;
}
.btn-inquire:hover, .btn-inquire:active {
  background-color: #E69E6D;
  color: #FFFFFF;
}

.btn-primary {
  background-color: #FFFFFF;
  padding: 16px 23px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: solid 1px #EEE6D3;
  text-decoration: unset;
  width: -moz-fit-content;
  width: fit-content;
  transition: all ease-in-out 0.5s;
  display: flex;
}
.btn-primary h4 {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .btn-primary h4 {
    font-size: 12px;
  }
}
.btn-primary img {
  width: 15px;
  min-width: 15px;
  height: 15px;
  min-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn-primary:hover, .btn-primary:active {
  background-color: #EEE6D3;
}

header {
  padding: 20px 40px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #FFFFFF;
  z-index: 90;
}
@media (max-width: 810px) {
  header {
    position: sticky;
  }
}
header:hover .logo-wrap img.big {
  height: 81px !important;
  min-height: 81px !important;
  max-height: 81px !important;
}
header .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 0.4px solid #B59060;
  padding-bottom: 17.5px;
  margin-bottom: 18px;
  position: relative;
}
@media (max-width: 810px) {
  header .logo-wrap {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
}
header .logo-wrap img.big {
  transition: all 0.4s ease;
  -o-object-fit: contain;
     object-fit: contain;
  width: 153px;
  min-width: 153px;
  max-width: 153px;
  height: 81px;
  min-height: 81px;
  max-height: 81px;
}
header .logo-wrap img.big.show {
  opacity: 1;
  visibility: visible;
  height: 39px;
  min-height: 39px;
  max-height: 39px;
}
header .logo-wrap img.big {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
header .logo-wrap .hamburger {
  display: none;
}
@media (max-width: 810px) {
  header .logo-wrap .hamburger {
    cursor: pointer;
    position: absolute;
    right: 0;
    display: block;
    width: 16px;
    min-width: 16px;
    max-width: 16px;
    height: 24px;
    min-height: 24px;
    max-height: 24px;
    margin-right: 4px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
header .nav-wrap {
  height: 35px;
  display: flex;
  align-items: center;
}
@media (max-width: 810px) {
  header .nav-wrap {
    display: none;
  }
}
header .nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1270px) {
  header .nav-wrap ul {
    gap: 24px;
  }
}
header .nav-wrap ul li a {
  text-decoration: none;
}

.side-bar-nav {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
@media (max-width: 810px) {
  .side-bar-nav.show {
    position: fixed;
    opacity: 1;
    pointer-events: unset;
  }
  .side-bar-nav {
    transition: opacity 0.3s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 90;
    background-color: #fffff8;
    padding: 0 40px 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .side-bar-nav .sbn-wrap {
    position: absolute;
    width: 100%;
    min-height: 121px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    background-color: #FFFFFF;
    position: relative;
  }
  .side-bar-nav .sbn-wrap .sbn-close {
    width: 25px;
    min-width: 25px;
    max-width: 25px;
    height: 25px;
    min-height: 25px;
    max-height: 25px;
    position: absolute;
    right: 0;
    cursor: pointer;
  }
  .side-bar-nav .sbn-wrap .sbn-logo {
    -o-object-fit: contain;
       object-fit: contain;
    width: 153px;
    min-width: 153px;
    max-width: 153px;
    height: 81px;
    min-height: 81px;
    max-height: 81px;
  }
  .side-bar-nav ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .side-bar-nav ul li a {
    font-family: "Futura-Medium", sans-serif;
    font-weight: 500;
    color: #B59060;
    font-size: 16px;
    letter-spacing: 0.07em;
    line-height: 1.2em;
  }
}

.inquire-bottom-nav {
  position: fixed;
  z-index: 100;
  bottom: 0;
  width: 100%;
  height: 54px;
  background-color: #EEE6D3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Futura-Medium", sans-serif;
  font-weight: 500;
  color: #B59060;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1.2em;
  text-decoration: none;
  display: none;
}
@media (max-width: 810px) {
  .inquire-bottom-nav {
    display: flex;
  }
}

footer {
  height: 552px;
  width: 100%;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgba(239, 214, 173, 0) 0%, rgb(239, 214, 173) 32%, rgb(230, 183, 137) 49.7297957137%, rgb(221, 139, 87) 80%, rgb(210, 109, 40) 100%);
}
@media (max-width: 1270px) {
  footer {
    height: 604px;
  }
}
@media (max-width: 810px) {
  footer {
    height: 664px;
    margin-bottom: 54px;
  }
}
footer .ft-content {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 43px;
  padding-bottom: 64px;
  width: 100%;
}
footer .ft-content .ft-top {
  min-height: 137px;
  display: flex;
  gap: 24px;
  margin-bottom: 73px;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-top {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
footer .ft-content .ft-top .ft-t-left {
  width: 390px;
  min-width: 390px;
  max-width: 390px;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-top .ft-t-left {
    width: unset;
    min-width: unset;
    max-width: unset;
  }
}
footer .ft-content .ft-top .ft-t-left .ft-t-left-image {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
}
footer .ft-content .ft-top .ft-t-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-top .ft-t-right .ft-t-text {
    text-align: center;
  }
}
footer .ft-content .ft-top .ft-t-right .ft-t-text {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-top .ft-t-right .ft-t-text {
    font-size: 12px;
  }
}
footer .ft-content .ft-top .ft-t-right .ft-t-text {
  color: #FFFFFF;
}
footer .ft-content .ft-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-bottom {
    justify-content: center;
  }
}
@media (max-width: 810px) {
  footer .ft-content .ft-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
footer .ft-content .ft-bottom .ft-b-text {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-bottom .ft-b-text {
    font-size: 12px;
  }
}
footer .ft-content .ft-bottom .ft-b-text {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .ft-content .ft-bottom .ft-b-text:first-child {
  width: 390px;
  min-width: 390px;
  max-width: 390px;
}
footer .ft-content .ft-bottom .ft-b-text:last-child {
  margin-left: auto;
}
@media (max-width: 1270px) {
  footer .ft-content .ft-bottom .ft-b-text:first-child {
    width: -moz-fit-content;
    width: fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  footer .ft-content .ft-bottom .ft-b-text:last-child {
    margin-left: unset;
  }
}
@media (max-width: 810px) {
  footer .ft-content .ft-bottom .ft-b-text {
    order: 1;
  }
  footer .ft-content .ft-bottom .ft-b-text:first-child {
    order: 2;
  }
  footer .ft-content .ft-bottom .ft-b-text:last-child {
    order: 3;
  }
}

section.inquiry {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
section.inquiry::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B59060;
}
section.inquiry .form-wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 786px;
  padding-top: 120px;
}
section.inquiry .form-wrap .iq-title {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 21px;
  line-height: 1.2em;
  letter-spacing: 0em;
  margin-bottom: 10px;
  text-align: center;
}
section.inquiry .form-wrap .iq-sub-title {
  font-family: "Avenir-Regular", sans-serif;
  color: #B59060;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  margin-bottom: 72px;
  text-align: center;
}
section.inquiry .form-wrap .iq-sub-title br {
  display: none;
}
@media (max-width: 810px) {
  section.inquiry .form-wrap .iq-sub-title br {
    display: block;
  }
}
section.inquiry .form-wrap .form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.inquiry .form-wrap .form .fields-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 48px;
  margin-bottom: 72px;
  width: 100%;
}
@media (max-width: 810px) {
  section.inquiry .form-wrap .form .fields-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap {
  width: 100%;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap input {
  all: unset;
  width: 100%;
  border-bottom: solid 1px #B59060;
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #B59060;
  height: 32px;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap input::-moz-placeholder {
  color: #B59060;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap input::placeholder {
  color: #B59060;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select {
  position: relative;
  cursor: pointer;
  border-bottom: solid 1px #B59060;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select .select-display {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #B59060;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select .select-display .chev {
  width: 8px;
  height: 7px;
  background: url(./../images/chev-select.svg) no-repeat center;
  transform: rotate(0);
  transition: transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select.open .select-display .chev {
  transform: rotate(180deg);
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select.open .select-dropdown {
  grid-template-rows: 1fr;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select .select-dropdown {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select .select-dropdown .select-options {
  overflow: hidden;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select .select-dropdown .select-options .option {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #B59060;
  margin-bottom: 6px;
}
section.inquiry .form-wrap .form .fields-wrap .input-wrap .custom-select .select-dropdown .select-options .option:last-child {
  margin-bottom: 10px;
}
section.inquiry .form-wrap .form .iq-submit {
  all: unset;
  cursor: pointer;
  border-radius: 50px;
  height: 42px;
  border: solid #B59060 1px;
  padding: 0 48px;
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  section.inquiry .form-wrap .form .iq-submit {
    font-size: 12px;
  }
}
section.inquiry .form-wrap .form .iq-submit {
  transition: all 0.4s ease-in-out;
  background-color: #FFFFFF;
}
section.inquiry .form-wrap .form .iq-submit:hover {
  background-color: #EEE6D3;
  border: solid 1px #EEE6D3;
}

.indicator-chev-down {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 56px;
  width: 100%;
}
@media (max-width: 1270px) {
  .indicator-chev-down {
    bottom: 36px;
  }
}
@media (max-width: 810px) {
  .indicator-chev-down {
    bottom: 25px;
  }
}
.indicator-chev-down .in-title {
  font-family: "MO-Exceptional", serif;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
}
@media (max-width: 1270px) {
  .indicator-chev-down .in-title {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .indicator-chev-down .in-title {
    font-size: 15px;
  }
}
.indicator-chev-down .in-title {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 1270px) {
  .indicator-chev-down .in-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 810px) {
  .indicator-chev-down .in-title {
    margin-bottom: 13px;
  }
}
.indicator-chev-down .in-img {
  width: 42px;
  min-width: 42px;
  max-width: 42px;
  height: 21px;
  min-height: 21px;
  max-height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.home-page section.hero {
  height: 100vh;
  width: 100%;
  position: relative;
}
@media (max-width: 810px) {
  .home-page section.hero {
    aspect-ratio: 1.64/1;
    max-height: unset;
    height: auto;
  }
}
.home-page section.hero .hr-video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(90deg, #EEE6D3 25%, rgb(245.106557377, 240.4508196721, 229.393442623) 50%, #EEE6D3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 3s infinite linear;
}
.home-page section.content-one {
  padding: 120px 20px;
}
@media (max-width: 1270px) {
  .home-page section.content-one {
    padding-bottom: 48px;
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media (max-width: 810px) {
  .home-page section.content-one {
    padding: 80px 24px;
  }
}
.home-page section.content-one .co-title {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .home-page section.content-one .co-title {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .home-page section.content-one .co-title {
    font-size: 20px;
  }
}
.home-page section.content-one .co-title {
  text-align: center;
  margin-bottom: 36px;
}
.home-page section.content-one .co-title br {
  display: none;
}
@media (max-width: 810px) {
  .home-page section.content-one .co-title br {
    display: block;
  }
}
.home-page section.content-one .co-description {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .home-page section.content-one .co-description {
    font-size: 14px;
  }
}
.home-page section.content-one .co-description {
  max-width: 519px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 36px;
}
.home-page section.content-one .co-description br {
  display: none;
}
@media (max-width: 1270px) {
  .home-page section.content-one .co-description br {
    display: block;
  }
}
@media (max-width: 810px) {
  .home-page section.content-one .co-description {
    padding: 0 24px;
  }
  .home-page section.content-one .co-description br {
    display: none;
  }
}
.home-page section.content-one .btn-discovery {
  margin: 0 auto;
}
.home-page section.content-one .co-img {
  display: block;
  margin: 0 auto;
  margin-top: 96px;
  width: 100%;
  max-width: 827px;
  height: 480px;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(90deg, #EEE6D3 25%, rgb(245.106557377, 240.4508196721, 229.393442623) 50%, #EEE6D3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 3s infinite linear;
}
@media (max-width: 810px) {
  .home-page section.content-one .co-img {
    margin-top: 48px;
    aspect-ratio: 16/9;
    height: auto;
    max-height: auto;
  }
}
.home-page section.content-two {
  width: 100%;
  height: 100%;
  height: 100%;
  aspect-ratio: 1.87592;
  margin-bottom: 120px;
  background: linear-gradient(90deg, #EEE6D3 25%, rgb(245.106557377, 240.4508196721, 229.393442623) 50%, #EEE6D3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 3s infinite linear;
}
@media (max-width: 1270px) {
  .home-page section.content-two {
    margin-bottom: 60px;
  }
}
@media (max-width: 810px) {
  .home-page section.content-two {
    margin-bottom: 80px;
    aspect-ratio: 1.6375;
  }
}
.home-page section.content-two .ct-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page section.twin-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1135px;
  margin: 0 auto;
}
@media (max-width: 1270px) {
  .home-page section.twin-wrap {
    max-width: 100%;
    padding: 0 48px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 36px;
         column-gap: 36px;
    row-gap: 60px;
  }
}
@media (max-width: 810px) {
  .home-page section.twin-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 0 24px;
    padding-bottom: 80px;
  }
}
.home-page section.twin-wrap .tw-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
.home-page section.twin-wrap .tw-card:nth-of-type(odd) {
  margin-bottom: 72px;
}
.home-page section.twin-wrap .tw-card:nth-of-type(odd) .tw-info {
  padding-left: 87px;
}
.home-page section.twin-wrap .tw-card:nth-of-type(even) {
  direction: rtl;
  margin-bottom: 120px;
}
.home-page section.twin-wrap .tw-card:nth-of-type(even) .tw-info {
  direction: ltr;
  padding-right: 87px;
}
@media (max-width: 1270px) {
  .home-page section.twin-wrap .tw-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    align-items: start;
  }
  .home-page section.twin-wrap .tw-card:nth-of-type(even), .home-page section.twin-wrap .tw-card:nth-of-type(odd) {
    margin-bottom: 0;
    direction: unset;
  }
  .home-page section.twin-wrap .tw-card:nth-of-type(even) .tw-info, .home-page section.twin-wrap .tw-card:nth-of-type(odd) .tw-info {
    padding: 0;
  }
}
@media (max-width: 810px) {
  .home-page section.twin-wrap .tw-card {
    max-width: 380px;
    margin: 0 auto;
  }
}
.home-page section.twin-wrap .tw-card .tw-img {
  height: 369px;
  min-height: 369px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(90deg, #EEE6D3 25%, rgb(245.106557377, 240.4508196721, 229.393442623) 50%, #EEE6D3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 3s infinite linear;
}
@media (max-width: 1270px) {
  .home-page section.twin-wrap .tw-card .tw-img {
    aspect-ratio: 1.5393;
    margin-bottom: 48px;
    height: unset;
    min-height: unset;
  }
}
@media (max-width: 810px) {
  .home-page section.twin-wrap .tw-card .tw-img {
    margin-bottom: 36px;
  }
}
.home-page section.twin-wrap .tw-card .tw-info .tw-h2 {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 21px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .home-page section.twin-wrap .tw-card .tw-info .tw-h2 {
    font-size: 18px;
  }
}
@media (max-width: 810px) {
  .home-page section.twin-wrap .tw-card .tw-info .tw-h2 {
    font-size: 16px;
  }
}
.home-page section.twin-wrap .tw-card .tw-info .tw-h2 {
  margin-bottom: 24px;
}
.home-page section.twin-wrap .tw-card .tw-info .tw-description {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

.introduction-page section.hero {
  height: calc(100vh - 190px);
  margin-top: 190px;
  width: 100%;
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 810px) {
  .introduction-page section.hero {
    aspect-ratio: auto 8000/4325;
    height: auto;
    margin-top: 0;
    margin-bottom: 80px;
  }
}
.introduction-page section.hero img.hi-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
.introduction-page section.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .introduction-page section.intro {
    margin-bottom: 48px;
  }
}
@media (max-width: 810px) {
  .introduction-page section.intro {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}
.introduction-page section.intro h2 {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .introduction-page section.intro h2 {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .introduction-page section.intro h2 {
    font-size: 20px;
  }
}
.introduction-page section.intro h2 {
  margin-bottom: 36px;
  text-align: center;
}
.introduction-page section.intro h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .introduction-page section.intro h4 {
    font-size: 14px;
  }
}
.introduction-page section.intro h4 {
  margin-bottom: 36px;
  max-width: 540px;
  text-align: center;
}
.introduction-page section.intro p {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .introduction-page section.intro p {
    font-size: 12px;
  }
}

.residences-page section.hero {
  height: 100vh;
  width: 100%;
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 1270px) {
  .residences-page section.hero {
    aspect-ratio: 16/9;
    height: auto;
    margin-top: 190px;
    margin-bottom: 80px;
  }
}
@media (max-width: 810px) {
  .residences-page section.hero {
    margin-top: 0;
  }
}
.residences-page section.hero img.hr-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
.residences-page section.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 96px;
}
@media (max-width: 1270px) {
  .residences-page section.intro {
    padding: 0 24px;
    margin-bottom: 48px;
  }
}
.residences-page section.intro h2 {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .residences-page section.intro h2 {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .residences-page section.intro h2 {
    font-size: 20px;
  }
}
.residences-page section.intro h2 {
  margin-bottom: 36px;
  text-align: center;
}
.residences-page section.intro h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .residences-page section.intro h4 {
    font-size: 14px;
  }
}
.residences-page section.intro h4 {
  max-width: 550px;
  text-align: center;
}
.residences-page section.video {
  margin: 0 auto;
  margin-bottom: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1270px) {
  .residences-page section.video {
    margin-bottom: 48px;
  }
}
@media (max-width: 810px) {
  .residences-page section.video {
    margin-bottom: 80px;
  }
}
.residences-page section.video video {
  width: 100%;
  height: auto;
  max-width: 960px;
  max-height: 480px;
  margin: 0 auto;
  margin-bottom: 60px;
  display: flex;
}
@media (max-width: 1270px) {
  .residences-page section.video video {
    padding: 0 72px;
    max-width: unset;
    max-height: unset;
  }
}
@media (max-width: 810px) {
  .residences-page section.video video {
    padding: 0 24px;
    margin-bottom: 36px;
  }
}
.residences-page section.video .btn-primary {
  margin: 0 auto;
}

.amenities-page section.hero {
  height: calc(100vh - 190px);
  margin-top: 190px;
  width: 100%;
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 1270px) {
  .amenities-page section.hero {
    aspect-ratio: 16/9;
    height: auto;
    margin-bottom: 80px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.hero {
    margin-top: 0;
  }
}
.amenities-page section.hero img.ap-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
.amenities-page section.intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .amenities-page section.intro-wrap {
    padding: 0 72px;
    margin-bottom: 48px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.intro-wrap {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}
@media (max-width: 1270px) {
  .amenities-page section.intro-wrap.two {
    margin-bottom: 60px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.intro-wrap.two {
    margin-bottom: 60px;
  }
}
.amenities-page section.intro-wrap h2 {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .amenities-page section.intro-wrap h2 {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.intro-wrap h2 {
    font-size: 20px;
  }
}
.amenities-page section.intro-wrap h2 {
  margin-bottom: 36px;
  text-align: center;
}
@media (max-width: 810px) {
  .amenities-page section.intro-wrap h2 {
    max-width: 340px;
  }
}
.amenities-page section.intro-wrap h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .amenities-page section.intro-wrap h4 {
    font-size: 14px;
  }
}
.amenities-page section.intro-wrap h4 {
  max-width: 520px;
  text-align: center;
}
.amenities-page section.intro-wrap img.io-img {
  width: 100%;
  height: 100%;
  max-width: 827px;
  max-height: 480px;
  margin-top: 96px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 810px) {
  .amenities-page section.intro-wrap img.io-img {
    aspect-ratio: 16/9;
    margin-top: 48px;
  }
}
.amenities-page section.content-img-full {
  width: 100%;
  height: 100%;
  height: 100%;
  aspect-ratio: 1.87592;
  margin-bottom: 120px;
  background: linear-gradient(90deg, #EEE6D3 25%, rgb(245.106557377, 240.4508196721, 229.393442623) 50%, #EEE6D3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 3s infinite linear;
}
@media (max-width: 1270px) {
  .amenities-page section.content-img-full {
    margin-bottom: 104px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.content-img-full {
    margin-bottom: 80px;
    aspect-ratio: 1.6375;
  }
}
.amenities-page section.content-img-full .ctf-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.amenities-page section.accordion {
  display: flex;
  align-items: center;
  max-width: 1270px;
  margin: 0 auto;
  max-width: 1135px;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .amenities-page section.accordion {
    margin-bottom: 60px;
    flex-direction: column;
    gap: 50px;
  }
}
.amenities-page section.accordion img.a-img {
  height: 100%;
  width: 568px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto 1501/1024;
}
@media (max-width: 1270px) {
  .amenities-page section.accordion img.a-img {
    width: 100%;
    aspect-ratio: 16/9;
    padding: 0 48px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.accordion img.a-img {
    padding: 0 24px;
  }
}
.amenities-page section.accordion .list-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 87px;
}
@media (max-width: 1270px) {
  .amenities-page section.accordion .list-wrap {
    width: 100%;
    padding: 0 48px;
    margin-left: 0;
  }
}
@media (max-width: 810px) {
  .amenities-page section.accordion .list-wrap {
    max-width: 480px;
    padding: 0 24px;
  }
}
.amenities-page section.accordion .list-wrap .list-bar {
  overflow: hidden;
  border-bottom: solid #B59060 1px;
}
@media (max-width: 1270px) {
  .amenities-page section.accordion .list-wrap .list-bar {
    max-width: 480px;
  }
}
.amenities-page section.accordion .list-wrap .list-bar.opened {
  grid-template-rows: 1fr;
  height: -moz-fit-content;
  height: fit-content;
}
.amenities-page section.accordion .list-wrap .list-bar.opened .l-title img.chev {
  transform: rotate(180deg);
}
.amenities-page section.accordion .list-wrap .list-bar.opened .l-content {
  grid-template-rows: 1fr;
}
.amenities-page section.accordion .list-wrap .list-bar .l-title {
  height: 46px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  cursor: pointer;
}
.amenities-page section.accordion .list-wrap .list-bar .l-title h3 {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 21px;
  line-height: 1.2em;
  letter-spacing: 0.07em;
}
@media (max-width: 1270px) {
  .amenities-page section.accordion .list-wrap .list-bar .l-title h3 {
    font-size: 18px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.accordion .list-wrap .list-bar .l-title h3 {
    font-size: 16px;
  }
}
.amenities-page section.accordion .list-wrap .list-bar .l-title h3 {
  text-transform: uppercase;
}
.amenities-page section.accordion .list-wrap .list-bar .l-title img.chev {
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform ease-in-out 0.3s;
}
.amenities-page section.accordion .list-wrap .list-bar .l-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.amenities-page section.accordion .list-wrap .list-bar .l-content ul {
  margin-bottom: 20px;
  overflow: hidden;
}
.amenities-page section.accordion .list-wrap .list-bar .l-content ul li h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .amenities-page section.accordion .list-wrap .list-bar .l-content ul li h4 {
    font-size: 14px;
  }
}
.amenities-page section.accordion .list-wrap .list-bar .l-content ul li h4 {
  color: #B59060;
}
.amenities-page section.content-img-half-right {
  display: flex;
  max-width: 1135px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .amenities-page section.content-img-half-right {
    padding: 0 40px;
    margin-bottom: 104px;
  }
  .amenities-page section.content-img-half-right.two {
    margin-bottom: 60px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.content-img-half-right {
    padding: 0 24px;
    margin-bottom: 80px;
  }
  .amenities-page section.content-img-half-right.two {
    margin-bottom: 60px;
  }
}
.amenities-page section.content-img-half-right img.cth-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 827px;
  max-height: 480px;
  margin-left: auto;
}
@media (max-width: 1270px) {
  .amenities-page section.content-img-half-right img.cth-img {
    aspect-ratio: 16/10.5;
    max-width: 100%;
    max-height: unset;
    margin-left: unset;
  }
}
.amenities-page section.content-img-half-left {
  display: flex;
  max-width: 1135px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .amenities-page section.content-img-half-left {
    padding: 0 40px;
    margin-bottom: 60px;
  }
}
@media (max-width: 810px) {
  .amenities-page section.content-img-half-left {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}
.amenities-page section.content-img-half-left img.cthl-img {
  height: 100%;
  width: 568px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: auto 1501/1024;
}
@media (max-width: 1270px) {
  .amenities-page section.content-img-half-left img.cthl-img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.location-page section.hero {
  height: calc(100vh - 190px);
  margin-top: 190px;
  width: 100%;
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 1270px) {
  .location-page section.hero {
    aspect-ratio: 16/9;
    height: auto;
    margin-bottom: 80px;
  }
}
@media (max-width: 810px) {
  .location-page section.hero {
    margin-top: 0;
  }
}
.location-page section.hero img.ap-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
.location-page section.intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .location-page section.intro-wrap {
    padding: 0 72px;
  }
}
@media (max-width: 810px) {
  .location-page section.intro-wrap {
    padding: 0 48px;
    margin-bottom: 80px;
  }
}
.location-page section.intro-wrap h2 {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .location-page section.intro-wrap h2 {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .location-page section.intro-wrap h2 {
    font-size: 20px;
  }
}
.location-page section.intro-wrap h2 {
  margin-bottom: 36px;
  text-align: center;
}
@media (max-width: 810px) {
  .location-page section.intro-wrap h2 {
    max-width: 340px;
  }
}
.location-page section.intro-wrap h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .location-page section.intro-wrap h4 {
    font-size: 14px;
  }
}
.location-page section.intro-wrap h4 {
  max-width: 600px;
  text-align: center;
}
.location-page section.map-wrap {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.location-page section.map-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.location-page section.map-wrap .img-desktop {
  display: flex;
  aspect-ratio: auto 8001/4266;
}
.location-page section.map-wrap .img-mobile {
  display: none;
}
.location-page section.map-wrap {
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .location-page section.map-wrap {
    margin-bottom: 60px;
  }
}
@media (max-width: 810px) {
  .location-page section.map-wrap {
    margin-bottom: 48px;
  }
}
@media (max-width: 680px) {
  .location-page section.map-wrap .img-desktop {
    display: none;
  }
  .location-page section.map-wrap .img-mobile {
    display: flex;
  }
}
.location-page section.gallery .row {
  max-width: 1150px;
  margin: 0 auto;
  margin-bottom: 120px;
  display: flex;
}
@media (max-width: 1270px) {
  .location-page section.gallery .row {
    margin-bottom: 60px;
    padding: 0 48px;
  }
}
@media (max-width: 810px) {
  .location-page section.gallery .row {
    padding: 0 24px;
  }
}
.location-page section.gallery .row img {
  width: 100%;
}
.location-page section.gallery .row.one .card {
  aspect-ratio: auto 1536/1024;
  width: 752px;
  height: auto;
}
@media (max-width: 1270px) {
  .location-page section.gallery .row.one .card {
    width: 100%;
  }
}
@media (max-width: 810px) {
  .location-page section.gallery .row.one .card {
    width: 80%;
  }
}
.location-page section.gallery .row.one img {
  margin-bottom: 10px;
}
.location-page section.gallery .row.two {
  justify-content: end;
}
.location-page section.gallery .row.two .card {
  aspect-ratio: auto 1573/1024;
  width: 567px;
  height: auto;
}
@media (max-width: 1270px) {
  .location-page section.gallery .row.two .card {
    width: 100%;
  }
}
@media (max-width: 810px) {
  .location-page section.gallery .row.two .card {
    width: 60%;
  }
}
.location-page section.gallery .row.two img {
  margin-bottom: 10px;
}
.location-page section.gallery .row.three .card {
  aspect-ratio: auto 1024/1246;
  width: 431px;
  height: auto;
}
@media (max-width: 1270px) {
  .location-page section.gallery .row.three .card {
    width: 100%;
  }
}
@media (max-width: 810px) {
  .location-page section.gallery .row.three .card {
    width: 60%;
  }
}
.location-page section.gallery .row.three img {
  margin-bottom: 10px;
}
.location-page section.gallery .row.four {
  justify-content: end;
}
.location-page section.gallery .row.four .card {
  aspect-ratio: auto 1540/1024;
  width: 752px;
  height: auto;
}
@media (max-width: 1270px) {
  .location-page section.gallery .row.four .card {
    width: 100%;
  }
}
@media (max-width: 810px) {
  .location-page section.gallery .row.four .card {
    width: 80%;
  }
}
.location-page section.gallery .row.four img {
  margin-bottom: 10px;
}
.location-page section.gallery .row h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .location-page section.gallery .row h4 {
    font-size: 14px;
  }
}
.location-page section.gallery .row h4 {
  color: #000000;
  width: -moz-fit-content;
  width: fit-content;
}

.teams-page section.hero {
  height: calc(100vh - 190px);
  margin-top: 190px;
  width: 100%;
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 1270px) {
  .teams-page section.hero {
    aspect-ratio: 16/9;
    height: auto;
    margin-bottom: 80px;
  }
}
@media (max-width: 810px) {
  .teams-page section.hero {
    margin-top: 0;
  }
}
.teams-page section.hero img.ap-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
.teams-page section.intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 240px;
}
@media (max-width: 1270px) {
  .teams-page section.intro-wrap {
    padding: 0 72px;
    margin-bottom: 108px;
  }
}
@media (max-width: 810px) {
  .teams-page section.intro-wrap {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}
.teams-page section.intro-wrap h2 {
  font-family: "MO-Exceptional", serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (max-width: 1270px) {
  .teams-page section.intro-wrap h2 {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .teams-page section.intro-wrap h2 {
    font-size: 20px;
  }
}
.teams-page section.intro-wrap h2 {
  margin-bottom: 36px;
  text-align: center;
}
@media (max-width: 810px) {
  .teams-page section.intro-wrap h2 {
    max-width: 340px;
  }
}
.teams-page section.intro-wrap h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .teams-page section.intro-wrap h4 {
    font-size: 14px;
  }
}
.teams-page section.intro-wrap h4 {
  max-width: 600px;
  text-align: center;
}
.teams-page section.accupation {
  max-width: 1150px;
  margin: 0 auto;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  gap: 87px;
}
@media (max-width: 1270px) {
  .teams-page section.accupation {
    gap: 48px;
    margin-bottom: 60px;
    padding: 0 48px;
    flex-direction: column;
  }
}
@media (max-width: 810px) {
  .teams-page section.accupation {
    padding: 0 24px;
  }
}
.teams-page section.accupation.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1270px) {
  .teams-page section.accupation.reverse {
    flex-direction: column;
  }
  .teams-page section.accupation.reverse .info {
    max-width: 100%;
  }
}
.teams-page section.accupation img {
  width: 568px;
  min-width: 568px;
  height: 369px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 810px) {
  .teams-page section.accupation img {
    aspect-ratio: 1.5393;
    height: auto;
    width: 100%;
    min-width: 100%;
  }
}
.teams-page section.accupation .info {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1270px) {
  .teams-page section.accupation .info {
    max-width: 480px;
  }
}
.teams-page section.accupation .info .tag {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .teams-page section.accupation .info .tag {
    font-size: 12px;
  }
}
.teams-page section.accupation .info .tag {
  color: #B59060;
  margin-bottom: 24px;
}
.teams-page section.accupation .info .i-title {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.2em;
  letter-spacing: 0;
}
@media (max-width: 1270px) {
  .teams-page section.accupation .info .i-title {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .teams-page section.accupation .info .i-title {
    font-size: 20px;
  }
}
.teams-page section.accupation .info .i-title {
  color: #B59060;
  margin-bottom: 24px;
}
.teams-page section.accupation .info .i-desc, .teams-page section.accupation .info .i-desc-extra {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #000000;
}
.teams-page section.accupation .info .i-desc-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
}
.teams-page section.accupation .info .i-desc-extra.opened {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease;
}
.teams-page section.accupation .info .btn-wrap {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.teams-page section.accupation .info .btn-wrap .dot {
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #B59060;
}
.teams-page section.accupation .info .btn-wrap .more-trigger {
  cursor: pointer;
}
.teams-page section.content-img-full {
  width: 100%;
  height: 100%;
  height: 100%;
  aspect-ratio: 1.87592;
  margin-bottom: 120px;
  background: linear-gradient(90deg, #EEE6D3 25%, rgb(245.106557377, 240.4508196721, 229.393442623) 50%, #EEE6D3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 3s infinite linear;
}
@media (max-width: 1270px) {
  .teams-page section.content-img-full {
    margin-bottom: 60px;
  }
}
@media (max-width: 810px) {
  .teams-page section.content-img-full {
    margin-bottom: 80px;
    aspect-ratio: 1.6375;
  }
}
.teams-page section.content-img-full .ctf-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teams-page section.jobdesk {
  max-width: 1150px;
  margin: 0 auto;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  gap: 87px;
}
@media (max-width: 1270px) {
  .teams-page section.jobdesk {
    gap: 48px;
    margin-bottom: 60px;
    padding: 0 48px;
    flex-direction: column;
  }
}
@media (max-width: 810px) {
  .teams-page section.jobdesk {
    padding: 0 24px;
  }
}
.teams-page section.jobdesk img {
  width: 568px;
  min-width: 568px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1270px) {
  .teams-page section.jobdesk img {
    aspect-ratio: auto 786/1120;
    height: auto;
  }
}
@media (max-width: 810px) {
  .teams-page section.jobdesk img {
    width: 100%;
    min-width: 100%;
  }
}
.teams-page section.jobdesk .info {
  display: flex;
  flex-direction: column;
}
.teams-page section.jobdesk .info .tag {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 125%;
}
@media (max-width: 1270px) {
  .teams-page section.jobdesk .info .tag {
    font-size: 12px;
  }
}
.teams-page section.jobdesk .info .tag {
  color: #B59060;
  margin-bottom: 24px;
}
.teams-page section.jobdesk .info .i-title {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 30px;
  line-height: 1.2em;
  letter-spacing: 0;
}
@media (max-width: 1270px) {
  .teams-page section.jobdesk .info .i-title {
    font-size: 24px;
  }
}
@media (max-width: 810px) {
  .teams-page section.jobdesk .info .i-title {
    font-size: 20px;
  }
}
.teams-page section.jobdesk .info .i-title {
  color: #B59060;
  margin-bottom: 24px;
}
.teams-page section.jobdesk .info .i-desc {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #000000;
}
.teams-page section.slide-show {
  max-width: 1060px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media (max-width: 1270px) {
  .teams-page section.slide-show {
    gap: 48px;
    margin-bottom: 60px;
    padding: 0 48px;
    flex-direction: column;
  }
}
@media (max-width: 810px) {
  .teams-page section.slide-show {
    padding: 0 24px;
    margin-bottom: 120px;
  }
}
.teams-page section.slide-show .ss-title {
  font-family: "Futura-Medium", sans-serif;
  color: #B59060;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0.03em;
}
@media (max-width: 1270px) {
  .teams-page section.slide-show .ss-title {
    font-size: 16px;
  }
}
@media (max-width: 810px) {
  .teams-page section.slide-show .ss-title {
    font-size: 14px;
  }
}
.teams-page section.slide-show .ss-title {
  text-align: center;
  margin-bottom: 20px;
}
.teams-page section.slide-show .slide-wrap {
  display: flex;
  position: relative;
}
.teams-page section.slide-show .slide-wrap .chev {
  min-width: 24px;
  height: 24px;
  position: absolute;
  height: 100%;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.teams-page section.slide-show .slide-wrap .chev.left {
  left: -40px;
}
.teams-page section.slide-show .slide-wrap .chev.right {
  right: -40px;
}
.teams-page section.slide-show .slide-wrap .card-cup {
  width: 1060px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.teams-page section.slide-show .slide-wrap .card-cup .card {
  width: 1060px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #FFFFFF;
}
.teams-page section.slide-show .slide-wrap .card-cup .card.show {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
}
.teams-page section.slide-show .slide-wrap .card-cup .card img {
  aspect-ratio: auto 1478/1024;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
.teams-page section.slide-show .slide-wrap .card-cup .card h4 {
  font-family: "Avenir-Regular", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
@media (max-width: 1270px) {
  .teams-page section.slide-show .slide-wrap .card-cup .card h4 {
    font-size: 14px;
  }
}
.teams-page section.slide-show .slide-wrap .card-cup .card h4 {
  text-align: center;
}/*# sourceMappingURL=custom.css.map */