@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
  --red: #f90606;
  --light-red: #f56161;
  --black: #130f40;
  --light-color: #666;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --border: .1rem solid rgba(0, 0, 0, .1);
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

section {
  padding: 2rem 9%;
}

.heading {
  padding-bottom: 2rem;
  text-align: center;
  font-size: 4.5rem;
  color: var(--black);
}

.heading span {
  position: relative;
  z-index: 0;
}

.heading span::before {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--light-red);
  z-index: -1;
  clip-path: polygon(0 90%, 100% 80%, 100% 100%, 0% 100%);
}
/* 
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 3rem;
  background: var(--light-red);
  color: var(--black);
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: .5rem;
  font-weight: 500;
  text-align: center;
}

.btn:hover {
  background: var(--red);
} */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  height: -500px !important;
  left: 0;
  right: 0;
  padding: 2.5rem 8%;
  z-index: 1000;
  background:transparent;

}



.header .navbar a {
  margin: 0 1rem;
  font-size: 1.7rem;
  color: var(--black);
  margin-left: 10px;
  margin-right: 10px;
  transition: 0.5s ease;
}

.header .navbar a:hover {
  color: var(--light-red);

}

#explore-btn .btn {
  margin-top: 0;
  color: white;
}

#explore-btn i {
  display: none;
  font-size: 2.5rem;
  color: var(--light-color);
}

.header.active {
  padding: 2rem 9%;
  box-shadow: var(--box-shadow);
}

#menu-btn {
  font-size: 2.5rem;
  color: var(--light-color);
  display: none;
}

.footer {
  background: #FFF !important;
}

.banner .container-fluid {
  background-image: url(/assets/images/bg.png) !important;
  margin-left: -20px;
  height: 500px;
  margin-right: -70px;

}

.banner {
  width: 100%;
}

.maintext {
  justify-content: center;
}

.banner .small-text {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--red);
}

.banner h1.title {
  margin-top: 15px;
  font-size: 64px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 30px;
}

.banner h1.title i.fa-light {
  background: linear-gradient(to bottom, #ff8a20 0%, #ff4166 100%);
  -webkit-text-fill-color: transparent;
}

.banner p {
  font-size: 18px;
  color: #989899;
  margin: 0;
}

 .btn-getstarted {
  color: #fff;
  border-color: var(--red);
  background-color: var(--red);
 
  border-radius: 30px;
  transition: 0.7s ease;
}

.btn-getstarted:hover {
  background-color: var(--light-red);
  border-radius: 30px;
  text-decoration: underline;
  color: white;
 
}

/* .banner .image {
  margin-left: auto;
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  overflow: hidden;
  /* Hexagonal Shape */




.card {
  transition: 0.5s ease;
  margin-top: 0px;
  margin: 0px;
}

.card:hover {
  box-shadow: 3px 3px 4px 4px gray;
  

}

.maintext {

  margin-top: 150px !important;
}

.order {
  transition: 0.5s ease;
}

.order:hover {
  background-color: white;
  color: var(--red);
  border-color: var(--red);
}
#contact-us #contact-us-section{
  background-color: #f2be7e0c;
  
  border-radius: 5px;
  border: #130f40 5px !important;
}

#contact-us #contact-us-info a{
  color: var(--black);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

#contact-us #contact-us-info a:hover{
  color: var(--red);
}

#contact-us #contact-us-info p{
  color: black;
  font-size: 13px;
  font-weight: 600;
}

#contact-us .btn-block,
#feedback .btn-block{
  border-color: var(--red);
  background-color: var(--white);
  color: red;
  transition: 0.5s ease;
  border-radius: 25px;
  height: 43px;
  width: 150px;
  margin-left: 100px;
  
}

#contact-us .btn-block:hover,
#feedback .btn-block:hover{
  background-color: red;
  color: white;
  border-color: var(--red);
  
}

#contact-us-section .form-group .form-control,
#feedback .form-group .form-control{
  background-color: rgba(0, 0, 0, 0);
  border-color:var(--black) ;
  color: var(--black);
  height: 40px;
}

#contact-us .btn-block:focus,
#feedback .btn-block:focus,
#contact-us-section .form-group .form-control:focus,
#feedback .form-group .form-control:focus{
  border: 1px solid var(--red) !important;
 
}

#contact-us-section .form-group .form-control::placeholder,
#feedback .form-group .form-control::placeholder{
  color: var(--black);
  font-size: 15px;
}

.fade-in {
  animation: fadeIn ease 10s;
  -webkit-animation: fadeIn ease 10s;
  -moz-animation: fadeIn ease 10s;
  -o-animation: fadeIn ease 10s;
  -ms-animation: fadeIn ease 10s;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

/* .fade-out {
  animation: fadeOut ease 8s;
  -webkit-animation: fadeOut ease 8s;
  -moz-animation: fadeOut ease 8s;
  -o-animation: fadeOut ease 8s;
  -ms-animation: fadeOut ease 8s;
} */
/* @keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
} */

/* @-moz-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
} */

/* @-webkit-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
} */

/* @-o-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
} */

/* @-ms-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
} */

.fade-in-image 
{ animation: fadeIn 5s; }
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.btnorder{
  transition: 0.6 ease;
  background-color: white;
  color: var(--red);
  border-color: var(--red);
}
.btnorder:hover{
  background-color: var(--red);
  color: white;
}

.center {
  width: 100%;
  height: 70vh;
  margin-top: 80px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}
#headerr .carousel-caption{
  background-color: #261f1c60;
  border-radius: 10px;
  margin-bottom:50px;

}

#headerr .carousel-caption h3{
  color: var(--theme-color-1);
  font-size: 600px;
}
.carousel-item .img1{
  background-repeat: no-repeat;
  background-size:cover ;
  height: 100vh;
  width: 680px !important;
  transition: 0.5s ease-in-out;
  
}
.btngetstart{
  height: 40px;
  width: 150px;
  background: transparent;
  color: white;
  transition: 0.5s ease;
  border: 1px white solid;
  border-radius: 2px;
  font-size: 13px !important;
}
.btngetstart:hover{
  border: 2px solid;
  border-color: white!;
  font-weight: 400;
  background: none;
}
.btndownload{
  height: 40px;
  width: 130px;
  background: white;
  color: red !important;
  transition: 0.6s ease;
  border: 1px red  solid !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  font-size: 15px !important;
}
.btndownload:hover{
  border: 2px red solid !important;
  color: white !important;
  font-weight: 400;
  background: red !important;
  box-shadow: none !important;
}
.tablogo{
  height: 700px;
}

#cat1{
  background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)) , url("assets/images/brands/mensglasses/menslogo.png");
  height: 400px;
  width: 100%;
  background-size:  contain;
  background-repeat: no-repeat;

}
#cat2{
  background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)) , url("assets/images/brands/kidsglasses/kidslogo.png");
  height: 400px;
  width: 100%;
  background-size:  contain;
 
  background-repeat: no-repeat;
  margin-top: -17px;


}
#cat3{
  background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)) , url("assets/images/brands/womensglasses/womenlogo.png");
  height: 400px;
  width: 100%;
  margin-left: 2px;
  margin-right: -250px;
  background-size:  contain;
  background-repeat: no-repeat;

}
#cat4{
  background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)) , url("assets/images/brands/contactlenses/contactlogo.png");
  height: 400px;
  width: 100%;
  background-size:  contain;
  margin-right: -250px;
  margin-top: -17px;
  margin-left: 2px;
  background-repeat: no-repeat;

}
.banner{
  align-items: center !important;
  align-content: center !important;
  justify-content: center !important;
}
#cat4:hover
{
  background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.1)) , url("assets/images/brands/contactlenses/contactlogo.png");

}
#cat3:hover
{
  background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.1)) , url("assets/images/brands/womensglasses/womenlogo.png");

}
#cat2:hover
{
  background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.1)) , url("assets/images/brands/kidsglasses/kidslogo.png");

}
#cat1:hover
{
  background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.1)) , url("assets/images/brands/mensglasses/menslogo.png");

}
.kidstxt{

  align-items: center;
  text-decoration: none !important;
  display: inline-block !important;
  margin-top: 200px;
  color: white;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;

}
.kidscov{
  background-image: url("assets/images/brands/kidsglasses/kids-cover.jpg") !important;
  height: 450px;
  background-repeat: no-repeat;
  background-color: #244676;
  background-size: cover;


}
.kiddes{
  font-size: 13px;
  color: white;
  margin-top: 10px;
}

.kidlinks{
 color: white;
 font-size: 12px;
 text-decoration: none;
 display: inline-block;
 margin-top: 10px;
}

.kidlinks:hover{
  text-decoration: underline;
  color: white;
 }

 .womencov{
  background-image: url("assets/images/brands/womensglasses/women-cov.jpg") !important;
  height: 450px;
  background-repeat: no-repeat;
  background-color: #244676;
  background-size: cover;
 }

 .contactcov{
  background-image: url("assets/images/brands/contactlenses/contact-cover.jpg") !important;
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
 }

 .mencov{
  background-image: url("assets/images/brands/mensglasses/men-cover.jpg") !important;
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
 }
 .bgbrand{
  background-image: url("assets/images/brands/bgbrands/bgbrand.jpg");
 }
 .page-link:hover
 {
background-color: red;
color: white;
border-radius: 3px;
 }
 .productcov{
  
    background-image: url("assets/images/brands/product/bg.jpg") !important;
    height: 500px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;

   
 }
 .producttxt{

  align-items: flex-start;
  margin-right: 500px;
  text-decoration: none !important;
  display: inline-block !important;
  margin-top: 200px;
  color: white;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;

}
.prodes{
  font-size: 13px;
  color: white;
  margin-right: 500px;
  margin-top: 10px;
}
.productlinks{
  color: white;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
 }
 
 .productlinks:hover{
   text-decoration: underline;
   color: white;
  }
 .linkspro{
  margin-right: 500px;
 }



 @media screen and (max-width:1024px){
  .conslide{
    width: 1024px;
  }

 }