
/* #region VARIABLE */
:root {
    --primer: #332219;
    --bgPrimer: #F8F0EC;
    --orange: #F58020;
    --orangeMuda: #FFE9BB;
    --coklat: #54382A;
    --coklatMuda: #CAA596;
    --merah: #ED1C24;
    --ijo: #92D050;

    --primerDark: #cfcfcf;
    --bgPrimerDark: #38353B;
    --bgDeepDark: #272727;
}
/* #endregion */

/* #region DEFAULT */
* {
    font-family: 'Poppins', sans-serif;
}
html, body {
    padding: 0;
    margin: 0;
}
body {
    position: relative;
}

.btnDefault {
    position: relative;
    padding: .7rem 1.2rem;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff !important;
    background-color: var(--orange);
    border-radius: .3rem;
    box-shadow: 3px 3px #b96a28;
    border: none;
    outline: none;
    transition: .2s ease;
    user-select: none;
}
.btnDefault:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 #b96a28;
}
.btnDefault i {
    margin-right: .8rem;
}

*::-webkit-scrollbar {
    height: 20px;
}
*::-webkit-scrollbar-track {
    background: #f1f1f1;
    margin: 0 1rem;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--ijo);
    background: linear-gradient(to top, #F89C52 0%, var(--orange) 100%);
    border: 3.5px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
}

.mainJudul {
    font-weight: 800;
    text-align: center;
}
/* #endregion */

/* #region BACK TO TOP */
#bttButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: #fff;
    background-color: var(--orange);
    padding: 8px 14px;
    border-radius: 50%;
    transition: .4s;
    opacity: .5;
}
#bttButton:hover {
    transform: scale(1.1);
    opacity: 1;
}
/* #endregion */

/* #region NAVBAR */
#navbar {
    padding: .4rem 0;
    background-color: #fff;
    box-shadow: 0 10px 15px #45454526;
    transition: .3s;
    user-select: none;
}
#navbar .container-fluid {
    max-width: 1400px;
}
.navbar-brand img {
    width: auto;
    height: 45px;
}
.navbar-brand img:nth-of-type(2) {
    display: none;
}
.navbar-nav {
    align-items: center;
    gap: .5rem;
}
.navbar-nav .nav-link {
    position: relative;
    color: #7f7f7f;
    transition: .3s;
}
.navbar-nav .nav-link:hover {
    color: #555;
}
.navbar-nav .nav-link.active {
    color: var(--orange);
}

.navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #ffffff21;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler i {
    color: #555;
    font-size: 1.5rem;
}

.navbar-nav .nav-item:last-child {
    margin-top: .4rem;
    margin-left: 1.5rem;
}
.navbar-nav label {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: #f1f1f1;
    border-radius: 5rem;
    cursor: pointer;
}
.navbar-nav label:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 16px;
    height: 16px;
    background-color: grey;
    border-radius: 50%;
    transition: all .4s;
}
.navbar-nav label:after {
    content: '\f186';
    font-family: fontawesome;
    position: absolute;
    top: 3px;
    right: 2px;
    width: 20px;
    height: 20px;
    color: grey;
    font-size: .85rem;
    transition: all .4s;
}
.navbar-nav input[type=checkbox] {
    display: none;
}
.navbar-nav input[type=checkbox]:checked + label:before {
    background-color: var(--orange);
    transform: translateX(23px);
}
.navbar-nav input[type=checkbox]:checked + label:after {
    content: '\f185';
    left: 6px;
}
/* #endregion */

/* #region MAIN & HEADER */
header, main {
    position: relative;
    overflow: hidden;
}

.mainHeader {
    position: relative;
    display: flex;
    justify-content: flex-end;
    height: 100vh;
    max-width: 100%;
    background-color: var(--bgPrimer);
    user-select: none;
}
.mainHeader .teks {
    position: absolute;
    top: 22%;
    left: 4.5rem;
    color: var(--orange);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 4px 3px var(--bgPrimer);
    z-index: 2;
}
.mainHeader .gambar {
    width: 90%;
    height: 100%;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/headerImg.webp);
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.mainHeader a {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 51px;
    text-align: center;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 0 auto;
    color: var(--coklat);
    background-color: #fff;
    border-radius: 50%;
    transition: .3s ease;
    opacity: .8;
}
.mainHeader a:hover {
    box-shadow: 3px 3px 15px var(--primer);
    opacity: 1;
}
/* #endregion */

/* #region GREETING */
.greeting {
    position: relative;
    padding: 6rem 0;
    padding-top: 12rem;
    background-color: var(--bgPrimer);
    z-index: 1;
}
.greeting .wrap {
    display: grid;
    grid-template-columns: 50% auto;
    align-items: center;
    gap: 2.5rem;
}
.greeting .kiri .gambar {
    width: 100%;
    height: 550px;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/greetingImg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: .5rem;
}

.greeting .kanan {
    padding: 1rem 1rem 1rem 0;
}
.greeting .kanan h1 {
    color: var(--primer);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.greeting .kanan p {
    color: var(--primer);
    font-size: 1.4rem;
    line-height: 2;
}
.greeting .kanan .bawah {
    position: relative;
    height: 160px;
}
.greeting .kanan .mainBenefit {
    position: absolute;
    bottom: 0;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.greeting .kanan .mainBenefit .item {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    gap: 1rem;
    min-width: fit-content;
    padding: 1rem 1.5rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 4px 5px 10px #cfcfcf;
    transform-origin: left bottom;
    transition: .3s ease;
    cursor: pointer;
}
.greeting .kanan .mainBenefit .item:hover {
    transform: scale(1.035);
}
.greeting .kanan .mainBenefit .item img {
    height: 70px;
    width: auto;
}
.greeting .kanan .mainBenefit .item span {
    display: block;
    color: var(--coklat);
}
.greeting .kanan .mainBenefit .item span:nth-of-type(1) {
    font-size: .9rem;
}
.greeting .kanan .mainBenefit .item span:nth-of-type(2) {
    font-size: 1.3rem;
    font-weight: 600;
}
.greeting .partikel {
    position: absolute;
    top: -10rem;
    right: -8rem;
    width: 28%;
    height: auto;
    z-index: -1;
}
/* #endregion */

/* #region SOLUSI */
.solusi {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bgPrimer);
    z-index: 1;
}
.solusi .wrap .atas {
    display: grid;
    grid-template-columns: auto 340px;
    align-items: center;
    gap: 2rem;
}
.solusi .atas .kiri .wrapLogo {
    width: fit-content;
    margin-bottom: 3rem;
}
.solusi .atas .kiri img {
    width: auto;
    height: 90px;
}
.solusi .atas .kiri h1 {
    color: var(--primer);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.solusi .atas .kiri h3 {
    color: #555;
    font-weight: 600;
    margin-bottom: 0;
}
.solusi .atas .kanan img {
    width: 100%;
    height: auto;
}

.solusi .bawah {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    padding: 0 3rem 0 2rem;
}
.solusi .bawah img {
    height: 180px;
    width: auto;
}
.solusi .bawah h6 {
    color: var(--primer);
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.solusi .partikel {
    position: absolute;
    bottom: -10rem;
    left: -6rem;
    width: 28%;
    height: auto;
    transform: rotateY(180deg);
    z-index: -1;
}
/* #endregion */

/* #region JOINT OWNERSHIP */
.jointOwnership {
    position: relative;
    padding: 6rem 0;
    background-color: var(--coklat);
    background: linear-gradient(to bottom, var(--coklat) 25%, var(--primer) 100%);
    overflow: hidden;
    z-index: 1;
}
.jointOwnership::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1500px;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/bgJointOwnership.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    opacity: .25;
    z-index: -1;
}

.jointOwnership .atas {
    position: relative;
}
.jointOwnership .atas .mainJudul {
    color: var(--orangeMuda);
    margin-bottom: 5rem;
}
.jointOwnership .atas .carousel-joint .flickity-viewport {
    right: -10%;
    overflow: unset;
    z-index: 2;
}
.jointOwnership .atas .carousel-joint .carousel-cell {
    width: 600px;
    height: 350px;
    margin-right: 1.5rem;
    background-color: var(--orangeMuda);
    border-radius: 1rem;
    overflow: hidden;
}
.jointOwnership .atas .carousel-cell .wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 2rem;
    z-index: 1;
}
.jointOwnership .atas .carousel-cell .wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bgJoint);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .3;
    z-index: -1;
}
.jointOwnership .atas .carousel-cell span {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 61px;
    color: var(--orange);
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.7rem;
    text-align: center;
}
.jointOwnership .atas .carousel-cell p:nth-of-type(1) {
    color: var(--primer);
    font-size: 2em;
    font-weight: 800;
}
.jointOwnership .atas .carousel-cell p:nth-of-type(2) {
    color: var(--primer);
    font-size: 1.25em;
    margin-bottom: 0;
}
.jointOwnership .atas .carousel-joint .flickity-slider::before {
    content: '';
    position: absolute;
    left: -10%;
    width: 1800px;
    height: 100%;
    background: linear-gradient(to left, var(--coklat) 95%, transparent);
}
.jointOwnership .atas .carousel-joint .flickity-button {
    display: none;
}
.jointOwnership .atas .carousel-joint .flickity-button:hover {
    background: #fff !important;
    opacity: 1;
}
.jointOwnership .atas .carousel-joint .flickity-button-icon {
    fill: var(--coklat) !important;
}
.jointOwnership .atas .carousel-joint .flickity-page-dots .dot {
    background: var(--bgPrimer) !important;
}
.jointOwnership .atas .info {
    position: absolute;
    top: 8rem;
    left: 0;
    width: 27%;
    height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.jointOwnership .atas .info p {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 0;
}
.jointOwnership .atas .partikel {
    position: absolute;
    top: -12rem;
    right: -10rem;
    width: 30%;
    height: auto;
    opacity: .1;
}

.jointOwnership .bawah .tanya {
    padding: 3rem 2rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
    background-color: #fff;
    border-radius: 1rem;
}
.jointOwnership .bawah .tanya h2 {
    color: var(--primer);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}
.jointOwnership .bawah .pertanyaan {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--primer);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: .3s ease;
}
.jointOwnership .bawah .pertanyaan:last-child {
    margin-bottom: 0;
}
.jointOwnership .bawah .pertanyaan:hover {
    background-color: var(--orangeMuda);
}
.jointOwnership .bawah .pertanyaan img {
    height: 100px;
    width: auto;
    transition: .3s ease;
}
.jointOwnership .bawah .pertanyaan:hover img {
    transform: rotate(-3deg) scale(1.1);
}
.jointOwnership .bawah .pertanyaan p:nth-of-type(1) {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.jointOwnership .bawah .pertanyaan p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.jointOwnership .bawah .mainJudul {
    color: var(--orangeMuda);
    margin-bottom: 5rem;
}
.jointOwnership .bawah .headTabel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.jointOwnership .bawah .headTabel .judulnya {
    width: 90%;
    padding: .6rem 1rem;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 1rem 1rem 0 0;
}
.jointOwnership .bawah .headTabel .judulnya:nth-of-type(1) {
    background-color: var(--orange);
}
.jointOwnership .bawah .headTabel .judulnya:nth-of-type(2) {
    background-color: var(--coklat);
}
.jointOwnership .bawah .tabel .item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.jointOwnership .bawah .tabel .item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    width: 4px;
    background-color: #f1f1f1;;
}
.jointOwnership .bawah .tabel .item:nth-child(even) {
    background-color: var(--orangeMuda);
}
.jointOwnership .bawah .tabel .item:nth-child(odd) {
    background-color: #fff;
}
.jointOwnership .bawah .tabel .kiri,
.jointOwnership .bawah .tabel .kanan {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
}
.jointOwnership .bawah .tabel i {
    font-size: 1.8rem;
    margin-top: .3rem;
}
.jointOwnership .bawah .tabel .kiri i {
    color: var(--orange);
}
.jointOwnership .bawah .tabel .kanan i {
    color: var(--coklat);
}
.jointOwnership .bawah .tabel .item span {
    color: var(--primer);
}
/* #endregion */

/* #region LOVINA */
.lovina {
    padding: 6rem 0;
    background-color: var(--bgPrimer);
}
.lovina .pantai {
    margin-bottom: 8rem;
}
.lovina .pantai .banner {
    position: relative;
    height: 950px;
    z-index: 2;
}
.lovina .pantai .banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/bgLovina.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: .8;
    z-index: -1;
}
.lovina .pantai .banner::after {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: #fff;
    background: linear-gradient(to bottom, var(--bgPrimer) 50%, transparent 100%);
    z-index: -1;
}
.lovina .pantai .teks {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8rem;
    margin-top: 7rem;
}
.lovina .pantai .teks .wrapLogo {
    width: fit-content;
    margin-bottom: 2rem;
}
.lovina .pantai .teks img {
    width: 250px;
    height: auto;
}
.lovina .pantai .teks p {
    color: var(--primer);
    font-size: 1.2rem;
    line-height: 1.7;
}
.lovina .pantai .thumb {
    position: relative;
    top: -6rem;
    width: 100%;
    z-index: 2;
}
.lovina .pantai .carousel-pantai .carousel-cell {
    width: 500px;
    height: 250px;
    margin-right: 1.5rem;
    background-color: var(--orangeMuda);
    background-image: var(--bgPantai);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    overflow: hidden;
}
.lovina .pantai .carousel-pantai .flickity-button {
    display: none;
}

.lovina .peta {
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/bgPeta.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    z-index: 1;
}
.lovina .peta .container {
    height: 100%;
}
.lovina .peta .partikel {
    position: absolute;
    top: -5rem;
    left: -12rem ;
    width: 25%;
    height: auto;
    transform: rotateY(180deg);
    z-index: -1;
}
.lovina .peta .pin {
    position: absolute;
    top: 33.5%;
    right: 22.5rem;
    color: var(--merah);
    cursor: pointer;
}
.lovina .peta .pin i {
    font-size: 2rem;
    animation: loncat .8s infinite linear;
}
@keyframes loncat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10%);
    }
}
.lovina .peta .pin:focus i {
    animation-play-state: paused;
}
.lovina .peta .pin:focus ~ .popup {
    display: block;
    opacity: 1;
}
.lovina .peta .popup {
    position: absolute;
    top: 42%;
    right: 16.4rem;
    width: 220px;
    height: fit-content;
    padding: .5rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 2px 2px 25px #cfcfcf;
    text-align: center;
    animation: muncul .6s ease;
    display: none;
    opacity: 0;
    user-select: none;
}
@keyframes muncul {
    0% {
        transform: translateY(5%);
    }
    100% {
        transform: translateY(0);
    }
}
.lovina .peta .popup::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}
.lovina .peta .popup img {
    width: 100%;
    height: auto;
    margin-bottom: .5rem;
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem;
}
.lovina .peta .popup p:nth-of-type(1) {
    color: var(--primer);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .2rem
}
.lovina .peta .popup p:nth-of-type(2) {
    color: grey;
    font-size: .8rem;
    margin-bottom: 0
}

.lovina .peta .teks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: 100%;
}
.lovina .peta .teks h1 {
    color: var(--primer);
    font-size: 3.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.lovina .peta .teks p {
    color: var(--primer);
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}
/* #endregion */

/* #region TIPE VILLA */
.tipe {
    padding: 6rem 0;
    background-color: var(--bgPrimer);
}
.tipe .mainJudul {
    color: var(--primer);
    margin-bottom: 1.5rem;
}
.tipe h5 {
    color: var(--primer);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 0;
}
.tipe .kolom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    margin-top: 4rem;
}
.tipe .kolom .jenis:nth-of-type(1) {
    margin-left: auto;
}
.tipe .kolom .jenis:nth-of-type(2) {
    margin-right: auto;
}
.tipe .kolom .jenis {
    position: relative;
    width: 450px;
    height: 550px;
    background-color: #cfcfcf;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/tipeRose.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 101%;
    border-radius: 1rem;
    transition: .3s ease;
    overflow: hidden;
}
.tipe .kolom .jenis:hover {
    background-size: 106%;
    box-shadow: 5px 10px 20px #969696;
}
.tipe .kolom .jenis:nth-of-type(2) {
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/tipeLily.jpg);
}
.tipe .kolom .jenis::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 0;
    width: 150px;
    height: 60px;
    background-color: #fff;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/logoTriyanaVilla.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
    transform: translateX(101%);
    transition: .3s ease;
    z-index: 3;
}
.tipe .kolom .jenis:hover::before {
    transform: translateX(0);
}
.tipe .kolom .jenis .teks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2rem;
    color: #fff;
    background: linear-gradient(to bottom, transparent 0%, var(--coklat) 100%);
    transform: translateY(38%);
    transition: .3s ease;
}
.tipe .kolom .jenis:hover .teks {
    transform: translateY(0);
    background: linear-gradient(to bottom, transparent 0%, var(--coklat) 70%);
}
.tipe .kolom .jenis .teks p:nth-of-type(1) {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .4rem;
}
.tipe .kolom .jenis .teks p:nth-of-type(2) {
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
}
.tipe .kolom .jenis .teks ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}
.tipe .kolom .jenis .teks li {
    font-size: 1.1rem;
}
/* #endregion */

/* #region BENEFIT */
.benefit {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bgPrimer);
    z-index: 1;
}
.benefit .mainJudul {
    color: var(--primer);
    margin-bottom: 1.5rem;
}
.benefit h5 {
    color: var(--primer);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 0;
}
.benefit .list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}
.benefit .list .item {
    padding: 1.5rem 2rem;
    color: var(--primer);
    background-color: #fff;
    border-radius: 1rem;
    transition: .3s ease;
}
.benefit .list .item:hover {
    color: #fff;
    background-color: var(--coklat);
    box-shadow: 4px 8px 20px #a6a6a6;
}
.benefit .list .item .atas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.benefit .list .item .atas img {
    height: 50px;
}
.benefit .list .item .atas span {
    font-size: 1.5rem;
    font-weight: 700;
}
.benefit .list .item p {
    margin-bottom: 0;
}
.benefit .partikel {
    position: absolute;
    top: -7rem;
    right: -8rem;
    width: 400px;
    height: auto;
    opacity: .8;
    z-index: -1;
}
/* #endregion */

/* #region PROMO */
.promo {
    padding: 6rem 0;
    background-color: var(--bgPrimer);
}
.promo .bigCard {
    position: relative;
    width: 75%;
    padding: 6rem 3rem 2rem 3rem;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 5px 10px 25px #bfbfbf;
    overflow: hidden;
    user-select: none;
    z-index: 1;
}
.promo h4 {
    color: var(--coklat);
    font-size: 3.5rem;
    font-weight: 600;
}
.promo h1 {
    color: var(--coklat);
    font-size: 7rem;
    font-weight: 800;
    margin-bottom: 4rem;
}
.promo h6 {
    font-size: 1.8rem;
    font-weight: 600;
}
.promo h6 br {
    display: none;
}
.promo h3 {
    color: var(--orange);
    font-size: 4rem;
    font-weight: 800;
}
.promo .coret {
    position: relative;
    width: fit-content;
    font-size: 3rem;
    margin-bottom: 2.5rem;
}
.promo .coret::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/silang.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.promo p {
    color: var(--coklat);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 6rem;
}
.promo span {
    color: var(--coklatMuda);
    font-size: 1.2rem;
}
.promo .partikel {
    position: absolute;
    top: 0;
    right: -6rem;
    width: 300px;
    opacity: .7;
    z-index: -1;
}
.promo .rumah {
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    width: 50%;
    z-index: -1;
}
/* #endregion */

/* #region VILLA ROSE & LILY */
.tipeVilla {
    padding: 6rem 0;
    background-color: var(--bgPrimer);
}
.tipeVilla.lily {
    padding-top: 0;
}
.tipeVilla .logoAtas {
    display: flex;
    justify-content: center;
}
.tipeVilla .logoAtas .wrapLogo {
    width: fit-content;
    margin-bottom: 3rem;
}
.tipeVilla .logoAtas img {
    width: auto;
    height: 100px;
}
.tipeVilla .carousel-tipeVilla {
    margin-bottom: 3rem;
}
.tipeVilla .carousel-tipeVilla .carousel-cell {
    margin-right: 1rem;
}
.tipeVilla .carousel-tipeVilla .carousel-cell img {
    width: auto;
    height: 420px;
}
.tipeVilla .carousel-tipeVilla .flickity-page-dots {
    display: none;
}

.tipeVilla .deskripsi {
    display: grid;
    grid-template-columns: auto 330px;
    gap: 3rem;
}
.tipeVilla .harga .judul {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--primer);
    margin-bottom: 1rem;
}
.tipeVilla .harga .judul h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0;
}
.tipeVilla .harga .judul h5 {
    font-size: 1.6rem;
    margin-top: .5rem;
    margin-bottom: 0;
}
.tipeVilla .harga .info {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.tipeVilla .harga .tabel {
    margin-bottom: 1.5rem;
    text-align: center;
}
.tipeVilla .harga .tabel .item {
    display: grid;
    grid-template-columns: 20% 35% 45%;
    align-items: center;
    padding: 1.4rem .8rem;
}
.tipeVilla .harga .tabel .item p {
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.tipeVilla .harga .tabel .item:nth-of-type(2) p:nth-of-type(1)::before,
.tipeVilla .harga .tabel .item:nth-of-type(2) p:nth-of-type(2)::before,
.tipeVilla .harga .tabel .item:nth-of-type(3) p:nth-of-type(1)::before,
.tipeVilla .harga .tabel .item:nth-of-type(3) p:nth-of-type(2)::before,
.tipeVilla .harga .tabel .item:nth-of-type(4) p:nth-of-type(1)::before,
.tipeVilla .harga .tabel .item:nth-of-type(4) p:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: -1.4rem;
    right: -1.5px;
    width: 3px;
    height: calc(100% + 2.8rem);
    background-color: #cfcfcf;
    z-index: 2;
}
.tipeVilla .harga .tabel .item span {
    font-weight: 700;
}
.tipeVilla .harga .tabel .item:nth-of-type(1) {
    padding: .8rem .8rem;
    color: #fff;
    background-color: var(--coklat);
}
.tipeVilla .harga .tabel .item:nth-of-type(3) {
    color: #202020;
    background-color: #fff;
}
.tipeVilla .harga .tabel .item:nth-of-type(2),
.tipeVilla .harga .tabel .item:nth-of-type(4) {
    color: #202020;
    background-color: var(--orangeMuda);
}
.tipeVilla .harga .tabel .free {
    font-size: 1.2rem;
    font-weight: 600;
    padding: .8rem .6rem;
    color: #fff;
    background-color: var(--ijo);
}
.tipeVilla .harga .syarat {
    color: grey;
    font-size: 1rem;
}

.tipeVilla .spek .wrap {
    position: relative;
    top: -7.95rem;
    padding: 1rem;
    overflow: hidden;
    z-index: 3;
}
.tipeVilla .spek .head {
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: var(--coklat);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: 5px 8px 20px #cfcfcf;
}
.tipeVilla .spek .wrap .list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background-color: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 5px 8px 20px #cfcfcf;
}
.tipeVilla .spek .wrap .each {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}
.tipeVilla .spek .wrap .each i {
    width: 25px;
    color: var(--orange);
    text-align: center;
}
.tipeVilla .spek .wrap .tombol {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tipeVilla .spek .wrap .tombol .btnDefault {
    width: 95%;
    text-align: center;
}
/* #endregion */

/* #region HUBUNGI KAMI */
.hubungiKami {
    padding: 6rem 0 15rem 0;
    background-color: var(--bgPrimer);
}
.hubungiKami .wrapper {
    width: 90%;
    padding: 4rem 3rem;
    margin: 0 auto;
    background-color: #fff;
    background-image: url(https://shgb-affiliate.azureedge.net/webreplika/webview/bgContactUs.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    border-radius: 2rem;
    box-shadow: 5px 10px 25px #bfbfbf;
}
.hubungiKami .wrapper .teks {
    width: 65%;
}
.hubungiKami .wrapper h1 {
    color: var(--primer);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: .6rem;
}
.hubungiKami .wrapper h5 {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.hubungiKami .wrapper a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    max-width: 450px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-radius: .3rem;
    transition: .2s ease;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    user-select: none;
}
.hubungiKami .wrapper a:nth-of-type(1) {
    background: linear-gradient(to right, #ED6A0A 0%, #F58A32 80%);
    box-shadow: 3px 3px #b96a28;
}
.hubungiKami .wrapper a:nth-of-type(2) {
    background: linear-gradient(to right, #32A73E 0%, #51CB5E 80%);
    box-shadow: 3px 3px #2b8c35;
}
.hubungiKami .wrapper a:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 #b96a28;
}
.hubungiKami .wrapper a:last-child {
    margin-bottom: 0;
}
.hubungiKami .wrapper a div {
    display: flex;
    align-items: center;
    gap: .8rem;
}
/* #endregion */

/* #region FOOTER */
footer {
    position: relative;
    height: 300px;
    background-color: var(--coklat);
    background: linear-gradient(to bottom, var(--coklat) 40%, var(--primer) 100%);
}
footer .logoBulat {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 120px;
    margin: 0 auto;
    background-color: #fff;
    border: 8px solid var(--bgPrimer);
    border-radius: 50%;
}
footer .logoBulat img {
    width: 60%;
    height: auto;
    margin-bottom: .3rem;
}
footer .bawah {
    position: relative;
    height: 100%;
    text-align: center;
    padding-top: 5.5rem;
    overflow: hidden;
}
footer .bawah p:nth-of-type(1) {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
footer .bawah p:nth-of-type(2) {
    color: var(--coklatMuda);
    font-size: 1.2rem;
}
footer .bawah p:nth-of-type(3) {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 2rem;
    color: grey;
    font-size: .9rem;
}
footer .partikel {
    position: absolute;
    width: 250px;
    height: auto;
    left: -6rem;
    bottom: -5rem;
    transform: rotateY(180deg);
    opacity: .2;
}
/* #endregion */