@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --main: #006C44;
    --second-color: #2A2A2A;
    --third-color: #b2bec3;
    --box-shadow:.5rem .5rem 0 rgba(110, 110, 110, 0.2);
    --border:.2rem solid var(--main);
    --borders:.2rem solid #fff;
}

*{
    font-family: 'Poppins', 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;
}

body .blogs{
    background-color: #ecf0f1;
}


/*==========Header Top Section CSS===========*/

.header-top{
    position: sticky;
    width: 100%;
    height: 35px;
    background: linear-gradient(-45deg, #026942, #08774e);
    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: 60rem;
}

.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: 6rem;
}


/*==========Header Section CSS===========*/

.header_1{
    background: #f1f4f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
}

.header_1 .logo img{
    width: 190px;
    height: 70px;
}


.header_1 .search_box_container{
    display: flex;
    height: 4.5rem;
    order: 3;
}

.header_1 .search_box_container #search_box{
    height: 100%;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    color: #333;
    border: 1px solid var(--main);
    text-transform: none;
    border-bottom: 3px solid var(--main);
}


.header_1 .search_box_container label{
    height: 100%;
    width: 8rem;
    font-size: 1.8rem;
    line-height: 4rem;
    color: #fff;
    background: var(--main);
    text-align: center;
    cursor: pointer;
}

.header_1 .search_box_container label:hover{
    background: var(--main);
}

.header_1 .icons a{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #fff;
    color: var(--second-color);
    font-size: 2rem;
    cursor: pointer;
    margin-left: .8rem;
    margin-right: .8rem;
    text-align: center;
}

.header_1 .icons a:hover{
    background: var(--main);
    border-radius: 50%;
    color: #fff;
}


.header_1 .icons #search_btn{
    display: none;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #fff;
    color: var(--second-color);
    font-size: 2rem;
    cursor: pointer;
    margin-left: .8rem;
    margin-right: .8rem;
    text-align: center;
}

.header_1 .icons #search_btn:hover{
    background: var(--main);
    border-radius: 50%;
    color: #fff;
}

.header_1 .icons .normal{
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    color: #000;
    background: #fff;
    border-radius: 20px;
    margin-bottom: -1rem;
    cursor: pointer;
    border: 1px solid #707070;
    outline: none;
    transition: all 0.3s ease;
}

.header_1 .icons .normal:hover{
    background: var(--main);
    color: #fff;
    border-radius: 20px;
    border: none;
}


/*==========Mega Menu Section CSS===========*/

.header .header_2.active{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.header .header_2{
    margin: 0 auto;
    z-index: 5;
}

.navigation{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 7rem;
    position: absolute;
    background: #fff;
    box-shadow: var(--box-shadow);
    z-index: 5;
}

.nav_list{
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    margin: 0 1.5rem;
}

.nav_list span{
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}


.nav_list span:hover{
    color: rgb(6, 98, 151);
}

.nav_action{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 16rem;
    margin-left: 2rem;
}

.nav_toggle{
    cursor: pointer;
    display: none;
}

.nav_toggle i{
    position: absolute;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #fff;
    color: var(--second-color);
    font-size: 2rem;
    cursor: pointer;
    margin-left: 5rem;
    text-align: center;
    margin-top: -2rem;
}

.nav_toggle i:hover{
    background: var(--main);
    border-radius: 50%;
    color: #fff;
}

.dropdown{
    position: absolute;
    top: 7rem;
    left: 5rem;
    width: 80%;
    background: rgb(252, 253, 251);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    box-shadow: 0rem 0.2rem 0.5rem rgba(32, 7, 65, 0.14);
    transition: all 0.5s ease-in;
}

.dropdown_inner{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.nav_list_menu i{
    font-size: 1.5rem;
    color: #000;
    margin: 0 2px;
}

.nav_list_menu:hover i{
    transition: all 0.5s ease-in;
    transform: rotate(180deg);
}


.nav_list_menu:hover .dropdown{
   clip-path: polygon(0 0, 100% 0, 100% 102%, 0 102%);
}

.item_list{
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: left;
    gap: 1rem;
    margin: 2rem 0;
}

.item_list_info{
    position: relative;
    width: 100%;
}

.dropdown .item_list .item_list_info h2{
    font-size: 1.5rem;
    border-bottom: 1px solid #bdc3c7;
    margin-bottom: 3rem;
    padding: 5px;
}

.dropdown .item_list .item_list_info h3{
    text-align: center;
    font-size: 1.5rem;
    color: rgb(13, 86, 196);
}

.dropdown .item_list .item_list_info h4{
    font-size: 1.2rem;
    color: #333;
}

.dropdown .item_list .item_list_info h4:hover{
    text-decoration: underline;
}


/*==========Bottom Navbar Section CSS===========*/
.bottom_navbar{
    text-align: center;
    background: #f1f4f8;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    display: none;
}

.bottom_navbar a{
    font-size: 3rem;
    padding: 1.2rem;
    color: #091E3E;
}
.bottom_navbar a:hover{
    color: rgb(0, 100, 75);
}

.bottom_navbar span{
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0.5rem;
    color: #494949;
}
.bottom_navbar span:hover{
    color: rgb(0, 100, 75);
}


/*==========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(--second-color);
}

/*==========Home Section CSS===========*/

.home-container{
    position: relative;
}


.home-container  .slide-container .slide{
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.home-container  .slide-container .slide video{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: fadeIn .4s linear;
}

@keyframes fadeIn{
    0%{
        transform: scale(1.1);
    }
}

.home-container  .slide-container .slide .content{
    position: absolute;
    top: 50%; left: 20%;
    transform: translateY(-50%);
    max-width: 50rem;
}



.home-container  .slide-container .slide .content h3{
    font-size: 4rem;
    color: #fff;
    padding: .5rem 0;
    animation: animate .4s linear .4s backwards;
}

.home-container  .slide-container .slide .content h5{
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.8;
    font-family: initial;
    font-weight: 800;
    animation: animate .4s linear .4s backwards;
}
.home-container  .slide-container .slide .content p{
    font-size: 1.2rem;
    color: #eee;
    font-weight: 500;
    animation: animate .4s linear .4s backwards;
}



.home_slide_button{
    margin-top: 2rem;
    display: inline-block;
    padding: .8rem 1rem;
    font-size: 1.7rem;
    border-radius: 15px 0 15px 0;
    background: var(--main);
    border: .2rem solid var(--main);
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
    animation: animate .4s linear .4s backwards;
}
.home_slide_button:hover{
    transform: scale(0.9);
}

.home_slide_button span{
    padding: .7rem 1rem;
    border-radius: 10px 0 10px 0;
    color: var(--main);
    background: #fff;
    margin-left: .5rem;
}


@keyframes animate{
    0%{
        opacity: 0;
        transform: scale(.5) translateY(-50px);
    }
}

.home-container .slide-container{
    display: none;
}

.home-container .slide-container.active{
    display: block;
}

.home-container #next,
.home-container #prev{
    position: absolute;
    top: 50%;
    transform: translateY(-20%);
    z-index: 100;
    background: var(--main);
    color: #fff;
    font-weight: bold;
    height: 60px;
    width: 50px;
    line-height: 60px;
    font-size: 50px;
    border-radius: 20%;
    cursor: pointer;
    text-align: center;
}


.home-container #next{
    right: 1rem;
}

.home-container #prev{
    left: 1rem;
}


/*==========Blogs Section CSS===========*/

.heading{
    justify-content: space-between;
    padding-bottom: 0.3em;
    margin-bottom: 1em;
    border-bottom: 2px solid var(--main);
    font-size: 3.5rem;
    text-align: left;
    width:60%;
}

.heading span{
    color: var(--main);
}

.product_collection .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.product_collection .box-container .box{
    overflow: hidden;
    border-radius: .5rem;
    background: #fff;
    transition: .2s linear;
}


.product_collection .box-container .box img{
    height: 60rem;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.product_collection .box-container .box .content{
    padding: 2rem;
}

.product_collection .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;
}

.product_collection .box-container .box .content .icons a{
    color: var(--second-color);
    font-size: 2rem;
    font-weight: 800;
}

.product_collection .box-container .box .content .icons a:hover{
    color: var(--second-color);
}

.product_collection .box-container .box .content .icons a i{
    font-size: 1.5rem;
    padding-right: .5rem;
    color: var(--main);
}

.product_collection .box-container .box .content .icons .white{
    font-size: 15px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background: var(--main);
    cursor: pointer;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.product_collection .box-container .box .content .icons:hover .white{
    color: #fff;
    background: var(--second-color);
}


/*==========Banner Section CSS===========*/


.banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5) url(image_css/Banner_image.webp);
    background-attachment: fixed;
    background-blend-mode: darken;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.banner h3{
    color: #fff;
    font-size: 3.5rem;
    padding: 10px 0;
}

.banner p{
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 0;
}


.banner .normal{
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    color: #fff;
    background: var(--main);
    border-radius: 40px;
    margin-bottom: -1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    outline: none;
    transition: all 0.5s ease;
}

.banner .normal:hover{
    background: var(--second-color);
    color: #fff;
}



/*==========Product Section CSS===========*/


.heading-1{
    justify-content: space-between;
    padding-bottom: 0.3em;
    margin-bottom: 1em;
    border-bottom: 2px solid var(--main);
    font-size: 3.5rem;
    text-align: left;
    width:40%;
}

.heading-1 p{
    font-size: 1.5rem;
}

.heading-1 span{
    color: var(--main);
}


.product_container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product_container img{
    width: 100%;
    height: 100%;
}

.product_item{
    border: 2px solid #eee;
    border-radius: 1.5rem;
    transition: all .2s ease;
}

.product_item:hover{
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.562);
}

.product_banner,
.product_images{
    position: relative;
}
.product_images{
    display: block;
    overflow: hidden;
    border-radius: 1.25rem;
}

.product_images img{
    width: 100%;
    height: 100%;
}


.product_item:hover .product_img{
    transform: scale(1.1);
}

.product_banner{
    padding: 0.625rem 0.75rem 0.75rem;
}


.product_img.hover{
    position: absolute;
    top: 0;
    left: 0;
}


.product_content{
    padding: 0 1.25rem 1.125rem; 
    position: relative;
}

.product_category{
    color: #333;
    font-size: 1rem;
    text-align: center;
}

.product_title{
    font-size: 1.5rem;
    color: #020202;
    margin-block: 0.75rem 0.5rem;
    text-align: center;
}


.cart_button{
    width: 60%;
    display: flex;
    padding: .4rem 1rem;
    font-size: 1.7rem;
    font-weight: 300;
    list-style: 1.5;
    border-radius: 20px;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    background: var(--main);
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.cart_button:hover{
    background: var(--second-color);
    color: #fff;
}



/*==========New Arrivals product Section CSS===========*/


.new_container .swiper {
    overflow: initial;
}


.new_container img{
    width: 100%;
    height: 100%;
}


.swiper-button-next::after,
.swiper-button-prev::after{
    content: '';
}


.swiper-button-next,
.swiper-button-prev{
   background: #0353949f;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   color: #fff;
   font-size: 1.8rem;
   line-height: 30px;
   text-align: center;
   z-index: 1000;
}


.swiper-button-prev{
   left: 0;
   right: 2.5rem;
}

.swiper-button-next{
   right: 0;
}


/*==========Review Section CSS===========*/

.heading_review{
    justify-content: space-between;
    padding-bottom: 0.3em;
    margin-bottom: 1em;
    margin-top: 2rem;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 3.5rem;
    text-align: left;
    width:40%;
}

.heading_review p{
    font-size: 1.5rem;
    color: #fff;
}

.heading_review span{
    color: #03d30d;
}

.testimonials-section{
	width: 100%;
	padding: 0px 8%;
    overflow: hidden;
}

.testimonials-section{
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5) url(image_css/Banner_image.webp);
    background-attachment: fixed;
    background-blend-mode: darken;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}

.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card .test-card-body{
	background-color: #fff;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.test-card-body .quote{
	display: flex;
	align-items: center;
}
.test-card-body .quote i{
	font-size: 45px;
	color: var(--second-color);
	margin-right: 20px;
}
.test-card-body .quote h2{
    font-size: 2rem;
	color: var(--second-color);
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #565858;
}
.test-card-body .ratings{
	margin-top: 20px;
}
.test-card-body .ratings i{
	font-size: 17px;
	color: #f0bf6a;
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: #fff;
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: #fff;
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: #e9e9e9 !important;
	color: var(--second-color);
	cursor: pointer;
	transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
	background-color: var(--main) !important;
	color: #e9e9e9;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: #fff !important;
}



/*==========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;
    box-shadow: 0 0 10px 0 rgba(0,0,0, 0.5);
    background: #fff;
    margin-bottom: 5rem;
    transition: .2s linear;
}


.blogs .box-container .box img{
    height: 26rem;
    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: var(--border);
}

.blogs .box-container .box .content .icons a{
    color: var(--light-color);
    font-size: 1.5rem;
}

.blogs .box-container .box .content .icons a:hover{
    color: var(--main);
}

.blogs .box-container .box .content .icons a i{
    color: var(--main);
    padding-right: .5rem;
}


.blogs .box-container .box .content h3{
    line-height: 1.8;
    color: var(--second-color);
    font-size: 2.2rem;
    padding: .5rem 0;
}

.blogs .box-container .box .content p{
    line-height: 1.8;
    color: #201f1f;
    font-size: 1.5rem;
    padding: .5rem 0;
}


/*==========Newsletter Section CSS===========*/

#section_banner_2{
    padding: 40px 80px;
}
.newsletter{
    background-color: #006C44;
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
}

.newsletter h2{
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    padding: 10px;
}


.newsletter .form{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 50%;
    margin-top: 1rem;
}

.newsletter input{
    position: relative;
    height: 5.125rem;
    padding: 0 1.25rem;
    font-size: 15px;
    width: 100%;
    border: 1px solid transparent;
    text-transform: uppercase;
    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: 10px 20px;
    color: #fff;
    background: var(--second-color);
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    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: #1F2125;
    padding: 40px 80px;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 5rem;
}

.footer .box-container .box h3{
    font-size: 2rem;
    border-bottom: 1px solid #a8a6a6;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
}

.footer .box-container .box img{
    width: 70%; 
}

.footer .box-container .box h3 i{
    color: #fff;
}

.footer .box-container .box .links{
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
    color: #B5B7B9;
    padding: 0.5rem 0;
    margin-top: 1rem;
    text-transform: none;
}

.footer .box-container .box .links i{
    color: #fff;
    padding-right: .5rem;
}

.footer .box-container .box .links:hover{
    color: #ffffff;
}


.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.5rem;
    color: #B5B7B9;
    text-decoration: none;
    padding: 1rem 0;
}

.footer .box-container .box .share{
    display: flex;
    gap: 0.9rem;
}
.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    text-decoration: none;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--second-color);
    margin-left: .2rem;
    background: #eee;
    text-align: center;
    transition: all 0.5s ease;
}

.footer .box-container .box .share a:hover{
    background: var(--main);
    color: #fff;
    border-radius: 50%;
    border: none;
}


.footer .credit{
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    font-weight: 500;
    color: #B5B7B9;
    border-top: var(--borders);
}

.footer .credit span{
    color: #c2b508;
}

.footer .credit a{
    text-transform: none;
    color: #0897c2;
}

.footer .credit a:hover{
    cursor: pointer;
    text-decoration: underline;
}

























/*==========Responsive media queries===========*/

@media (max-width:991px){
    html{
        font-size: 55%;
    }
    section{
        padding: 2rem;
    }

    .newsletter{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 45vh;
        background-size: cover;
        background-position: center;
    }

    .newsletter .form{
        min-width: 100%;
    }

    .footer{
        background: #1F2125;
        padding: 0px 15px;
    }
}




@media (max-width:991px){
    
    .header_1 .logo img{
        width: 140px;
        height: 100%;
    }
    
    
    .header_1 .search_box_container{
        position: absolute;
        top: -26%;
        right: 2rem;
        width: 90%;
        box-shadow: var(--box-shadow);
        z-index: 1000;
    }

    .header_1 .search_box_container.active{
        top: 27%;
    }
    .header_1 .icons #search_btn{
        display: inline-block;
    }

    .header_1 .icons a{
        display: none;
    } 

    .header_1 .icons .normal{
        display: none;
    }
    
}

@media (max-width:991px){
    .nav_toggle{
        display: inline-block;
    }


    .nav_menu{
        position: absolute;
        top: 0.5rem;
        left: 0;
        min-width: 100%;
        background: #f1f4f8;
        display: none;
    }

    .nav_menu.active{
        display: block;
    }

    .nav_list{
        display: block;
        margin: 2rem 0;
        text-align: center;
    }

    .nav_link{
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
    }

    .dropdown{
        width: 100%;
        left: 0;
        top: 0;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        height: 0;
        text-shadow: none;
        text-align: start;
        transition: all 0.5s ease-in;
    }

    .nav_list_menu:hover .dropdown{
        height: 100%;
        transition: all 0.5s ease-in;
    }

    .product_container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .home-container #next,
    .home-container #prev{
    position: absolute;
    top: 50%;
    transform: translateY(-20%);
    z-index: 1;
    background: var(--main);
    color: #fff;
    font-weight: bold;
    height: 60px;
    width: 50px;
    line-height: 60px;
    font-size: 50px;
    border-radius: 20%;
    cursor: pointer;
    text-align: center;
}

.banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 110vh;
    background-size: cover;
    background-position: center;
}

.testimonials-section{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 135vh;
    background-size: cover;
    background-position: center;
}

}



@media (max-width: 920px){
    .header-top{
        height: 60px;
        background: linear-gradient(-45deg, #026942, #08774e);
        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;
            }

        }