@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    min-height: 1000px;
}
p{
    font-weight: 300;
    color: #111;
}
.banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-color: #007481;
    /*background-image: linear-gradient(#007481, #00c18a);*/
}
.custom-shape-divider-bottom-1631127850 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1631127850 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 98px;
}

.custom-shape-divider-bottom-1631127850 .shape-fill {
    fill: #FFFFFF;
}
.banner .content{
    max-width: 900px;
    text-align: center;
}
.banner .content h2{
    font-size: 4em;
    color: #fff;
    font-weight: bold;
}
.banner .content p{
    font-size: 1.2em;
    color: #fff;
}
.btn01{
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    background: #9ff21e;
    display: inline-block;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}
.btn01:hover{
    letter-spacing: 6px;
    color: #fff;
    text-decoration: none;
}
/*floating button*/
.fab-container{
    position: fixed;
    bottom: 50px;
    right: 40px;
    z-index: 999;
    cursor: pointer;
}
.fab-icon-holder{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9ff21e;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.fab-icon-holder:hover{
    opacity: 0.8;
}
.fab-icon-holder i{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 25px;
    color: white;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 10000;
    align-items: center;
    transition: 0.5s;
}
header .navbar{
    text-decoration: none;
}
header.sticky{
    background: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
header .logo{
   color: #fff;
   font-weight: 700;
   font-size: 2em;
   text-decoration: none; 
}
header .logo:hover{
    text-decoration: none;
    color: #fff;
}
header.sticky .logo{
    color: #111;
}
header .logo span{
    color: #9ff21e;
}
header .navigation{
    position: relative;
    display: flex;
    margin-top: 5px;
}
header .navigation li{
    list-style: none;
    margin-left: 30px;
   
}
header .navigation li a{
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}
header.sticky .navigation li a{
    color: #111;
}
header .navigation li a:hover{
    color: #9ff21e;
}
#menu{
    color: #007481;
}
header.sticky #menu{
    color: #111;
}
#id{
    padding-right: 10px;
}

.social-media01{
    display: flex;
    justify-content: center;
    color: #fff;
}
.ico1{
    display: flex;
    background: inherit;
    height: 55px;
    width: 55px;
    margin: 0 10px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.1),
    -6px -6px 10px -1px rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.01);
    transition: transform 0.5s;
}
.ico1 i{
    font-size: 20px;
    color: #fff;
    transition: transform 0.5s;
}
header.sticky .ico1 i{
    color: #111;
}
header.sticky #login-btn{
    color: #111;
}
header.sticky #cart{
    color: #111;
}
.ico1:hover{
     box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2);
     border: 1px solid rgba(0,0,0,0.01);
     transform: translateY(2px);
     text-decoration: none;
}
.ico1:hover i{
    transform: scale(0.90);
    color: #4fce5d;
}
.ico1:hover .fa-facebook{
    color: #01579B;
}
.ico1:hover .fa-twitter{
    color: #00acee;
}
.ico1:hover .fa-whatsapp{
    color: #4fce5d;
}
.ico1:hover .fa-linkedin{
    color: #3b5998;
}
.ico1:hover .fa-map-marker-alt{
    color: #D50000;
}
.sci{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ico2{
    display: flex;
    background: inherit;
    height: 55px;
    width: 55px;
    margin: 0 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.1),
    -6px -6px 10px -1px rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.01);
    transition: transform 0.5s;
}
.ico2 i{
    font-size: 20px;
    color: #fff;
    transition: transform 0.5s;
}
header.sticky .ico2 i{
    color: #111;
}
.ico2:hover{
     box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2);
     border: 1px solid rgba(0,0,0,0.01);
     transform: translateY(2px);
     text-decoration: none;
}
.ico2:hover i{
    transform: scale(0.90);
    color: #4fce5d;
}
.ico2:hover .fa-facebook{
    color: #01579B;
}
.ico2:hover .fa-twitter{
    color: #00acee;
}
.ico2:hover .fa-whatsapp{
    color: #4fce5d;
}
.ico2:hover .fa-linkedin{
    color: #3b5998;
}
.ico2:hover .fa-map-marker-alt{
    color: #D50000;
}
section{
    padding: 100px;
}
.row{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.row .col50{
    position: relative;
    width: 48%;
}
.row #col50{
    border: 2px solid #fff;
    background-color: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.4);
    border-radius: 20px;
    padding: 20px;
    width: 65%;
    height: 560px;
    font-size: 18px;
    margin-top: 50px;
    margin-left: 330px;
}
.titleText{
    color: #111;
    font-size: 2em;
    font-weight: 300;
} 
.titleText span{
    color: #9ff21e;
    font-weight: 700;
    font-size: 1.5em;
}
.row .col50 .imgBx{
    position: relative;
    width: 100%;
    height: 80%;
}
.row .col50 .imgBx img{
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 400px;
    height: 450px;
    object-fit: cover;
}
.title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.products .content{
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-top: 40px;
}
.products .content .box{
    position: relative;
    overflow: hidden;
    width: 340px;
    height: 330px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}
.products .content .box .imgBx{
    position: relative;
    width: 100%;
    height: 300px;
}
.products .content .box .imgBx img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products .content .box .text{
    position: absolute;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,.9);
    text-align: center;
    padding-top: 5rem;
}
.products .content .box:hover .text{
    top: 0;
    transition: 0.5s;
}
.products .content01{
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-top: 40px;
}
.products .content01 .box01{
    position: relative;
    overflow: hidden;
    width: 340px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}
.products .content01 .box01 .imgBx{
    position: relative;
    width: 100%;
    height: 300px;
}
.products .content01 .box01 .imgBx img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products .content01 .box01 .text01{
    padding: 15px 0 5px;
}
.partners .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 40px;
}
.partners .content .box{
    width: 340px;
    height: 340px;
    margin: 80px;
    border: 5px solid #fff;
    box-shadow: 0 6px 35px rgba(0,0,0,0.12);
    width: 300px;
    margin: 15px;
}
.partners .content .box .imgBx{
    position: relative;
    width: 100%;
    height: 300px;
    position: relative;
    width: 100%;
    height: 100%;
}
.partners .content .box .imgBx img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partners .content .box .text{
     padding: 15px 0 5px;
}
.partners .content .box .text h3{
    font-weight: 400;
    color: #111;
}
.testimonials{
    background: url('https://images.pexels.com/photos/1389460/pexels-photo-1389460.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background-size: cover;
}
.white .titleText, .white p{
    color: #fff;
}
.testimonials .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 40px;
}
.testimonials .content .box{
    width: 340px;
    margin: 20px;
    padding: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.testimonials .content .box .text{
    text-align: center;
}
.testimonials .content .box .text p{
    color: #666;
    font-style: italic;
}
.testimonials .content .box .text h3{
    margin-top: 20px;
    color: #111;
    font-size: 1em;
    color: #9ff21e;
    font-weight: 600;
}
.contact{
    background-color: #CFEED1;
    background-size: cover;
}
.contactForm{
    border-radius: 10px;
    padding: 75px 50px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 500px;
    height: 500px;
    margin-top: 50px;
}
.contactForm h3{
    color: #111;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.contactForm .inputBox input, .contactForm .inputBox textarea{
    width: 70%;
    border: 1px solid #555;
    padding: 10px;
    color: #111;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    resize: none;
}
.contactForm .inputBox input[type="submit"]{
    font-size: 1em;
    color: #fff;
    background: #9ff21e;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
    max-width: 100px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.copyrightText{
   background-color: #007481;
   padding: 8px 40px;
   border-top: 1px solid rgba(0,0,0,0.1);
   text-align: center; 
   display: flex;
   justify-content: space-between;
}
.copyrightText p{
    color: #fff;
    font-size: 13px;
}
.copyrightText a{
    color: #9ff21e;
    font-weight: 500;
    text-decoration: none;
}
.social-media{
    display: flex;
    justify-content: center;
}

.ico{
    display: flex;
    background: inherit;
    height: 55px;
    width: 55px;
    margin: 0 10px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.1),
    -6px -6px 10px -1px rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.01);
    transition: transform 0.5s;
}
.ico i{
    font-size: 35px;
    color: #fff;
    transition: transform 0.5s;
}
.ico:hover{
    /*box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2),
    inset 4px 4px 6px -1px rgba(255,255,255,0.7),
    -0.5px -0.5px 0px rgba(255,255,255,1),
     0.5px 0.5px 0px rgba(0,0,0,0.15),
     0px 12px 10px -10px rgba(0,0,0,0.05);*/
     box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2);
     border: 1px solid rgba(0,0,0,0.01);
     transform: translateY(2px);
}
.ico:hover i{
    transform: scale(0.90);
    color: #4fce5d;
}
.map{
    text-decoration: none;
    color: #fff;
}
.map:hover{
    color: #4fce5d;
}
/**/
@media (max-width: 991px){
    body{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
    }
    header, header.sticky{
        padding: 10px 20px;
        width: 100%;
    }   
    header .navigation{
        display: none;
    }
    #menu{
        font-size: 30px;
        position: relative;
        cursor: pointer;
        color: #fff;
        text-decoration: none;
        padding-right: 100px;
    }
    section{
        padding: 20px;
    }
    .banner .content h2{
        font-size: 3em;
        color: #fff;
    }
    .row{
        flex-direction: column;
    }
    .row .col50{
        position: relative;
        width: 100%;
    }
    .row .col50 .imgBx{
        display: none;
    }
    .row #col50{
        border: 2px solid #fff;
        background-color: #fff;
        box-shadow: 0 5px 30px rgba(0,0,0,0.4);
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        height: 450px;
        font-size: 13px;
        margin-top: 50px;
        margin-left: 10px;
    }
    .products .content{
        margin-top: 20px;
    }
    .products .content .box{
        margin: 10px;
    }
    .products .content .box .imgBx{
        height: 260px;
    }
    .title{
        text-align: center;
    }
    .titleText{
        font-size: 1.8em;
        line-height: 1.5em;
        margin-bottom: 15px;
        font-weight: 300;
    }
    .testimonials .content .box{
        margin: 10px;
        padding: 20px;
    }
    .contactForm{
        padding: 35px 40px;
        margin-top: 20px;
        margin-bottom: 30px;
    }  

.left {
  width: 100%;
  height: 390px;
  margin-right: 10px;
  margin-bottom: 120px;
}
.right {
  width: 100%;
  margin: 0;
  margin-top: -100px;
}
.right .email{
    font-size: 14px;
}
.right .phone{
    font-size: 14px;
}
.right .company{
    font-size: 17px;
}
.right .map{
    font-size: 16px;
}
.right p strong{
    font-size: 14;
}
.right a i{
    font-size: 18px;
    cursor: pointer;
}

.right .social{
  margin-left: 10px;
}
.right .social-links{
padding-left: 10px;
}
.contactForm .inputBox input, .contactForm .inputBox textarea{
        width: 70%;
          border: 1px solid #555;
        padding: 10px;
        color: #111;
        outline: none;
        font-size: 16px;
        font-weight: 300;
       
}
.ico1{
    display: flex;
    background: inherit;
    height: 45px;
    width: 45px;
    margin: 0 10px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.1),
    -6px -6px 10px -1px rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.01);
    transition: transform 0.5s;
}
}
@media (max-width: 480px){
    header .logo{
        color: #fff;
        font-weight: 650;
        font-size: 26px;
        text-decoration: none; 
     }
  
    .banner{
        width: 100%;
    }
    .banner .content h2{
        font-size: 2.2em;
        color: #fff;
    }
    .row .col50 .imgBx{
        display: none;
    }
    .row #col50{
        height: 520px;
    }
    .col50{
        margin-top: 0;
    }
    .sci{
      display: none;
    }
    .social-media01{
        display: flex;
        justify-content: center;
        margin-left: 1px;
    }
    .copyrightText{
        background-color: #007481;
        padding: 8px 40px;
        border-top: 1px solid rgba(0,0,0,0.1);
        text-align: center; 
        display: flex;
        flex-direction: column;
     }
    
}


.container {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: aqua; */
  }
  .left {
    width: 50%;
    height: 500px;
    border-radius: 8px;
  }
  .right {
    width: 50%;
    min-height: 400px;
    background-color: #007481;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 8px;
    color: white;
    margin-left: -140px;
  }
  .right h1 {
    font-size: 41px;
    font-weight: lighter;
  }
  .right p {
    margin: 10px 0;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
  }
  .right .social-links{
    padding-left: 100px;
  }
  .right .social {
    text-decoration: none;
    border: 1px solid #9ff21e;
    border-radius: 50%;
    color: #fff;
    padding: 10px 10px;
    display: inline-block;
  }
  .right .email{
      text-decoration: none;
      color: #fff;
      background-color: inherit;
      border: none;
  }
  .right .email:hover{
      color: #9ff21e;;
  }
  .right .phone{
    text-decoration: none;
    color: #fff;
    background-color: inherit;
    border: none;
}
.right .phone:hover{
    color: #9ff21e;;
}
  .right a i{
      font-size: 20px;
      cursor: pointer;
  }
  .right .social:hover{
    color: #9ff21e;
}
.right .social{
    margin-left: 10px;
}
.right .social #facebook{
    border-radius: 60px;
}
.company {
    font-size: 23px;
    font-weight: 500;
}
  @media only screen and (max-width: 768px) {
    body{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        scroll-behavior: smooth;
    }
    .banner{
        width: 100%;
    }
    .sci{
        display: none;
      }
    .row .col50 .imgBx{
        display: none;
    }
    .row #col50{
        border: 2px solid #fff;
        background-color: #fff;
        box-shadow: 0 5px 30px rgba(0,0,0,0.4);
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        height: 590px;
        font-size: 13px;
        margin-top: 50px;
        margin-left: 10px;
    }
    .container {
      flex-direction: column;
      width: 100%;
      margin: 0 20px;
    }
    .left {
      width: 100%;
      height: 390px;
      margin-right: 10px;
      margin-bottom: 120px;
    }
    .right {
      width: 100%;
      margin: 0;
      margin-top: -100px;
    }
    .right .email{
        font-size: 14px;
    }
    .right .phone{
        font-size: 14px;
  }
    .right .company{
        font-size: 17px;
    }
    .right .map{
        font-size: 16px;
    }
    .right p strong{
        font-size: 14;
    }
    .right a i{
        font-size: 18px;
        cursor: pointer;
    }
    
  .right .social{
      margin-left: 10px;
  }
  .right .social-links{
    padding-left: 10px;
  }
  .ico1{
    display: flex;
    background: inherit;
    height: 38px;
    width: 38px;
    margin: 0 6px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.1),
    -6px -6px 10px -1px rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.01);
    transition: transform 0.5s;
}
.social-media01{
    display: flex;
    justify-content: center;
    margin-right: 90px;
}

  }  

