/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital@0;1&display=swap');

:root {
    --primary: #81B03F;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

.btn-green {
    background-color: var(--primary);
    color: #fafafa;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 0;
    margin-bottom: 0;
    height: 70px;
    list-style: none;
}

.navbar-toggler {
    position: absolute;
    right: 0px;
    top: 20px;
    border-radius: 12px;
    vertical-align: middle;
}

.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Inter', sans-serif;;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    color: #fafafa;
    font-weight: 300;
    outline: none;
}


.navbar .navbar-nav .nav-item.nav-link.btn-custom{
    background-color: #81B03F;
    color: #fafafa !important;
    border-radius: 24px;
    padding: 8px 20px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.c-logo {
    width: 120px; 
    position: absolute;
    top: 20%;
    left: 30px;
    transition: all 0.3s ease 0s;
}
.c-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .c-logo {
        top: 15%;
        left: 20px;
        width: 80px;
    }

    .c-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nav-header {
        background-color: #ffffff;
        height: 70px;
    }
    
    .navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 0;
        margin-bottom: 0;
        margin-top: 60px;
        height: 100%;
        list-style: none;
        background-color: white;
    }

    .navbar .navbar-nav .nav-link {
        color: #111;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: visible;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



/*** Header ***/
.carousel-inner {
    width: 100%;
    height: 100vh;    
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
}

.carousel-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: 'Inter', sans-serif;;
    color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-caption h1 {
    color: #FFF;
    font-family: 'Inter', sans-serif;;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.carousel-caption p {
    color: #FFF;
    font-family: 'Inter', sans-serif;;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

.btn-shop {
    background-color: var(--primary);
    color: #fafafa;
    border: 0;
    font-family: 'Inter';
    font-weight: 400;
}

.btn-shop:hover {
    color: #fafafa;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 100%;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6);
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
}

.section-header h2 {
    color: #000;
    text-align: center;
    font-family: 'Inter', sans-serif;;
    font-size: 30px;
    font-weight: 700;
}

/* .section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
} */

/* .section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
} */

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    font-family: 'Inter', sans-serif;;
    transform: translateX(0);
}

/*** CTA Hampers ***/
.cta-hampers {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.cta-hampers .cta-image {
    width: 40%;
}

.cta-hampers .btn {
    background-color: var(--primary);
    color: #fafafa !important;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 30px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 200px;
    height: 150px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


.swiper-width {
    width: 100%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.swiper-width .swiper-area {
    max-width: 1393px;
    margin: auto;
}

.swiper-width .swiper-area .swiper-container {
    margin-left: -50%;
    width: 200%;
    position: relative;
}

.swiper-width .swiper-area .swiper-container .swiper-button-next {
    position: absolute;
    right: 30%;
    filter: brightness(5);
    background-size: 20px;
}

.swiper-width .swiper-area .swiper-container .swiper-button-prev {
    position: absolute;
    left: 30%;
    filter: brightness(5);
    background-size: 20px;
}

.swiper-width .swiper-area .swiper-container .swiper-slide {
    position: relative;
}

.swiper-width .swiper-area .swiper-container .swiper-slide span {
    width: 100%;
    display: block;
    color: var(--primary);
    font-family: PlayfairDisplay-Italic;
    font-size: 18px;
    padding: 10px;
    font-weight: 700;
}

.swiper-width .swiper-area .swiper-container .swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.swiper-width .swiper-area .swiper-container .swiper-slide video {
    width: 100%;
    height: 500px;
    background: #111111;
}

.swiper-width .swiper-area .swiper-container .swiper-slide img a {
    display: block;
}

.swiper-width .swiper-area .swiper-container .swiper-slide img a img {
    width: 100%;
}

.swiper-width .swiper-area .swiper-container .swiper-slide.swiper-slide-prev,
.swiper-width .swiper-area .swiper-container .swiper-slide.swiper-slide-next {
    opacity: 0.5;
}

.c-about-caption {
    width: 50%;
    margin: auto;
}

.c-about-caption .c-about-txt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 200;
}

.title-1 {
    font-size: 18px;
}

.title-1 span{
    font-weight: 300;
}

.ptb-15 {
    padding-bottom: 15px;
    padding-top: 15px;
}

.company-value {
    width: 80%;
    margin: auto;
}

.company-value h1 {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.company-value p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 0;
}

.company-value .vision {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #FDEBE7;
    padding: 30px;
    padding-top: 80px;
    border-radius: 24px;
}

.company-value .vision::before {
    content: "";
    display: block;
    width: 180px;
    height: 100%;
    background: url('../img/imgbuahnus/feature-vision.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -50%;
    transform: translate(50%, 0);

}

.company-value .mission {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #F2FFE0;
    padding: 30px;
    padding-top: 80px;
    border-radius: 24px;
}

.company-value .mission::before {
    content: "";
    display: block;
    width: 120px;
    height: 100%;
    background: url('../img/imgbuahnus/feature-mision.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -50%;
    transform: translate(100%, 0);
}

.feature-wrap p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 200;
}

.swiper.what-we-do {
    filter: brightness(0.8);
    width: 100%;
    height: 100%;
}

.swiper.what-we-do .swiper-button-next,
.swiper.what-we-do .swiper-button-prev {
  display: none !important;
}

.load-more-container div.row {
    row-gap: 20px;
}

.load-more-container div.row div:nth-child(1n+9) {
    max-height: 0;
    opacity: 0;
    transition: 0.1s ease-in;
}
.load-more-container .load-more-btn {
    width: 100%;
    line-height: 40px;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    display: inline-block;
    color: var(--primary);
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    z-index: 999;
}
.load-more-container .load-more-btn:hover > .loaded {
    filter: brightness(1.1);
}

.load-more-container .load-more-btn .unloaded {
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 24px;
}

.load-more-container .load-more-btn .loaded {
    display: none;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 24px;
}

.load-more-container .load-more-btn .loaded:hover, 
.load-more-container .load-more-btn .unloaded:hover {
    background-color: var(--primary);
    color: #fafafa;
}

.load-more-container #load-more {
    display: none;
}

.load-more-container #load-more:checked ~ div.row div:nth-child(1n+9) {
    max-height: 999px;
    opacity: 1;
    transition: 0.2s ease-in;
}
.load-more-container #load-more:checked ~ .load-more-btn .loaded {
    display: inline;
}
.load-more-container #load-more:checked ~ .load-more-btn .unloaded {
    display: none;
}

/*** Product ***/
.product-header {
    height: 350px;
    background-image: url('../img/imgbuahnus/product-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.btn-outline-green {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 5px 15px;
}

.btn-outline-green.active {
    background-color: var(--primary);
    color: #fafafa;
}

.btn-outline-green:hover {
    background-color: var(--primary);
    color: #fafafa;
}

.product-item {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px;
}

.product-item .product-image {
    width: 100%;
    height: 250px;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/*** Custom Hampers ***/
.custom-header {
    height: 350px;
    background-image: url('../img/imgbuahnus/hdcustom.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.tabStep li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.formDataInfo {
    width: 50%;
}

/*** Contact ***/
.contact-header {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    filter: brightness(0.8);
}

.contact-wrapper {
    width: 65%;
    margin: auto;
}

.contact-wrapper .store {
    border-left: 1px solid #000;
    padding-left: 80px;
}

.contact-location {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-location .label {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/*** Footer ***/
.footer {
    color: #999999;
    background-color: #333;
}

.footer .wrap-footer {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 0;
}

.footer .wrap-footer div {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
}

.footer .wrap-footer .footer-loc {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer .wrap-footer .footer-loc .label {
    color: #fafafa;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer .wrap-footer .footer-social {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 5px;
}

.footer .wrap-footer .footer-social svg {
    color: #FAFAFA;
}

.btn.btn-contact {
    background-color: var(--primary);
    color: #fafafa !important;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 30px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: 'Inter', sans-serif;;
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Wizard */
.step-indicator {
    border-collapse: separate;
    display: table;
    margin-left: 0px;
    position: relative;
    table-layout: fixed;
    text-align: center;
    vertical-align: middle;
    padding-left: 0;
    padding-top: 20px;
}
.step-indicator li {
    display: table-cell;
    position: relative;
    float: none;
    padding: 0;
    width: 1%;
}
.step-indicator li:after {
    background-color: #333333;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
    top: 32px;
}
.step-indicator li:after {
    left: 50%;
}
.step-indicator li:last-child:after {
    display: none;
}
.step-indicator li.active .step {
    border-color: #81B03F;
    background-color: #81B03F;
    color: #fff;
}
.step-indicator li:hover .step {
    border-color: #81B03F;
    background-color: #81B03F;
    color: #fff;
}
.step-indicator li.active .caption {
    color: #81B03F;
}
.step-indicator li.complete:after {
    background-color: #87d37c;
}
.step-indicator li.complete .step {
    border-color: #87d37c;
    color: #87d37c;
}
.step-indicator li.complete .caption {
    color: #87d37c;
}
.step-indicator .step {
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    color: #000;
    font-size: 24px;
    height: 64px;
    line-height: 64px;
    margin: 0 auto;
    position: relative;
    width: 64px;
    z-index: 1;
}
.step-indicator .step:hover {
    cursor: pointer;
}
.step-indicator .caption {
    color: #ccc;
    padding: 11px 16px;
}

/* Media query for iPad */
@media (max-width: 1023px) {
    .carousel-inner {
      height: 100vh;
    }

    .carousel-item {
        height: 100%;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6);
    }

    .carousel-caption {
        text-align: center;
        width: 75%;
        margin: auto;
    }

    .company-value .vision::before {
        transform: translate(100%, 0);
    }

    .company-value .mission::before {
        transform: translate(160%, 0);
    }

    .formDataInfo {
        width: 50%;
    }

    .contact-location {
        width: 100%;
    }

    .contact-wrapper .store {
        padding-left: 20px;
    }

    .footer .wrap-footer {
        padding: 50px 20px;
    }
}
  
/* Media query for mobile devices */
@media (max-width: 767px) {
    .carousel-inner {
        height: 100vh;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6);
    }

    .cta-hampers {
        flex-direction: column;
        gap: 20px;
    }

    .cta-hampers .cta-image {
        width: 80%;
    }

    .cta-hampers .size-w-4 {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cta-hampers .size-w-4 div {
        align-items: center;
        text-align: center;
    }

    .swiper-width .swiper-area .swiper-container .swiper-button-next {
        right: 25%;
    }

    .swiper-width .swiper-area .swiper-container .swiper-button-prev {
        left: 25%;
    }
    
    .swiper.what-we-do {
        height: 350px;
    }

    .c-about-caption {
        width: 90%;
        margin: auto;
    }

    .company-value {
        width: 100%;
        margin: auto;
    }

    .company-value .vision::before {
        transform: translate(10%, 0);
    }

    .company-value .mission::before {
        transform: translate(50%, 0);
    }

    .contact-wrapper {
        width: 90%;
        row-gap: 50px;
    }

    .contact-wrapper .store {
        border-left: 0;
        padding-left: 0;
    }

    .formDataInfo {
        width: 90%;
    }

    .footer .wrap-footer {
        flex-direction: column;
    }

    .footer .text-end {
        text-align: left !important;
    }

    .footer .wrap-footer .footer-social {
        justify-content: start;
    }

    .step-indicator .step {
        font-size: 20px;
        height: 50px;
        line-height: 50px;
        width: 50px;
    }

    .step-indicator .caption {
        padding: 10px 5px;
    }
}