@import url('https://fonts.googleapis.com/css2?family=Karla&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
   
}


body{
    width:100%;
    min-height: 100vh;
}
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-size: 12px;
    font-weight: 500;
    color:#222;
}
p{
    font-size: 16px;
    margin:15px 0 20px 0;
    color:#222;
}
.section-padding1
{
    padding: 40px 80px;
}
.section-margin1
{
    padding: 40px 0;
}
button.normal{
    margin:5px 0;
    padding:12px 30px;
    font-size:15px;
    font-weight:500;
    cursor: pointer;
    background-color: #fff;
    color:#000;
    border: none;
    outline:none;
    transition: 0.4s;
}
button.btn2{
   
    padding:11px 18px;
    font-size:13px;
    font-weight:500;
    cursor: pointer;
    background-color:transparent;
    border:1px solid #fff; 
    color:#fff;
    outline:none;
    transition: 0.2s;
}
.header{
    padding:20px 80px;
    align-items: center;
    display: flex;
    justify-content: space-between; 
    background:#E3e6f3;
    box-shadow: 0 5px 25px rgba(0, 0, 0,0.08);
    z-index:1000;
    position: sticky;
    top:0;
    left:0;  
}
.header .logo
{
    cursor: pointer;
    text-decoration: none;
    font-size:20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:#0cb6aa;
   
}
#navbar{
   align-items: center;
   display: flex;
   justify-content: center;  
   list-style: none;
}
#navbar li{
    padding:0 20px;
}
.link
{
    font-size: 16px;
    font-weight: 500;
    color:#1a1a1a;
    text-decoration: none;
    position: relative;
}
.link::after
{
    content:"";
    width: 0;
    height:3px;
    background-color: #0cb6aa;
    position: absolute;
    transition: 0.5s;
    bottom: -4px;
    left:0;
}
.active:hover::after
{
    width:100%;
    transition: 0.5s;
}

/*-----------------home-----------------*/
.home{
    
    padding:0 80px;
    width:100%;
    height:90vh;
    background-image: url(img/hero4.png);
    background-size: cover;
    background-position: top 25% right 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.home h4
{
    padding-bottom: 15px;
}
.home h1{
    color:#0cb6aa;
}
.home p
{
    opacity: 0.6;
}
/*-------------button--------------*/
.home button
{
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    background-image:url(img/button.png);
    background-color: transparent;
    color:#0cb6aa;
    border:none;
    padding: 10px 70px 10px 65px;
    background-repeat: no-repeat;
}
/*-----------------------FEATURE-----------------*/
#feature
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/*-----------Feature -box-------*/
#feature .feature-box{
   
    width:180px;
    text-align: center;
    padding:25px 15px;
    border:1px solid #cce6d0;
    box-shadow:20px 20px 30px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin:15px 0;
}
#feature .feature-box:hover
{
    box-shadow:10px 10px 60px rgba(0, 0, 0,0.1);
}
#feature .feature-box img{
    width:100%;
    margin-bottom: 10px;
}
#feature .feature-box h6{
    display: inline-block;
    border-radius: 5px;
    padding:9px 8px;
    line-height: 1;
    color:#088178;
    background-color: #fddde4;
}
#feature .feature-box:nth-child(2) h6
{
    background-color: #cdebbc;
}
#feature .feature-box:nth-child(3) h6
{
    background-color: #d1e8f2;
}
#feature .feature-box:nth-child(4) h6
{
    background-color: #cdd4f8;
}#feature .feature-box:nth-child(5) h6
{
    background-color: #f6dbf6;
}
#feature .feature-box:nth-child(6) h6
{
    background-color: #fff2e5;
}
/*-----------------Product-------------*/
#product1
{
 text-align: center;
}
#product1 .prod-container{
    display: flex;
    justify-content: space-between;
    padding-top:20px;
    flex-wrap: wrap;
}
#product1 .pro
{
    position: relative;
    width:23%;
    min-width:250px;
    padding:10px 12px;
    border: 1px solid #cce6d0;
    border-radius: 20px;
    cursor: pointer;
    box-shadow:0px 18px 24px rgba(149, 157, 165, 0.2);
    margin:20px 0;
    transition: 0.2s ease;
}
#product1 .pro:hover{
    box-shadow: rgba(149, 157, 165, 0.5) 0px 18px 30px;
}
#product1 .pro img
{
    width:100%;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#product1 .pro .des
{
    text-align: start;
    padding:20px 0;
}
#product1 .pro .des span{
    color:#606063;
    font-size:13px;
}
#product1 .pro .des h5 {
    padding-top:8px;
    font-size:14px;
    color:#1a1a1a;
}
#product1 .pro .des i {
    font-size:14px;
    letter-spacing:2px;
    color:rgb(255, 200, 45);
}
#product1 .pro .des h4{
    padding-top:8px;
    font-size:18px;
    font-weight: 600;
    color:#29989F;
}

#product1 .pro #cart{
    background-color: #e8f6ea;
    width:40px;
    height:40px;
    line-height:40px;
    border-radius: 50px;
    color:#0cb6aa;
    border:1px solid #cce7d0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: absolute;
    bottom: 20px;
    right:10px;
}
/*----------------banner-----------------*/
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(img/banner/b2.jpg);
    width:100%;
    height:45vh;
    background-position: center;
    background-size: cover;
}
#banner h4{
   
    color:#fff;
    font-size: 16px;
}
#banner h2{
    font-size: 30px;
    color:#fff;
    padding: 10px 0;
}
#banner h2 span{
    color:rgb(255, 0, 0);
}

.normal:hover{
    background-color: #00C897;
    transition: 0.3s;
    color:#fff;    
}

/*----------------new-Banner-----------------*/
#new-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#new-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width:660px;
    height:50vh;
    padding:30px;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
   
}
.banner-box h4{
    color:#E2EFF1;
    font-size:20px;
    font-weight: 300;
}
.banner-box h2{
    color:#fff;
    font-size:30px;
    font-weight: 800;
}
.banner-box span{
    color:#fff;
    font-size:15px;
    font-weight: 500;
    padding-bottom:15px ;
}
#new-banner .box1{
    background-image: url(img/banner/b17.jpg);
}
#new-banner .box2{
    background-image: url(img/banner/b10.jpg);
}
#new-banner .banner-box:hover button{
    color:#fff;
    background-color: #0cb6aa;
    border:1px solid #4FA095;
}
/*----------small banner------*/
#banner3{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    
    padding: 0 80px;
    
}
#banner3 .banner-box1
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-position: center;
    background-size: cover;
    min-width: 30%;
    height: 30vh;
    padding:20px;   
    margin-bottom: 20px;
    
}
#banner3 .box3{
    background-image: url(img/banner/b7.jpg);
}
#banner3 .box4{
    background-image: url(img/banner/b4.jpg);
}
#banner3 .box5{
    background-image: url(img/banner/b16.jpg);
}
.banner-box1 h2{
    font-size:22px;
    font-weight: 700;
    color:white;
}
.banner-box1 h3{
    font-size:15px;
    font-weight: 700;
}
.banner-box1:nth-child(1) h3
{
    color:#EFD3B5;
}
.banner-box1:nth-child(2) h3
{
    color:#C8F4F9;
}
.banner-box1:nth-child(3) h3
{
    color:#FB4570;
}
#newletter{
   background-image: url(img/banner/b14.png);
   background-repeat: no-repeat;
   background-position: 20% 30%;
   background-color: #041e42;
   display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
   
}
#newletter .first-div{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
    padding:20px;
}
.first-div h2
{
    color:white;
  font-weight: 700;
  font-size:30px;
}
.first-div p{
    font-size: 18px;
    color:#818ea0;
    font-weight: 400;
}
.first-div p span{
    color:#FFD372;
    letter-spacing: 1px;
}
#newletter .sec-div
{
    width:40%;
    display: flex;
    
}
#newletter  input{
 width:100%;
 height: 3.125rem;
 padding:0 1.25rem;
 font-size:14px;
 border:1px solid transparent;
 border-radius: 5px;
 outline:none;
 border: none;
 border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}
#newletter button{
    background-color: #088178;
    color:white;   
    width:150px;
    height:3.125rem;
    border-radius: 5px;
    padding:10px 25px;
    font-size:14px;
    letter-spacing: 1px;
    font-weight:500;
    cursor: pointer;
    outline:none;
   border: none;
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
   white-space:npwrap;
  
  }
footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom:20px ;
}
footer .logo{
    margin-bottom: 30px;
}
footer h4{
    font-size: 14px;
    padding-bottom: 15px;
}
footer p{
    font-size:14px;
    margin-bottom:8px;
}
footer a{
    text-decoration: none;
    font-size:13px;
    color:#050606;
    margin-bottom: 10px;
}
footer .follow{
    margin-top: 20px;;
}
footer .follow i{
    padding-right:4px;
    cursor:pointer;
    padding-left:4px;
    font-size:16px;
    color:#222;
}
footer a:hover{
    color:#067593;
}
.follow .icon1:hover{
    color:#4267B2;
}
.follow .icon2:hover{
    color:#E1306C;
}
.follow .icon3:hover
{
    color:#1DA1F2;
}
.follow .icon4:hover{
    color:#E60023;
}
.follow .icon5:hover{
    color:#FF0000;
}
footer .install .row img{
          border:1px solid rgb(8, 129, 120);
          border-radius:5px;
          
}
footer .install img{
    margin:10px 0 15px;
}
.copyright{
    width:100%;
    text-align: center;
}

 
/*----------Media Changes----------*/
#mobile{
     display: none;
     align-items: center;
}

#close{
    display:none;
}
