@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Rubik:wght@400;500;600;700&display=swap');

:root{
    --main: #06ceca;
    --second-color: #091E3E;
    --light-color: #666;
    --box-shadow:.5rem .5rem 0 rgba(110, 110, 110, 0.2);
    --text-shadow:.4rem .4rem 0 rgba(0,0,0, .2);
    --border:.2rem solid var(--main);
}

*{
    font-family: 'Nunito',  sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html,body{
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}


section{
    padding: 2rem 9%;
    padding-block: 2rem;
}
.flex{
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.new_price{
    color: var(--main);
    font-weight: 600;
    font-size: 1.7rem;
}

.old_price{
    color: #020202;
    font-size: 1rem;
    text-decoration: line-through;
}

/*==========Heading Section CSS===========*/
.heading{
    margin-bottom: 5rem;
}
.heading .container_1{
    position: absolute;
    left: 28%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 50px;
    line-height: 50px;
    margin-top: 5rem;
    border-bottom: 2px solid #020202;
    overflow: hidden;
}

.heading .container_1 span{
    color: #fff;
    font-size: 2rem;
    background: #018481;
    display: inline-block;
    padding: 0px 20px;
    text-transform: uppercase;
}

.heading .container_1 span::before{
    position: absolute;
    content: '';
    width: 65%;
    height: 100%;
    background: #018481;
    z-index: -1;
    transform: rotate(45deg);
}

/*==========Header Top Section CSS===========*/

.header-top{
    position: sticky;
    width: 100%;
    height: 35px;
    background: linear-gradient(-45deg, #08d3cf, #037472);
    padding-block: 2px;
}

.header-top .container, .header-top-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: left;
    list-style: none;
}

.header-top .container{
    gap: 8px 20px;
}

.header-top-list{
    gap: 15px;
}

.header-top-link{
    color: #eee;
    font-size: 1.5rem;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header-top-link:is(:hover, :focus){
    color: #fff;
}

.header-top-link i{
    color: #fff;
    font-size: 2rem;
}

.header-top .wrapper,
.header-top-social-list{
    display: flex;
    align-items: left;
    list-style: none;
}

.header-top .wrapper{
    gap: 20px;
}

.header-top-social-list{
    gap: 8px;
    margin-left: 70rem;
}

.header-top-social-list li a i{
    display: flex;
    width: 28px;
    height: 28px;
    background: #eee;
    color: #037472;
    font-size: 15px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.4s;
}

.header-top-social-list li a i:hover{
    background: var(--main);
    color: #fff;
}



.header-top-link span{
    color: #fff;
    font-size: 1.3rem;
    text-transform: none;
    cursor: pointer;
    margin-left: 5px;
}

.header-top-link i{
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
}



/*==========Header Section CSS===========*/
.header {
    position: sticky;
    top: 50px; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    background: #fff;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.header .logo img{
    width: 100%;
    height: 100%;
    margin-left: -3rem;
}

.header .logo span{
    color: var(--main)
}
.header .logo i{
    color: var(--main);
}

.header .navbar #caret_right {
    margin-left: 12rem;
}

.header .navbar #caret_right_1 {
    margin-left: 9rem;
}

.header .navbar #caret_right_2 {
    margin-left: 11rem;
}

.header .navbar ul{
    list-style: none;
}

.header .navbar ul li{
    position: relative;
    float: left;
}

.header .navbar ul li a{
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: none;
    color: #020202;
}
.header .navbar ul li ul{
    position: absolute;
    left: 0;
    border: var(--border-1);
    width: 200px;
    background: #fff;
    display: none;
}

.header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
}

.header .navbar ul li ul li ul{
    left: 210px;
    top: 5px;
}

.header .navbar ul li a:hover{
    background: var(--main);
    color: #fff;
}


.header .navbar ul li:focus-within > ul,
.header .navbar ul li:hover > ul{
    display: initial;
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -6.5px;
    left: 0px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s ease;
    z-index: -1;
}

.header .navbar ul li:first-child:hover ~ .arrow{
    background-color: #06A3DA;
}

.header .navbar ul li .arrow{
    top: 10px;
    left: -5px;
}

.header .icons div{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #EEEEEE;
    color: var(--second-color);
    font-size: 2rem;
    cursor: pointer;
    margin-left: .3rem;
    text-align: center;
}

.header .icons div:hover{
    background: var(--main);
    border-radius: 50%;
    color: #fff;
}

#menu-btn{
    display: none;
}

/*==========Header Section search icon===========*/
.header .search-form{
    position: absolute;
    top: 110%; right: -110%;
    width: 50rem;
    height: 5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.header .search-form.active{
    right: 2rem;
    transition: .4s linear;
}

.header .search-form input{
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--second-color);
    padding: 0 1.5rem;
}

.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--second-color);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--main);
}



/*==========Try Home Section CSS===========*/
.try_home{
    padding-top: 0rem;
}

.try_home .try_home_slider .box{
    background-size: cover !important;
    background-position: center !important;
    min-height: 70rem;
    position: relative;
    margin-top: 0rem;
}

.try_home .try_home_slider .box .content{
    position: absolute;
    top: 50%; left: 25%;
    transform: translateY(-50%);
    background: #ffffffbd;
    max-width: 70rem;
    height: 25rem;
    align-items: center;
    border-radius: 15px 0 15px 0;
}

.try_home .try_home_slider .box .content-1{
    position: absolute;
    top: 50%; left: 27%;
    transform: translateY(-50%);
    background: #ffffffa1;
    max-width: 70rem;
    align-items: center;
    border-radius: 15px 0 15px 0;
}

.try_home .try_home_slider .box .content-1 h3{
    width: 600px;
    height: 10rem;
    color: #221f1f;
    text-align: center;
    font-size: 8rem;
    border-radius: 15px 0 15px 0;
    font-family: initial;
    font-weight: 900;
}

.try_home .try_home_slider .box .content h3{
    width: 100%;
    height: 8rem;
    border-bottom: 2px solid var(--orange);
    background: #ffffff4d;
    color: #221f1f;
    text-align: center;
    font-size: 5rem;
    border-radius: 15px 0 15px 0;
    margin-top: 2rem;
}
.try_home .try_home_slider .box .content p{
    text-align: center;
    font-size: 2.5rem;
    color: #020202;
    font-weight: 800;
    border-radius: 15px 0 15px 0;
    font-family: initial;
}


/*==========Scroll Progress Button Section CSS===========*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 60px;
    height: 60px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 1000;
}

#progress_value{
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--green);
}


/*==========Banner Section CSS===========*/

#section_banner{
    margin: 40px 0;
}

.banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(images/banner.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

.banner h4{
    color: #fff;
    font-size: 2rem;
}

.banner h2{
    color: #fff;
    font-size: 3.5rem;
    padding: 10px 0;
}

.banner h2 span{
    color: #78e4e2;
}

.banner .normal{
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    color: #fff;
    background: none;
    border-radius: 40px;
    margin-bottom: -1rem;
    cursor: pointer;
    border: 2px solid #78e4e2;
    outline: none;
    transition: all 0.3s ease;
}

.banner .normal:hover{
    background: #78e4e2;
    color: #020202;
}


/*==========Blogs Section CSS===========*/

.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box{
    overflow: hidden;
    border-radius: .5rem;
    background: #fff;
    transition: .2s linear;
}


.blogs .box-container .box img{
    height: 50rem;
    width: 100%;
    object-fit: cover;
}

.blogs .box-container .box .content{
    padding: 2rem;
}

.blogs .box-container .box .content .icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #949292;
}

.blogs .box-container .box .content .icons a{
    color: var(--second-color);
    font-size: 2rem;
    font-weight: 800;
}

.blogs .box-container .box .content .icons a:hover{
    color: var(--second-color);
}

.blogs .box-container .box .content .icons a i{
    font-size: 1.5rem;
    padding-right: .5rem;
    color: var(--main);
}

.blogs .box-container .box .content .icons .white{
    font-size: 15px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background: #04c7c4;
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid #fff;
    outline: none;
    transition: all 0.3s ease;
}

.blogs .box-container .box .content .icons:hover .white{
    color: #020202;
    background: none;
    border: 2px solid #04c7c4;
}


/*==========Newsletter Section CSS===========*/

#section_banner_2{
    padding: 40px 80px;
    margin: 40px 0;
}
.newsletter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-image: url(images/banner.jpg);
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
}

.newsletter h4{
    font-size: 25px;
    font-weight: 800;
    color: #fff;
}

.newsletter p{
    font-size: 15px;
    font-weight: 600;
    color: #a1afc2;
}

.newsletter p span{
    color: #78e4e2;
}

.newsletter .form{
    display: flex;
    width: 40%;
}

.newsletter input{
    height: 5.125rem;
    padding: 0 1.25rem;
    font-size: 15px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter  .news_btn{
    font-size: 18px;
    height: 5.125rem;
    font-weight: 600;
    padding: 12px 25px;
    color: #fff;
    background: #02918e;
    margin-bottom: -1rem;
    cursor: pointer;
    border: 2px solid transparent;
    outline: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/*==========Footer Section CSS===========*/

.footer{
    background: #fff;
}

.footer .box-container .box a img{
    width: 100%;
    height: 110px;
    margin-left: -5rem;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}


.footer .box-container .box h4{
    font-size: 1.8rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box h3 i{
    color: var(--main);
}

.footer .box-container .box .links{
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
    text-transform: none;
}

.footer .box-container .box .links i{
    color: var(--main);
    padding-right: .5rem;
}

.footer .box-container .box .links:hover i{
    padding-right: 2rem;
}
.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--black);
    margin-left: .2rem;
    background: #eee;
    text-align: center;
}

.footer .box-container .box .share a:hover{
    background: var(--main);
    color: #fff;
}



.footer .box-container .box .payment-img{
    width: 100%;
    margin-top: 1rem;
}


.footer .credit{
    text-align: center;
    text-transform: none;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: var(--black);
    border-top: var(--border);
}

.footer .credit span{
    color: #02918e;
    font-weight: 600;
}

.footer .credit a{
    text-transform: none;
    font-size: 2rem;
    font-weight: 600;
    transition: all .3s ease;
}

.footer .credit a:hover{
    color: #02918e;
    text-decoration: underline;
}


/*==========Footer Product Section CSS===========*/

.footer .box-container-1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    border-bottom: 1px solid #b2bec3;
}

.footer .box-container-1 .text_flex{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}



.footer .box-container-1 .box_1 h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container-1 .box_1 h3 i{
    color: var(--main);
}

.footer .box-container-1 .box_1 .links{
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
    text-transform: none;
}

.footer .box-container-1 .box_1 .links i{
    color: var(--main);
    padding-right: .5rem;
}

.footer .box-container-1 .box_1 a:hover{
    color: #02a57c;
}
.footer .box-container-1 .box_1 p{
    line-height: 1.8;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}



/*==========Responsive Header Top Section CSS===========*/

@media (max-width: 920px){
    .header-top{
        height: 60px;
        background: linear-gradient(-45deg, #4edfdc, #1B4544);
        padding-block: 2px;
    }
    
        .header-top-link{
            display: flex;
            color: #fff;
            font-size: 5px;
            font-weight: 500;
            margin-left: 1.5rem;
          }
    
          .header-top-link i{
                color: #fff;
                font-size: 1rem;
             }
    
             .header-top-social-list li a i{
                display: none;
            }
        }




/*==========Responsive media queries===========*/

@media (max-width:991px){
    html{
        font-size: 55%;
    }
    .header{
        padding: 2rem;
    }

    .header .logo img{
        width: 150px;
        height: 60px;
        margin-left: 1rem;
    }
    section{
        padding: 2rem;
    }

    .heading .container_1{
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 50px;
        line-height: 50px;
        margin-top: 5rem;
        border-bottom: 2px solid #020202;
        overflow: hidden;
    }
    
    .heading .container_1 span{
        color: #fff;
        font-size: 1rem;
        background: #018481;
        display: inline-block;
        padding: 0px 20px;
        text-transform: uppercase;
    }
    
    .heading .container_1 span::before{
        position: absolute;
        content: '';
        width: 45%;
        height: 100%;
        background: #018481;
        z-index: -1;
        transform: rotate(45deg);
    }
}

@media (max-width:991px){

    #menu-btn{
        display: inline-block;
    }

    .header .search-form{
        width: 90%;
    }
    .header .logo {
        font-size: 1.5rem;
    }


    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: .1rem solid rgba(0,0,0,.2);
        border-bottom: .1rem solid rgba(0,0,0,.2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        width: 100%;
        font-size: 62.5%;
        height: 500px;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
        scroll-padding-top: 5.5rem;
    }

    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a{
        display: block;
        margin-bottom: 0.5rem;
        font-size: 2rem;
        background: #eee;
    }

    header .navbar a:hover{
        background: var(--main);
    }

    .header .navbar ul li a:hover{
        color: #fff;
    }

    .header .navbar ul li{
        width: 100%;
    }

    .header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    .header .navbar ul li ul li{
        background: #fff;
    }
    .header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }
    .header .navbar.active{
        right: 0.5rem;
        transition: .4s linear;
    }

    .header .navbar #caret_right {
        margin-left: 35rem;
    }
    
    .header .navbar #caret_right_1 {
        margin-left: 35rem;
    }
    
    .header .navbar #caret_right_2 {
        margin-left: 35rem;
    }

    header .navbar a:hover #caret_right{
        transform: rotate(90deg);
    }

    header .navbar a:hover #caret_right_1{
        transform: rotate(90deg);
    }

    header .navbar a:hover #caret_right_2{
        transform: rotate(90deg);
    }

    .try_home .try_home_slider .box{
        width: 100%;
        background-size: cover !important;
        background-position: center !important;
        min-height: 30rem;
        position: relative;
        margin-top: 0rem;
    }


    .banner{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-image: url(images/banner.jpg);
        width: 100%;
        height: 45vh;
        background-size: cover;
        background-position: center;
    }
    
    .banner h4{
        color: #fff;
        font-size: 2rem;
    }
    
    .banner h2{
        color: #fff;
        font-size: 3rem;
        padding: 10px 0;
    }
    
    .banner h2 span{
        color: #78e4e2;
    }

    .blogs .box-container .box .content .icons a{
        color: var(--second-color);
        font-size: 1.3rem;
        font-weight: 800;
    }

    #section_banner_2{
        padding: 40px 20px;
    }
    .newsletter{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        background-image: url(images/banner.jpg);
        width: 100%;
        height: 35vh;
        background-size: cover;
        background-position: center;
    }

    .newsletter .form{
        min-width: 100%;
    }

    .footer .box-container .box a  img{
        width: 100%;
        height: 100px;
    }

    .footer .credit{
        text-align: center;
        margin-top: 2rem;
        padding: 1rem;
        padding-top: 2.5rem;
        font-size: 1.5rem;
        color: var(--black);
        border-top: var(--border);
    }
    
    .footer{
        text-align: left;
    }
}


@media only screen and (max-width: 768px){
    html,body{
        width: 100%;
        overflow-x: hidden;
    }    
    
}

