*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
  }
  body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
  }
  body::-webkit-scrollbar{ 
   display: none;
 }
 .whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 9999; /* Ensure it's above other content */
}

.whatsapp-icon img {
  width: 50px; /* Adjust size as needed */
  height: auto;
  border-radius: 50%; /* Makes it round */
  box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
}
.mobile-nav-container,.mobile-nav-icon{
  display: none
}
 .navbar{
    height: 100px;
    width: 100%;
    background-color: white;
    padding: 10px;
    /* position: fixed; */
 }
 .subnavbar{
    height: 100%;
    width: 100%;
    /* background-color: rebeccapurple; */
    display: flex;
    align-items: center;
    justify-content: space-around;
}
 .n1{
    height: 100%;
    width: 35%;
    /* background-color: white; */
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
 }
 .n1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1.1s ease-in-out;
 }
 .n1 img:hover{
    transform: scale(1.1);
 }
 .n2{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 15%;
    /* background-color: red; */
 }
 .n2 p{
        font-family: "Lato", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: black;
        font-size: 14px;
      }
.n2 i{  
    padding: 5px;
        font-size: 18px;
        color: rgb(214, 53, 53);
        /* color: gray; */
        /* background-color: gray; */
        /* border-radius: 190px; */
      }
      .n2 i:hover{
        color: gray;
        cursor: pointer;
      }
      #menuToggle
      {
        display: none;
        /* display: block; */
        position: relative;
        top: 50px;
        left: 50px;
        
        z-index: 1;
        
        -webkit-user-select: none;
        user-select: none;
      }
      
      #menuToggle a
      {
        text-decoration: none;
        color: #232323;
        
        transition: color 0.3s ease;
      }
      
      #menuToggle a:hover
      {
        color: tomato;
      }
      
      
      #menuToggle input
      {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        
        cursor: pointer;
        
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */
        
        -webkit-touch-callout: none;
      }
      
      /*
       * Just a quick hamburger
       */
      #menuToggle span
      {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        
        background: #cdcdcd;
        border-radius: 3px;
        
        z-index: 1;
        
        transform-origin: 4px 0px;
        
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
      }
      
      #menuToggle span:first-child
      {
        transform-origin: 0% 0%;
      }
      
      #menuToggle span:nth-last-child(2)
      {
        transform-origin: 0% 100%;
      }
      
      /* 
       * Transform all the slices of hamburger
       * into a crossmark.
       */
      #menuToggle input:checked ~ span
      {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
      }
      
      /*
       * But let's hide the middle one.
       */
      #menuToggle input:checked ~ span:nth-last-child(3)
      {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
      }
      
      /*
       * Ohyeah and the last one should go the other direction
       */
      #menuToggle input:checked ~ span:nth-last-child(2)
      {
        transform: rotate(-45deg) translate(0, -1px);
      }
      
      /*
       * Make this absolute positioned
       * at the top left of the screen
       */
      #menu
      {
        position: absolute;
        width: 300px;
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        
        background: #ededed;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
      }
      
      #menu li
      {
        padding: 10px 0;
        font-size: 22px;
      }
      
      /*
       * And let's slide it in from the left
       */
      #menuToggle input:checked ~ ul
      {
        transform: none;
      }

 .links{
    height: 60px;
    width: 100%;
    background-color: rgba(29, 26, 26, 0.945);
    /* margin-top: 100px; */
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: fixed; */
 }
 .sublinks{
    height: 100%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content:center;
 }
 .sublinks i{
    font-size: 16px;
    margin: 10px;
    color:gray;
 }

 #s1{
    text-decoration: none;
    /* color: white; */
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 400;
    line-height: 62px;
    height: 100%;
    width: 150px;
    /* margin: 20px; */
    text-align: center;
    /* border-right:1px solid rgba(128, 128, 128, 0.603); */
    border-left:1px solid rgba(128, 128, 128, 0.603);
    /* background-color: red; */
 }
 #s2{
    text-decoration: none;
    /* background-color: red; */
    /* color: white; */
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 400;
    line-height: 62px;
    height: 100%;
    width: 170px;
    /* margin: 20px; */
    text-align: center;
    /* border-right:1px solid rgba(128, 128, 128, 0.603); */
    border-left:1px solid rgba(128, 128, 128, 0.603);
 }
 #s3{
    text-decoration: none;
    /* background-color: red; */
    /* color: white; */
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 400;
    line-height: 62px;
    height: 100%;
    /* margin: 20px; */
    width: 280px;
    text-align: center;
    /* border-right:1px solid rgba(128, 128, 128, 0.603); */
    border-left:1px solid rgba(128, 128, 128, 0.603);
 }
 #s4{
    text-decoration: none;
    /* color: white; */
    font-size: 16px;
    color: #d1d1d1;
    width: 150px;
    font-weight: 400;
    line-height: 62px;
    height: 100%;
    /* background-color: red; */
    /* margin: 20px; */
    text-align: center;
    /* border-right:1px solid rgba(128, 128, 128, 0.603); */
    border-left:1px solid rgba(128, 128, 128, 0.603);
 }
 #s5{
    text-decoration: none;
    /* color: white; */
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 400;
    line-height: 62px;
    width: 170px;
    height: 100%;
    /* margin: 20px; */
    text-align: center;
    /* background-color: red; */
    border-right:1px solid rgba(128, 128, 128, 0.603);
    border-left:1px solid rgba(128, 128, 128, 0.603);
 }
 #s1:hover{
    color:white;
    background-color:rgb(175, 47, 47);
    /* text-transform: lowercase; */
   
}

 #s2:hover{
    color:white;
    background-color:rgb(175, 47, 47);
    /* background-color: firebrick; */
 }
 #s3:hover{
    color:white;
    background-color:rgb(175, 47, 47);
    /* background-color: firebrick; */
 }
 #s4:hover{
    color:white;
    background-color:rgb(175, 47, 47);
    /* background-color: firebrick; */
 }
 #s5:hover{
    color:white;
    background-color:rgb(175, 47, 47);
    /* background-color: firebrick; */
 }
 #s1:hover i{
    color: rgb(44, 43, 43);
    transform: scale(1.5);
 }
 #s2:hover i{
    color: rgb(44, 43, 43);
    transform: scale(1.5);
 }
 #s3:hover i{
    color: rgb(44, 43, 43);
    transform: scale(1.5);
 }
 #s4:hover i{
    color: rgb(44, 43, 43);
    transform: scale(1.5);
 }
 #s5:hover i{
    color: rgb(44, 43, 43);
    transform: scale(1.5);
 }
 .heading{
    height: 200px;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .heading h1{
    color: #dc3e3f;
     font-size: 52px;
     font-size: 3.25rem;
     font-weight: 300;
     padding-bottom: 10px;
     text-align: center;
  }
  .heading p{
    color: #999;
     font-size: 18px;
     /* font-size: 1.375rem; */
     line-height: 36px;
     line-height: 2.25rem;
     font-weight: 100;
  }
  
  .heading1{
    height: 200px;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .heading1 h1{
    color: #dc3e3f;
     font-size: 28px;
     /* font-size: 3.25rem; */
     font-weight: 300;
     padding-bottom: 10px;
     text-align: center;
  }
  .heading1 p{
    color: #999;
     font-size: 16px;
     /* font-size: 1.375rem; */
     line-height: 36px;
     line-height: 2.25rem;
     font-weight: 100;
  }


.containers1{
   height: auto;
   width: 100%;
}
.containers2{
   height: 1200px;
   width: 100%;
}
.containers3{
   height: auto;
   /* background-color: rebeccapurple; */
   margin-top:-120px;
   /* padding: auto; */
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

  .d-flex {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
 }
 
 .align-center {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
 }
 
 .flex-centerY-centerX {
   justify-content: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
 }
 
 
 .page-wrapper {
   height: 100%;
   display: table;
 }
 
 .page-wrapper .page-inner {
   display: table-cell;
   vertical-align: middle;
 }
 
 .el-wrapper {
   width: 360px;
   padding: 15px;
   margin: 15px auto;
   /* background-color: #f15b5b; */
   background-color: #fff;
   /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
   /* box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; */
   /* box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; */
   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;
   /* background-color: #dc3e3f; */
 }
 
 @media (max-width: 991px) {
   .el-wrapper {
     width: 345px;
   }
 }
 
 @media (max-width: 767px) {
   .el-wrapper {
     width: 290px;
     margin: 30px auto;
   }
 }
 
 .el-wrapper:hover .h-bg {
   left: 0px;
 }
 
 .el-wrapper:hover .price {
   left: 20px;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
   transform: translateY(-50%);
   color: #818181;
 }
 
 .el-wrapper:hover .add-to-cart {
   left: 50%;
 }
 
 .el-wrapper:hover .img {
   webkit-filter: blur(7px);
   -o-filter: blur(7px);
   -ms-filter: blur(7px);
   filter: blur(7px);
   filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
   opacity: 0.4;
 }
 
 .el-wrapper:hover .info-inner {
   bottom: 155px;
 }
 
 .el-wrapper:hover .a-size {
   -webkit-transition-delay: 300ms;
   -o-transition-delay: 300ms;
   transition-delay: 300ms;
   bottom: 50px;
   opacity: 1;
 }
 
 .el-wrapper .box-down {
   width: 100%;
   height: 60px;
   position: relative;
   overflow: hidden;
 }
 
 .el-wrapper .box-up {
   width: 100%;
   height: 300px;
   position: relative;
   overflow: hidden;
   text-align: center;
 }
 
 .el-wrapper .img {
   /* padding: 20px 0; */
   height: 100%;
   width: 100%;
   object-fit: cover;
   -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
 }
 
 .h-bg {
   -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   width: 660px;
   height: 100%;
   /* background-color: #cd3f3f; */
   background-color: #464646;
   position: absolute;
   left: -659px;
 }
 
 .h-bg .h-bg-inner {
   width: 50%;
   height: 100%;
   background-color: #cd3f3f;
   /* background-color: #464646; */
 }
 
 .info-inner {
   -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
   -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
   -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
   transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   position: absolute;
   width: 100%;
   bottom: 25px;
 }
 
 .info-inner .p-name,
 .info-inner .p-company {
   display: block;
    opacity: 0;
 }
 
 .info-inner .p-name {
   font-family: 'PT Sans', sans-serif;
   font-size: 18px;
   color: #252525;
   /* bottom: 0; */
 }
 
 .info-inner .p-company {
   font-family: 'Lato', sans-serif;
   font-size: 12px;
   text-transform: uppercase;
   color: #8c8c8c;
   /* opacity: 0; */
 }
 
 .a-size {
   -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
   -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
   -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
   transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   position: absolute;
   width: 100%;
   bottom: -90px;
   font-family: 'PT Sans', sans-serif;
   color: #a45252;
   opacity: 0;
 }
 
 .cart {
   display: block;
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   font-family: 'Lato', sans-serif;
   font-weight: 700;
 }
 
 .cart .price {
   -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-delay: 100ms;
   -o-transition-delay: 100ms;
   transition-delay: 100ms;
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   /* display: non; */
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   font-size: 16px;
   /* color: #252525; */
   color: rgb(217, 49, 49);
 }
 .cart:hover .price{
   
 }
 .el-wrapper:hover .price{
  display: none;

 }
 
 .cart .add-to-cart {
   -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
   /* ease-out */
   -webkit-transition-delay: 100ms;
   -o-transition-delay: 100ms;
   transition-delay: 100ms;
   display: block;
   position: absolute;
   top: 50%;
   left: 110%;
   /* color: red; */
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
 }
 
 .cart .add-to-cart .txt {
   font-size: 12px;
   color: #fff;
   letter-spacing: 0.045em;
   text-transform: uppercase;
   white-space: nowrap;
 }
 



















 ul {
    margin: 0px;
    padding: 0px;
 }
 .footer-section {
  /* background: #711b1b; */
  background-image: url(../img/backh.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* opacity: 0.29; */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 100%;
  padding: 20px;
 }
 
 .footer-cta {
  border-bottom: 1px solid #373636;
  /* display: flex; */
  background-color: orange;
  align-items: center;
  /* justify-content: space-evenly; */
 }
 
 
 .single-cta i {
  color: #ff5e14;
  font-size: 30px;
  /* float: left; */
  margin-top: 8px;
 }
 .cta-text {
  /* padding-top: -90px; */
 padding-left: 45px;
  /* margin-left: 100px; */
 display: flex;
 flex-direction: column;
}
 .cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
 }
 .cta-text span {
  color: #757575;
  font-size: 15px;
 }
 .footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
 }
 .row{
    display: flex;
    align-items: center;
    justify-content: space-around;
 }
 .row1{
    display: flex;
    flex-direction: column;
   /* align-items: center; */
    justify-content: space-around;
    line-height: 25px;
 }
 .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
 }
 .footer-logo {
  margin-bottom: 30px;
 }
 .footer-logo img {
    max-width: 200px;
    height: 100%;
    width: 100%;
    opacity: 0.29;
    border-radius: 100px;
    transition: 1.1s ease-in;
 }
 .footer-logo img:hover{
    opacity: 1;
    /* transform: scale(1.02); */
 }
 .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
 }
 .footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
 }
 .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
 }
 .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
 }
 .facebook-bg{
  background: #3B5998;
 }
 .instagram-bg{
  background: #810a42;
 }
 .google-bg{
  background: #bb230f;
 }
 .whatsapp-bg{
   background: rgb(20, 102, 20);
 }
 .footer-widget{
    width: 30%;
 }
 .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
 }
 .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
 }
 .footer-widget ul li {
  display: inline-block;
  /* float: left; */
  width: 60%;
  margin-bottom: 12px;
 }
 .footer-widget ul li a:hover{
  color: #ff5e14;
 }
 .footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
 }
 
 .copyright-area{
  background: #202020;
  padding: 25px 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
 }
 .copyright-text p a{
  color: #ff5e14;
 }
 .footer-menu li {
  display: inline-block;
  margin-left: 20px;
 }
 .footer-menu li:hover a{
  color: #ff5e14;
 }
 .footer-menu li a {
  font-size: 14px;
  color: #878787;
 } 




 @media screen and (max-width:600px) 
 {
  *{
     padding: 0;
     margin:0;
     box-sizing: border-box;
   }
   html{
     overflow-x: hidden;
   }
   body{
     width: 100vw;
     height: 100vh;
     overflow-x: hidden;
     background-color: white;
     
   }
   body::-webkit-scrollbar{ 
     display: none;
   }
   /* navigation bar */
   .navbar{
     height: 80px;
     width: 100%;
     background-color: white;
     padding: 10px;
     /* position: fixed; */
     /* display: none; */
  }
  .subnavbar{
     height: 100%;
     width: 100%;
     /* background-color: rebeccapurple; */
     display: flex;
     align-items: center;
     justify-content: space-between  ;
 }
  .n1{
     height: 100%;
     width: 70%;
     /* background-color: white; */
     display: flex;
     align-items: center;
     overflow: hidden;
     justify-content: center;
  }
  .n1 img{
     height: 100%;
     width: 100%;
     object-fit: contain;
     transition: 1.1s ease-in-out;
  }
  .n1 img:hover{
     transform: scale(1.1);
  }
  .n2{
   display: none;
     /* display: flex; */
     align-items: center;
     justify-content: center;
     height: 100%;
     width: 10%;
     /* background-color: red; */
  }
  .n2 p{
         font-family: "Lato", sans-serif;
         font-weight: 300;
         font-style: normal;
         color: black;
         font-size: 14px;
       }
 .n2 i{  
     padding: 5px;
         font-size: 18px;
         color: rgb(214, 53, 53);
         /* color: gray; */
         /* background-color: gray; */
         /* border-radius: 190px; */
       }
       .n2 i:hover{
         color: gray;
         cursor: pointer;
       }
       /* hamburger menu */


#menuToggle
{
  /* display: block; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0px;
  left: 0px;
  height: 50px;
  width: 50px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
  background-color: #dc3e3f;
}

#menuToggle a
{
  text-decoration: none;
  color: #e6dddd;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: black;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: 7px;
  left: 5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  /* margin-bottom: 5px; */
  position: relative;
  
  background: #ede9e9;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  /* padding-left: 10px; */
  opacity: 1;
  transform: rotate(45deg) translate(7px, -3px);
  background: #ffffff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(5px, 8px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 450px;
  /* margin: -100px 0 0 -50px; */
  top:165px;
  left: -330px;
  padding: 40px;
  padding-left: 55px;
  /* padding-top: 125px; */
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* justify-content: left; */
  /* background: #dc3e3e; */
  background: rgb(187,21,21);
background: linear-gradient(90deg, rgba(187,21,21,1) 0%, rgba(240,113,120,1) 48%, rgba(208,10,10,1) 100%, rgba(118,156,0,1) 100%);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  text-align: center;
  /* padding: 10px; */
  font-size: 22px;
  /* border:0.1px solid rgba(255, 255, 255, 0.375); */
  width: 400px;
  height: 40px;
  /* background-color: #dc3e3f; */
  border-radius: 10px;



  /* background: rgb(187,21,21); */
/* background: linear-gradient(90deg, rgba(187,21,21,1) 0%, rgba(240,113,120,1) 48%, rgba(208,10,10,1) 100%, rgba(118,156,0,1) 100%); */
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

  .links{
     height: 60px;
     width: 100%;
     background-color: rgba(29, 26, 26, 0.945);
     display: none;
     /* margin-top: 100px; */
     /* padding: 20px; */
     /* display: flex; */
     align-items: center;
     justify-content: center;
     /* position: fixed; */
     
  }
  .sublinks{
     height: 100%;
     width: 100%;
     /* background-color: red; */
     display: flex;
     align-items: center;
     justify-content:center;
  }
  .sublinks i{
     font-size: 16px;
     margin: 10px;
     color:gray;
  }
 
  #s1{
     text-decoration: none;
     /* color: white; */
     font-size: 16px;
     color: #d1d1d1;
     font-weight: 400;
     line-height: 62px;
     height: 100%;
     width: 150px;
     /* margin: 20px; */
     text-align: center;
     /* border-right:1px solid rgba(128, 128, 128, 0.603); */
     border-left:1px solid rgba(128, 128, 128, 0.603);
     /* background-color: red; */
  }
  #s2{
     text-decoration: none;
     /* background-color: red; */
     /* color: white; */
     font-size: 16px;
     color: #d1d1d1;
     font-weight: 400;
     line-height: 62px;
     height: 100%;
     width: 170px;
     /* margin: 20px; */
     text-align: center;
     /* border-right:1px solid rgba(128, 128, 128, 0.603); */
     border-left:1px solid rgba(128, 128, 128, 0.603);
  }
  #s3{
     text-decoration: none;
     /* background-color: red; */
     /* color: white; */
     font-size: 16px;
     color: #d1d1d1;
     font-weight: 400;
     line-height: 62px;
     height: 100%;
     /* margin: 20px; */
     width: 280px;
     text-align: center;
     /* border-right:1px solid rgba(128, 128, 128, 0.603); */
     border-left:1px solid rgba(128, 128, 128, 0.603);
  }
  #s4{
     text-decoration: none;
     /* color: white; */
     font-size: 16px;
     color: #d1d1d1;
     width: 150px;
     font-weight: 400;
     line-height: 62px;
     height: 100%;
     /* background-color: red; */
     /* margin: 20px; */
     text-align: center;
     /* border-right:1px solid rgba(128, 128, 128, 0.603); */
     border-left:1px solid rgba(128, 128, 128, 0.603);
  }
  #s5{
     text-decoration: none;
     /* color: white; */
     font-size: 16px;
     color: #d1d1d1;
     font-weight: 400;
     line-height: 62px;
     width: 170px;
     height: 100%;
     /* margin: 20px; */
     text-align: center;
     /* background-color: red; */
     border-right:1px solid rgba(128, 128, 128, 0.603);
     border-left:1px solid rgba(128, 128, 128, 0.603);
  }
  #s1:hover{
     color:white;
     background-color:rgb(175, 47, 47);
     /* text-transform: lowercase; */
    
 }
 
  #s2:hover{
     color:white;
     background-color:rgb(175, 47, 47);
     /* background-color: firebrick; */
  }
  #s3:hover{
     color:white;
     background-color:rgb(175, 47, 47);
     /* background-color: firebrick; */
  }
  #s4:hover{
     color:white;
     background-color:rgb(175, 47, 47);
     /* background-color: firebrick; */
  }
  #s5:hover{
     color:white;
     background-color:rgb(175, 47, 47);
     /* background-color: firebrick; */
  }
  #s1:hover i{
     color: rgb(44, 43, 43);
     transform: scale(1.5);
  }
  #s2:hover i{
     color: rgb(44, 43, 43);
     transform: scale(1.5);
  }
  #s3:hover i{
     color: rgb(44, 43, 43);
     transform: scale(1.5);
  }
  #s4:hover i{
     color: rgb(44, 43, 43);
     transform: scale(1.5);
  }
  #s5:hover i{
     color: rgb(44, 43, 43);
     transform: scale(1.5);
  }
  .heading{
    height: 200px;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 60px; */
  }
  .heading h1{
    color: #dc3e3f;
     font-size: 28px;
     /* font-size: 3.25rem; */
     font-weight: 300;
     /* padding-bottom: 10px; */
     text-align: center;
  }
  .heading p{
    color: #999;
     font-size: 16px;
     /* font-size: 1.375rem; */
     /* line-height: 36px; */
     /* line-height: 2.25rem; */
     font-weight: 100;
  }


  .heading1{
    height: 200px;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
  }
  .heading1 h1{
    color: #dc3e3f;
     font-size: 28px;
     /* font-size: 3.25rem; */
     font-weight: 300;
     /* padding-bottom: 10px; */
     text-align: center;
  }
  .heading1 p{
    color: #999;
     font-size: 16px;
     /* font-size: 1.375rem; */
     /* line-height: 36px; */
     /* line-height: 2.25rem; */
     font-weight: 100;
  }





























































  ul {
    margin: 0px;
    padding: 0px;
  }
  .footer-section {
  /* background: #711b1b; */
  background-image: url(../img/backh.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* opacity: 0.29; */
  position: relative;
  
  height: auto;
  width: 100%;
  padding: 20px;
  }
  .container11{
    display: flex;
    flex-direction: column;
  }
  
  .footer-cta {
  border-bottom: 1px solid #373636;
  /* display: flex; */
  background-color: orange;
  align-items: center;
  /* justify-content: space-evenly; */
  }
  
  .single-cta{
    padding-top: 20px;
  }
  .single-cta i {
  color: #ff5e14;
  font-size: 30px;
  /* float: left; */
  margin-top: 8px;
  }
  .cta-text {
    /* padding-left: 15px; */
    display: flex;
    flex-direction: column;
    }
  .cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  }
  .cta-text span {
  color: #757575;
  font-size: 15px;
  }
  .footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  }
  .row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-between;
  }
  .row1{
    display: flex;
    flex-direction: column;
   /* align-items: center; */
    justify-content: space-around;
    line-height: 25px;
  }
  .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
  }
  .footer-logo {
  margin-bottom: 30px;
  }
  .footer-logo img {
    max-width: 200px;
    height: 100%;
    width: 100%;
    opacity: 0.29;
    border-radius: 100px;
    transition: 1.1s ease-in;
  }
  .footer-logo img:hover{
    opacity: 1;
    /* transform: scale(1.02); */
  }
  .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
  }
  .footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  }
  .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  }
  .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  }
  .facebook-bg{
  background: #3B5998;
  }
  .instagram-bg{
  background: #810a42;
  }
  .google-bg{
  background: #bb230f;
  }
  .whatsapp-bg{
   background: rgb(20, 102, 20);
  }
  .footer-widget{
    padding-top: 20px;
    width: 100%;
    /* padding: 20px; */
  }
  .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  }
  .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
  }
  .footer-widget ul li {
  display: inline-block;
  /* float: left; */
  width: 60%;
  margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
  color: #ff5e14;
  }
  .footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  }
  
  .copyright-area{
  background: #202020;
  /* padding: 25px 0; */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .copyright-text p {
  margin: 0;
  font-size: 12.8px;
  color: #878787;
  text-align: center;
  }
  .copyright-text p a{
  color: #ff5e14;
  }
  .footer-menu li {
  display: inline-block;
  margin-left: 20px;
  }
  .footer-menu li:hover a{
  color: #ff5e14;
  }
  .footer-menu li a {
  font-size: 14px;
  color: #878787;
  }
  .whatsapp-icon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999; /* Ensure it's above other content */
}

.whatsapp-icon img {
    width: 45px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Makes it round */
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
}
}
 