@font-face {
    font-family: arial;
    src: url(../fonts/Arial.ttf);
}

@font-face {
    font-family: arialbold;
    src: url(../fonts/Arial-Bold.ttf);
}

@font-face {
    src: url(../fonts/FertigoPro-Regular2.otf);
}

@font-face {
    font-family: fertigoitalic;
    src: url(../fonts/FertigoPro-Italic.otf);
}

@font-face {
    font-family: myriadproregular;
    src: url(../fonts/MyriadPro-Regular.otf);
}

html {
    scroll-behavior: smooth;
}

body,
html {
    height: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: normal;
    font-family: fertigoitalic;
}

a {
    outline: none;
    text-decoration: none !important;
    font-family: fertigoitalic;
}

a,
button,
i {
    text-decoration: none;
    font-family: fertigoitalic;
}

a:focus,
a:hover {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    font-family: fertigoitalic;
}

input:focus,
input.form-control:focus,
textarea:focus,
textarea.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-color: unset;
    border: 0;
}

input::placeholder {
    color: #fff;
}

input:-ms-input-placeholder {
    color: #fff;
}

#home .banner {
    position: relative;
}

#home .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maps {
    position: relative;
}
/* .maps .text {
    position: absolute;
    top: 100px;
    left: 50%;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    text-align: center;
} */
.maps .text {
    position: absolute;
    bottom: 50px;
    left: 15px;
    color: white;
    z-index: 2;
    width: auto;
}

.maps .text h1 {
    font-size: 4rem;
    font-family: fertigoitalic;
    text-shadow: 4px 4px 2px #000000;
}

.maps .text p {
    font-size: 1.25rem;
    text-shadow: 4px 4px 2px #000000;
}

.map-marker {
    position: absolute;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-30px);
    }
    60% {
        -o-transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
.map-marker#sumatera {
    left: 15%;
    top: 30%;
}
.map-marker#jabar {
    left: 30%;
    top: 58%;
}
.map-marker#jatim {
    left: 37%;
    top: 62%;
}
.map-marker#bali {
    left: 43%;
    top: 67%;
}
.map-marker#kalimantan {
    left: 37%;
    top: 42%;
}
.map-marker#jakarta {
    left: 26%;
    top: 52%;
}
.maps .wrap-circle {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

.maps .circle {
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.maps .circle-inner {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    /* transition: all 0.3s ease; */
}

.maps .black {
    position: absolute;
    left: 0;
    top: 0;
    /* width: 100%;
    height: 100%; */
    background: rgba(0, 0, 0, 0);
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.maps .location-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #205c36;
    color: white;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 1rem;
    border: 2px solid #205c36;
    cursor: pointer;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: visible;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 45px;
}

.maps .map-marker:hover .wrap-circle {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
    -o-animation: unset;
}

.maps .map-marker:hover .location-tag {
    opacity: 1;
    visibility: visible;
    transform: translate(10px, -50%);
    z-index: 2;
}

.maps .location-tag:hover {
    background-color: #205c36;
    color: #fff;
}

.maps .location-tag .circle {
    width: 20px;
    height: 20px;
    border: 2px solid white;
}

.maps .location-tag .circle-inner {
    width: 8px;
    height: 8px;
    background-color: white;
}

.map-container {
    position: relative;
}

.map-inner {
    position: relative;
    /* display: inline-block; */
    white-space: nowrap;
    width: 100%;
}

.map-inner img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
}

#home .section2 .games {
    height: 95vh;
    background: url(../img/bg-lodeh-game.png);
    background-repeat: no-repeat;
    background-size: cover;
}
#home .section2 .games .text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transform: unset;
}
#home .section2 .games .text h1 {
    text-align: left;
}
#home .section2 .games .text p {
    text-align: left;
}
#home .section2 .games .text a {
    margin-top: 8px;
    padding: 0;
    border: none;
}
#home .section2 .games .text a img {
    height: 65px;
}

#home .section2 {
    background: linear-gradient(to bottom, #16461e, #4f714f);
    position: relative;
}

#home .section2 .bg {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
}

#home .section2 .bgBlack {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
}

#home .resep {
    padding-top: 100px;
    position: relative;
}

#home .resep h1 {
    font-size: 3rem;
    font-family: fertigoitalic;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

#home .resep .ctnResep {
    margin-top: 50px;
}

#home .resep .ctnResep .items {
    position: relative;
    z-index: 2;
}

#home .resep .ctnResep .items .item {
    border: 2px solid #fff;
    position: relative;
    border-radius: 15px;
    display: block;
    overflow: hidden;
}

#home .resep .ctnResep .items .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

#home .resep .ctnResep .items .item:hover img {
    transform: scale(1.2);
}

#home .resep .ctnResep .items .item .bgBlack2 {
    width: 100%;
    height: 100%;
    background: rgba(48, 88, 43, 8.78);
    background: linear-gradient(
        180deg,
        rgba(48, 88, 43, 0) 60%,
        rgba(48, 88, 43, 0.78) 90%,
        rgba(48, 88, 43, 0.78) 100%
    );
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
    border-radius: 15px;
}

#home .resep .ctnResep .items .item .txt {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

#home .resep .ctnResep .items .item .txt h2 {
    color: #fff;
    font-size: 1rem;
}

#home .resep .ctnResep .items .item .txt .ctg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

#home .resep .ctnResep .items .item .txt .ctg p {
    font-size: 0.8rem;
    background: #eaa935;
    color: #fff;
    font-family: fertigoitalic;
    padding: 5px 15px;
    border-radius: 15px;
}

#home .resep .ctnResep .items .item .txt .ctg span.cs {
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    display: block;
    color: #fff;
    font-family: fertigoitalic;
    text-align: center;
}

#home .resep .ctnResep .items .item .txt .ctg span {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .resep .ctnResep .items .item .txt .ctg span i {
    color: #25592a;
    font-size: 1rem;
    transform: rotate(45deg);
}

#home .funFact {
    position: relative;
    margin-top: 100px;
    overflow: hidden;
    position: relative;
}

#home .funFact .wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

#home .funFact .wrap .grab-right p {
    color: #fff;
    font-size: 1.5rem;
    font-family: fertigoitalic;
    position: relative;
    padding-right: 50px;
}

#home .funFact .wrap .grab-right p i {
    font-size: 2rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#home .funFact .wrap h1 {
    font-size: 3rem;
    font-family: fertigoitalic;
    color: #fff;
}

#home .funFact .wrap a {
    font-size: 1.2rem;
    color: #f2a951;
    cursor: pointer;
}

#home .funFact .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e9a72f;
    z-index: 1;
    transform: translateY(-50%);
}

/* #home .funFact .swiper-funfact {
    margin-top: 150px;
    overflow: visible;
} */

#home .funFact .swiper-slide {
    /* border: solid 1px #fff; */
}

#home .funFact .timeline-item {
    display: flex;
    justify-content: center;
}

#home .funFact .timeline-item:hover img {
    transform: scale(1.1);
}

#home .funFact .timeline-item .text {
    width: 60%;
    position: relative;
}

#home .funFact .timeline-item .text > div {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    margin-bottom: -3px;
}

#home .funFact .timeline-item .text img {
    width: 40px;
}

#home .funFact .timeline-item .text .no {
    display: block;
    justify-content: center;
    align-items: center;
    border: solid 1px transparent;
    border-radius: 50%;
    font-family: fertigoitalic;
    color: #e9a72f;
    font-size: 1rem;
}

#home .funFact .timeline-item .text h6 {
    font-family: fertigoitalic;
    color: #fff;
    font-size: 1rem;
    margin: 0;
    margin-bottom: 5px;
}

#home .funFact .timeline-item .text p {
    color: #fff;
    font-size: 0.8rem;
    margin: 0;
    margin-bottom: 5px;
    display: none;
}

#home .funFact .timeline-item .text .ln {
    width: 1px;
    height: 50px;
    background-color: #e9a72f;
    margin-bottom: 5px;
    display: none;
}

#home .funFact .timeline-item .image {
    width: 40%;
    position: relative;
    border-radius: 50%;
    border: solid 5px transparent;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .funFact .timeline-item .image > div {
    background: #16461e;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: solid 1px #e9a72f;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .funFact .timeline-item .image img {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

#home .funFact .timeline-item .image:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    content: "";
    border-radius: 50%;
}

#home .funFact .swiper-slide-active .timeline-item .image {
    border: solid 5px #e9a72f;
    background: #16461e;
}

#home .funFact .swiper-slide-active .timeline-item .text .no {
    border: solid 1px #e9a72f;
    display: flex;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    margin-bottom: 10px;
}

#home .funFact .swiper-slide-active .timeline-item .text p {
    display: block;
}

#home .funFact .swiper-slide-active .timeline-item .text .ln {
    display: block;
    margin: 0 auto;
    margin-bottom: -10px;
    position: relative;
}

#home .funFact .swiper-slide-active .timeline-item .text .ln:after {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #e9a72f;
    border-radius: 50%;
    content: " ";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#home .funFact .swiper-slide-active .timeline-item .text > div {
    padding-left: 15px;
}

#home .galeri {
    background: linear-gradient(to bottom, #16461e, #4f714f);
    padding: 75px 0 50px;
    position: relative;
}

#home .galeri .wrap h1 {
    font-size: 3rem;
    font-family: fertigoitalic;
    color: #fff;
}
#home .galeri .wrap p {
    font-size: 1rem;
    color: #fff;
    margin-top: 15px;
}

#home .galeri .wrap a {
    font-size: 1.2rem;
    color: #f2a951;
    cursor: pointer;
}

#home .galeri .items {
    margin-top: 50px;
    justify-content: center;
}

#home .galeri .items .item {
    aspect-ratio: 1 / 1;
    display: block;
    position: relative;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 15px;
}

#home .galeri .items .item:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f441c;
    background: linear-gradient(
        0deg,
        rgba(31, 68, 28, 0) 60%,
        rgba(31, 68, 28, 0.78) 90%,
        rgba(31, 68, 28, 0.78) 100%
    );
    content: "";
}

#home .galeri .items .item .bgimages {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

#home .galeri .items .item:hover .bgimages {
    transform: scale(1.2);
}

#home .galeri .items .item h2 {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    color: #fff;
    font-size: 1.2rem;
    z-index: 1;
}

#home .galeri .items .item .play {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 2.5rem;
    transform: translate(-50%, -50%);
    z-index: 1;
}
#home .galeri .items .item .instagram-ic {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #fff;
    font-size: 1.5rem;
}
#home .galeri .items .item .imgkol {
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
}

#galeriModal .videoContainer {
    height: 100%;
    border: 2px solid #fff;
    background: #000;
    padding: 5px;
}
.video-loading {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

#galeriModal .videoContainer video {
    /* object-fit: cover; */
    width: 100%;
}

#galeriModal .descriptionContainer {
    padding: 30px;
}

#galeriModal .descriptionContainer h2 {
    color: #fff;
    font-size: 0.8rem;
    background: #235425;
    border-radius: 30px;
    padding: 8px;
    width: auto;
    display: inline-block;
}

#galeriModal .descriptionContainer h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 15px;
}

#galeriModal .descriptionContainer p {
    color: #fff;
    font-size: 1rem;
    margin-top: 15px;
}

#galeriModal .modal-dialog .modal-content {
    position: relative;
    padding: 30px;
    background: #6c9166;
}

#galeriModal .modal-dialog .modal-content i {
    position: absolute;
    font-size: 1.2rem;
    color: #fff;
    top: 10px;
    right: 10px;
}
.galeri .bgmap {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
}
.testimonial {
    background: linear-gradient(to bottom, #16461e, #4f714f);
    overflow: hidden;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.testimonial .wrapTitle {
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial .wrapTitle h1 {
    font-size: 3rem;
    font-family: fertigoitalic;
    color: #fff;
    position: relative;
    z-index: 2;
}

.testimonial .wrapTitle a {
    color: #e9a72f;
    font-family: fertigoitalic;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.testimonial .wrapTitle a span {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial .wrapTitle a span i {
    color: #25592a;
    font-size: 1rem;
}

.testimonial .swiper-testimonial {
    margin-top: 50px;
    z-index: 2;
    position: relative;
    overflow: visible;
}

.testimonial .swiper-testimonial .swiper-slide.swiper-slide-active {
    transform: scale(1.5);
    z-index: 999;
}

.testimonial .swiper-testimonial .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial .swiper-testimonial .swiper-slide .bgBlack {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
    border-radius: 15px;
}

.testimonial .swiper-testimonial .swiper-slide .txt {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.testimonial .swiper-testimonial .swiper-slide .txt h2 {
    color: #fff;
    font-size: 1.5rem;
}

.testimonial .swiper-testimonial .swiper-slide .txt p {
    color: #fff;
    font-size: 1rem;
    font-family: fertigoitalic;
    margin-top: 5px;
}

.testimonial .text {
    background: #16461e;
    margin-top: 0;
    padding: 75px 30px 50px;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    width: 50%;
    margin: 0 auto;
}

.testimonial .text {
    color: #fff;
    font-family: fertigoitalic;
    font-size: 1.2rem;
}

#funfact,
#galeri {
    scroll-margin-top: 15px;
}
#home .game {
    position: relative;
}
#home .game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#mapModal .modal-content {
    background: #16461e;
    padding: 30px;
    position: relative;
}

#mapModal .modal-content i {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #fff;
}
#mapModal .modal-content h2 {
    color: #fff;
    font-size: 2rem;
    font-family: fertigoitalic;
}
#mapModal .modal-content img {
    margin-top: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#mapModal .modal-content p {
    color: #fff;
    font-size: 1rem;
    margin-top: 15px;
}
#home .funFactNew {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0;
    position: relative;
}
#home .funFactNew .title {
    font-size: 3rem;
    color: #fff;
    z-index: 1;
    position: relative;
    text-align: center;
}
#home .funFactNew .swiper {
    padding-top: 50px;
    text-align: center;
}
#home .funFactNew .swiper h1 {
    font-size: 2rem;
    color: #fff;
}
#home .funFactNew .swiper h2 {
    font-size: 1.5rem;
    font-family: fertigoitalic;
    color: #fff;
    margin-top: 15px;
}
#home .funFactNew .swiper img {
    margin-top: 50px;
    width: 50px;
}
#home .funFactNew .swiper p {
    font-size: 1.2rem;
    font-family: fertigoitalic;
    color: #fff;
    margin-top: 50px;
    padding: 0 100px;
}
.funFactNew .swiper-pagination {
    z-index: 9999 !important;
    position: absolute !important;
    bottom: 40px !important;
}
#home .funFactNew .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    width: 10px;
    height: 10px;
    opacity: 1;
}
#home .funFactNew .swiper-pagination-bullet-active {
    background: #fff;
}
#home .funFactNew .bgBlack {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
#home .funFactNew .swiper-button-next,
.swiper-button-prev {
    color: #fff;
}
footer {
    background: #fbb03b;
    padding: 25px 0;
    text-align: center;
}
footer h1 {
    font-size: 2.5rem;
    font-family: fertigoitalic;
    color: #136846;
}
footer h3 {
    font-size: 1.5rem;
    color: #136846;
    margin-top: 8px;
}
footer .wrapFooter {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
    margin-top: 30px;
}
footer .wrapFooter a {
    display: flex;
    justify-content: center;
}
footer .wrapFooter img {
    height: 60px;
    transition: all 0.3s ease;
}
footer .wrapFooter a:hover img {
    transform: scale(1.1);
}
/* .border-pattern {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 75px;
    background-image: url(../img/border-pattern1.png);
    background-size: auto 100%;
    background-repeat: repeat;
    z-index: 1;
} */
.border-pattern {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url(../img/bordernew.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
#galeriModal .border1 {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 45px;
    background-image: url(../img/modal-top.svg);
    background-size: auto 100%;
    background-repeat: repeat;
}
#galeriModal .border2 {
    position: absolute;
    top: 15px;
    bottom: 15px;
    right: -30px;
    width: 45px;
    background-image: url(../img/modal-right.svg);
    background-size: 100% auto;
    background-repeat: repeat;
}
#galeriModal .border3 {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 45px;
    background-image: url(../img/modal-bottom.svg);
    background-size: auto 100%;
    background-repeat: repeat;
}
#galeriModal .border4 {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: -30px;
    width: 45px;
    background-image: url(../img/modal-left.svg);
    background-size: 100% auto;
    background-repeat: repeat;
}
.tiktok-embed {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 12px;
    border: none !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}
.tiktok-embed > section {
    padding: 0 !important;
    margin: 0 !important;
}
#galeriModal h4 {
    color: #fff;
    font-size: 1rem;
    margin-top: 15px;
}
#moreVideosWrapper {
    margin-top: 15px;
    width: 150px;
    height: 150px;
    background: #000;
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
#moreVideosWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
#galeriModal iframe {
    width: 100%;
}
@media (orientation: portrait) {
    .testimonial .wrapTitle h1 {
        font-size: 1.5rem;
    }
    #home .section2 .games {
        background: url(../img/bg-lodeh-game-mobile2.png);
        height: 85vh;
    }
    #home .section2 .games .text {
        position: absolute;
        bottom: 15px;
        left: 15px;
    }
    #home .section2 .games .text a img {
        height: 55px;
    }
    .testimonial .wrapTitle a {
        font-size: 0.8rem;
    }

    .testimonial .swiper-testimonial .swiper-slide .txt h2 {
        font-size: 0.8rem;
    }

    .testimonial .swiper-testimonial .swiper-slide .txt p {
        font-size: 0.7rem;
    }

    .testimonial .swiper-testimonial .swiper-slide .txt {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    #home .resep h1 {
        font-size: 2rem;
    }

    #home .resep {
        padding-top: 50px;
    }

    #home .resep .ctnResep {
        margin-top: 30px;
    }

    #home .resep .ctnResep .items .item .txt h2 {
        font-size: 0.8rem;
    }

    #home .resep .ctnResep .items .item .txt .ctg p {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    #home .resep .ctnResep .items .item {
        margin-bottom: 15px;
    }

    #home .resep .ctnResep .items .item .txt .ctg span {
        width: 20px;
        height: 20px;
    }

    #home .resep .ctnResep .items .item .txt .ctg span i {
        font-size: 0.6rem;
    }

    #home .funFact {
        margin-top: 50px;
    }

    #home .funFact .wrap h1 {
        font-size: 1.5rem;
    }

    /* #home .funFact .swiper-funfact {
        margin-top: 175px;
    } */

    #home .galeri .wrap h1 {
        font-size: 1.5rem;
    }

    #home .galeri .items {
        margin-top: 0px;
    }

    #home .galeri .items .item .play {
        font-size: 2rem;
    }

    .testimonial .text {
        width: 100%;
        padding: 50px 30px 50px;
    }

    .testimonial .text {
        font-size: 1rem;
    }

    .maps .map-inner {
        position: relative;
    }

    .map-container {
        position: relative;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
    }

    .maps .text h1 {
        font-size: 2rem;
    }

    .maps .text p {
        font-size: 1rem;
    }

    /* .maps .text {
        top: 50px;
    } */

    .maps .text {
        bottom: 30px;
    }

    #home .resep .ctnResep .items .item .txt .ctg span.cs {
        font-size: 0.6rem;
    }

    #home .funFact .wrap .grab-right p {
        font-size: 1rem;
        padding-right: 30px;
    }

    #home .funFact .wrap .grab-right p i {
        font-size: 1.2rem;
    }

    #galeriModal .modal-dialog .modal-content i {
        top: 10px;
        right: 5px;
    }
    #home .funFactNew {
        height: 100%;
        background-size: unset;
    }
    #home .funFactNew .title {
        font-size: 1.5rem;
    }
    #home .funFactNew .swiper h1 {
        font-size: 2rem;
    }
    #home .funFactNew .swiper h2 {
        font-size: 1.2rem;
    }
    #home .funFactNew .swiper p {
        font-size: 1rem;
    }
    #home .funFactNew .swiper img {
        margin-top: 20px;
        width: 35px;
    }
    #home .funFactNew .swiper p {
        margin-top: 20px;
        padding: 0 50px;
    }
    #home .funFactNew .swiper-button-next:after,
    #home .funFactNew .swiper-button-prev:after {
        font-size: 1.5rem;
    }
    .maps .icon-drag {
        position: absolute;
        right: 15px;
        top: 55px;
        color: #fff;
        text-align: center;
    }
    .maps .icon-drag p {
        font-size: 1rem;
    }
    .maps .icon-drag i {
        font-size: 1.5rem;
    }
    #galeriModal .descriptionContainer {
        padding: 10px 15px;
    }
    #galeriModal .videoContainer {
        margin-top: 50px;
    }
    #galeriModal .descriptionContainer h3 {
        margin-top: 15px;
    }
    footer .wrapFooter {
        justify-content: center;
        gap: 20px 30px;
    }
    footer .wrapFooter img {
        height: 40px;
    }
    footer h1 {
        font-size: 1.5rem;
    }
    footer h3 {
        font-size: 1rem;
    }
    #galeriModal .videoContainer video {
        width: 100%;
    }
    #galeriModal .modal-dialog .modal-content {
        padding: 15px;
    }
    /* .border-pattern {
        height: 55px;
    } */
    .border-pattern {
        height: 50px;
    }
    #galeriModal .border1 {
        top: -5px;
        height: 20px;
    }
    #galeriModal .border2 {
        right: -5px;
        width: 20px;
    }
    #galeriModal .border3 {
        bottom: -5px;
        height: 20px;
    }
    #galeriModal .border4 {
        left: -5px;
        width: 20px;
    }
    #galeriModal .videoContainer {
        height: auto;
    }
    .tiktok-embed {
    }
    .funFactNew .swiper-pagination {
        bottom: 30px !important;
    }
}
