 
  /*Google font*/
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

  *{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    
  }
  body{
    font-family: 'Montserrat', sans-serif;
  }
  .form-control{
    font-family: 'Montserrat', sans-serif;

  }

  a{
    text-decoration: none;
  }
  .logo-crcle{
    height: 26px;
    width: 26px;
    border: 4px solid #fff;
    display: inline-block;
    margin-bottom: -2px;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
  }
  .logo-crcle::before{
    content: '';
    height: 8px;
    width: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
    
  }
  .header .navbar{
    padding: 0;
  }
  .header{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header .navbar.navbar-light .navbar-brand{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffff;
  }
  .header .navbar #collapsibleNavbar .nav-item .nav-link{
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 20px 15px 20px;
    line-height: 26px;
    opacity: 0.6;
  }

  .header .navbar #collapsibleNavbar .nav-item .nav-link.active{
    opacity: 1;
  }
  .section-title{
    margin-bottom: 60px !important;
    text-align: center;
  }
  .section-title .title{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 0 15px;
    position: relative;
    padding: 5px 10px;
    z-index: 1;
  }
  .section-title .title::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    border-radius: 5px;
    opacity: 0.1;
  }
  .section-title .subtitle{
    font-size: 30px;
    line-height: 38px;
    color: #222222;
    font-weight: 700;

  }
  .bg-light{

    background-color: #f5f5ff;
  }
  


  /* Home section starts */
  .home-section{
    position: relative;
    font-family: 'Montserrat';
    padding: 250px 0 200px;
    z-index: 1;
    overflow: hidden;
  }
  .home-section::before{
    content: '';
    position: absolute;
    left: 0%;
    right: 0;
    bottom: -1px;
    background-image: url('../img/shape-bg.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 112px;
    z-index: -1;
  }
  .home-section .home-content h1{
    
    font-size: 55px;
    color: white;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
  }
  .home-section .home-content p{
    color: white;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 28px;
    font-weight: 300;

  }
  .mybtn1,
  .mybtn2{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 36px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .mybtn1{
    background-color: #fff;
  }
  .mybtn2{
    color: #fff;
  }
  .mybtn2:hover{
    color: #fff;
  }
  .mybtn2:focus,
  .mybtn1:focus{
    box-shadow: none;
    outline: none;
  }
  .mybtn1:hover,
  .mybtn1{
    color: #d70d25;
  }
  .mybtn2::before,
  .mybtn1::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    background-color: rgba(0,0,0, 0.1);
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
  }
  .mybtn2:hover::before,
  .mybtn1:hover::before{
    width: 100%;
  }

  .home-section .home-img img{
    max-width: 400px;
    width: 100%;
    position: absolute;
    left: 10rem;
    top: -3rem;
    animation: productani01 3s ease-out infinite;
  }

  @keyframes productani01{
    0%,100%{
      transform: translateY(10px);
    }
    50%{
      transform: translateY(-10px);
    }
  }

  .home-section .bg-shapes div{
    position: absolute;
    opacity: 0.08;
  }

  .home-section .bg-shapes div:nth-child(1){
    height: 100px;
    width: 100px;
    top: 20%;
    left: 20%;
    background-color: #fff;
    border-radius: 50%;
    animation: shapeani01 5s linear infinite;

  }
  .home-section .bg-shapes div:nth-child(2){
    height: 80px;
    width: 80px;
    top: 60%;
    left: 60%;
    background-color: transparent;
    border-radius: 50%;
    border: 5px solid #fff;
    border-bottom: 5px solid transparent;
    animation: shapeani02 7s linear infinite;

  }
  .home-section .bg-shapes div:nth-child(3){
    height: 60px;
    width: 60px;
    top: 10%;
    left: 90%;
    background-color: transparent;
    border-radius: 50%;
    border: 5px solid #fff;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
    animation: shapeani02 7s linear infinite;

  }
  .home-section .bg-shapes div:nth-child(4){
    height: 200px;
    width: 200px;
    top: 40%;
    left: calc(100% - 100px);
    background-color: white;
    border-radius: 50%;
    animation: shapeani03 10s linear infinite;

  }
  .home-section .bg-shapes div:nth-child(5){
    height: 100px;
    width: 100px;
    top: 40%;
    left: calc(0% - 50px);
    background-color: transparent;
    border: 5px solid #fff;
    animation: shapeani02 10s linear infinite;

  }




  @keyframes shapeani01{
    0%,100%{
      transform: translateX(0);
    }
    50%{
      transform: translateX(50px);
    }

  }
  @keyframes shapeani02{
    0%{
      transform: rotate(0);
    }
    100%{
      transform: rotate(360deg);
    }

  }
  @keyframes shapeani03{
    0%,100%{
      transform: scale(0.5);
    }
    50%{
      transform: scale(1);
    }

  }

  /* About section starts */

  .about-section{
    background-color: #fff;
    padding: 80px 0 80px;
  }
  
  .about-section .about-img{
    margin: auto;
  }
  .about-section .about-img img{
    width: 100%;
    max-width: 350px;
  }
  .about-section .section-title{
    text-align: left;
  }

  .about-section  .about-content p{
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin: 0;
  }
  .about-section  .about-content ul{
    display: block;
    margin: 30px  0 0;

  }
  .about-section  .about-content ul li{
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin-bottom: 15px;
    font-weight: 400;
    position: relative;
    padding-left: 32px;
  }
  
  .about-section  .about-content ul li i{
    height: 25px;
    width: 25px;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    line-height: 26px;
    position: absolute;
    left: 0;
    top: 0;
  }


  /* Features section */

  .features-section{
    padding: 80px 0 50px;
  }


  .features-section .features-item{
    box-shadow: 0 0 10px #dddde3;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    transition: all 0.5s ease;
  }
  .features-section .features-item:hover{
    transform: translateY(-10px);
  }
  .features-section .features-item .icon{
    margin-bottom: 25px;

  }
  .features-section .features-item .icon i{
    font-size: 40px;
    display: inline-block;
    transition: all 0.5s ease;
  }

  .features-section .features-item h3{
    font-size: 22px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 15px;
    line-height: 30px;
    transition: all 0.5s ease;
  }

  .features-section .features-item p{
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin: 0;
    transition: all 0.5s ease;
    font-weight: 400;
  }
  .features-section .features-item:hover .icon i,
  .features-section .features-item:hover h3,
  .features-section .features-item:hover p{
    color: #fff;
  }


  /* Product section */
  .products-section{
    padding: 80px 0 80px; 
    background-color: #fff;
  }

  .products-section .products-item{
    box-shadow: 0 0 10px #dddde3;
    margin: 15px 0;

  }

  .products-section  .product-img{
    border-bottom: 1px solid #eeeeee;
    position: relative;
  }
  .products-section .product-img .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, 0.4);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
  }
  .products-section .products-item:hover .product-img .overlay{
    opacity: 1;
  }

  .products-section .product-img .overlay .btn{
    margin: auto;
    transform: translateY(100px);
    transition: all 0.5s ease;
  }
  .products-section .products-item:hover .product-img .overlay .btn{
    transform: translateY(0);
  }

  .products-section .products-item .product-img img{
    width: 100%;
    display: block;
  }

  .products-section .products-item .products-content{
    padding: 0 30px;
    text-align: center;
  }

  .products-section .products-item .products-content .product-price{
    margin: 15px 0 5px;
  }
  .products-section .products-item .products-content .product-price .new-price{
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin: 5px;
  }

  .products-section .products-item .products-content .product-price .old-price{
    font-size: 18px;
    display: inline-block;
    color: #959595;
    font-weight: 400;
    text-decoration: line-through;
  }

  .products-section .products-item .products-content .product-name{
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    line-height: 26px;
    margin: 0;
    padding-bottom: 20px;
  }
  .products-section .owl-carousel .owl-nav{
    text-align: center;
    margin-top: 40px;
  }
  .products-section .owl-carousel .owl-nav button.owl-next:focus, 
  .products-section .owl-carousel .owl-nav button.owl-prev:focus{
    outline: none;
  }
  .products-section .owl-carousel .owl-nav button.owl-next, 
  .products-section .owl-carousel .owl-nav button.owl-prev{
    height: 40px;
    width: 40px;
    display: inline-block;
    margin: 0 8px;
    border-radius: 50%;
    color: white;
    font-weight: 500;
    overflow: hidden;
  }

  .products-section .owl-carousel .owl-nav button.owl-next span, 
  .products-section .owl-carousel .owl-nav button.owl-prev span{
    font-size: 40px;
    display: block;
    margin-top: -13px;
  }

/* testimonial section */
.testimonial-section{
  padding: 80px 0 80px;
  background-image: url('../img/bg-01.jpg');
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.testimonial-section::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

.testimonial-section .section-title .title{
  color: #fff;
}
.testimonial-section .section-title .title::before{
  background-color: #fff;
}
.testimonial-section .section-title .subtitle{
  color: #fff;
}

.testimonial-section .testi-item{
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}
.testimonial-section .testi-comment p{
  font-size: 16px;
  line-height: 26px;
  color: #555555;
  font-weight: 400;
  margin: 0  0 10px;
  font-style: italic;
}

.testimonial-section .testi-comment p .fa-quote-left{
  margin-right: 5px;
}
.testimonial-section .testi-comment p .fa-quote-right{
  margin-left: 5px;
}
.testimonial-section .testi-comment .stars{
  margin: 0 0 20px;
}
.testimonial-section .testi-comment .stars li{
  display: inline-block;
  margin: 0 1px;
}

.testimonial-section .testi-comment .stars li i{
  font-size: 13px;
  color: #ff9800;
}
.testimonial-section .client-info{
  position: relative;
  padding-left: 80px;
  min-width: 60px;
}
.testimonial-section .client-info img{
  height: 60px;
  width: 60px;
  border: 2px solid ;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.testimonial-section .client-info h5{
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  padding-top: 10px;
  margin: 0;
  line-height: 26px;
  margin: 0 0 2px;

}
.testimonial-section .client-info p{
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  margin: 0;
}

.testimonial-section .owl-carousel .owl-nav{
  text-align: center;
  margin-top: 40px;
}
.testimonial-section .owl-carousel .owl-nav button.owl-next:focus, 
.testimonial-section .owl-carousel .owl-nav button.owl-prev:focus{
  outline: none;
}
.testimonial-section .owl-carousel .owl-nav button.owl-next, 
.testimonial-section .owl-carousel .owl-nav button.owl-prev{
  height: 40px;
  width: 40px;
  display: inline-block;
  margin: 0 8px;
  border-radius: 50%;
  font-weight: 500;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
}
.testimonial-section .owl-carousel .owl-nav button.owl-next:hover, 
.testimonial-section .owl-carousel .owl-nav button.owl-prev:hover{
  color: #fff;
}
.testimonial-section .owl-carousel .owl-nav button.owl-next span, 
.testimonial-section .owl-carousel .owl-nav button.owl-prev span{
  font-size: 40px;
  display: block;
  margin-top: -13px;
}
/* FAQ section */
.faq-section{
  padding: 80px 0 80px;
}

.faq-section .faq-item{
  margin-bottom: 40px;
}

.faq-section .faq-item h4{
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #222222;
  margin: 0;
}


.faq-section .faq-item p{
  font: 16px;
  line-height: 26px;
  color: #555555;
  font-weight: 400;
  margin: 0;
}


.faq-section .support-text{
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 26px;
  margin: 15px 0 0;
}

.newsletter-section{
  position: relative;
  background-image: url('../img/bg-02.jpg');
  padding: 80px 0 80px;
  background-attachment: fixed;
  background-position: center;
  z-index: 1;
}

.newsletter-section::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: .85;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.newsletter-section .section-title .title,
.newsletter-section .section-title .subtitle{
  color: #fff;
}
.newsletter-section .section-title .title::before{
  background-color: #fff;
}

.newsletter-section .newsletter-form .form-group{
  margin-bottom: 0;
}

.newsletter-section .newsletter-form .form-control{
  height: 60px;
  border-radius: 60px;
  padding: 0px 180px 0 30px !important;
  padding: 0 30px;
  outline: none;
  border: none;
}
.newsletter-section .newsletter-form .form-control:focus{
  box-shadow: none;
}

.newsletter-section .newsletter-form{
  position: relative;
}

.newsletter-section .newsletter-form .btn{
  height: 48px;
  top: 6px;
  right: 6px;
  position: absolute;
}
/*  */
.contact-section{
  background-color: #fff;
  padding: 80px 0 80px;
}

.contact-section .contact-form .form-group{
  margin-bottom: 20px;
}

.contact-section .contact-form .form-control{
  height: 50px;
  color: #555555;
  border: none;
  border-bottom: 2px solid #d9d9d9;
  border-radius: 0;
}

.contact-section .contact-form textarea.form-control{
  height: 120px;
}

.contact-section .contact-form .form-control:focus{
  box-shadow: none;
}
.contact-section .contact-item{
  position: relative;
  padding-left: 65px;
  margin-bottom: 35px;
}
.contact-section .contact-item .icon{
  height: 50px;
  width: 50px;
  background-color: #f5f5ff;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-section .contact-item .icon i{
  line-height: 50px;
  font-size: 20px;
}
.contact-section .contact-item h5{
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 2px;
}

.contact-section .contact-item p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #555555;

}

/* footer */
.footer{
  padding-top: 80px;
  text-align: center;
}

.footer .footer-logo a{
  font-size: 30px;
  font-weight: 700;
  color: white;
  display: block;
  margin: 0 0 15px;
}

.footer .footer-text p{
  font-size: 16px;
  line-height:  26px;
  color: #eeeeee;
  font-weight: 400;
  margin: 0 0 25px;

}
.footer .footer-social-links{
  padding-bottom: 80px;
}
.footer .footer-social-links a{
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin: 0 4px;
}
.footer .footer-social-links a i{
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  display: block;
  color: #fff;
  line-height: 38px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.footer .footer-social-links a:hover i{
  background-color: #fff;
}
.footer .copyright{
  border-top: 1px solid rgba(255,255,255, 0.1);
  padding: 20px 15px;
}
.footer .copyright p{
  font-size: 16px;
  line-height:  26px;
  color: #eeeeee;
  font-weight: 400;
  margin: 0;
}