@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #2C221D;
    --white: #fff;
    --pink: #F75A7B;
    --blue: #03B9C0;
    --yellow: #FEE071;
    --light-yellow: #FFF6D8;
    --darkgrey: #6B6B6B;
    --body-font: "Poppins", sans-serif;
    --heading-font: "Bebas Neue", sans-serif;
    --subhead-font: "Dancing Script", cursive;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--darkgrey);
    font-size: 13px;
    line-height: 1.4;
    font-family: var(--body-font);
    font-weight: 400;
    padding-right: 0 !important;
}
p{
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--body-font);
    color: var(--darkgrey);
}
h1, h2, h3, h4, h5{
    font-family: var(--heading-font);
}
h6{
    font-family: var(--subhead-font);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 98px 0;
}
.btn, input[type="submit"] {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.4px;
    border: 1px solid transparent;
    text-transform: capitalize;
    font-family: var(--body-font);
    padding: 0 24px;
    min-width: 120px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.btn-primary{
    background: var(--pink);
    color: var(--white);
    border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, input[type="submit"]:hover{
    background: var(--black);
    color: var(--blue);
    border-color: var(--black);
    box-shadow: none;
}
.btn-outline{
    color: var(--pink);
    border-color: var(--pink);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--black);
    background: transparent;
    color: var(--black);
}
/* .btn-outline:hover .bi, .btn-outline:focus .bi, .btn-outline:active .bi{
    color: var(--white);
} */
.btn-line{
    font-size: 13px;
    font-weight: 500;
    padding: 0 !important;
    height: auto !important;
    line-height: 1 !important;
    min-width: auto;
    color: var(--blue);
    border-radius: 0;
}
.btn-line:hover, .btn-line:focus, .btn-line:active{
    color: var(--black);
}
.btn-line .bi{
    font-size: 16px;
}
.myHeader .btn-outline:hover, .myHeader .btn-outline:focus, .myHeader .btn-outline:active,
.banner-text .btn-outline:hover, .banner-text .btn-outline:focus, .banner-text .btn-outline:active,
.footer-top .btn-outline:hover, .footer-top .btn-outline:focus, .footer-top .btn-outline:active{
    background: var(--white);
    color: var(--pink);
}
.section-heading{
    margin-bottom: 32px;
    max-width: 68%;
}
.form-group{
    margin-bottom: 12px;
}
.form-control, .es-form-field-container .gjs-cell input{
    height: 36px !important;
    font-size: 13px;
    border-radius: 4px !important;
    background: #F5F5F5;
    border: 1px solid #6B6B6B40 !important;
    color: var(--darkgrey) !important;
    font-weight: 500;
}
.form-control::placeholder{
    color: var(--darkgrey);
    text-transform: uppercase;
    font-size: 11px;
}
textarea {
    width: 100%;
    height: 80px;
    border-radius: 4px;
    background: #F5F5F5;
    border-color: #6B6B6B40;
    padding: 12px;
}
.form-control:focus, textarea:focus{
    border-color: var(--pink) !important;
    box-shadow: none;
    border-radius: 0;
    outline: none;
}
.contact-form label{
    font-size: 13px !important;
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 16px 4px #00000010;
}

/* Header  */
.myHeader{
    width: 100%;
    padding: 8px 0;
    background: var(--white);
    border-bottom: 1px solid #ffffff2e;
}
/* .myHeader.fixed{
    position: fixed;
    top: 0;
    left: 0;
    background: var(--pink);
    width: 100%;
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
} */
.navbar-brand img {
    height: 68px;
    width: auto;
}
.navbar-nav .nav-item .nav-link, .navbar-nav .menu-item a{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    font-family: var(--body-font);
    color: var(--black);
    position: relative;
    transition: 0.4s ease-in-out;
}
.navbar-nav .nav-item, .navbar-nav .menu-item{
    margin: 0 14px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav .nav-item.active .nav-link, .navbar-nav .nav-item:hover .nav-link,
.navbar-nav .menu-item.active a{
    color: var(--blue);
}

/* Banner  */
.banner{
    z-index: 1;
}
.banner::before{
    content: "";
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #FDE166 0%, #FAF0C4 70%, #fde16600 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.banner-img {
    position: relative;
    padding-top: 46%;
    width: 60%;
    z-index: 1;
}
.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-wrapper{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 2;
}
.banner-text{
    max-width: 40%;
}
.banner-text h1 {
    font-size: 86px;
    line-height: 1.1;
    color: var(--black);
    font-weight: 500;
    font-family: var(--heading-font);
    text-transform: capitalize;
}
.banner-text h1 strong, .about-text h2 strong, .section-heading h2 strong{
    color: var(--pink) !important;
    font-weight: 500;
    display: inline-block;
}
.banner-text p {
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0.2px;
}
.banner-text h5{
    font-family: var(--subhead-font);
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}
.banner-slider .owl-dots {
    position: absolute;
    top: 50%;
    left: -67%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.banner-slider.owl-carousel button.owl-dot.active{
    width: 8px;
    height: 42px;
}
.banner::after, .products::after, .testimonials::after, .contact::after{
    content: "";
    background: url(../images/banner-wave.png) no-repeat center;
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 54px;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 2;
}
.testimonials::after{
    filter: brightness(0) saturate(100%) invert(89%) sepia(81%) saturate(548%) hue-rotate(319deg) brightness(103%) contrast(104%);
}
.contact::after, .page-template-about .testimonials::after{
    filter: brightness(0) saturate(100%) invert(48%) sepia(40%) saturate(1964%) hue-rotate(148deg) brightness(90%) contrast(99%);
}

/* About start  */
.ab-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.about-img{
    position: relative;
    padding-top: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.about-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.about-img2{
    grid-row: span 2;
    height: 80%;
    margin: auto 0;
}
.about-text h6, .section-heading h6{
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
}
.about-text h2, .section-heading h2{
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: capitalize;
    color: var(--black);
    font-family: var(--heading-font);
    position: relative;
}
.about-text h2 strong, .section-heading h2 strong{
    font-weight: 500;
}
.about-text ul, .about-text ol{
    list-style-type: none;
    margin-bottom: 0;
    gap: 20px;
    padding-left: 0;
}
.about-text ul li{
    position: relative;
    padding-left: 20px;
}
.about-text ul li:not(:last-child){
    margin-bottom: 12px;
}
.about-text li::before{
    content: "\F26A";
    font-family: 'Bootstrap-icons';
    color: var(--pink);
    position: absolute;
    top: 2px;
    left: 0;
}
.ab-home::before, .products::before, .testimonials::before{
    content: "";
    background: url(../images/mint.png) no-repeat center;
    background-size: contain !important;
    background-position: right;
    width: 180px;
    height: 220px;
    position: absolute;
    right: 0;
    top: 10%;
    z-index: 2;
}
.products::before{
    background: url(../images/lemon-img.png) no-repeat center;
    background-position: 0 0;
    width: 320px;
    height: 220px;
    right: auto;
    left: 0;
    top: 10%;
}
.testimonials::before{
    background: url(../images/lemon1.png) no-repeat center;
    top: 4%;
}

/* products  */
.products{
    background: #E3F9FA;
}
.product-box{
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    z-index: 1;
}
.product-img, .gallery-img{
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.product-img img, .gallery-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s ease-in-out;
}
.product-box:hover img, .gallery-img:hover img{
    transform: scale(1.1);
}
.product-box .product-title{
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--body-font);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}
.product-box:hover .product-title{
    color: var(--pink);
}
.serv-row, .whyus-row{
    margin: 0 -8px;
    row-gap: 20px;
}
.serv-row [class*="col-"], .whyus-row [class*="col-"]{
    padding: 0 8px;
}
.serv-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.package-slider .owl-item.center .package-box .btn-line, .package-box:hover .btn-line{
    color: var(--white);
}
.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}
.product-text{
    padding: 20px;
}


/* Testimonial  */
.testimonials{
    background: var(--light-yellow);
}
.test-box{
    background: var(--white) ;
    border-radius: 12px;
    border: 1px solid var(--blue);
    padding: 28px 20px;
    gap: 20px;
    overflow: hidden;
    z-index: 1;
}
.test-box::before{
    content: "";
    width: 22%;
    height: 100%;
    background: #03B9C020;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.test-box .quote{
    color: var(--blue);
    font-size: 14px;
}
/* .review {
    height: 120px;
    overflow-y: auto;
} */
.review p, .review{
    font-size: 12px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--black);
}
.client-img{
    flex-shrink: 0;
    border: 2px solid var(--white);
    border-radius: 120px;
    height: 100%;
    width: 100px;
    overflow: hidden; 
}
.client-name{
    font-size: 13px;
    font-family: var(--body-font);
    font-weight: 500;
    margin-top: 4px;
    color: var(--blue);
    text-transform: capitalize;
}
.test-box .star .bi{
    color: var(--yellow);
    margin-right: 4px;
}
.testimonial-slider.owl-carousel .owl-item.center .test-box::before{
    background: #F75A7B20;
}
.testimonial-slider.owl-carousel .owl-item.center .test-box{
    border-color: var(--pink);
}
.testimonial-slider.owl-carousel .owl-item.center .test-box .quote, .testimonial-slider.owl-carousel .owl-item.center .test-box .client-name{
    color: var(--pink);
}

/* Why Us  */
.whyus{
    background: var(--yellow);
    padding: 20px 0 40px;
}
.whyus-icon {
    height: 60px;
    width: 60px;
    padding: 16px;
    border-radius: 50%;
    background: var(--white); flex-shrink: 0;
}
.whyus-icon img{
    object-fit: contain;
}
.whyus-box h5 {
    color: var(--black);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
    padding-right: 40px;
}
.why-row  [class*="col-"]:not(:last-child)::before{
    content: "";
    height: 60%;
    width: 1px;
    background: #E8E8E6;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}




/* Gallery  */
.gallery{
    background: #FAF6F0;
}
.gallery-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.grid-item:nth-child(1){
    grid-row: span 2;
    grid-column: span 2;
}
.grid-item:nth-child(3){
    grid-column: span 2;
}
.gallery-img{
    padding-top: 50%;
    border-radius: 12px;
    overflow: hidden;
}
.gallery-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #FDE166c0;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.gallery-img::after{
    content: "\F4FB";
    color: var(--white);
    font-size: 40px;
    font-family: 'Bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.gallery-img:hover::before, .gallery-img:hover::after{
    opacity: 1;
    visibility: visible;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background: transparent;
    color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 4px;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 45%;
    left: -48px;
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -48px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 50%;
    background: var(--pink);
}
.owl-carousel button.owl-dot.active{
    background: var(--blue);
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next, 
.testimonial-slider.owl-carousel .owl-nav button.owl-prev{
    top: 60%;
    left: -38%;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next{
    left: -33%;
}


/* Footer  */
.footer-top {
    background: #01A8B3;
    padding: 40px ;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.footer-top h2{
    color: var(--white);
}
.footer-top p{
    color: var(--white);
    margin-bottom: 0;
}
.footer-top h6{
    color: var(--yellow);
}
.bottom-1, .bottom-2{
    height: 200px;
    width: 200px;
    object-fit: contain;
    object-position: bottom;
    position: absolute;
    left: 6%;
    bottom: 0;
}
.bottom-2{
    left: 75%;
}
.footer-logo img {
    height: 84px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.main-footer {
    background: url(../images/footer-bg.jpg) no-repeat center;
    background-size: cover !important;
    overflow: hidden;
    z-index: 1;
}
.main-footer::before{
    bottom: auto;
    top: 0;
    background: url(../images/shape-2.png) no-repeat center;
    background-size: cover !important;
    z-index: -1;
}
.footer-row{
    padding: 80px 0 20px;
}
.main-footer h3{
    font-size: 18px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    color: var(--black);
    padding-bottom: 8px;
    margin-bottom: 28px;
    position: relative;
}
.main-footer h3::after{
    content: "";
    width: 40px;
    height: 2px;
    background: var(--black);
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.myFooter .navbar-nav li a::after{
    display: none !important;
}
.myFooter .navbar-nav li a{
    font-size: 13px !important;
    font-family: var(--body-font) !important;
    color: var(--black) !important;
    font-weight: 500 !important;
    padding: 4px 0 !important;
}
.myFooter .navbar-nav li a:hover{
    color: var(--pink) !important;
}
.myFooter .navbar-nav li.active a{
    color: var(--black) !important;
}
.myFooter .navbar-nav li{
    background: transparent !important;
    margin: 4px 0;
}
.myFooter .con-box{
    margin-bottom: 20px;
}
.social-list .bi{
    display: inline-block;
    font-size: 16px;
    text-align: center;
    color: var(--white);padding: 8px 12px;
    background: var(--pink);
    margin-left: 4px;
}
.social-list li:not(:last-child){
    margin-right: 12px;
}
.con-box h5 {
    font-size: 12px;
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 2px;
}
.con-box, .con-box a, .main-footer p{
    font-size: 14px;
    line-height: 1.4;
    color: var(--white);
}
.top-header .con-box a{
    color: var(--white);
}
.myFooter .con-box h5, .myFooter .con-box, .con-box a{
    color: var(--black);
}
.myFooter hr{
    background: var(--white);
    margin-top: 0;
}
.copyright{
    padding: 0 0 20px 0;
}
.copyright p, .main-footer p{
    color: var(--black);
    margin-bottom: 0;
}
.copyright p a{
    color: var(--pink);
    text-decoration: underline !important;
}


/* Inner Pages  */
.inner-banner {
    padding: 80px 0 80px;
}
.inner-banner{
    background-size: cover !important;
    width: 100%;
    position: relative;
    z-index: 1;
}
.inner-banner::before {
    content: "";
    background: linear-gradient(90deg, #01A8B3c2, #F75A7Bc6);;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-text h2 {
    color: var(--yellow);
    font-family: var(--heading-font);
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 0;
}
.inner-banner .breadcrumb{
    background: transparent;
    color: var(--white);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: " // ";
}
.inner-banner .breadcrumb-item a{
    color: var(--white);
    text-decoration: underline !important;
}
.inner-banner .breadcrumb-item{
    color: var(--white);
}


/* About Us  */
.ab-row .about-img {
    padding-top: 64%;
}
.about-cms .ab-row:nth-child(even){
    flex-direction: row-reverse;
}
.about-cms .ab-row:not(:last-child){
    margin-bottom: 60px;
}
.mission-box{
    padding: 40px;
    background: var(--white);
}

/* Contact Page  */
.contact-info .con-box{
    background: var(--blue);
    padding: 24px;
    border-radius: 12px;
    padding-left: 60px;
    min-height: 66px;
}
.contact-info h5 {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 13px;
}
.contact-info .con-box:not(:last-child){
    margin-bottom: 20px;
    border-bottom: 1px dashed #ffffff60;
    padding-bottom: 20px;
}
.contact-info .bi {
    padding: 7px 10px;
    font-size: 16px;
    color: var(--white);
    background: #ffffff40;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    transition: 0.3s ease-in-out;
}
.contact-info .con-box:not(:last-child) .bi{
    position: absolute;
    top: 20px;
    left: 20px;
}
.contact-info .social-list .bi:hover{
    background: var(--white);
    color: var(--blue);
}

/* Gallery Page  */
.gallery-cms .gallery-img {
    padding-top: 80%;
}
button:focus{
    border: none !important;
    outline: none !important;
}


/* Single package  */
.package-details .ab-wrap:nth-child(odd){
    background: #FDF9ED;
}
.package-details .ab-wrap:nth-child(odd) .ab-row{
    flex-direction: row-reverse;
}
.modal{
    padding-right: 0 !important;
}
.modal-content .contact-form {
    padding: 20px;
}
.modal-content [class*="col-"] p{
    margin-bottom: 0;
}
.modal-content .form-check-input{
    position: static !important;
}
.contact-form input:focus{
    outline: none !important;
}
.contact-form input[type=checkbox], .contact-form input[type=radio] {
    width: 16px !important;
    height: 16px !important;
    border: 1px solid var(--black) !important;
    border-radius: 2px;
}
.modal-title{
    color: var(--white);
}

.module-accordion .card{
    border: none;
    border-bottom: 1px solid #d4d4d4 !important;
}
.module-accordion .card-header{
    padding: 8px 20px;
    background-color: transparent;
}
.module-accordion .btn-link {
    font-size: 15px;
    font-weight: 500;
    background-color: transparent !important;
    color: var(--pink) !important;
    border-radius: 0;
    padding: 0;
}
.module-accordion .btn-link:hover, .module-accordion .btn-link:focus{
    border: none !important;
}

.emaillist{
    width: 100%;
}
.es-form-field-container {
    width: 100%;
    display: flex;
}
.es-form-field-container .gjs-row:nth-child(2) {
    flex-grow: 1;
    flex-basis: 100%;
}
.es-form-field-container .gjs-cell input{
    width: 100%;
    border-radius: 45px !important;
    height: 40px !important;
    background: transparent !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}
.es-form-field-container .gjs-cell input[type="submit"]{
    background: var(--white) !important;
    color: var(--pink) !important;
    margin-left: 8px;
}