
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'Alba';
    src: url('fonts/Albra-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'ButtercellScript';
    src: url('fonts/ButtercellScript.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'grandiscondensed-medium';
    src: url('fonts/grandiscondensed-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaCE-Bold';
    src: url('fonts/HelveticaCE-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold_0.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold_0.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --Alba: 'Alba';
    --ButtercellScript: 'ButtercellScript';
    --GrandisCondensedMedium: 'grandiscondensed-medium';
    --HelveticaCEBold: 'HelveticaCE-Bold';
    --InterBold: 'Inter';
    --InterSemiBold: 'Inter';
    --InterRegular: 'Inter';
    --primaryColor: #1881e4;
    --whiteColor: #fff;
    --blackColor: #000;
}


html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--Alba);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #333333;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

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

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/



.header-area{
    position: relative;
}

.header-logo {
    position: absolute;
    right: calc((100vw - 1440px) / 2);
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 40px;
    text-align: right;
}

.banner-middle-tx h3 {
    font-family: var(--GrandisCondensedMedium);
    font-size: 36px;
    color: #fff;
}

.banner-middle-tx {
    position: absolute;
    left: 61%;
    top: 49%;
    transform: translate(-50%, -50%);
}

.banner-bottom-tx {
    position: absolute;
    left: 52%;
    top: 72%;
    transform: translate(-50%, -50%);
}

.banner-bottom-tx h3 {
    font-family: var(--GrandisCondensedMedium);
    font-size: 40px;
    color: #fff;
    padding-bottom: 10px;
    text-align: center;
}

.banner-bottom-tx span {
    font-family: var(--GrandisCondensedMedium);
    font-size: 25px;
    color: #fff;
    text-align: center;
    display: block;
}

.banner-inner {
    background-color: #89B08A;
    padding: 14px 20px;
    border-radius: 40px;
    border: 4px solid #fff;
    max-width: 1280px;
    width: 100%;
    margin-inline: auto;
    
}

.banner-inner > img {
    border-radius: 30px;
}

.banner-inner .video-play {
    cursor: pointer;
}

.video-banner {
    padding-top:33%;
    position: relative;
    z-index: 2;
}
.main-bg {
    background-image: url(images/main-bg.png);
    overflow: hidden;
    margin-top: -18%;
    position: relative;
    z-index: 9999999;
    background-size: cover;
}
.bukan-section {
    background-image: url(images/section02-bg.png);
    padding-top: 50px;
    overflow: hidden;
}
.tour-slider.owl-carousel .owl-item {
    padding:0px 10px
}
.bukan-inner{
    background-image: url(images/col-bg-box.png);
    border: 3px solid #fff;
    padding: 70px 45px;
    border-radius: 40px;
    margin-bottom: 80px;
}

.bukan-top {
    padding-bottom: 40px;
    text-align: center;
}

.bukan-top p {
    text-align: center;
    font-family: Albra;
    color: #fff;
    font-size: 40px;
    line-height:1.2;
    padding-top: 20px;
}

.bukan-inner .single-card img {
    min-height: 720px;
}

.mt-60 {
    margin-top: 80px;
}
.b1 {
    left: 6%;
    bottom: 5%;
}
.b2 {
    left: 24%;
}
.b3 {
    left: 43%;
    bottom: -14%;
}
.b4 {
    right: 17%;
}
.b5 {
    right: 2%;
    bottom: 2%;
}
.buker-title h2 {
	font-size: 4.75vw;
	font-family: var(--GrandisCondensedMedium);
	text-transform: uppercase;
	color: #fff;
	line-height: 85%;
    text-shadow:1px 1px 10px #999
}

.buker-title {
	display: flex;
	flex-direction: column;
	margin-inline: auto;
	max-width: 900px;
    margin-bottom: 50px;
    padding-top:36%
}
.buker-title p {
	font-size: 5.8vw;
	font-family: var(--ButtercellScript);
	color: #fff33a;
	position: relative;
	left: 37%;
	margin-top: -5%;
}







/* proudct area  */

.product-area {
    background: url(images/product-area-bg.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-block: 20px;
    padding-left: 40px;
}



.meet-area {
    background: url(images/meet-area-bg.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 50px;
}

.main-image img {
    width: 100%;
}
.meet-area-top {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meet-title h2 {
    font-size: 4.75vw;
    font-family: var(--GrandisCondensedMedium);
    text-transform: uppercase;
    color: #fff;
    line-height: 85%;
}

.meet-title p {
	font-size: 4.4vw;
	font-family: var(--ButtercellScript);
	color: #fff33a;
	margin-left: 65px;
}

.meet-title {
	margin-top: 20px;
}


.meet-content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1290px;
    margin-inline: auto;
    gap: 15px;
    justify-content: center;
    padding-top: 50px;
    z-index: 2;
    padding-inline: 20px;
}


.meet-card-right {
    border-radius: 20px;
    background-image: radial-gradient(circle at center, #f8fbf9 0%, #8bb28c 100%);
    border: 1.73147296090778px solid #ffffff;
    padding: 40px 50px;
    flex: 1;
    max-width: 772px;
}
.meet-card-right .meet-date {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--InterBold);
    font-weight: 700;
    color: #BF161D;
}

.meet-card-right .meet-date h2 {
    font-size: 175px;
}
.meet-date span,
.meet-date sup {
    font-size: 100px;
    font-family: var(--InterRegular);
    font-weight: 400;
}
.meet-date sup {
    font-size: 50px;
    top: -105px;
}
.meet-card-right h4 {
    font-family: var(--InterBold);
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #165F3A;
}

.meet-card-left {
    flex: 1;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.my-town {
	flex: 1;
	border: 1.5px solid #fff;
	border-radius: 15px;
	overflow: hidden;
    background: #C9373A;
    padding: 10px;
	max-height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.my-town img {
	width: 100%;
}
.village-card {
	flex: 1;
	border: 1.5px solid #fff;
	border-radius: 15px;
	overflow: hidden;
    padding: 10px;
    background: #63873E;
	max-height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.village-card img {
	width: 100%;
}
.main-image {
	margin-top: -25%;
	position: relative;
	overflow: hidden;
}

.meet-icon-one {
    position: absolute;
    max-width: 200px;
    left: 18%;
    bottom: 15%;
}
.meet-icon-two {
    position: absolute;
    max-width: 200px;
    right: 35%;
    bottom: 10%;
}
.meet-icon-three {
    position: absolute;
    max-width: 200px;
    right: -20px;
    bottom: 10%;
}





.section-block {
    background: url(images/half-bg.png) no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
}


/* tour area start hare  */

.tour-area {
    padding-inline: 25px;
    padding-block: 50px;
}
.tour-container {
  max-width: 1750px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tour-title h2 {
    font-size: 4.75vw;
    font-family: var(--GrandisCondensedMedium);
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 85%;
}

.tour-title span {
    font-size: 4.4vw;
    font-family: var(--ButtercellScript);
    color: #fff33a;
    position: relative;
    text-align: center;
    display: block;
}
.tour-title {
	display: flex;
	flex-direction: column;
}

.tour-series-table {
    width: 100%;
    border-collapse: separate;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}
.tour-series-card {
	width: 100%;
}

.tour-series-table thead tr {
    background: #2e5e3d;
}
.tour-series-table th {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--InterSemiBold);
    color: #fff;
}
.tour-series-table td {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--InterSemiBold);
    color: #2e5e3d;
    white-space: nowrap;
}
.tour-series-table tbody tr {
    background: #fff;
}
.venue-cell {
    display: flex;
    align-items: center;
    gap: 16px;
}

.venue-cell p {
    display: block;
}
.velue-logo img {
    max-width: 49px;
}
.tour-time span {
    font-size: 12px;
    color: #4E4F4F;
}

.venue-cell p span {
    font-size: 12px;
    color: #4E4F4F;
}
.tour-series-card {
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.tour-series-table td:first-child {
    width: 293px;
}

.tour-series-table td:nth-of-type(2) {
    width: 386px;
}
.tour-series-table td:nth-of-type(3) {
    width: 208px;
}

.tour-series-table tbody tr:nth-of-type(even) {
    background: #F3F7F5;
}

.tour-images {
    gap: 15px;
}

.single-image {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #fff;
}
.single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* follow area style  */

.follow-area {
    padding-block: 50px;
}

.follow-title h2 {
    font-size: 4.75vw;
    font-family: var(--GrandisCondensedMedium);
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 85%;
}

.follow-title span {
	font-size: 4.4vw;
	font-family: var(--ButtercellScript);
	color: #fff33a;
	margin-left: auto;
	position: relative;
	right: 20%;
	margin-top: -3%;
}
.follow-title {
	display: flex;
	flex-direction: column;
}

.tiktok-post-area {
    max-width: 1050px;
    margin-inline: auto;
    padding-block: 50px;
}

.single-post img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.follow-on ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.follow-on ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 57px;
    height: 57px;
    font-size: 35px;
    color: #275935;
}

.follow-on ul li a:hover {
    background: #fff33a;
}






/* perubahan area style  */


.perubahan-area {
    position: relative;
}

.perubahan-title {
    position: absolute;
    top: 7%;
    left: 39%;
    display: flex;
    flex-direction: column;
}

.perubahan-title h2 {
    font-size: 4.75vw;
    font-family: var(--GrandisCondensedMedium);
    text-transform: uppercase;
    color: #fff;
    line-height: 85%;
}

.perubahan-title p {
    font-size: 4.4vw;
    font-family: var(--ButtercellScript);
    color: #fff33a;
    margin-left: auto;
    position: relative;
    right: -10%;
}

.perubahan-area > img {
	width: 100%;
}

.ambassidor-card h4 {
    font-size: 20px;
    color: #ffffff;
    font-family: var(--HelveticaCEBold);
    font-weight: bold;
}

.ambassidor-card p {
    font-size: 15.64px;
    color: #ffffff;
    font-family: var(--HelveticaCEBold);
    font-weight: bold;
    text-align: center;
}
.ambassidor-card img {
    max-width: 252px;
}


.ambassidor-card {
    position: absolute;
    left: 43%;
    top: 31%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.perubahan-area .cart-btn {
    position: absolute;
    left: 56%;
    top: 54%;
    background: #fff;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 100px;
    padding: 0;
    border: 4.42761674375909px solid #fff33a;
    box-shadow: rgba(255, 243, 58, 0.5) 0px 10px 50px;
    padding-right: 35px;
}
.perubahan-area .cart-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 50px;
}
.cart-btn .icon {
    width: 109px;
    height: 105px;
    border-radius: 56px;
    background-image: linear-gradient(90deg, #36c200 0%, #a2e83f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.cart-btn span {
    font-size: 27px;
    text-align: start;
}
.cart-btn .icon img {
    width: 100%;
    max-width: 58px;
}









.spitzer-slider .owl-item {
    padding: 0;
}

.items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.items {
    height: 100%;
}
.spitzer-area img {
    width: 100%;
}




/*=========== footer area start hare =========== */

.footer-area {
    background: #091D05;
}

.footer-wrapper {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-wrapper p {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--InterSemiBold);
    color: #FFFFFF;
    text-align: center;
}



.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: transparent;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: 100% 100% !important;
	background-position: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.owl-carousel .owl-nav button.owl-next {
	background-image: url(images/slider-right.png) !important;
	right: 0;
}

.owl-carousel .owl-nav button.owl-prev {
	background-image: url(images/slider-left.png) !important;
	left: 0;
}


.single-card {
	border-radius: 15px;
    overflow: hidden;
}

.single-card img {
    width: 100%;
    height: 100%;
}