
/* #region VARIABLE */
:root {
    --primer: #0C4733;
    --sekunder: #F6AC3B;
}
/* #endregion */

/* #region DEFAULT */
*, ::after, ::before {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}
body {
    position: relative;
}

.btnPrimary {
    padding: .8rem 2rem;
    text-transform: capitalize;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primer);
    background-color: var(--sekunder);
    border: 2px solid var(--sekunder);
    outline: none;
    transition: all .3s ease;
    user-select: none;
}
.btnPrimary:is(:hover, :focus) {
    color: var(--primer);
    background-color: #db9328;
    border: 2px solid #db9328;
}
.btnOutline {
    padding: .8rem 2rem;
    text-transform: capitalize;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--sekunder);
    background-color: transparent;
    border: 2px solid var(--sekunder);
    outline: none;
    transition: all .3s ease;
    user-select: none;
}
.btnOutline:is(:hover, :focus) {
    color: var(--primer);
    background-color: #fff;
    border: 2px solid #fff;
}

.title {
    text-align: center;
    margin-bottom: 3rem;
}
.title p:nth-of-type(1) {
    color: var(--primer);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}
.title p:nth-of-type(2) {
    color: #373737;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: .5rem;
    margin-bottom: 0;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
::selection {
    color: #fff;
    background: var(--primer);
}
::-moz-selection {
    color: #fff;
    background: var(--primer);
}
/* #endregion */

/* #region FLOATING BUTTON */
.floating {
    position: fixed;
    bottom: 0;
    right: 1.5rem;
    width: 50px;
    height: fit-content;
    z-index: 99;
}
.floating .wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .75rem;
    padding-bottom: 1.5rem;
}
#bttBtn {
    display: none;
    font-size: 1.25rem;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    color: var(--primer);
    background-color: var(--sekunder);
    padding: 8px 14px;
    border-radius: 50%;
    box-shadow: 2px 2px 6px #3a3a3a6b;
}
/* #endregion */

/* #region NAVBAR */
.navbar {
    padding: 0;
    height: 7rem;
    background: transparent;
    box-shadow: none;
    transition: all .3s ease-out;
    user-select: none;
}
.navbar .container-fluid {
    padding: 0 3rem;
}
.navbar-brand {
    text-decoration: none;
}
.navbar-brand #logo {
    width: 170px;
    height: auto;
    margin-right: .75rem;
    transition: all .3s ease;
}
#listMenu {
    visibility: hidden;
}
.navbar-nav {
    align-items: center;
    gap: 1rem;
}
.navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-size: .9rem;
    transition: .3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--sekunder);
}

.darkSwitch {
    display: flex;
    align-items: center;
    margin-left: 3rem;
}
.darkSwitch label {
    position: relative;
    width: 48px;
    height: 26px;
    background-color: #d2d2d2;
    border-radius: 5rem;
    cursor: pointer;
}
.darkSwitch label::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background-color: grey;
    border-radius: 50%;
    transition: all .4s;
    z-index: 2;
}
.darkSwitch label::after {
    content: '\f186';
    font-family: fontawesome;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    color: grey;
    font-size: .9rem;
    text-align: center;
    line-height: 19px;
    transition: all .4s;
    border-radius: 50%;
    overflow: hidden;
}
.darkSwitch input[type=checkbox] {
    display: none;
}
.darkSwitch input[type=checkbox]:checked + label:before {
    background-color: var(--primer);
    transform: translateX(22px);
}
.darkSwitch input[type=checkbox]:checked + label:after {
    content: '\f185';
    left: 4px;
}

#wrapToggler {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .3s ease-out;
}
/* #endregion */

/* #region HEADER */
header {
    display: block;
    height: 100vh;
    width: 100%;
} 
.mainHeader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    color: #fff;
    background-color: #555;
}
.mainHeader .partikel {
    position: absolute;
    bottom: -5rem;
    left: 0;
    z-index: 5;
}
.mainHeader .partikel::before {
    content: '';
    position: absolute;
    top: -9rem;
    left: 0;
    width: 260px;
    height: 360px;
    background-image: url(asset/triangle_yellow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .4;
}
.mainHeader .partikel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 150px;
    height: 250px;
    background-image: url(asset/triangle_green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .6;
}
/* #endregion */

/* #region CAROUSEL HEADER */
.carouselHeader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hide-scroll 5s backwards;
}
@keyframes hide-scroll {
    0% { overflow: hidden; } 
    100% { overflow: auto; }
}
.carousel-inner, .carousel, .carousel-item, .carousel-container {
    height: 100%;
    width: 100%;
}
.carousel-item {
    position: relative;
    background-color: #000;
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: .4;
}
.carousel-item:nth-of-type(1):before {
    background-image: url(asset/header1.jpg);
}
.carousel-item:nth-of-type(2)::before {
    background-image: url(asset/header2.jpg);
}
.carousel-item:nth-of-type(3)::before {
    background-image: url(asset/header3.jpg);
}
.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
}
.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
}

.carousel-item .konten {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 3rem;
}
.carousel-item .konten h3 {
    color: #fff;
    font-size: 3.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0;
}
.carousel-item .konten h1 {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.carousel-item .konten h6 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 5rem;
}
.carousel-item .konten .tombol .btnPrimary {
    margin-right: .75rem;
}
.carousel-item .konten p {
    position: absolute;
    top: 15%;
    right: 8%;
    max-width: 400px;
    color: #f1f1f1;
    text-align: right;
    padding-right: 1rem;
    margin-bottom: 0;
    border-right: 5px solid var(--sekunder);
}

.carousel-indicators {
    top: 0;
    margin: auto;
    height: 20px;
    right: 2.5rem;
    left: auto;
    display: block;
}
.carousel-indicators [data-bs-target] {
    background: none;
    border: 2px solid #fff;
    border-radius: 12px;
    width: 8px;
    height: 8px;
    margin-bottom: 5px;
}
.carousel-indicators li.active {
    background: var(--sekunder);
    border-color: var(--sekunder);
}
.carousel-control-next-icon {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.35rem;
    line-height: 2.5rem;
    background-image: unset;
    border: 2px solid #fff;
    z-index: -1;
}
.carousel-control-next-icon:hover {
    background-color: #ffffff37;
}
.carousel-control-prev-icon {
    display: none;
}
.unclickable {
    pointer-events: none;
}
.clickable {
    pointer-events: all;
}
/* #endregion */

/* #region DESTINASI */
main {
    position: relative;
    background-color: #f6f6f6;
    overflow: hidden;
}

.destinasi {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 8rem 0;
    margin-top: 6rem;
}
.destinasi .wrap {
    display: flex;
    gap: 2rem;
}
.destinasi input[type=radio] {
    display: none;
}
.destinasi .teks {
    width: 40%;
    padding-top: 1.5rem;
    padding-left: 15%;
}
.destinasi .teks p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}
.destinasi .listTab {
    display: flex;
    flex-direction: column;
}
.destinasi .listTab label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: grey;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem;
    margin: 0;
    transition: .3s ease-in-out;
    user-select: none;
    cursor: pointer;
}
.destinasi input[type=radio]:nth-of-type(1):checked ~ .teks .listTab label:nth-of-type(1),
.destinasi input[type=radio]:nth-of-type(2):checked ~ .teks .listTab label:nth-of-type(2),
.destinasi input[type=radio]:nth-of-type(3):checked ~ .teks .listTab label:nth-of-type(3),
.destinasi input[type=radio]:nth-of-type(4):checked ~ .teks .listTab label:nth-of-type(4) {
    color: var(--primer);
}
.destinasi .listTab label div {
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    z-index: 1;
}
.destinasi .listTab label div::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-color: var(--primer);
    border-radius: 50%;
    transition: .3s ease-in-out;
    transform: scale(0);
    z-index: -1;
}
.destinasi input[type=radio]:nth-of-type(1):checked ~ .teks .listTab label:nth-of-type(1) div::before,
.destinasi input[type=radio]:nth-of-type(2):checked ~ .teks .listTab label:nth-of-type(2) div::before,
.destinasi input[type=radio]:nth-of-type(3):checked ~ .teks .listTab label:nth-of-type(3) div::before,
.destinasi input[type=radio]:nth-of-type(4):checked ~ .teks .listTab label:nth-of-type(4) div::before {
    transform: scale(1);
}
.destinasi .listTab label i {
    line-height: 30px;
    transition: .3s ease-in-out;
}
.destinasi input[type=radio]:nth-of-type(1):checked ~ .teks .listTab label:nth-of-type(1) i,
.destinasi input[type=radio]:nth-of-type(2):checked ~ .teks .listTab label:nth-of-type(2) i,
.destinasi input[type=radio]:nth-of-type(3):checked ~ .teks .listTab label:nth-of-type(3) i,
.destinasi input[type=radio]:nth-of-type(4):checked ~ .teks .listTab label:nth-of-type(4) i {
    color: #fff;
}

.destinasi .gambar {
    width: 60%;
}
.destinasi .swiper {
    display: none;
    width: 100%;
    padding-bottom: 3rem;
}
.destinasi input[type=radio]:nth-of-type(1):checked ~ .gambar .isiTab1,
.destinasi input[type=radio]:nth-of-type(2):checked ~ .gambar .isiTab2,
.destinasi input[type=radio]:nth-of-type(3):checked ~ .gambar .isiTab3,
.destinasi input[type=radio]:nth-of-type(4):checked ~ .gambar .isiTab4 {
    display: block;
}
.destinasi .swiper-slide {
    position: relative;
    height: 500px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.destinasi .swiper-slide .info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 6rem 2rem 2rem 2rem;
    color: #fff;
    background: linear-gradient(to top, #000000a7 25%, transparent 100%);
}
.destinasi .swiper-slide .info div {
    padding-left: 1.25rem;
    border-left: 6px solid var(--sekunder);
}
.destinasi .swiper-slide .info p:nth-of-type(1) {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .15rem;
}
.destinasi .swiper-slide .info p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 0;
}
.destinasi .swiper-pagination {
    margin-top: 2rem;
}
.destinasi .swiper-pagination-bullet-active {
    background: var(--primer);
}
.destinasi .swiper-button-next,
.destinasi .swiper-button-prev {
    color: #fff;
}
.destinasi .swiper-button-next::after,
.destinasi .swiper-button-prev::after {
    font-size: 2rem;
}

.destinasi .miniPartikel {
    position: absolute;
    bottom: 10%;
    left: 18%;
}
.destinasi .miniPartikel::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 180px;
    background-image: url(asset/triangle_stack.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: .7;
}
/* #endregion */

/* #region TIPE */
.tipe {
    padding: 8rem 0;
}
.tipe input[type=checkbox],
.tipe input[type=radio] {
    display: none;
}
.tipe .bigCard {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tipe .wrap {
    width: 360px;
    height: 86vh;
    margin: 0;
    background-color: #f6f6f6;
    box-shadow: none;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga {
    width: 100%;
    box-shadow: 0 0 25px #5a5a5aa0;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .kedua,
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .ketiga,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .pertama,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .ketiga,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .pertama,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .kedua {
    width: 0;
}

.tipe .jenis {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1rem;
    z-index: 1;
}
.tipe .jenis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    transition: all .3s ease-in-out;
    opacity: 1;
    filter: grayscale(1);
    z-index: -1;
}
.tipe label:nth-of-type(1) .jenis::before {
    background-image: url(asset/thumb_50x50.jpg);
}
.tipe label:nth-of-type(2) .jenis::before {
    background-image: url(asset/imgTipe1.jpg);
}
.tipe label:nth-of-type(3) .jenis::before {
    background-image: url(asset/thumb_100x100.jpg);
}
.tipe .jenis:hover::before {
    filter: grayscale(.7);
}
.tipe input:nth-of-type(4):checked ~ .bigCard .pertama .jenis::before,
.tipe input:nth-of-type(5):checked ~ .bigCard .kedua .jenis::before,
.tipe input:nth-of-type(6):checked ~ .bigCard .ketiga .jenis::before {
    filter: grayscale(0);
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .jenis::before,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .jenis::before,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .jenis::before {
    opacity: 0;
}
.tipe .jenis .kiri {
    width: 0;
    transition: width .3s ease-in-out;
    overflow: hidden;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kiri,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kiri,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kiri {
    width: 67%;
}
.tipe .jenis .kiri .swiper {
    width: 100%;
    height: 100%;
}
.tipe .jenis .kiri .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.tipe .jenis .kiri .swiper-pagination {
    margin-top: 2rem;
}
.tipe .jenis .kiri .swiper-pagination-bullet-active {
    background: var(--sekunder);
}
.tipe .jenis .kiri .swiper-button-next,
.tipe .jenis .kiri .swiper-button-prev {
    color: #fff;
}
.tipe .jenis .kiri .swiper-button-next::after,
.tipe .jenis .kiri .swiper-button-prev::after {
    font-size: 2rem;
}

.tipe .jenis .kanan {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 1rem;
    transition: all .3s ease-in-out;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan {
    padding: 2.5rem .5rem 1.5rem 1.5rem;
    width: 33%;
}
.tipe .jenis .kanan #closeDetail {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.6rem;
    color: #FE0000;
    border: none;
    outline: none;
    background: transparent;
    transition: opacity .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan #closeDetail,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan #closeDetail,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan #closeDetail {
    opacity: 1;
    pointer-events: all;
}
.tipe .jenis .kanan .partikel {
    position: absolute;
    top: -4rem;
    left: -1rem;
    transition: filter .4s ease-in-out;
    filter: grayscale(1);
    z-index: -1;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan .partikel,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan .partikel,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan .partikel {
    display: none;
}
.tipe .jenis:hover .kanan .partikel {
    filter: grayscale(.7);
}
.tipe input:nth-of-type(4):checked ~ .bigCard .pertama .kanan .partikel,
.tipe input:nth-of-type(5):checked ~ .bigCard .kedua .kanan .partikel,
.tipe input:nth-of-type(6):checked ~ .bigCard .ketiga .kanan .partikel {
    filter: grayscale(0);
}
.tipe .jenis .kanan .partikel::before {
    content: '';
    position: absolute;
    top: -9rem;
    left: 0;
    width: 200px;
    height: 300px;
    background-image: url(asset/triangle_green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .6;
}
.tipe .jenis .kanan .partikel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 1rem;
    width: 100px;
    height: 200px;
    background-image: url(asset/triangle_yellow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .9;
}

.tipe .jenis .kanan .teks {
    color: #5a5a5a;
    transition: all .3s ease-in-out;
}
.tipe .jenis .kanan .teks p:nth-of-type(1) {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    transition: font-size .2s ease-in-out;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan .teks p:nth-of-type(1),
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan .teks p:nth-of-type(1),
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan .teks p:nth-of-type(1) {
    font-size: 0;
    margin-bottom: 0;
}
.tipe .jenis .kanan .teks p:nth-of-type(2) {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.tipe .jenis:hover .kanan .teks {
    color: #424242;
}
.tipe input:nth-of-type(4):checked ~ .bigCard .pertama .jenis .kanan .teks,
.tipe input:nth-of-type(5):checked ~ .bigCard .kedua .jenis .kanan .teks,
.tipe input:nth-of-type(6):checked ~ .bigCard .ketiga .jenis .kanan .teks {
    color: #151515;
}
.tipe .jenis .kanan .list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.1rem;
    height: 0;
    margin-top: 2rem;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan .teks .list,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan .teks .list,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan .teks .list {
    height: 100%;
}
.tipe .jenis .kanan .list i {
    width: 30px;
    text-align: center;
    margin-right: .75rem;
}

.tipe .jenis .kanan .tombol {
    text-align: center;
}
.tipe .jenis .kanan .btnPrimary {
    width: 80%;
    font-size: 1rem;
    padding: .5rem 1.5rem;
    margin: 0;
    transition: all .3s ease-in-out;
    transform: translateY(60px);
    opacity: 0;
    cursor: pointer;
}
.tipe input:nth-of-type(4):checked ~ .bigCard .pertama .kanan .btnPrimary,
.tipe input:nth-of-type(5):checked ~ .bigCard .kedua .kanan .btnPrimary,
.tipe input:nth-of-type(6):checked ~ .bigCard .ketiga .kanan .btnPrimary {
    transform: translateY(0);
    opacity: 1;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan .btnPrimary,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan .btnPrimary,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan .btnPrimary {
    width: 100%;
    transform: translateY(0);
    opacity: 1;
}
.tipe .jenis .kanan a,
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan label,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan label,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan label {
    display: none;
}
.tipe input[type=checkbox]:nth-of-type(1):checked ~ .bigCard .pertama .kanan a,
.tipe input[type=checkbox]:nth-of-type(2):checked ~ .bigCard .kedua .kanan a,
.tipe input[type=checkbox]:nth-of-type(3):checked ~ .bigCard .ketiga .kanan a {
    display: block;
}
/* #endregion */

/* #region LOKASI */
.lokasi {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
}
.lokasi::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(asset/imgLokasi.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    opacity: .15;
    z-index: -1;
}
.lokasi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, #f6f6f6, transparent);
    z-index: -1;
}
.lokasi .info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 8%;
    margin: 1rem 0 3rem 0;
}
.lokasi .info .item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}
.lokasi .info i {
    font-size: 1.8rem;
}
.lokasi .info p:nth-of-type(1) {
    color: var(--primer);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.lokasi .info p:nth-of-type(2) {
    font-size: 1rem;
    margin-bottom: 0;
}
.lokasi .wrapPeta {
    position: relative;
    width: 80%;
    margin-inline: auto;
    padding: .75rem;
    background-color: #fff;
    box-shadow: 0 0 30px #5a5a5a59;
}
.lokasi #map {
    height: 500px;
    width: 100%;
}
.lokasi .wrapPeta .btnPrimary {
    position: absolute;
    bottom: 3.5rem;
    right: 6rem;
    font-size: 1rem;
    padding: .6rem 1rem;
}

.lokasi .partikel {
    position: absolute;
    top: -3rem;
    right: 0;
    z-index: 5;
}
.lokasi .partikel::before {
    content: '';
    position: absolute;
    top: 3rem;
    right: 0;
    width: 260px;
    height: 360px;
    background-image: url(asset/triangle_yellow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    transform: rotate(180deg);
    opacity: .2;
}
.lokasi .partikel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 2rem;
    width: 150px;
    height: 250px;
    background-image: url(asset/triangle_green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    transform: rotate(180deg);
    opacity: .6;
}
.lokasi .miniPartikel {
    position: absolute;
    bottom: -12%;
    left: 10%;
}
.lokasi .miniPartikel::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 180px;
    background-image: url(asset/triangle_stack.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: .7;
}
/* #endregion */

/* #region HUBUNGI */
.hubungi {
    position: relative;
    padding: 14rem 0;
    z-index: 1;
}
.hubungi .formulir {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 80%;
    height: 460px;
    margin-inline: auto;
    background-color: #F7FCF8;
    box-shadow: 0 0 25px #5a5a5a3f;
    z-index: 1;
}
.hubungi .formulir::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url(asset/doodle.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .7;
    z-index: -1;
}
.hubungi .formulir::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #F7FCF8, #cde8d3, #2bb740a7);
    z-index: -1;
}
.hubungi .kiri {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    overflow: hidden;
}
.hubungi .kiri img {
    margin-bottom: 2rem;
}
.hubungi .kiri .title {
    text-align: left;
    margin-bottom: 2rem;
}
.hubungi .kiri .title p:nth-of-type(1) {
    color: #373737;
}
.hubungi .kiri .title p:nth-of-type(2) {
    font-size: 1.15rem;
}
.hubungi .kiri .sosmed {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hubungi .kiri .sosmed a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--primer);
    background-color: #f6ab3b7e;
    border-radius: 50%;
    transition: all .2s ease;
}
.hubungi .kiri .sosmed a:hover {
    background-color: var(--sekunder);
    transform: scale(1.1);
}

.hubungi .kanan {
    position: relative;
    height: 100%;
}
.hubungi .kanan img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.hubungi .kanan .teks {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 260px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .75rem .5rem;
    transition: all .3s ease-in-out;
    transform-origin: bottom;
    user-select: none;
    z-index: 1;
}
.hubungi .kanan .teks:hover {
    transform: scale(1.05);
}
.hubungi .kanan .teks::before {
    content: '';
    position: absolute;
    top: -.6rem;
    left: -2.9rem;
    width: 150%;
    height: 150%;
    background-image: url(asset/balon.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.hubungi .kanan i {
    font-size: 1.25rem;
}
.hubungi .kanan a {
    width: 100%;
    font-size: 1rem;
    padding: .6rem 1rem;
    color: #fff;
    background-color: #2BB741;
    border: none;
    outline: none;
    text-decoration: none;
    text-align: center;
}

.hubungi .partikel {
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: -1;
}
.hubungi .partikel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 150px;
    background-image: url(asset/triangle_yellow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .3;
}
.hubungi .partikel::after {
    content: '';
    position: absolute;
    top: 3rem;
    left: .5rem;
    width: 30px;
    height: 130px;
    background-image: url(asset/triangle_green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .4;
}
.hubungi .miniPartikel {
    position: absolute;
    bottom: 8%;
    right: 10%;
}
.hubungi .miniPartikel::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 70px;
    width: 180px;
    background-image: url(asset/triangle_stack.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: .7;
}
/* #endregion */

/* #region FOOTER */
footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 1rem 6rem 1rem;
    background: radial-gradient(var(--primer), #04261b);
    overflow: hidden;
    z-index: 1;
}
footer img {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}
footer p:nth-of-type(1) {
    color: #fff;
    font-size: 1rem;
    margin-bottom: .25rem;
}
footer p:nth-of-type(2) {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
footer .link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
footer .link a {
    color: #fff;
    text-decoration: none;
}
footer .link a:hover {
    color: var(--sekunder);
}
footer h6 {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    color: grey;
    font-size: .8rem;
    text-align: center;
    user-select: none;
}

footer .partikel {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
footer .partikel::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: url(asset/triangle_yellow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .2;
}
footer .partikel::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    width: 120px;
    height: 120px;
    background-image: url(asset/triangle_yellow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: .3;
}
footer .slice {
    position: absolute;
    top: -100px;
    right: -130px;
    width: 200px;
    height: 200px;
    background-color: var(--sekunder);
    transform: rotate(45deg);
    opacity: .3;
    z-index: -1;
}
/* #endregion */