/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Local Font */

@font-face {
    font-family: "baloo-bold";
    src: url("../fonts/baloo-bold.ttf");
}

@font-face {
    font-family: "baloo-semibold";
    src: url("../fonts/baloo-semibold.ttf");
}

@font-face {
    font-family: "baloo-medium";
    src: url("../fonts/baloo-medium.ttf");
}

@font-face {
    font-family: "baloo-regular";
    src: url("../fonts/baloo-regular.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #0F92D5;
    --secondary: #6449A4;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #FDF4E6;
    overflow-x: hidden;
    height: 100%;
    font-family: "baloo-medium";
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "baloo-bold";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--secondary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* NAV HEADER CSS */

.topBar {
    background: var(--primary);
    padding: 0.75rem 0;
}

.topWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 6rem;
}

.topWrap p,
.topWrap p a {
    margin: 0;
    text-transform: uppercase;
    color: var(--white);
}

.topWrap p a {
    text-decoration: underline !important;
}

.searchForm {
    background: var(--white);
    width: 315px;
    height: 45px;
    border-radius: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.searchForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: #797979;
}

.searchForm input::placeholder {
    color: #797979;
}

.searchForm button {
    border: unset;
    background: var(--secondary);
    color: var(--white);
    width: 45px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0 1.375rem 1.375rem 0;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: -3rem 0 0 -3rem;
    position: relative;
}

.navbar-brand:before {
    content: "";
    position: absolute;
    background: url(../images/logoBg.webp) no-repeat;
    width: 500px;
    height: 275px;
    left: -6.8rem;
    top: -1.5rem;
}

.navbar-collapse {
    margin-top: 2rem;
}

.navbar-nav {
    align-items: center;
    gap: 2.1rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--white);
    height: 2px;
    width: 0;
    transition: 0.5s ease;
    bottom: -5px;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.form-inline {
    margin-left: 2.5rem;
    gap: 2rem;
}

.themeBtn {
    background: var(--primary);
    color: var(--white);
    font-size: 1.125rem !important;
    display: inline-block;
    padding: 0.625rem 2em;
    border-radius: 50px;
}

.themeBtn:hover {
    background: var(--black);
    color: var(--white);
}

.form-inline a {
    color: var(--white);
    font-size: 1.25rem;
}

.heart {
    position: relative;
}

.heart span {
    color: var(--white);
    font-size: 0.6875rem;
    background: var(--secondary);
    width: 19px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    position: absolute;
    top: -8px;
    right: -8px;
}


/* !NAV HEADER CSS */


/* Main Sec Css Start */

.mainSec {
    background: url(../images/mainBan.webp)bottom/cover;
    height: 1165px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.smallHeading {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #F8E170;
}

.secHeading {
    color: var(--white);
    font-size: 4.375rem;
    line-height: 1.07;
}

.mainContent h1 {
    white-space: nowrap;
}

.mainContent p {
    color: var(--white);
    font-size: 1.1875rem;
    font-family: "baloo-regular";
    line-height: 1.8;
}

.themeBtn1 {
    text-transform: uppercase;
    font-family: "baloo-semibold";
    position: relative;
}

.themeBtn1:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    left: 2px;
    bottom: -2px;
    transition: 0.5s ease;
}

.themeBtn1:hover:before {
    bottom: 0;
    left: 0;
}

.banImg {
    margin: 0 0 0 -5rem;
}

.starImages img {
    position: absolute;
}

.starOne {
    top: 24%;
    left: 27%;
}

.starTwo {
    right: 2rem;
    top: 20%;
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.starThree {
    bottom: 0;
    right: 0;
}

.starFour {
    bottom: 20%;
    left: 20%;
    animation: flash 5s infinite linear;
}

.starFive {
    top: 22%;
    left: 56%;
}

.starSix {
    bottom: 7rem;
    right: 22%;
    animation: spring 3s infinite linear;
}

@keyframes spring {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(0.75, 1.25, 1);
    }
    40% {
        transform: scale3d(1.25, 0.75, 1);
    }
    50% {
        transform: scale3d(0.85, 1.15, 1);
    }
    65% {
        transform: scale3d(1.05, 0.95, 1);
    }
    75% {
        transform: scale3d(0.95, 1.05, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.socialMedia li a {
    color: var(--white);
    border: 2px dashed var(--white);
    width: 30px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 5px;
}

.socialMedia li a:hover {
    background: var(--white);
    color: var(--secondary);
}

.socialMedia {
    display: flex;
    gap: 1.25rem;
    writing-mode: tb-rl;
    transform: scale(-1);
    position: absolute;
    left: 3.125rem;
}


/* Main Sec Css End */


/* Shop Sec Css Start */

.shopSec {
    background: url(../images/shopBg.webp) bottom / cover;
    padding: 13.125rem 0 15rem 0;
    margin-top: -10rem;
}

.shopHeading {
    margin-bottom: 3rem;
}

.shopWrap {
    text-align: center;
}

.shopWrap figure {
    position: relative;
}

.shopWrap figure:before {
    content: "";
    position: absolute;
    background: var(--secondary);
    width: 274px;
    border-radius: 100%;
    height: auto;
    aspect-ratio: 1;
    bottom: 0;
    transition: 0.8s ease;
}

.shopWrap:hover figure:before {
    bottom: -1rem;
}

.shopWrap figure img {
    z-index: 1;
    position: relative;
}

.shopWrap h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 2rem 0 0 0;
}

.shopPath {
    position: absolute;
    top: 7.5rem;
    left: 6.25rem;
    animation: flash 5s infinite linear;
}


/* Shop Sec Css End */


/* Product Sec Css Start */

.productSec {
    padding: 3.75rem 0 6.875rem 0;
}

.productHeading {
    margin-bottom: 2.5rem;
}

.productHeading span,
.productHeading h2 {
    color: var(--black);
}

.productWraps {
    text-align: center;
}

.productWraps figure {
    background: var(--white);
    border-radius: 1.5625rem;
    padding: 4.375rem 0 1.375rem 0;
    overflow: hidden;
}

.productWraps figure img {
    transition: 0.5s ease;
}

.productWraps figure:hover img {
    transform: scale(1.1);
}

.productWraps figure ul {
    display: flex;
    justify-content: center;
    gap: 1.375rem;
    margin-top: 2.5rem;
    transform: translateY(5rem);
    transition: 0.5s ease;
}

.productWraps figure:hover ul {
    transform: translateY(0);
}

.productWraps figure ul li a {
    background: var(--primary);
    width: 45px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.25rem;
}

.productWraps figure ul li a:hover {
    background: var(--secondary);
    color: var(--white);
}

.productContent {
    margin-top: 1rem;
}

.productContent ul {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.productContent ul li i {
    font-size: 0.75rem;
    color: #FE3172;
}

.productContent ul li span {
    font-size: 0.9375rem;
    color: #828282;
    font-family: "baloo-regular";
}

.productContent h3 {
    font-size: 1.875rem;
    color: var(--black);
    font-family: "baloo-semibold";
    margin: 6px 0;
    white-space: nowrap;
}

.productContent a {
    color: var(--primary);
    font-size: 1.5625rem;
    font-family: 'baloo-semibold';
}

.productContent a:hover {
    color: var(--secondary);
}


/* Product Sec Css End */


/* Sale Sec Css Start */

.saleSec {
    background: url(../images/saleBg.webp)100% 100% no-repeat;
    padding: 18.75rem 0;
    z-index: 1;
}

.saleContent span {
    color: #FFD59A;
    text-transform: uppercase;
    font-size: 3.125rem;
}

.saleContent h2 {
    color: var(--white);
    font-size: 10rem;
    line-height: 0.6;
    margin-bottom: 2rem;
}

.saleContent h3 {
    color: var(--white);
    font-size: 4.1875rem;
}


/* Sale Sec Css End */


/* Brand Sec Css Start */

.brandSec {
    padding: 5.625rem 0;
}

.brandSec .row {
    gap: 2.8125rem 0;
}

.brandSec .themeBtn1.themeBtn1:before {
    background: var(--secondary);
}


/* Brand Sec Css End */


/* Payment Sec Css Start */

.paymentWraps {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.paymentBox {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.paymentBox+.paymentBox {
    border-left: 1px solid var(--black);
    padding: 3.125rem 0 3.125rem 5rem;
}

.paymentBox h3 {
    font-size: 1.375rem;
    font-family: 'baloo-semibold';
    color: var(--black);
    margin: 0;
    line-height: 1.5;
}

.paymentBox h3 span {
    display: block;
    font-family: 'baloo-regular';
    font-size: 1rem;
}


/* Payment Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    padding: 8.75rem 0 2rem 0;
}

.testimonialSec .row+.row {
    margin-top: 2rem;
}

.testimonialHeading {
    margin-bottom: -4rem;
}

.testimonialHeading span,
.testimonialHeading h2 {
    color: var(--black);
}

.testimonialBox {
    background: var(--white);
    border-radius: 1.75rem;
    padding: 4.375rem 2.5rem 3.125rem 3.125rem;
    margin-right: -15rem;
    position: relative;
}

.testimonialBox:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 100%;
    left: -1.2rem;
    bottom: -1.2rem;
    z-index: -1;
    border-radius: 1.75rem;
}

.testimonialBox ul {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 1.2rem;
}

.testimonialBox ul li i {
    color: #FE3172;
}

.testimonialBox ul li span {
    font-size: 1.125rem;
    color: #828282;
    font-family: 'baloo-regular';
}

.testimonialBox p {
    font-size: 1.6875rem;
    color: #282828;
    line-height: 1.75;
    margin-bottom: 2rem;
    width: 72%;
}

.testimonialBox h3 {
    font-size: 1.75rem;
    font-family: 'baloo-semibold';
    color: var(--black);
    margin: 0;
}

.testimonialImg {
    transform: rotate(6deg);
    position: relative;
}

.testimonialImg:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 2.5rem;
    bottom: -1.5rem;
    right: -1.5rem;
}

.testimonialImg img {
    border-radius: 2.5rem;
}

.testimonialSec .flex-row-reverse .testimonialBox {
    margin-right: 0;
    margin-left: -15rem;
    padding-left: 19rem;
}

.testimonialSec .flex-row-reverse .testimonialBox:before {
    background: var(--secondary);
    left: inherit;
    right: -1.2rem;
}

.testimonialSec .flex-row-reverse .testimonialBox p {
    width: 95%;
}

.testimonialSec .flex-row-reverse .testimonialImg {
    transform: rotate(-6deg);
}

.testimonialSec .flex-row-reverse .testimonialImg:before {
    left: -1.5rem;
    background: var(--secondary);
    right: inherit;
}


/* Testimonial Sec Css End */


/* Partner Sec Css Start */

.partnerSec {
    padding: 10.625rem 0 11.875rem 0;
}

.partnerHeading h2 {
    color: var(--black);
}

.partnerHeading p {
    color: #282828;
    font-size: 1.375rem;
    line-height: 1.8;
}

.partnerImages img {
    position: absolute;
}

.part1 {
    top: 6rem;
    left: 13%;
}

.part2 {
    top: 3rem;
    left: 47%;
    animation: rotation 10s infinite linear;
}

.part3 {
    top: 4.5rem;
    right: 17%;
}

.part4 {
    top: 12rem;
    right: 8%;
    animation: flash 5s infinite linear;
}

.partnerWraps {
    display: flex;
    justify-content: space-around;
    border: 1px solid var(--black);
    align-items: center;
    margin-top: 2rem;
}

.partnerLogo+.partnerLogo {
    border-left: 1px solid var(--black);
    padding: 1rem 0 1rem 4rem;
}


/* Partner Sec Css End */


/* Footer Css Start */

footer {
    background: url(../images/footBg.webp)top no-repeat;
    padding-top: 14.0625rem;
    position: relative;
}

.footPath {
    position: absolute;
    top: -6rem;
    z-index: -1;
}

.instaWrap img {
    border-radius: 1.5625rem;
}

.instaSlider {
    margin: 2rem 0 3.75rem 0;
}

.instaSlider .swiper-wrapper {
    transition-timing-function: linear;
}

.footLogo ul {
    margin-top: 1.5625rem;
}

.footLogo ul li a {
    color: var(--white);
    font-size: 1.125rem;
    font-family: 'baloo-regular';
    display: flex;
    align-items: baseline;
    gap: 0.9375rem;
    white-space: nowrap;
}

.footLogo ul li+li {
    margin-top: 0.625rem;
}

footer h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'baloo-semibold';
    margin-bottom: 1rem;
}

.links,
.itemsLinks {
    margin-bottom: 2rem;
}

.links li a,
.deliveryLinks li a {
    color: var(--white);
    font-size: 1.125rem;
    font-family: 'baloo-regular';
}

.links li+li,
.deliveryLinks li+li {
    margin-top: 8px;
}

.socialLinks {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.socialLinks li a {
    color: var(--white);
}

.footerForm {
    border-bottom: 1px solid var(--white);
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
}

.footerForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    padding-left: 0;
    color: var(--white);
}

.footerForm input::placeholder {
    color: var(--white);
}

.footerForm button {
    border: unset;
    outline: unset;
    background: unset;
    color: #FFCA6C;
    font-size: 1.25rem;
}

.footPara {
    color: var(--white);
    font-size: 1.125rem;
    font-family: 'baloo-regular';
    margin: 1rem 0 0 0;
}

.copyRight {
    background: var(--primary);
    margin-top: 6.25rem;
    padding: 1.1rem 0;
}

.copyRight p {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
}

.cartImg {
    text-align: right;
}

.footerImages img {
    position: absolute;
}

.footimg1 {
    top: 57%;
    left: 25%;
    animation: rotation 10s infinite linear;
}

.footimg2 {
    bottom: 6rem;
    left: 20%;
    animation: flash 5s infinite linear;
}

.footimg3 {
    bottom: 14%;
    right: 11%;
    animation: swing 3s infinite linear;
}

footer ul li a:hover {
    color: var(--primary);
}

.footimg4 {
    bottom: 19%;
    left: 44%;
    animation: flash 3s infinite linear;
}

.footimg5 {
    right: 32%;
    bottom: 28%;
    animation: bounce 3s infinite linear;
}


/* Footer Css End */


/* Inner Css Start */

.innerBan {
    background: url(../images/innerBan.png)bottom/cover;
    height: 870px;
}

.innerBan .banImg {
    margin: 6rem 0 0 0;
}

.innerBan .starFive {
    top: 31%;
    left: 55%;
}

.innerBan h1 {
    margin: 5rem 0 0 0;
}

.innerBan .starTwo {
    top: 30%;
}

.innerBan .starSix {
    bottom: 3rem;
}

.innerBan .starOne {
    top: 28%;
}

.innerBan .starFour {
    left: inherit;
    right: -10rem;
}

.arrivalInner {
    padding: 6.25rem 0 12.5rem 0;
}

.arrivalInner .row {
    gap: 3.125rem 0;
}

.arrivalssImages img {
    position: absolute;
}

.arvl1 {
    top: 11rem;
    left: 7rem;
    animation: swing 3s infinite linear;
}

.arvl2 {
    right: 6rem;
    bottom: 16rem;
    animation: swing 3s infinite linear;
}

.arvl3 {
    top: -6rem;
    left: 24.5%;
    z-index: -1;
}

.diaperInner .arvl1 {
    left: inherit;
    right: 7rem;
}

.diaperInner .arvl2 {
    right: inherit;
    left: 6rem;
}

.contactInner {
    padding: 18.75rem 0 17.5rem 0;
}

.contactHeading h2 {
    color: var(--black);
}

.contactHeading p {
    font-size: 0.875rem;
    color: var(--black);
    font-family: 'baloo-semibold';
    line-height: 1.7;
    margin: 2rem 0 2.5rem 0;
}

.contactForm .form-control,
.contactForm select {
    border: 1px solid #FFD59A;
    outline: unset;
    box-shadow: unset;
    width: 100%;
    background: transparent;
    height: 50px;
    border-radius: unset;
    font-size: 0.875rem;
    color: var(--black);
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.contactForm .form-control::placeholder {
    color: var(--black);
}

.contactForm button {
    background: var(--secondary);
    color: var(--white);
    width: 100%;
    height: 50px;
    border: unset;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'baloo-bold';
    outline: unset;
}

.contactForm button:hover {
    background: var(--primary);
    color: var(--white);
}

.contactListing {
    display: flex;
    justify-content: space-between;
    margin-top: 3.75rem;
}

.contactListing li {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contactListing li a {
    color: var(--black);
    font-size: 0.8125rem;
}

.contactListing li a span {
    display: block;
    font-family: 'baloo-semibold';
}

.googleMpas {
    text-align: right;
    position: relative;
}

.googleMpas:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 530px;
    height: 1130px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    right: -11.25rem;
}

.contactImages img {
    position: absolute;
}

.contactimg1 {
    top: 2rem;
    left: 8%;
    animation: spring 3s infinite linear;
}

.contactimg2 {
    top: -5rem;
    left: 24%;
    animation: spring 3s infinite linear;
}

.contactimg3 {
    top: 9rem;
    left: 32%;
    animation: spring 3s infinite linear;
}

.contactimg4 {
    bottom: 14rem;
    left: 18%;
    animation: spring 3s infinite linear;
}

.contactimg5 {
    bottom: 9rem;
    left: 34%;
    animation: spring 3s infinite linear;
}

.contactimg6 {
    top: 13%;
    right: 9rem;
    animation: rotation 10s infinite linear;
}


/* Inner Css End */