@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
button {
  outline: none;
  border: none;
}
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.container {
  padding: 0 20px;
}

* {
  font-family: "Poppins", "sans-serif";
}

body {
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background-color: transparent;
  padding: 20px 0;
  transition: background-color 0.25s ease;
}
.navbar.open {
  background-color: #fff;
}
.navbar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar-logo img {
  height: 38.62px;
}
.navbar-navs {
  display: none;
}
.navbar-hamburger {
  width: 18px;
  height: 14px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: transparent;
  cursor: pointer;
}
.navbar-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #131F39;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.navbar-hamburger span:nth-child(1) {
  top: 0px;
}
.navbar-hamburger span:nth-child(2), .navbar-hamburger span:nth-child(3) {
  top: 7px;
}
.navbar-hamburger span:nth-child(4) {
  top: 14px;
}
.navbar-hamburger.open span:nth-child(1) {
  top: 7px;
  width: 0%;
  left: 50%;
}
.navbar-hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar-hamburger.open span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}
.navbar-mobile-navs {
  visibility: hidden;
  transition-delay: 50ms;
  transition-duration: 0.25s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  background: #faf9f3;
  opacity: 0;
  height: 0;
  width: 100vw;
  padding: 0;
}
.navbar-mobile-navs.open {
  opacity: 1;
  visibility: visible;
  height: 100vh;
  padding: 30px 20px;
  margin-top: 22px;
}
.navbar-mobile-navs-item {
  width: 100%;
  margin-bottom: 22px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  border-radius: 15px;
  font-weight: 500;
  color: #000;
  padding: 14px 22px;
  background: #eaddc5;
  align-items: center;
  display: flex;
}
.navbar-mobile-navs-item i {
  margin-right: 15px;
  font-size: 18px;
}
.navbar-mobile-navs-item:hover {
  text-decoration: none;
  color: #000;
}

@media (min-width: 600px) {
  .navbar {
    padding: 26px 0;
  }
  .navbar-logo img {
    height: 50px;
  }
  .navbar-hamburger {
    width: 25px;
    height: 22px;
  }
  .navbar-hamburger span {
    height: 2px;
  }
  .navbar-hamburger span:nth-child(2), .navbar-hamburger span:nth-child(3) {
    top: 9px;
  }
  .navbar-hamburger span:nth-child(4) {
    top: 18px;
  }
  .navbar-hamburger.open span:nth-child(1) {
    top: 9px;
  }
  .navbar-hamburger.open span:nth-child(4) {
    top: 9px;
  }
  .navbar-mobile-navs.open {
    padding: 40px 30px;
    margin-top: 30px;
  }
  .navbar-mobile-navs-item {
    margin-bottom: 30px;
    font-size: 18px;
    border-radius: 20px;
    padding: 18px 25px;
  }
  .navbar-mobile-navs-item i {
    margin-right: 20px;
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .navbar {
    padding: 16px 0;
  }
  .navbar-logo img {
    height: 38.62px;
  }
  .navbar-hamburger {
    display: none;
  }
  .navbar-navs {
    display: block;
  }
  .navbar-navs-item {
    margin-left: 25px;
    font-size: 13px;
    color: #131F39;
    margin-bottom: 0;
    font-weight: 600;
    transition: 0.15s;
  }
  .navbar-navs-item:hover {
    text-decoration: none;
    color: #000;
  }
}
@media (min-width: 1240px) {
  .navbar {
    padding: 33px 0;
    align-items: center;
  }
  .navbar-logo img {
    height: 70px;
    transition: 0.3s;
  }
  .navbar-navs-item {
    margin-left: 45px;
    font-weight: 500;
    font-size: 17px;
    transition: 0.3s;
  }
  .navbar.scrolled {
    padding: 16px 0;
  }
  .navbar.scrolled .navbar-logo img {
    height: 45px;
  }
  .navbar.scrolled .navbar-navs-item {
    margin-left: 35px;
    font-weight: 500;
    font-size: 15px;
  }
}
@media (min-width: 1800px) {
  .navbar-logo img {
    height: 82px;
  }
  .navbar-navs-item {
    margin-left: 52px;
    font-size: 19px;
  }
  .navbar.scrolled {
    padding: 22px 0;
  }
  .navbar.scrolled .navbar-logo img {
    height: 55px;
  }
  .navbar.scrolled .navbar-navs-item {
    margin-left: 42px;
    font-size: 17px;
  }
}
.footer {
  background: #131F39;
  padding: 36.5px 0;
  color: #fff;
}
.footer h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 0px;
  text-transform: uppercase;
  margin-bottom: 27px;
}
.footer .alamat h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
}
.footer .alamat p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 0px;
  text-transform: capitalize;
  color: #87A5AC;
}
.footer hr {
  margin: 30px 0;
  padding: 0;
  border: 2px solid #87A5AC;
}
.footer .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.footer .info-row i {
  font-size: 13px;
  margin-right: 15px;
}
.footer .info-row p {
  font-size: 14px;
  margin-bottom: 0;
}
.footer .info-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .footer {
    padding: 45px 0;
  }
  .footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer > div .info-col {
    display: flex;
  }
  .footer > div .info-col > div {
    margin-left: 15px;
  }
  .footer hr {
    display: none;
  }
  .footer h3 {
    margin-bottom: 25px;
  }
  .footer .alamat h5 {
    margin-bottom: 5px;
  }
  .footer .alamat p {
    margin-top: 0;
    line-height: 14px;
    margin-bottom: 0;
  }
  .footer .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
  }
  .footer .info-row i {
    font-size: 13px;
    margin-right: 15px;
  }
  .footer .info-row p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .footer .info-row:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1800px) {
  .footer {
    padding: 55px 0;
  }
  .footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer > div .info-col {
    display: flex;
  }
  .footer > div .info-col > div {
    margin-left: 15px;
  }
  .footer h3 {
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 600;
  }
  .footer .alamat h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .footer .alamat p {
    margin-top: 0;
    font-size: 15px;
    margin-bottom: 0;
  }
  .footer .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 15px;
  }
  .footer .info-row i {
    font-size: 15px;
    margin-right: 15px;
  }
  .footer .info-row p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .footer .info-row:last-child {
    margin-bottom: 0;
  }
}
.p-index section {
  width: 100%;
}
.p-index section .section-title {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  margin-bottom: 20px;
}
.p-index section .section-title::after {
  content: "";
  width: 73px;
  height: 4px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: calc(-73px / 2);
  background: #D5BD8D;
  border-radius: 2px;
}
.p-index .hero {
  width: 100vw;
  height: 592px;
  padding-top: 122px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}
.p-index .hero-background {
  background-image: url("../images/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 110vw;
  position: absolute;
  top: 0;
  left: -5vw;
  border-radius: 0% 0% 50% 50%/94% 94% 6% 6%;
  height: 520px;
  z-index: 4;
}
.p-index .hero-headline {
  position: relative;
  z-index: 10;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
  color: #262C38;
  margin: 40px 0;
}
.p-index .hero-logo {
  position: relative;
  z-index: 10;
  width: 172px;
  height: 172px;
  margin: 0 auto;
}
.p-index .hero-logo img {
  width: 100%;
}
.p-index .hero-indicator {
  position: relative;
  z-index: 10;
  -moz-animation: bounce 0.8s infinite linear;
  -o-animation: bounce 0.8s infinite linear;
  -webkit-animation: bounce 0.8s infinite linear;
  animation: bounce 0.8s infinite linear;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}
.p-index .hero-indicator p {
  font-weight: 600;
  font-size: 13.3px;
  line-height: 21px;
  text-align: center;
  margin-bottom: 0;
  color: #262C38;
}
.p-index .hero-indicator i {
  color: #262C38;
  line-height: 37px;
  font-size: 33px;
}
.p-index .hero-layer {
  height: 555px;
  position: absolute;
  background: #D5BD8D;
  width: 110vw;
  position: absolute;
  top: 0;
  left: -5vw;
  z-index: 3;
  box-shadow: 0px 21.84px 15px rgba(14, 13, 13, 0.13);
  border-radius: 0% 0% 50% 50%/93.5% 93.5% 6.5% 6.5%;
}
.p-index .hero-curves {
  width: 110vw;
  position: absolute;
  z-index: 5;
  top: 0;
  left: -5vw;
  border-radius: 0% 0% 50% 50%/94% 94% 6% 6%;
  height: 520px;
  background: linear-gradient(179.07deg, rgba(255, 255, 255, 0.5) 81.82%, rgba(0, 0, 0, 0) 134.73%);
}
.p-index .video {
  margin-top: 30px;
}
.p-index .video iframe {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  border-radius: 12px;
}
.p-index .why-us {
  padding: 50px 15px;
  margin-top: 50px;
  background: #F8F7F7;
}
.p-index .why-us-head-sect {
  margin: 60px 0;
}
.p-index .why-us-head-sect-image {
  display: none;
}
.p-index .why-us-head-sect-text {
  width: 100%;
  text-align: center;
}
.p-index .why-us-head-sect-text img {
  width: 186px;
  margin-bottom: 40px;
}
.p-index .why-us-head-sect-text h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 22px;
}
.p-index .why-us-head-sect-text p {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #828282;
  margin-bottom: 22px;
}
.p-index .why-us-head-sect-text h5 {
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #828282;
}
.p-index .why-us-body-sect {
  margin-top: 60px;
}
.p-index .why-us-body-sect-image {
  display: grid;
  column-gap: 12px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.p-index .why-us-body-sect-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.p-index .why-us-body-sect-image img.full {
  height: 250px;
}
.p-index .why-us-body-sect-image img.half {
  height: 119px;
}
.p-index .why-us-body-sect-image img.half:first-child {
  margin-bottom: 12px;
}
.p-index .why-us-body-sect-text {
  width: 100%;
  text-align: center;
}
.p-index .why-us-body-sect-text hr {
  margin: 22px 0;
  padding: 0;
  border: 1px solid #D7CFCF;
}
.p-index .why-us-body-sect-text p {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #828282;
  margin-bottom: 22px;
}
.p-index .why-us-body-sect-text h5 {
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #828282;
}
.p-index .location {
  padding-top: 50px;
}
.p-index .location-map {
  margin-top: 40px;
  margin-bottom: 35px;
}
.p-index .location-map .map {
  width: 100%;
  margin-bottom: 35px;
}
.p-index .location-map-legenda {
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
}
.p-index .location-map-legenda .legenda-icon {
  flex: 0 0 40px;
}
.p-index .location-map-legenda .legenda-icon img {
  width: 40px;
  height: 40px;
}
.p-index .location-map-legenda .legenda-column {
  margin-left: 20px;
}
.p-index .location-map-legenda .legenda-column.dashed .legenda-row-line {
  border-style: dashed;
  border-bottom: none;
  border-right: none;
  border-left: none;
}
.p-index .location-map-legenda .legenda-title {
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  color: #000000;
  margin-bottom: 10px;
}
.p-index .location-map-legenda .legenda-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.p-index .location-map-legenda .legenda-row-line {
  border-top: 2px solid #87A5AC;
  height: 0;
  width: 24px;
}
.p-index .location-map-legenda .legenda-row-line.gold {
  border-color: #D5BD8D !important;
}
.p-index .location-map-legenda .legenda-row-line.dark {
  border-color: #131F39 !important;
}
.p-index .location-map-legenda .legenda-row-title {
  margin-bottom: 0;
  margin-left: 8px;
  font-weight: 500;
  font-size: 9px;
  line-height: 15px;
  color: #000000;
}
.p-index .location-map-legenda .legenda-row:last-child {
  margin-bottom: 0;
}
.p-index .location-feature {
  padding: 0 42px;
}
.p-index .location-feature-row {
  margin-bottom: 25px;
}
.p-index .location-feature-row:last-child {
  margin-bottom: 0;
}
.p-index .location-feature-row__head {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
.p-index .location-feature-row__head .icon {
  width: 32px;
  height: 32px;
  background: #D3000D;
  border-radius: 32.3325px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-index .location-feature-row__head .icon img {
  width: 15px;
}
.p-index .location-feature-row__head h5 {
  margin-bottom: 0;
  margin-left: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
}
.p-index .location-feature-row p {
  font-size: 12px;
  line-height: 20px;
}
.p-index .location hr {
  margin: 35px 20px;
}
.p-index .carousel-section {
  margin: 50px 0;
}
.p-index .carousel-section .swiper {
  margin-top: 40px;
}
.p-index .carousel-section .swiper-button-next, .p-index .carousel-section .swiper-button-prev {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #000;
  opacity: 0.6;
}
.p-index .carousel-section .swiper-button-next::after, .p-index .carousel-section .swiper-button-prev::after {
  font-size: 15px;
  color: #fff;
}
.p-index .carousel-section .swiper-button-next {
  right: -10px;
}
.p-index .carousel-section .swiper-button-prev {
  left: -10px;
}
.p-index .carousel-section .swiper-slide .card-cover-unit {
  height: 215px;
  padding: 61px 52px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: none;
}
.p-index .carousel-section .swiper-slide .card-cover-unit:first-child {
  display: block;
}
.p-index .carousel-section .swiper-slide .card-cover-unit-layer {
  top: 0;
  left: 0;
  height: 215px;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  opacity: 0.8;
  box-shadow: inset 0px 0px 37px 135px rgba(0, 0, 0, 0.25);
}
.p-index .carousel-section .swiper-slide .card-cover-unit h3 {
  position: relative;
  z-index: 10;
  font-family: "Roboto", "sans-serif";
  font-style: normal;
  font-weight: bold;
  font-size: 46px;
  color: #fff;
  line-height: 64px;
  margin-bottom: 9px;
}
.p-index .carousel-section .swiper-slide .card-cover-unit h5 {
  position: relative;
  z-index: 10;
  font-weight: 600;
  font-size: 20px;
  line-height: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
.p-index .carousel-section .swiper-slide .card-cover-unit i {
  line-height: 12px;
  position: relative;
  z-index: 10;
  margin-left: 8px;
  color: #fff;
  font-size: 24px;
}
.p-index .carousel-section .swiper-slide .card-cover-facilities {
  height: 215px;
  background-size: cover;
  background-position: center;
  padding: 38px 27px;
  position: relative;
  border-radius: 10px;
}
.p-index .carousel-section .swiper-slide .card-cover-facilities-layer {
  top: 0;
  left: 0;
  height: 215px;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  opacity: 0.9;
}
.p-index .carousel-section .swiper-slide .card-cover-facilities-content {
  position: absolute;
  left: 27px;
  z-index: 10;
  bottom: 38px;
}
.p-index .carousel-section .swiper-slide .card-cover-facilities p {
  font-size: 13.057px;
  margin-bottom: 5px;
  line-height: 14px;
  position: relative;
  color: #fff;
  z-index: 10;
}
.p-index .carousel-section .swiper-slide .card-cover-facilities h3 {
  font-weight: 500;
  font-size: 26.114px;
  line-height: 30px;
  letter-spacing: -0.68322px;
  color: #FFFFFF;
  margin-bottom: 0;
}
.p-index .carousel-section .swiper-pagination-bullet {
  background: #fff;
}
.p-index .modalUnitDetail .modal-dialog .modal-content {
  border-radius: 1rem;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body {
  padding: 16px 20px;
  position: relative;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body section {
  margin: 15px 0;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body .unit-footer {
  text-align: center;
  width: 100%;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body .unit-footer h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 63px;
  color: #6D5C5C;
  margin-bottom: 0;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body .unit-footer h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6D5C5C;
  margin-bottom: 0;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body .close {
  padding: 0;
  position: absolute;
  right: 1.5rem;
  background: #fff;
  z-index: 1098765;
  top: 1.5rem;
}
.p-index .modalUnitDetail .modal-dialog .modal-content .modal-body .close i {
  font-size: 22px;
}

@media (min-width: 600px) {
  .p-index .hero {
    padding-top: 90px;
    height: 470px;
  }
  .p-index .hero-background {
    height: 405px;
    z-index: 4;
    border-radius: 0% 0% 50% 50%/87% 87% 13% 13%;
  }
  .p-index .hero-headline {
    font-size: 22px;
    margin: 22px 0;
  }
  .p-index .hero-logo {
    width: 150px;
    height: 150px;
  }
  .p-index .hero-layer {
    z-index: 2;
    height: 420px;
    border-radius: 0% 0% 50% 50%/87% 87% 13% 13%;
  }
  .p-index .hero-curves {
    z-index: 5;
    height: 405px;
    border-radius: 0% 0% 50% 50%/87% 87% 13% 13%;
  }
  .p-index .hero-curves-2 {
    width: 800px;
    left: calc(50vw - 400px);
    height: 800px;
    top: -360px;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    background: #D5BD8D;
    box-shadow: 0px 21.84px 15px rgba(14, 13, 13, 0.13);
  }
  .p-index .video iframe {
    max-width: 700px;
    margin-left: calc(50% - 350px);
  }
  .p-index .why-us-head-sect {
    width: 60%;
    margin: 60px auto;
  }
  .p-index .why-us-body-sect {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-index .why-us-body-sect > div {
    display: grid;
    grid-template-columns: 2fr 3fr;
    column-gap: 30px;
  }
  .p-index .why-us-body-sect hr {
    display: none;
  }
  .p-index .location {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-index .location-map {
    display: grid;
    grid-template-columns: 6fr 4fr;
  }
  .p-index .location-map .map {
    border-radius: 15px;
  }
  .p-index .location-map-legenda {
    padding-left: 0;
    padding-right: 0;
  }
  .p-index .location-map-legenda .legenda-icon {
    flex: 0 0 50px;
  }
  .p-index .location-map-legenda .legenda-icon img {
    width: 50px;
    height: 50px;
  }
  .p-index .location-map-legenda .legenda-column {
    margin-left: 26px;
  }
  .p-index .location-map-legenda .legenda-title {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 12px;
  }
  .p-index .location-map-legenda .legenda-row {
    margin-bottom: 7px;
  }
  .p-index .location-map-legenda .legenda-row-line {
    width: 28px;
  }
  .p-index .location-map-legenda .legenda-row-title {
    margin-left: 12px;
    font-size: 10px;
  }
  .p-index .location-feature {
    padding: 0 30px;
    padding-right: 0;
  }
  .p-index .location-feature-row {
    margin-bottom: 20px;
  }
  .p-index .location-feature-row__head .icon {
    width: 26px;
    height: 26px;
  }
  .p-index .location-feature-row__head .icon img {
    width: 13px;
  }
  .p-index .location-feature-row__head h5 {
    font-size: 14px;
  }
  .p-index .location hr {
    display: none;
  }
  .p-index .carousel-section {
    margin: 50px 0;
  }
  .p-index .carousel-section .swiper {
    margin-top: 40px;
  }
  .p-index .carousel-section .swiper-button-next, .p-index .carousel-section .swiper-button-prev {
    opacity: 0;
  }
  .p-index .carousel-section .swiper-button-next {
    right: -10px;
  }
  .p-index .carousel-section .swiper-button-prev {
    left: -10px;
  }
  .p-index .carousel-section .swiper-slide .card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit {
    display: block;
    padding: 60px 36px;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit i {
    display: none;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit:first-child {
    grid-column: 1/4;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit:nth-child(2) {
    grid-column: 4/7;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit:nth-child(3) {
    grid-column: 1/3;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit:nth-child(4) {
    grid-column: 3/5;
  }
  .p-index .carousel-section .swiper-slide .card-grid .card-cover-unit:nth-child(5) {
    grid-column: 5/7;
  }
  .p-index .carousel-section .swiper-pagination {
    bottom: 10px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: fit-content;
    border-radius: 20px;
    padding: 4px 20px;
    background: #131F39;
    box-shadow: 0 0.1rem 0.7rem #61648d60;
  }
  .p-index .carousel-section .swiper-pagination-bullet {
    background: #fff;
    width: 9px;
    height: 9px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper {
    display: grid;
    transform: translate3d(0px, 0px, 0px) !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(2) {
    grid-column: 1/4;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(2) .card-cover-facilities p {
    order: 1;
    margin-bottom: 8px;
    margin-top: 0;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(2) .card-cover-facilities h3 {
    order: 2;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(3) {
    grid-column: 4/7;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(4), .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(7) {
    grid-column: 1/3;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(5), .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(8) {
    grid-column: 3/5;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(6), .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide:nth-child(9) {
    grid-column: 5/7;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities-content {
    left: 20px;
    bottom: 22px;
    display: flex;
    flex-wrap: wrap;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities p {
    width: 100%;
    order: 2;
    margin-bottom: 0;
    margin-top: 8px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities h3 {
    font-size: 21px;
    width: 100%;
    line-height: 24px;
    order: 1;
  }
  .p-index .carousel-section.facilities .swiper-pagination, .p-index .carousel-section.facilities .swiper-slide-duplicate {
    display: none;
  }
}
@media (min-width: 1240px) {
  .p-index section .section-title {
    font-size: 21px;
    line-height: 32px;
  }
  .p-index section .section-title::after {
    bottom: -15px;
    width: 85px;
    margin-left: calc(-85px / 2);
  }
  .p-index .hero {
    padding-top: 180px;
    height: 700px;
  }
  .p-index .hero-background {
    width: 140vw;
    left: -20vw;
    height: 610px;
    z-index: 4;
    border-radius: 0% 0% 50% 50%/0% 0% 100% 100%;
  }
  .p-index .hero-headline {
    font-size: 36px;
    margin: 55px 0;
  }
  .p-index .hero-logo {
    width: 172px;
    height: 172px;
  }
  .p-index .hero-layer {
    width: 140vw;
    left: -20vw;
    z-index: 2;
    height: 621px;
    border-radius: 0% 0% 50% 50%/2% 2% 98% 98%;
  }
  .p-index .hero-curves {
    width: 140vw;
    left: -20vw;
    z-index: 5;
    height: 610px;
    border-radius: 0% 0% 50% 50%/0% 0% 100% 100%;
  }
  .p-index .hero-curves-2 {
    width: 110vw;
    left: calc(50vw - 55vw);
    height: 110vw;
    top: calc(-110vw + 617px + 38px);
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    background: #D5BD8D;
    box-shadow: 0px 21.84px 15px rgba(14, 13, 13, 0.13);
  }
  .p-index .video {
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .p-index .video iframe {
    margin-top: 30px;
    max-width: none;
    margin-left: 0;
  }
  .p-index .why-us-head-sect {
    width: 100%;
  }
  .p-index .why-us-head-sect > div {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .p-index .why-us-head-sect-image {
    padding-right: 30px;
    border-right: 1px solid #ddd;
    display: grid;
    column-gap: 30px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .p-index .why-us-head-sect-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  .p-index .why-us-head-sect-image img.full {
    height: 350px;
  }
  .p-index .why-us-head-sect-image img.half {
    height: 260px;
  }
  .p-index .why-us-head-sect-image img.half:first-child {
    margin-bottom: 30px;
  }
  .p-index .why-us-head-sect-image img.half:last-child {
    height: 140px;
  }
  .p-index .why-us-body-sect {
    max-width: none;
  }
  .p-index .why-us-body-sect > div {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .p-index .why-us-body-sect-image {
    padding-right: 30px;
    border-right: 1px solid #ddd;
    display: grid;
    column-gap: 26px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .p-index .why-us-body-sect-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  .p-index .why-us-body-sect-image img.full {
    height: 350px;
  }
  .p-index .why-us-body-sect-image img.half {
    height: 160px;
  }
  .p-index .why-us-body-sect-image img.half:first-child {
    margin-bottom: 26px;
  }
  .p-index .location {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-index .location-map {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 7fr 3fr;
  }
  .p-index .location-map-legenda .legenda-icon {
    flex: 0 0 60px;
  }
  .p-index .location-map-legenda .legenda-icon img {
    width: 60px;
    height: 60px;
  }
  .p-index .location-map-legenda .legenda-column {
    margin-left: 32px;
  }
  .p-index .location-map-legenda .legenda-title {
    font-size: 13.5px;
    line-height: 17px;
    margin-bottom: 16px;
  }
  .p-index .location-map-legenda .legenda-row {
    margin-bottom: 10px;
  }
  .p-index .location-map-legenda .legenda-row-line {
    height: 0px;
    width: 32px;
    border-width: 3px;
  }
  .p-index .location-map-legenda .legenda-row-line.dashed {
    border-width: 3px;
  }
  .p-index .location-map-legenda .legenda-row-title {
    margin-left: 15px;
    font-size: 12px;
  }
  .p-index .location-feature-row {
    margin-bottom: 30px;
  }
  .p-index .location-feature-row__head {
    margin-bottom: 12px;
  }
  .p-index .location-feature-row__head .icon {
    width: 40px;
    height: 40px;
  }
  .p-index .location-feature-row__head .icon img {
    width: 20px;
  }
  .p-index .location-feature-row__head h5 {
    font-size: 16px;
  }
  .p-index .location-feature-row p {
    font-size: 13.5px;
  }
  .p-index .location hr {
    display: none;
  }
  .p-index .carousel-section .swiper-pagination {
    bottom: 20px;
    border-radius: 20px;
    padding: 6px 25px;
    background: #131F39;
    box-shadow: 0 0.1rem 1.2rem #454a97aa;
  }
  .p-index .carousel-section .swiper-pagination-bullet {
    background: #fff;
    width: 11px;
    height: 11px;
  }
}
@media (min-width: 1800px) {
  .p-index .container {
    max-width: 1500px;
  }
  .p-index section .section-title {
    font-size: 23px;
    line-height: 35px;
  }
  .p-index section .section-title::after {
    bottom: -17px;
    width: 90px;
    height: 4px;
    margin-left: calc(-90px / 2);
  }
  .p-index .hero {
    padding-top: 200px;
    height: 820px;
  }
  .p-index .hero-background {
    width: 140vw;
    left: -20vw;
    height: 730px;
    z-index: 4;
    border-radius: 0% 0% 50% 50%/0% 0% 100% 100%;
  }
  .p-index .hero-headline {
    font-size: 42px;
    margin: 70px 0;
  }
  .p-index .hero-indicator p {
    font-size: 19px;
    line-height: 24px;
  }
  .p-index .hero-indicator i {
    line-height: 65px;
    font-size: 48px;
    margin-top: 0;
  }
  .p-index .hero-logo {
    width: 200px;
    height: 200px;
  }
  .p-index .hero-layer {
    height: 745px;
  }
  .p-index .hero-curves {
    height: 730px;
  }
  .p-index .hero-curves-2 {
    width: 100vw;
    left: 0;
    height: 100vw;
    top: calc(-100vw + 730px + 55px);
  }
  .p-index .video {
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .p-index .video iframe {
    margin-top: 40px;
    border-radius: 25px;
  }
  .p-index .video hr {
    display: none;
  }
  .p-index .why-us {
    padding: 80px 0;
  }
  .p-index .why-us-head-sect {
    margin-top: 100px;
  }
  .p-index .why-us-head-sect > div {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .p-index .why-us-head-sect-image {
    padding-right: 40px;
    border-right: 2px solid #ddd;
  }
  .p-index .why-us-head-sect-image img {
    border-radius: 10px;
  }
  .p-index .why-us-head-sect-image img.full {
    height: 460px;
  }
  .p-index .why-us-head-sect-image img.half {
    height: 330px;
  }
  .p-index .why-us-head-sect-image img.half:first-child {
    margin-bottom: 40px;
  }
  .p-index .why-us-head-sect-image img.half:last-child {
    height: 190px;
  }
  .p-index .why-us-head-sect-text {
    padding-left: 50px;
  }
  .p-index .why-us-head-sect-text img {
    width: 220px;
    margin-bottom: 45px;
  }
  .p-index .why-us-head-sect-text h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  .p-index .why-us-head-sect-text p {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .p-index .why-us-head-sect-text h5 {
    font-size: 22px;
    line-height: 23px;
  }
  .p-index .why-us-body-sect-image {
    padding-right: 40px;
    border-right: 2px solid #ddd;
  }
  .p-index .why-us-body-sect-image img {
    border-radius: 10px;
  }
  .p-index .why-us-body-sect-image img.full {
    height: 400px;
  }
  .p-index .why-us-body-sect-image img.half {
    height: 180px;
  }
  .p-index .why-us-body-sect-image img.half:first-child {
    margin-bottom: 40px;
  }
  .p-index .why-us-body-sect-text {
    padding-left: 50px;
  }
  .p-index .why-us-body-sect-text p {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .p-index .why-us-body-sect-text h5 {
    font-size: 22px;
    line-height: 23px;
  }
  .p-index .location {
    max-width: 1500px;
    margin-bottom: 90px;
  }
  .p-index .location-map {
    margin-top: 70px;
    grid-template-columns: 6.5fr 3.5fr;
  }
  .p-index .location-map-legenda .legenda-icon {
    flex: 0 0 75px;
  }
  .p-index .location-map-legenda .legenda-icon img {
    width: 75px;
    height: 75px;
  }
  .p-index .location-map-legenda .legenda-column {
    margin-left: 42px;
  }
  .p-index .location-map-legenda .legenda-title {
    font-size: 16.5px;
    line-height: 20px;
    margin-bottom: 25px;
  }
  .p-index .location-map-legenda .legenda-row {
    margin-bottom: 15px;
  }
  .p-index .location-map-legenda .legenda-row-line {
    width: 40px;
  }
  .p-index .location-map-legenda .legenda-row-title {
    margin-left: 20px;
    font-size: 15px;
  }
  .p-index .location-feature-row {
    margin-bottom: 40px;
  }
  .p-index .location-feature-row__head {
    margin-bottom: 18px;
  }
  .p-index .location-feature-row__head .icon {
    width: 48px;
    height: 48px;
  }
  .p-index .location-feature-row__head .icon img {
    width: 25px;
  }
  .p-index .location-feature-row__head h5 {
    margin-left: 14px;
    font-size: 19px;
  }
  .p-index .location-feature-row p {
    font-size: 16px;
    line-height: 25px;
  }
  .p-index .location hr {
    display: none;
  }
  .p-index .carousel-section {
    margin-bottom: 100px;
    margin: 70px 0;
  }
  .p-index .carousel-section .swiper-wrapper .swiper-slide .card-cover-unit {
    height: 260px;
    padding: 80px 110px;
  }
  .p-index .carousel-section .swiper-wrapper .swiper-slide .card-cover-unit-layer {
    height: 260px;
  }
  .p-index .carousel-section .swiper-wrapper .swiper-slide .card-cover-unit h3 {
    font-size: 56px;
    line-height: 70px;
    margin-bottom: 13px;
  }
  .p-index .carousel-section .swiper-wrapper .swiper-slide .card-cover-unit h5 {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: 0.25em;
  }
  .p-index .carousel-section .swiper-wrapper .swiper-slide .card-cover-unit i {
    line-height: 12px;
    position: relative;
    z-index: 10;
    margin-left: 8px;
    color: #fff;
    font-size: 24px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities {
    height: 260px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities-layer {
    top: 0;
    left: 0;
    height: 260px;
    border-radius: 10px;
    position: absolute;
    width: 100%;
    opacity: 0.9;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities-content {
    left: 36px;
    bottom: 25px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities p {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .p-index .carousel-section.facilities .swiper-wrapper .swiper-slide .card-cover-facilities:first-child p {
    margin-top: 12px;
  }
}

/*# sourceMappingURL=app.css.map */
