*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --orange:#4762FF;
  --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;
  background-color: #fff;
}

@media(max-width: 992px){
  body,html{
    font-size: 0.875rem;
  }
}

/* headign tags */
h3,h4,h5,h6{
  font-family:"Roboto Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
p{
  font-size: 1.2rem;
  font-weight: 500;
  word-spacing: 3px;
    color: #183153;
  font-family:"Open Sans", sans-serif ;
}


/* Anchor Tag */
a{
  color: var(--light-white);
  list-style: none;
  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:7 px;
}
::-webkit-scrollbar-track{
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
  background: var(--bg-coffee);
}

/* 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: #0047ab9d; */
  z-index: 1000;
  padding-top: 0;
  height: 82px;
}

.nav_body{
  padding-top: 0;
}


@keyframes stickyTransition {
  0%{
    opacity: 0;
    -webkit-transform: translate3d(1. -100%, 0);
    transform: translate3d(1, -100%, 0);
  }
  100%{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

h1{
  color: var(--orange);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 45px;

  text-shadow: 2px 2px 3px #000000;
}
h2{
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
}

li{
  list-style: none;
}

.logo1{
  width: 60%;
}
.navbar-collapse ul li a{
  font-size: 18px;
  font-weight: 500;
  color: #183153;

  &:hover{
    color: #e30003;
    font-weight: 550;
    border-bottom: 1px solid red;
  }
}
.home-img1{
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

  &:hover{
    transition: 1s ease-in-out;
  transform: scale(1.05);
}
}
.home-img4{
  z-index: 100;
  position: relative;
  max-width: 40%; 
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  bottom: 30%;
  left: 30%;
  border-radius: 15px;

  &:hover{
    transform: scale(1.05);
    transition: 1s ease-in-out;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px; 
  }
}
.home-img2-btn{
  position: relative;
  top: 20%;
}
.home-section1{
 margin-top: 2rem;
 margin-bottom : 2rem;
}
/* .home-section1-child{
  position: sticky;
} */
@media only screen and (max-width: 320px) {
  .navbar-collapse{
    background-color: var(--light-grey);
  }
}
@media only screen and (max-width: 425px) {
  .navbar-collapse{
    background-color: var(--light-grey);
  }
}
/* For small devices (smartphones, 600px and below) */
@media only screen and (max-width: 600px) {
  .navbar-collapse{
    background-color: var(--light-grey);
  }
}

/* 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; 
   
  }
}

/* popup form */

/* Full-width input fields */
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 */
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;
  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: 1; /* 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: 80%; /* 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
}

.shop-now{
  border: 2px solid #1C3D5B;
  color: #1C3D5B;
  padding: 15px 20px;
  margin: auto;
  display: block;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 30px;
  max-width: 30%;
  
  &:hover{
    background-color: #183153;
    color: var(--light-grey);
  }
}

.shop-now2{
  margin: auto  ;
  padding: 15px 35px;
  border-radius: 30px;
  display: block;
  background-color: #04AA6D;
  color: var(--light-grey);
  font-weight: 500;
  font-size: large;
  max-width: 30%;

  &:hover{
color: #04AA6D;
background-color: var(--light-grey);
border: 2px solid #04AA6D;
  }
}

@-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%;
  }
}


.subscribe{
  /* height: 30svh; */
  background-color:#1C3D5B ;
  border-radius: 15px;
}
.subscribe-input{
  background-color: #fff;
  max-width: 40%;
  border-radius: 25px;
}
.subscribe-btn{
  position: relative;
  top: 5px;
  margin-left: 20px;
  height: 53px;
  padding: 12px 35px;
  border-radius: 30px;
  background-color: #04AA6D;
  color: var(--light-grey);
  font-weight: 500;
  font-size: large;

  &:hover{
color: #04AA6D;
background-color: var(--light-grey);
border: 2px solid #04AA6D;
  }
}
.sub-circle{
  height: 400px;
  width: 400px;
  background-color: #fa802f67;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  top: 300px;
}
.footer-body{
  background-color: #0c0c0c;

}

