@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');
html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}


/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --primary: #E10E7C;
    --secondary: #009CDC;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.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;
}

section {
    padding: 5rem 0;
}


/* sraachbar start */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff!important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

#search input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

#search input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
    opacity: 1;
}

#search input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

#search input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
    opacity: 1;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* sraachbar end */


/* loader */

.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(--primary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}


/* loader */


/* 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 */


/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1em 3.81em;
    border-radius: 0;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.themeBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.themeBtn.skyClr:hover {
    background: var(--primary);
    color: var(--white);
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* navigation css */

.top-bar {
    background: var(--secondary);
    padding: 13px 0;
}

.top-bar label {
    margin: 0;
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.top-bar label a {
    color: var(--white);
}

a.shiping {
    font-size: 1rem;
    color: var(--white);
    display: table;
    margin-left: auto;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}


/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */

.an-navbar {
    background: var(--theme-color);
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
}

.form-inline {
    gap: 1.5rem;
    margin: 0 0 0 2.2rem;
}

.form-inline a {
    font-size: 1.8rem;
    color: var(--white);
}


/* navigation css */


/* slider css */

.hero-banner {
    padding: 0;
    background: url(../images/slidebg.webp) no-repeat top center/ cover;
    position: relative;
    height: 1080px;
    display: flex;
    align-items: flex-end;
}

header {
    position: relative;
    z-index: 11;
}

.hero-banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(46 0 24 / 90%);
}

.hero-banner .bannerimg {
    position: absolute;
    width: 59%;
    bottom: -4%;
    height: 84%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    margin-bottom: 8rem;
    text-align: right;
}

.bag {
    margin-left: 1.5rem;
}

.bag h2 {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.bag h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin: 0;
}

.hero-content h1 {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: 600;
    line-height: 4.75rem;
    margin: 0 0 2.5rem;
}


/* slider css */

.title {
    text-align: center;
    margin: 0 0 3rem;
}

.sub-heading {
    font-size: 2.1875rem;
    color: var(--primary);
    font-weight: bold;
}

.heading {
    font-size: 3.125rem;
    font-weight: 300;
    margin: 0;
}

.arrival-main,
.seller-main,
.feature-main {
    padding: 5rem 6rem;
}

.arival-bg figure {
    position: relative;
}

.arival-bg figure .overlay {
    position: absolute;
    top: 30px;
    right: 1.8rem;
}

.arival-bg figure .overlay h2 {
    font-size: 2.1875rem;
    color: var(--white);
}

.arival-bg figure img {
    width: 100%;
}

.arival-bg figure .overlay h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
    text-align: right;
}

.arrival-card figure {
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 407px;
    position: relative;
    margin-bottom: 1.5rem;
}

.arrival-card figure .themeBtn {
    position: absolute;
    bottom: 0;
    font-size: 1rem;
    font-weight: bold;
    text-transform: capitalize;
    padding: 0.53em 1.84em;
    opacity: 0;
}

.arrival-card {
    text-align: center;
}

.arrival-card h2 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.375rem;
}

.arrival-card span {
    font-size: 1.125rem;
    color: #808386;
    font-weight: bold;
}

.skyBtn {
    margin-top: 4.5rem;
    text-align: right;
}

.themeBtn.skyClr {
    background: var(--secondary);
    text-transform: capitalize;
    padding: 0.9em 1.95em;
}

.arrival-card:hover figure .themeBtn {
    opacity: 1;
}

.arrival-main .row+.row {
    margin-top: 5rem;
}

.logoSlider .swiper-wrapper {
    align-items: center;
    text-align: center;
}

.discount-main {
    background: url(../images/discountbg.webp) no-repeat top center / cover;
    height: 818px;
    padding: 0;
    display: flex;
    align-items: center;
}

.discount-content h2 {
    font-size: 3.875rem;
    color: var(--white);
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.discount-content h3 {
    font-size: 9.6875rem;
    color: var(--white);
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 300;
    gap: 1rem;
    line-height: 0.85;
}

.discount-content h3 span {
    font-size: 15.6875rem;
    color: var(--primary);
    font-weight: bold;
    position: relative;
}

.discount-content h4 {
    font-size: 9.6875rem;
    color: var(--white);
    font-weight: bold;
    line-height: 0.7;
    margin: 0 0 2.5rem;
}

.discount-content .themeBtn.skyClr {
    padding: 1em 3.81em;
}

.discount-content h3 span small {
    position: absolute;
    right: 22%;
    font-size: 2.3125rem;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.feature-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0rem;
}

.feature-tab .nav-tabs .nav-link {
    border: 0;
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 400;
    padding: 0;
}

.feature-tab .nav-tabs {
    border: 0;
    gap: 5rem;
}

.feature-tab .nav-tabs .nav-link.active {
    color: var(--primary);
}

.feature-main .arrival-card {
    margin-top: 2.3rem;
}

.review-main {
    position: relative;
    background: var(--primary);
    padding: 3rem 8rem 5rem;
}

.review-card p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.user h2 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.user h5 {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    margin: 0;
}

.user .quoteimg {
    position: absolute;
    right: 30px;
    top: 0;
}

.review-main .title {
    margin: 0 0 2rem;
}

img.img-fluid.vectrimg {
    position: absolute;
    right: 5%;
    bottom: -17%;
    z-index: -1;
}

.instagram-main .heading {
    margin: 0 0 0.7rem;
}

.insta-logo {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instagram-main {
    padding-bottom: 0;
}

footer {
    background: linear-gradient(to left, #000000 45%, rgb(0 0 0 / 10%) 45%);
    padding-top: 4rem;
}

.quickList h2,
.calFoter h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.3rem;
}

footer .d-flex {
    gap: 5rem;
}

.quickList ul li a {
    font-size: 1rem;
    color: var(--black);
    font-weight: 400;
}

.quickList ul li+li {
    margin: 0.6rem 0 0;
}

.calFoter li {
    font-size: 1rem;
    color: var(--black);
}

.calFoter li strong {
    font-weight: 600;
}

.calFoter li a {
    font-weight: 400;
    color: var(--black);
}

.calFoter li+li {
    margin: 0.8rem 0 0;
}

.subscribe {}

.subscribe h2 {
    font-size: 2.8125rem;
    color: var(--white);
    font-weight: 300;
}

.subscribe h5 {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 300;
    margin: 0 0 1.5rem;
}

.subscribe form input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #707070;
    font-size: 1rem;
    font-weight: 300;
    height: 60px;
    padding-right: 3rem;
}

.subscribe form input::placeholder {
    color: var(--white);
}

.subscribe form {
    position: relative;
    margin-bottom: 1.5rem;
}

.subscribe form button {
    position: absolute;
    right: 0;
    bottom: 15px;
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.copyright {
    font-size: 1rem;
    color: var(--black);
    margin: 0;
    padding: 0 0 1rem;
}

.quickList ul li a:hover,
.calFoter li:hover a,
.navbar-nav .nav-item .nav-link:hover,
.top-bar label:hover a,
a.shiping:hover {
    color: var(--primary);
}

.arrival-main {
    padding-top: 8rem;
}


/* split css */

body.split-screen footer {
    display: none;
}

.split-screen {
    background: var(--secondary);
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.spltvector {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 69%;
}

a.second-logo {
    display: table;
    margin-left: auto;
}

.element img {
    position: absolute;
    z-index: 1;
}

.elem1 {
    top: 10%;
    left: 10%;
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.elem2 {
    top: 10%;
    left: 42%;
    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);
    }
}

.elem3 {
    left: 22%;
    bottom: 16%;
}

.elem4 {
    right: 21%;
    top: 6%;
    animation: flash 5s infinite linear;
}

.elem5 {
    right: 4%;
    top: 17%;
}

.elem6 {
    bottom: 10%;
    left: 53%;
    animation: spring 3s infinite linear;
}

.elem7 {
    right: 0;
    bottom: 0;
}


/* split css end */


/* Inner Css Start */

.innerBanner {
    background: url(../images/innerBan.png)center/cover;
    height: 697px;
    align-items: center;
}

.innerBanner .hero-content h1 {
    margin: 7rem 0 0 0;
}

.innerBanner .bannerimg {
    position: absolute;
    width: 61%;
    bottom: -4%;
    height: 76%;
    object-fit: cover;
    object-position: center;
}

.aboutInner {
    padding: 8.75rem 0;
}

.abtText p {
    color: var(--black);
    line-height: 1.5;
    font-size: 1.0625rem;
}

.abtText p+p {
    margin-top: 1.5rem;
}

.arrivalInner {
    padding: 6.25rem 0 10.625rem 0;
}

.arrivalInner .arrival-card .themeBtn {
    font-size: 1rem;
    display: block;
    width: fit-content;
    margin: 10px auto 0;
    font-weight: bold;
    text-transform: capitalize;
    padding: 8px 2.2em;
}

.arrivalInner .row {
    gap: 2.5rem 0;
}

.contactInner {
    padding: 6.25rem 0;
}

.contactForm {
    background: #E5E5E5;
    padding: 50px 2rem 4.5rem 2rem;
    box-shadow: 0 3px 6px rgb(183 132 132 / 16%);
}

.contactForm label {
    color: var(--black);
    text-transform: uppercase;
}

.contactForm .form-group {
    margin-bottom: 2.5rem;
}

.contactForm .form-control {
    border: 1px solid #707070;
    box-shadow: unset;
    outline: unset;
    border-radius: unset;
}

.contactForm input {
    height: 60px;
}

.contactInner h2 {
    margin-bottom: 5rem;
}


/* Inner Css Start */