@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

.bold{
    font-weight: 600;
}
.sub-head {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    font-family: Verdana,Arial,Helvetica,sans-serif;
}
.heading{
    font-size: 35px;
}
@media screen and (max-width:950px) {
    .sub-head {
        width: 85%;
    }
}

.mb {
    margin-bottom: 4%;
}
.mb1{
    margin-bottom: 10px;
}
.bold{
    font-weight: bold;
}

.mr1 {
    margin-right: 5px;
}

.nav-scrolled {
    background: #ffffff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    top: 0;
    position: fixed;
    top: 0;
}

.user {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.user a {
    text-decoration: none;
    color: #ffffff;
}

@media screen and (max-width:1100px) {
    #form{
        width: 50%;
    }
}
@media screen and (max-width:850px) {
    #form{
        left: 0;
        transform: translate(0, 50%);
    }
}
@media screen and (max-width:768px) {
    .topp3 {
        display: none;
    }
    
    #form{
        width: 75%;
    }
}

.logo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 20px;
}

.logo img {
    width: 135px;
}

.sidenav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 80%;
}

.mid-nav {
    width: 30vw;
}

.search-box {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    position: relative;
}

.search-box1 {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    position: relative;
    display: none;
}

.a1 {
    color: #13294a;
    text-decoration: none;
    margin: 0 25px;
}

.a1:hover {
    color: #2272FF;
}



.closebtn {
    display: none;
}
@media screen and (min-width:1250px) and (max-width:1410px){
    .a1 {
        margin: 0 20px;
    }
}
@media screen and (min-width:1250px) and (max-width:1340px){
    .a1 {
        margin: 0 15px;
    }
}
@media screen and (min-width:1180px) and (max-width:1270px){
    .a1 {
        margin: 0 9px;
    }
}
@media screen and (max-width:1180px) {
    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        display: block;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
    }

    .logo a div {
        display: none;
    }

    .sidenav a {
        padding: 8px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        border-left: 2px solid transparent;
    }

    .a1:hover {
        color: #f1f1f1;
        border-left: 2px solid red;
    }

    .a1 {
        margin: 0;
        border-bottom: 1px solid #5b5b5b;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

    .sidenav .closebtn:hover {
        color: white;
    }

    .search-box{
        display: none;
    }
    .open-search{
        display: flex;
        gap: 20px;
    }
    .search-box1{
        display: block;
    }
}
@media screen and (max-width:600px){
    
    .logo img{
        width: 120px;
    }
}

/* header end here */

main{
    font-family: Verdana,Arial,Helvetica,sans-serif;
}
.new-product{
    padding: 2% 0;
}
.new-share{
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    gap: clamp(24px, 2vw, 60px);
}
.new-product-card{
    display: flex;
    gap: clamp(24px, 3vw, 48px);
    border-radius: 0 52px 52px 52px;
    padding: clamp(36px, 2vw, 48px);
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    flex: 1;
    position: relative;
}
.new-product-card::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 70px solid #2272FF;
    border-bottom: 70px solid transparent;
    left: 0;
    top: 0;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.new-product-card::after {
    position: absolute;
    content: "NEW!";
    left: 3px;
    top: 16px;
    color: white;
    transform: rotate(-45deg);
    font-size: 14px;
    font-weight: bold;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.new-image{
    width: 40%;
    border: 1px solid #ddd;
    border-radius: 48px;
    aspect-ratio: 1;
    background-color: #fbfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 10px #0000000f;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.new-image img{
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 44px;
    aspect-ratio: 1;
}
.new-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 60%;
}
.new-content h2 {
    padding-bottom: 8px;
    border-bottom: 1px solid #e3e3e3;
    color: #333;
}
.new-content h4 {
    color: #909090;
    padding-left: 12px;
    border-left: 8px solid #00000010;
}
.new-content ul {
    color: #333;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


@media screen and (max-width:950px) {
    .new-product-card {
        width: 65%;
        flex-direction: column;  
        align-items: center;    
    }
    .new-image {
        position: initial;
        width: 65%;
        margin: 0;
    }
    .new-image img{
        position: initial;
    }
}
@media screen and (max-width:560px){
    .new-share{
        align-items: center;
        flex-direction: column;
        row-gap: 24px;
    }
    .new-product-card {
        width: 100%;
    }
    .new-content{
        padding: 2%;
        width: 100%;
    }
    .new-content h2{
        font-size: 20px;
    }
    .new-content h4{
        font-size: 16px;
    }
}
/* new product end here */

/* product-category CSS */
.product-category{
    background-color: #f1f1f1;
    padding: 2% 0;
    margin-top: 1%;
    border-radius: clamp(44px, 5vw, 80px);
}
.product-category h3{
    font-size: 35px;
    text-align: center;
    font-weight: normal;
}
.product-category a{
    text-decoration: none;
    color: #000000;
}
.product-card{
    width: 80%;
    max-width: 1300px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    object-fit: contain;
    gap: 36px;
    margin-top: 2%;
}
.categories-card {
    width: 330px;
    height: 375px;
    background-color: #e4e4e4;
    border-radius: 60px;
    padding: 7%;
    border: 1px solid #d5d5d5;
}
.categories-card:hover img {
    scale: 1.04;
}
.categories-card:hover .categoris-content h4 {
    top: -44px;
}
.categories-card:hover .categoris-content p {
    color: #505050;
}
.categories-card:hover {
    background-color: #e1e1e1;
}
.categories-card img{
    width: 100%;
    height: auto;
    border-radius: 40px;
    transition: 0.4s ease;
}
.categoris-content{
    padding: 2%;
    position: relative;
}
.categoris-content h4{
    font-size: 15px;
    text-align: center;
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2272FF;
    padding: 8px 16px;
    border-radius: 500px;
    color: white;
    width: 70%;
    box-shadow: 0 6px 10px #00000020;
    transition: 0.4s ease;
    min-height: 52px;
    vertical-align: middle;
    align-content: center;
    border: 2px solid #ffffff24;
}
.categoris-content p {
    margin-top: 36px;
    font-size: 15px;
    text-align: center;
    color: #333;
}
@media screen and (max-width:1250px){
    .product-card{
        justify-content: center;
        gap: 20px;
    }
    .new-product-card {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .new-content {
        width: 90%;
    }
    .new-image {
        border-radius: 40px;
        width: 65%;
    }
}
@media screen and (max-width:830px){
    .product-card{
        justify-content: center;
    }
    .product-category {
        padding: 6% 0%;
    }
}
@media screen and (max-width:350px){
    .categories-card{
        width: 250px;
    }
}
/* product-category ends here */

.main-product{
    padding: 2% 0;
    margin-bottom: 1%;
}
.main-product h3{
    text-align: center;
    font-size: 35px;
    padding-bottom: 2%;
    font-weight: normal;
}
.main-product-share{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 24px;
    padding: 0 5%;
}
.main-products-category{
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 2%;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 10px 4px #dddddd69;
}
.main-products-category::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 120px solid #2272FF;
    border-top: 120px solid transparent;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.4s ease;
}
.main-products-category::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 110px solid #ffffff24;
    border-top: 80px solid transparent;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.4s ease;
}
.divider-vertical {
    position: absolute;
    width: 1px;
    height: 65%;
    top: 50%;
    left: 33%;
    background-color: #eee;
    transform: translateY(-50%);
}
.main-products-category:hover::before{
    border-left: 100px solid #2272FF;
    border-top: 140px solid transparent;
}
.main-products-category:hover::after{
    border-left: 40px solid #ffffff24;
    border-top: 100px solid transparent;
}
.main-image{
    width: 40%;
    height: 120px;
    padding: 3%;
    align-content: center;
    transition: all 0.4s ease;
    z-index: 1;
}
.main-image img{
    height: 100%;
    object-fit: contain;
}
.main-products-category-cont{
    width: 65%;
    height: 100%;
    align-content: center;
    background: #f1f1f1;
    padding: 2% 4%;
    border-radius: 24px;
}
.main-products-category-cont h5{
    position: relative;
    font-size: 17px;
    color: #333;
    margin-bottom: 4px;
    border-radius: 4px;
}
.main-products-category-cont h5 a {
    color: #333;
}
.main-products-category-cont p{
    font-size: 14px;
    color: #909090;
}

@media screen and (max-width:940px) {
    .main-product-share {
        justify-content: center;
        gap: 16px;
    }
    .main-products-category-cont h5 {
        font-size: 14px;
    }
}

.i {
    font-size: 20px;
    color: #ffffff;
    padding: 0 10px;
}

.i:hover {
    font-size: 20px;
    color: #1476f2;
    padding: 0 10px;
}

.copy p {
    color: #ffffff;
    font-family: Verdana,Arial,Helvetica,sans-serif;
}

@media screen and (max-width:950px) {
    .share {
        flex-direction: column;
        padding: 45px 10px 30px 10px;
    }
    .second{
        padding: 0 10px;
    }
    .third{
        padding: 0 10px;
    }
    .fourth{
        padding: 0 10px;
    }
}
@media screen and (max-width:500px) {
    .icon{
        margin-bottom: 5px;
    }
    .i {
        padding: 0 15px 0 0;
    }    
    .banner-cont {
        left: 10%;
    }
    .banner-cont {
        top: 15%;
    }
}

@media screen and (min-width:2880px) {
    .product-banner{
        height: 48vh;
    }
}

@media screen and (min-width:4320px) {
    .product-banner{
        height: 32vh;
    }
}

@media screen and (min-width:5760px) {
    .product-banner{
        height: 24vh;
    }
}