@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --headingfont: "Josefin Sans", sans-serif;
    --parafont: "Roboto", sans-serif;
    --ctabg: #F0F0F2;
    --mainheadingcolor: #0B1C39;
    --btnbgblack: #3e3e3e;
    --btnbgred: #FF2020;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 16px;
    box-sizing: border-box;
    font-family: var(--parafont);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


/* sec-1 : navbar*/

.main-navigation {
    height: 100%;
    position: sticky;
    top: 0;
    z-index: 5;
}

.cust-badge {
    position: relative;
    left: 60px;
    bottom: 45px;
    font-size: 14px;
    height: 25px;
    width: 50px;
}

.main-logo {
    width: 150px;
}


/* sec-2 : cta */

.sec-two {
    background-color: var(--ctabg);
    height: 100%;
    overflow: hidden;
}

.img-watch {
    /* height: 65%; */
    width: 65%;
    animation: heartbeat 1s infinite alternate;
}

@keyframes heartbeat {
    100% {
        transform: scale(1.03);
    }
}

.cta-parent {
    height: 75%;
}

.taketo-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    border-radius: 50%;
    background-color: var(--btnbgred);
    color: white;
    z-index: 5;
}

.selectur-style {
    font-family: var(--headingfont);
    color: var(--mainheadingcolor);
    font-size: 35px;
    font-weight: bolder;
}

.cta-para {
    letter-spacing: 0.5px;
    line-height: 28px;
}

.shop-now {
    background-color: var(--btnbgblack);
    color: white;
    padding: 12px 25px;
    font-weight: 500;
}


/* sec 3 */

.new-arrivals,
.popular-items,
.watchof-choice {
    font-family: var(--headingfont);
    font-size: 30px;
    font-weight: bolder;
}

.sec-three-h3 {
    font-family: var(--headingfont);
    font-weight: bold;
    font-size: 20px;
    color: var(--btnbgblack);
}

.sec-three-para {
    font-family: var(--headingfont);
    color: var(--btnbgred);
    font-size: 20px;
}


/* sec: 4 */

.sec-four-para {
    font-family: var(--headingfont);
    color: var(--btnbgblack);
    font-size: 18px;
}

.view-more-product {
    background-color: var(--btnbgred);
    color: white;
    padding: 18px 36px;
    font-weight: 500;
}

.sec-six {
    background-image: url(../image/background/sectin_bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
}

.play-btn i {
    font-size: 40px;
    border: 2px solid white;
    border-radius: 50%;
    padding: 20px;
}

.next-video {
    background-color: var(--btnbgred);
    width: 60%;
    height: 15%;
}

.arrow {
    font-size: 35px;
    color: white;
}

.nxt-video {
    font-size: 20px;
    color: white;
}


/* sec 5 */

.overlay {
    position: absolute;
    bottom: 125px;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 5px;
    transition: .5s ease;
    background-color: var(--btnbgred);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay a {
    color: white;
    font-weight: bold;
    opacity: 0;
}

.product-image {
    transition: 0.5s all ease-in;
    position: relative;
}

.product-image:hover .overlay {
    height: 13%;
    z-index: 0;
}

.product-image:hover .overlay a,
.product-image:hover .heart i {
    opacity: 1;
}

.heart {
    position: absolute;
    top: 30px;
    right: 30px;
}

.heart i {
    font-size: 1.5rem;
    opacity: 0;
    transition: 0.5s all ease-in;
}


/* sec : 7 and 8 */

.sec-seven-para {
    line-height: 30px;
    letter-spacing: 0.2px;
}


/* last sec */

.last-sec {
    background-color: var(--btnbgred);
}

.lastsec-icon {
    font-size: 50px;
}

.free-shipping {
    font-size: 20px;
    font-weight: 600;
}

.shipping-para {
    line-height: 30px;
    color: #D3CBCB;
    word-spacing: 0.5px;
}


/* footer */

.footer-p {
    line-height: 30px;
}

.footer-para {
    color: rgb(171, 169, 169);
}


/* btn overlay */


/* .btn-container {
    position: relative;
    width: 50%;
}

.shop-now {
    display: block;
    height: auto;
}

.overlay-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--btnbgred);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
}

.btn-container:hover .overlay-btn {
    width: 32%;
} */

@media(min-width: 768px) {
    .photos-one {
        height: 61.2vh;
    }
    .photos-lastdiv {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .photos-lastimgs {
        width: 48.1%;
    }
}

@media(min-width: 992px) {
    .photos-two {
        height: 39vh;
    }
    .photos-four {
        margin-top: 25px;
    }
    .popular-para {
        width: 60%;
        line-height: 35px;
    }
    .popular-items {
        font-size: 50px;
        margin-top: 25px;
    }
    .new-arrivals {
        font-size: 50px;
    }
    .sec-three-h3 {
        font-size: 25px;
    }
    .watchof-choice {
        font-size: 50px;
    }
}

@media(min-width: 1200px) {
    .main-navigation {
        height: 12vh;
    }
    .selectur-style {
        font-size: 85px;
    }
    .cta-para {
        width: 80%;
    }
    .photos-two {
        height: 68.8vh;
    }
    .photos-four {
        margin-top: 35.5px;
    }
    .sec-six {
        height: 80vh;
    }
    .next-video {
        width: 30%;
        height: 18%;
    }
    .sec-seven-para {
        width: 70%;
    }
}