*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --light-black: #333;
  --light-white: #f7f7f7;
  --light-red: #e30003;
  --light-grey: #f6f9fa;
  --light-grey-2: #dddddd;
  --white: #fff;
  --yellow: #f7be27;
  --grey: #757575;
  --brown: #6f5e4d;
  --bg-coffee:#642f21;
}
body,html{
  font-size: 1rem;
  font-size: "Roboto Condensed", sans-serif;
  font-weight: 400;
}

@media(max-width: 992px){
  body,html{
    font-size: 0.875rem;
  }
}

/* headign tags */
h1,h2,h3,h4,h5,h6{
  font-family:"Roboto Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
p{
  font-size: 15px;
  font-weight: 450;
  color: #183153;
  font-family:"Open Sans", sans-serif ;
}


/* Anchor Tag */
a{
  color: var(--light-black);
  text-decoration: none;
  --webkit-transition: all 400ms ease-in-out;
  --moz-transition: all 400ms ease-in-out;
  --o-transition:all 400ms ease-in-out;
  --ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;

}

/* custom scrollbar */
::-webkit-scrollbar{
  width:5px;
}
::-webkit-scrollbar-track{
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
  background: var(--yellow);
}

/* button hover */
.order_now:hover,
.order_now:focus{
color: var(--white);
background-color: transparent;
border-color: var(--white);
}

.btn-red{
  color: var(--white);
  background: var(--light-red);
  border-color: var(--light-red);
}
.btn-red:hover,
.btn-red:focus{
  color: var(--light-red);
  background: transparent;
  border-color: var(--light-red);
}

/* nvabar styling */
.navbar{
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #def2d2;
  z-index: 1000;
  padding-top: 0;
  height: 82px;
}

.nav_body{
  padding-top: 0;
}
.navbar.sticky{
  position: fixed;
  left: 0%;
  top: 0%;
  background-color: var(--white);
  --webkit-transition: all 15ms ease-in-out;
  --moz-transition: all 15ms ease-in-out;
  --o-transition:all 15ms ease-in-out;
  --ms-transition: all 15ms ease-in-out;
  transition: all 15ms ease-in-out;
  animation-name: stickyTransition;
  --webkit-animation-duration:0.5;
  animation-duration: 0.5s;
  --webkit-animation-duration:0.5;
  animation-fill-mode: both;
  --webkit-animation-duration:0.5;
  box-shadow: 0 2px 3px rgba(96, 96, 96, 0.1);
}

@keyframes stickyTransition {
  0%{
    opacity: 0;
    -webkit-transform: translate3d(1. -100%, 0);
    transform: translate3d(1, -100%, 0);
  }
  100%{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* .heading1{
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 45px;
}
.heading2{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 35px;
}
.heading3{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 30px;
}


.sub-heading1{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 26px;
}
.sub-heading2{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 20px;
}


.para1{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 16px;
} */

@media(max-width: 425px){
  .navbar{
    height: 70px;
    padding: 8px;
  }
  .nav_body{
    margin: 0;
  }
  .heading1{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      font-size: 36px;
  }
  .heading2{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 550;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      font-size: 28px;
  }
  .heading3{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      font-size: 24px;
  }
  
  
  .sub-heading1{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      font-size: 21px;
  }
  .sub-heading2{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      font-size: 15px;
  }
  
  
  .para1{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
      font-size: 14px;
  }
}



/* Parallax Effect */
/* .parallax-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; */
/* } */

/* .parallax-bg {
    background-image: url('public/images/parallaxe-img1.jfif'); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: -1;
} */
/* 
.parallax-bg-2 {
    background-image: url('public\images\parallaxe-img2.jfif'); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: -1;
} */

/* Content styling */
/* .content-section {
    background-color: #f8f9fa;
}

h1, h2 {
    font-weight: bold;
}

p {
    font-size: 1.1em;
} */

/* .parallax12{
  background-image: url("public\images\parallaxe-img1.jfif");
} */


 

/* button */

/* From Uiverse.io by abrahamcalsin */ 
.button1 {
  width: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #183153;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
} */

.button1:after {
  content: " ";
  width: 0%;
  height: 100%;
  color: #000; 
  background: #f2d64a;
   position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.button1:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.button1 span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 18px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.button1:hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}
/* 
.nav_dropdown{
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
  background-color:rgb(144, 206, 209);
}
.nav_dropdown li{
  margin-top: 7px;
  cursor: pointer;
}
.nav-link{
  color: #f8f9fa;
  font-weight: 550;
  font-style: normal;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 19px;
}*/
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: #0e0c0c;
  font-size: 18px;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  padding-left: 20px;
  /* background-color: #f1ab97b9; */

  &:hover{
    color: #148200;
  }
 }
 .logo1{
  max-width: 22%;
  margin-left: 20%;
}
.dropdown-menu{
  padding: 10px;
  background-color: #fffffff5;
  color: light;

  &:hover{
    background-color: white;
    color: #10375C;
  }
}
/* .navbar{
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  position: sticky; 
  top: 0;
  z-index: 1000;
  padding: 0px 0;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) 
}  */

.banner3{
  z-index: 2;
  transition: ease-in-out;

  &:hover{
    transform: scale(1.05);
    transition-duration: 1.2s;

  }
}
.banner3-bg{
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 75svh;
  bottom: 1px;
  
}
.banner3_body{
  position: relative;
}

button.carousel-control-prev{
  z-index: 5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #94bbf5;
  color: black;
  position: absolute;
  top: 80%;
  left: 76%;
  
  &:hover{
    background-color: transparent;
  }
}
button.carousel-control-next{
  z-index: 5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #94bbf5;
  color: black;
  border: 1px soid black;
  position: flex;
  top: 80%;
  right: 10%;

  &:hover{
    background-color: transparent;
  }
}

.caro-btn{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #94bbf50e;
  bottom: 40px;
  left: 47%;
}
.caro_body1{
  height: 75svh;
}



@media(max-width: 320px){
  .banner1{
   height: 170px;
  }
  button.carousel-control-prev{
    height: 170px;
    opacity: 0;

  }
  button.carousel-control-next{
    height: 170px;
    opacity: 0;

  }
  .caro_body{
    z-index: 1;
    background-color: #f8f9fa;
  }
  .caro-bottom-btn{
    display: none;
  }
}

.section1, .section2{
  width: 100%;
  min-height: 100vh;
  position: relative;
  transform-style: preserve-3d;
  z-index: -1;
}

.section1::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  /* background: url("./images/parallaxe-img2.jfif") top center; */
 background-size: cover;
 transform: translateZ(-1px) scale(2.4);
 filter: blur(1px);
 
}
.section2{
  background: rgb(250, 248, 248);
}
.text{
  top: 20%;
  left: 20%;
  position: absolute;
  font-family: 'Franklin Gothic Heavy';
  font-size: 15vw;
  color: rgb(81, 87, 32);
  text-shadow: 2px 2px 5px (0,0,0,0.3),
  15px 15px 70px rgba(153, 161, 176, 0.693);
  transform: scale(1, 1.1), translate(-50%, 10%);
}
/* .nav{
  height: 115px;
  background: transparent;
  position: sticky;
} */
/* .nav::after{
  position: sticky;
   width: 100%;
   height: 115px;
   background-color: #ddd;
   color: #252525;
} */

/* popup form */
/* Full-width input fields */
input[type=text], input[type=password], input[type=email], select, textarea {
  width: 100%;
  padding: 8px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
.button1 {
  background-color: #04AA6D;
  color: white;
  padding: 9px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  width: 40%;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 90%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}







.font{
  color: #FF6F61;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 45px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.heading1{
  color: #1c0082;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: 38px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.heading2{
  color: #2d0e9e;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: 25px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.heading3{
  font-size: 17px;
  font-weight: 500;
  color: #10375C;
}

.sub_heading1{
  color: #FADADD;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 25px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.sub_heading2{
  color: 333333;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.para1{
  color: #8B4513;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: 16px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.para2{
  color: #2d0e9e;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 520;
  font-size: 20px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.home_sec1{
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.logo1{
  margin-top: 0;
  max-width: 20%;
}

@media(max-width: 425px){
  .heading1{
    font-size: 35px;
  }
  .heading2{
    font-size: 30px;
  }
  .sub_heading1{
    font-size: 25px;
  }
  .para1{
    font-size: 14px;
    font-weight: 550;
  }
  .home_sec1{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .testimonial_background{
    display: none;
  }
  .btn-primary{
    padding: 6px;
  }
  .logo1{
    max-width: 50%;
  }
}
@media(max-width: 320px){
  .para1{
    font-size: 14px;
    font-weight: 550;
  }
}
@media(max-width: 756px){
  .para1{
    font-size: 14px;
    font-weight: 550;
  }
}

/* navbar */
.navbar-body  {
    background-color: rgb(255, 255, 255);
}

.navbar-1{
  
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: rgb(162, 168, 175) 0px 10px 20px -10px;
}
.home_sec3{
  background-color:#0F0447;
  height: 40svh;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
}
.subscibe-heading{
  margin-top: 5%;
  font-weight: 600;
}
.hashtag{
  color: #8865ff;
  font-family: "Anek Devanagari", Sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
}
.sub-input{
  width: 70% ;
}
.sub-btn{
  color: white;
  background-color: #8865ff;
  padding: 12px 12px;
}
.subscribe-input{
  margin: auto;
}

.carousel{
  padding-top: 0% !important;
}

.home-why-card1{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  margin: 8px;
  border: 2px solid #8865FF;
  position: relative;
  bottom: 35%;
}
.home-why-card2{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  margin: 8px;
  border: 2px solid #8865FF;
  position: relative;
  bottom: 25%;
}
.home-why-card3{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  border: 2px solid #8865FF;
  margin: 8px;
  position: relative;
  bottom: 30%;
}
.home-why-card4{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  border: 2px solid #8865FF;
  margin: 8px;
  position: relative;
  bottom: 13%;
}

.our-best-prod{
  padding-top: 10%;
}

.about-mission{
  position: relative;
  top: 100px;
}
.home_sec1{
  background-color: #ECEBF1;
}

.hero-section2{
  background-color: #ECEBF1; 
  height:60svh;
}

@media(max-width: 425px){
  .home-why-card1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    margin: 8px;
    border: 2px solid #8865FF;
    position: relative;
    bottom: 0%;
  }
  .home-why-card2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    margin: 8px;
    border: 2px solid #8865FF;
    position: relative;
    bottom: 0%;
  }
  .home-why-card3{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    margin: 8px;
    border: 2px solid #8865FF;
    position: relative;
    bottom: 0%;
  }
  .home-why-card4{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    margin: 8px;
    border: 2px solid #8865FF;
    position: relative;
    bottom: 0%;
  }
  .hero-section2{
    background-color: #F1F1F1; 
    height: 100%;
  }
  .unerline{
    max-width: 10%;
  }
  .product-card{

    max-width: 80%;
    display: flex;
  }
  .product-card-sep{
    max-width: 100%;
  }
  .product-card-sec2{
    display: none;
  }
}

li{
  list-style: none;
  color: #10375C;
}

.footer-body{
  background-color: #DEF2D2;
}
