@import url('https://fonts.googleeapis.com/css2?family=Spartan:wght 100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}
h4 {
    font-size: 20px;
    color: #222;
}
h6 {
    font-weight: 700;
    font-size: 12px;
    color: #222;
}
p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}
.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}
button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: rgb(20, 20, 240);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: rgb(20, 20, 240);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: #f6dbf6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logos{
	height: 25px;
}
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #101010;
    transition: 0.3s ease;

}
#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}
#mobile {
    display: none;
    align-items: center;
}
#close{
    display: none;
}

#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fe-box {
    width: 100px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}
.fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
.fe-box img{
    width: 100%;
    margin-bottom: 10px;
}
.fe-box h6{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature.fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}
#feature.fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}
#feature.fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}
#feature.fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}
#feature.fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}
#product1{
    text-align: center;
}
.proContainer{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;

}
.procontainer div{
	padding-left: 40px;
}
.well{
		background: rgba(0,0,0,0.5);
		display: inline;
}

.pro {
    width: 23%;
    min-width: 200px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
	background: #e3e6f3;
}
.pro img:hover{
    box-shadow: 20px 20px 30px rgba(228, 176, 5, 0.1);
}
.pro img{
    width: 100%;
	height: 120px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(223, 104, 6, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
}
.desp{
    text-align: start;
    padding: 10px 0;
}
.desp span{
    color: rgb(243, 181, 25);
    font-size: 12px;
	    color: #088178;
}
.desp  h4{
    color: #1a1a1a;
    font-size: 12px;
	    text-align: right;

}
.desp h5{
    color: #1a1a1a;
    font-size: 12px;
	    text-align: right;

}

.pro.star{
    font-size: 12px;
    color: rgb(243, 181, 25);
   
}
.star h4{
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}
.pro .fa {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: rgb(214, 228, 25);
    font-weight: 500;
    border: 1px solid #4e0fe0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/baner/baanner.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
#banner h4{
    color: rgb(48, 42, 42);
    font-size: 16px;
}
#banner h2{
    color: rgb(48, 42, 42);
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span{
    color: #ef3636;
}
#banner button:hover{
    background: #ef3636;
    color: rgb(14, 7, 34);
}
#banner button{
    border-radius: 4px;
    background-color: #f0d90e;
    color: rgb(12, 3, 3);
    border: none;
    padding: 14px 40px 14px 35px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}
#smBanner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bannerBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    background-image: url("img/baner/bnn.jpeg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
.bannerBox2{
    background-image: url("img/baner/ban.jpeg");
}
#smBanner h4{
    color: rgb(14, 10, 1);
    font-size: 20px;
    font-weight: 300;
}
#smBanner h2{
    color: rgb(27, 21, 4);
    font-size: 28px;
    font-weight: 800;
}
#smBanner span{
    color: rgb(206, 187, 22);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}
#smBanner button:hover{
    background: #ef3636;
    color: rgb(14, 7, 34);
}
.bannerBox1 button{
    border-radius: 4px;
    background-color: #20c411;
    color: rgb(12, 3, 3);
    border: none;
    padding: 14px 40px 14px 35px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}
.bannerBox2 button{
    border-radius: 4px;
    background-color: #99a3a8;
    color: rgb(12, 3, 3);
    border: none;
    padding: 14px 40px 14px 35px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}
#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}
#banner3 .bannerBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    background-image: url("img/baner/shoping.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 .bannerBoxs{
    background-image: url("img/baner/bnn.jpeg");
}
#banner3 .bannerBoxs1{
    background-image: url("img/baner/shoppings.jpeg");
}
#banner3 h2{
    color: #21af0e;
    font-weight: 800;
    font-size: 25px;
}
#banner3 h3{
    color: #500a0a;
    font-weight: 800;
    font-size: 15px;
}
#newsLetter .form{
    display: flex;
    width: 40%;
}
#newsLetter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("img/baner/ban.jpeg");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #180db3;
}
#newsLetter h4{
    font-size: 22px;
    font-weight: 700;
    color: #f7e9dc;
}
#newsLetter p{
    font-size: 14px;
    font-weight: 600;
    color: #4b351f;
}
#newsLetter p span{
    color: #d6b810;
}
#newsLetter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#newsLetter button{
    background-color: #088178;
    color: #fff2e5;
    white-space: nowrap;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	background: #f6dbf6;
}
footer .col1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
footer .col2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
		font: Bold;
}
footer .col3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
	font: Bold;
}
footer.logo{
    margin-bottom: 30px;
}
footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}
.follow{
    margin-top: 20px;
}
.icon img{
    color:#465b52;
    padding-right: 4px;
    cursor: pointer;
}
.row img{
    border: 1px solid #088178;
    border-radius: 6px;
}
.install img{
    margin: 10px 0 15px 0;
}
.icon img:hover,
footer a:hover {
    color: #1ea830;
}
.copyright{
    width: 100%;
    text-align: center;
}
#pageHeader{
    background-image: url(img/baner/ban.jpeg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#pageHeader h2,
#pageHeader p{
    color: #9bb40a;
}
#pagination {
    text-align: center;
}
#pagination a{
    text-decoration: none;
    background-color: #20c411;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff2e5;
    font-weight: 600;
}
#pagination a i {
    font-size: 16px;
    font-weight: 600;
}
#proDetails {
    display: flex;
    margin-top: 20px;
}
.singleProImg{
    width: 40%;
    margin-right: 50px;
}
.smallImgGroup{
    display: flex;
    justify-content: space-between;
}
.smallImgCol{
    flex-basis: 24%;
    cursor: pointer;
}
.singleProDetails {
    width: 50%;
    padding-top: 30px;
}
.singleProDetails h4{
    padding: 40px 0 20px 0;
}
.singleProDetails h2{
    font-size: 26px;
}
.singleProDetails select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.singleProDetails input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}
.singleProDetails input:focus {
    outline: none;
}
.singleProDetails button{
    background-color: #088178;
    color: #f7e9dc;
}
#pageHeader.blogHeader{
    background-image: url("img/baner/bns.jpeg");
}
#blog{
    padding: 150px 150px 0 150px;
}
.blogBox{
    display: flex;
    text-align: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}
.blogImg{
    width: 50%;
    margin-right: 40px;
}
#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.blogDetails{
    width: 50%;
}
.blogDetails a{
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    position: relative;
    transition: 0.3s;
}
.blogDetails a::after {
    content: "";
    width: 50%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}
.blogDetails a:hover{
    color: #088178;
}
.blogDetails a:hover::after{
    background-color:#088178;
}
.blogBox h1{
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #42413c;
    z-index: -9;
}
/* About Page class=abotHeader*/
#pageHeader.abotHeader{
    background-image: url("img/baner/bbans.jpeg");
}

#abotHead{
    display: flex;
    align-items: center;
}
#abotHead img{
    width: 40%;
    height: 100px;
	background: #f6dbf6;
}
#abotHead div {
    padding-left: 40px;
	background: #f6dbf6;
	height: 100%;
}
#abotApp{
    text-align: center;
}
.abotVideo{
    width: 70%;
    height: 30%;
    margin: 30px auto 0 auto;
}
.abotVideo Video{
    width: 100%;
    height: 30%;
    border-radius: 20px;
}
/*Contact Us Page */
#contactDetail{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.details{
    width: 40%;
	background: #e3e6f3;
}
.details span{
  font-size: 12px;
	text-align: center;
}
#formDetails form span{
    font-size: 12px;
	text-align: center;
}
.details h2{
font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
	text-align: center;
}
#formDetails form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
	text-align: center;
}
.details h3{
    font-size: 16px;
    padding-bottom: 15px;
	text-align: left;
}
.conAdd li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}
.conAdd li i{
    font-size: 14px;
    padding-right: 22px;
}
.conAdd li p{
    margin: 0;
    font-size: 14px;
}
.details map{
    width: 55%;
    height: 400px;
	background: #f6dbf6;
}
.details map iframe{
    width: 100%;
    height: 100%;
}
#formDetails{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
	background: #e3e6f3;
}
#formDetailslog{
	margin: 0 auto;
    padding: 50px;
    border: 2px solid #e1e1e1;
	background: rgba(0,0,0,0.5);
	border-radius: 8px;
	width: 50%;
	text-align: center;
	font-family: arial;
}
div.loginInputsContainer{
	margin-top: 10px;
	
}
div.loginInputsContainer label{
	display: inline;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
div.loginInputsContainer span{
	display: inline;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
}
div.loginInputsContainer input{
	
	border: 2px solid #d40339;
	font-size: 18px;
	padding: 5px;
	text-align: center;
	font-style: italic;
}
div.loginButtonContainer{
	margin-top: 20px;
	text-align: center;
}
div.loginButtonContainer Button{
	font-size: 20px;
	padding: 10px 40px;
	background: #f685a2;
	border: none;
	color: #fff;
}

#formDetailsup{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
	background: #e3e6f3;
	width: 70%;
	height: 70%;
	align-items: center;
}
#formDetails form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
		background: #e3e6f3;
}

#formDetailsup form{
    width: 60%;
    display: flex;
	flex-direction: column;
    align-items: flex-start;
}
#formDetails form input{
 width: 70%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #777070;

}

#formDetails form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #777070;
}
#formDetailsup form input{
    width: 200px;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #777070;
}
#formDetailslog form input{
    width: 200px;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #777070;
}
#formDetails form button{
    background-color: #088178;
    color: #fff;
}
#formDetailslog form button{
    background-color: #088178;
    color: #fff;
}
#formDetailsup form button{
    background-color: #088178;
    color: #fff;
}
#formDetails .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
	background: #e3e6f3;
}
#formDetails .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}
#formDetails .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}
#formDetails .people div p span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
/*Cart Page*/
#cart{
    overflow-x: auto;
}
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 70px;
}
#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}
#cart table thead{
    border: 1px solid #e2e9e2;
    border-left: none;
    border-right: none;
}
#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}
#cart table tbody tr td{
    padding-top: 15px;
}
#cart table tbody td{
    font-size: 13px;
}
#cartAdd{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#coupon
{
    width: 50%;
    margin-bottom: 30px;
}
#coupon h3,
#subTotal h3{
    padding-bottom: 15px;
}
#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #396439;
}
#coupon button,
#subTotal button{
    background-color: #088178;
    color: #fff;
    padding: 12px 20px;
}
#subTotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e1e1e1;
    padding: 30px;
}
#subTotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
#subTotal table td{
    width: 50%;
    border: 1px solid #e2e9e2;
    padding: 10px;
    font-size: 13px;
}



#maq{
    color: rgb(1, 15, 15);
}
#maq em{
    text-decoration: line-through rgb(20, 173, 6);
}




/* cart page*/
/* start media query */
@media (max-width:799px){
    .section-p1{
        padding: 40px 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #e3e6f3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
    }
    #navbar.active{
        right: 0px;
    }
    #navbar li {
        margin-bottom: 25px;
    }
    #mobile {
        display: flex;
        align-items: center;
    }
    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }
    #lg-bag{
        display: none;
    }
    #hero{
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }
    #feature{
        justify-content: center;
    }
    #feature .fe-box{
        margin: 15px 15px;
    }
    #product1 .proContainer{
        justify-content: center;
    }
    #product1 .pro{
        margin: 15px;
    }
    #banner{
        height: 20vh;
    }
    #smBanner .bannerBox{
        min-width: 100%;
        height: 30vh;
    }
    #banner3{
        padding: 0 40px;
    }
    #banner3 .bannerBox{
        width: 28%;
    }
    #newsLetter .form{
        width: 70%;
    }
    /*Contact Page*/
    #formDetails{
        padding: 40px;
    }
    #formDetails form{
        width: 50%;
    }
	#formDetailslog form{
        width: 100%;
    }
	#formDetailslog{
        width: 100%;
    }
	.loginInputsContainer input{
	width: 100%;
	}
}
@media (max-width: 477px){
    .section-p1{
        padding: 20px;
    }
    #header {
        padding: 10px 30px;
    }
    h1{
        font-size: 38px;
    }
    h2{
        font-size: 32px;
    }
    #hero {
        padding: 0 20px;
        background-position: 55%;
    }
    #feature {
        justify-content: space-between;
    }
    #feature .fe-box{
        width: 155px;
        margin: 0 0 15px 0;
    }
    #product1 .pro{
        width: 100%;
    }
    #banner{
        height: 40vh;
    }
    #smBanner .bannerBox{
        height: 40vh;
    }
    #smBanner .bannerBox2{
        margin-top: 20px;
    }
    #banner3{
        padding: 0 20px;
    }
    #banner3 .bannerBox{
        width: 100%;
    }
    #newsLetter {
        padding: 40px 20px;
    }
    #newsLetter .form{
        width: 100%;
    }
    footer .copyright{
        text-align: start;
    }
    #proDetails{
        display: flex;
        flex-direction: column;
    }
    .singleProImg{
        width: 100%;
        margin-right: 0px;
    }
    .singleProDetails{
        width: 100%;
    }
	
    #blog{
        padding: 100px 20px 0 20px;
    }
    .blogBox{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .blogImg{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .blogDetails{
        width: 100%;
    }
    /*About Page*/
    #abotHead{
        flex-direction: column;
    }
    #abotHead img{
        width: 100%;
        margin-bottom: 20px;
    }
    #abotHead div{
        padding-left: 0px;
    }
    .abotVideo Video {
        width: 100%;
    }
    /*ContactsPage*/
    #contactDetail{
        flex-direction: column;
    }
    #contactDetail .details{
        width: 100%;
        margin-bottom: 30px;
    }
    #contactDetail .map{
        width: 100%;
    }
    #formDetails{
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }
    #formDetails form{
        width: 100%;
        margin-bottom: 30px;
    }
	#formDetailslog form{
        width: 100%;
    }
	#formDetailslog{
        width: 100%;
    }
	.loginInputsContainer input{
	width: 100%;
	}
    /*cartpage*/
    #cartAdd{
        flex-direction: column;
    }
    #coupon{
        width: 100%;
    }
    #subTotal{
        width: 100%;
        padding: 20px;
    }
}