.color1{
  color: #2b2a29;
}
.color2{
  color: #39ab45;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --orange: #FF5E41;
  --light-black: #2b2a29; 
  --blue: #10113e;
  --dark-green:#026954;
  --light-red: #e30003;
  --light-grey: #f6f9fa;
  --light-grey-2: #dddddd;
  --white: #fff;
  --yellow: #f7be27;
  --grey: #757575;
  --brown: #6f5e4d;
  --bg-coffee:#642f21;
}
body,html{
  background-color: #FfFF;
  font-size: 1rem;
  font-size: "Roboto Condensed", sans-serif;
  font-weight: 400;
}


@media(max-width: 992px){
  body,html{
    font-size: 0.875rem;
  }
}

/* headign tags */
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-grey);
  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;


  &:hover{
    color: var(--orange);
  }

}

/* custom scrollbar */
::-webkit-scrollbar{
  width:8px;
}
::-webkit-scrollbar-track{
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
  background: var(--orange);
}

/* 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);
}

h1{
  color: var(--orange);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
}
h2{
  color: var(--blue);
  font-family: "Roboto", sans-serif;
  font-weight: 550;
  font-style: normal;
  font-size: 32px;
}
h3{
  color: var(--light-black);
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

p{
  color: #1A1A1D;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}

/* Buttons */
.shop-now{
  padding: 10px 15px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;

  &:hover{
    background-color: var(--orange);
    color: var(--light-grey);
    border: 2px solid var(--light-grey);
    transition: 0.5s ease-out;
  }
}

.redirect-btn{
  position: relative;
  top: 20svh;
  left: 10svh;
  font-weight: 500;
  padding: 12px 15px;
  color: var(--dark-green);
  border: 1px solid var(--dark-green);
  border-radius: 25px;
  background-color: #fff;

  &:hover{
    color: var(--light-red);
    font-weight: 500;
    border: 2px solid var(--light-red);
  }
}
.redirect-btn2{
  position: relative;
  top: 8svh;
  left: 10svh;
  font-weight: 500;
  padding: 12px 15px;
  color: var(--dark-green);
  border: 1px solid var(--dark-green);
  border-radius: 25px;
  background-color: #fff;

  &:hover{
    color: var(--light-red);
    font-weight: 500;
    border: 2px solid var(--light-red);
  }
}

.near-banner{
  height: 150px;
  width: 150px;
  border: 2px solid var(--blue);
  border-radius: 15px;
  z-index: 1;
  position: relative;
  top: 200px;
  right: 100px;
}
.door4{
  z-index: 1000;
}


/* nvabar styling */
.navbar{
  position: sticky;
  /* position: absolute;
  top: 0; */
  width: 100%;
  background-color: #d8d8d8a0;
  z-index: 1000;
  padding-top: 0;
  height: 85px;
}

.navbar-collapse ul li a{

  font-size: 19px;
  font-weight: 550;
  color:var(--light-black);
  padding-right: 50px;

  &:hover{
    color: #F08324;
    font-weight: 550;
    border-bottom: 1px solid #F08324;
    text-decoration: none;
  }
}


.home_sec1{
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-img :hover{
  transform: scale(1.05);
  transition: ease-in-out;
}


@keyframes stickyTransition {
  0%{
    opacity: 0;
    -webkit-transform: translate3d(1. -100%, 0);
    transform: translate3d(1, -100%, 0);
  }
  100%{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}






/* enquery form */

input[type=text], input[type=password], input[type=email], textarea, select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
.enquery-button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  border-radius: 25px;
  background-color: var(--green);
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 30%;
  border-radius: 20%;
}

.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: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100svh; 
  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: 15px;
}

/* 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: 100%; /* 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;
}



.logo1{
  position: relative;
  top: 5px;
  padding: 10px;
  max-width: 80%;
}

.footer-body{
  background-color: #000000f9;

}
li{
  list-style: none;
}
.product2-body{
  display: block;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--light-grey);
  border-radius: 25px;
}
.product-body-below{

}

.product-page-btn{
  padding: 12px 8px;
  border: 2px solid var(--bg-coffee);
  color: var(--dark-green);
  border-radius: 25px;
  text-decoration: none ;
}

.home-parallax1 {
  max-width: 100%;
  background: url("images/home3.jpg");
  background-repeat: no-repeat;
  z-index: -5;

  height: 60%;
  /* padding-bottom: 20px; */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}

.homes-parallax2 {
  /* background-color: #866d515e; */
  height: 100%;
}

.contact-parallax1 {
  max-width: 100%;
  background: url("images/home3.jpg");
  background-repeat: no-repeat;
  z-index: -5;

  height: 90%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}

.contact-parallax2 {
  background-color: #866d515e;
  height: 100%;
}


.nav-link{
  color: var(--light-grey);
}


/* For small devices (smartphones, 600px and below) */
@media(max-width: 320px){
  .nav-enquery-mobile{
    position: relative;
    left:50px;
  }
  .nav_body{
    position: relative;
    bottom: 10px;
    padding: 5px;
  }
}
@media(max-width: 375px){
  .nav-enquery-mobile{
    position: relative;
    left:60px;
  }
  .nav_body{
    position: relative;
    bottom: 10px;
    padding: 5px;
  }
}

@media only screen and (max-width: 600px) {
  .nav_body{
    position: relative;
    bottom: 10px;
    padding: 5px;
  }
  .redirect-btn{
    display: none;
  }
   .card-size{
    max-width: 22rem;
    margin: auto;
    
  }
  h1{
    color: var(--orange);
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
  }
  h2{
    color: var(--blue);
    font-family: "Roboto", sans-serif;
    font-weight: 550;
    font-style: normal;
    font-size: 27px;
  }
  h3{
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
  }
  .navbar{
    height: 60px;
  }

  .logo1{

    max-width: 160%;
  }
  .near-banner{
    display: none;
  }
  .door4{
    display: none;
  }

  .contact_us{
    position: relative;
    left: 21px;
    bottom: 62px;
    align-items: center;
  }
  .navbar-collapse{
    padding: 15px;
    background-color: var(--light-grey);
    color: var(--bg-coffee);

    &:hover{
      color: red;
    }
  }
  .navbar-collapse ul li a{
    color: var(--light-greys);
  }
  .nav-enquery-mobile{
    position: relative;
    left:70px;
  }
}

/* For medium devices (tablets, 600px to 1024px) */
@media only screen and (max-width: 1024px) {
  /* Styles for medium devices */
}

/* For large devices (desktops, 1025px and above) */
@media only screen and (min-width: 1025px) {
  /* Styles for large devices */
  .nav-enquery-mobile{
   display: none; 
   
  }
}

