*{
    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);
 }

 .box1 {
   width: 100%;
   height: 400px;
   /* padding: 20px; */
   background-image:url('../img/bannertop.webp');
   /* object-fit: cover ; */
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-attachment: fixed;
   
 }
 .subbox1{
   height: 100%;
   width: 100%;
   display: block;
   align-items: center;
   position: relative;
   /* position: relative;
   left: 60px;
   bottom: -75px; */
   line-height: 25px;
   /* justify-content:right; */
   background-color: rgba(0, 0, 0, 0.719);
 }
 
 .sub{
   width: 100%;
   /* background-color: #f88030; */
   display: flex;
   align-items: center;
   justify-content: center;
 }
 .sub h1{
   font-size: 35px;
   font-family: lato;
   color: rgb(161, 156, 156);
   /* background: rgb(4,1,53); */
   /* color: linear-gradient(90deg, rgba(4,1,53,1) 0%, rgba(255,255,255,1) 48%, rgba(2,0,40,1) 100%, rgba(0,212,255,1) 100%); */
   letter-spacing:1.5px;
   position: absolute;
   /* left: 60px; */
   bottom: 210px; 
   transition: 1.3s ease;
 }
 .sub h1:hover{
   cursor: pointer;
   transform: scale(1.3);
   color:rgb(143, 36, 36);
 }
 
 .subbox12{
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 100%;
   width: 6%;
   position: absolute;
   bottom:-13px;
   /* background-color: rebeccapurple; */
   right: 70px;
 }



 .sup{
   height: 1600px;
   width: 100%;
   /* background-color: #f88030; */
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
 }
 .sup h1{
   font-size: 56px;
    /* font-size: 2.25rem; */
    font-weight: 300;
    color: #dc3e3f;
    padding: 0 50px 35px;
    max-width: 980px;
    margin: 0 auto;
    font-family: "Lato", sans-serif;
 }
 .sup p{
   font-size: 22px;
    font-size: 1.35rem;
    line-height: 36px;
    line-height: 2.25rem;
    font-weight: 0.50;
    text-align:center;
    color: #424242d6;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3.125rem;
    padding-bottom: 30px;
    font-family: "Lato", sans-serif;
 }
 .sup a{
   height: 40px;
   width: 220px;
   border: 1px solid #dc3e3f;
   text-align: center;
   padding-top:10px;
   text-decoration: none;
   color:red;
   font-family: "Lato", sans-serif;
   font-size: 14px;
   /* justify-content: center; */
 }
 .sup a:hover{
   background-color: #dc3e3f;
   color: white;
 }
 .imagesd{
   margin-top: 40px;
   /* padding-top: 190px; */
 }
 .imagesd img{
   height: 500px;
   width: 100%;
   /* transition: 1.1s ease-in; */
 }





 .tbox1 {
   width: 100%;
   height: 400px;
   /* padding: 20px; */
   background-image:url('../img/ab1.avif');
   /* object-fit: cover ; */
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-attachment: fixed;
   
 }
 .tsubbox1{
   height: 100%;
   width: 100%;
   display: block;
   align-items: center;
   position: relative;
   /* position: relative;
   left: 60px;
   bottom: -75px; */
   line-height: 25px;
   /* justify-content:right; */
   background-color: rgba(0, 0, 0, 0.719);
 }
 
 .tsub{
   width: 100%;
   /* background-color: #f88030; */
   display: flex;
   align-items: center;
   justify-content: center;
 }
 .tsub h1{
   font-size: 35px;
   font-family: lato;
   color: rgb(161, 156, 156);
   /* background: rgb(4,1,53); */
   /* color: linear-gradient(90deg, rgba(4,1,53,1) 0%, rgba(255,255,255,1) 48%, rgba(2,0,40,1) 100%, rgba(0,212,255,1) 100%); */
   letter-spacing:1.5px;
   position: absolute;
   /* left: 60px; */
   bottom: 210px; 
   transition: 1.3s ease;
 }
 .tsub h1:hover{
   cursor: pointer;
   transform: scale(1.3);
   color:rgb(143, 36, 36);
 }



.super{
   height: 200px;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.super h1{
   font-size: 56px;
    /* font-size: 2.25rem; */
    font-weight: 300;
    color: #dc3e3f;
    padding: 0 50px 35px;
    max-width: 980px;
    margin: 0 auto;
    font-family: "Lato", sans-serif;
}

.moto{
   height: 400px;
   /* background-color: #3B5998; */
   transition-duration: 0.5s;
   /* background-color: rgb(67, 57, 57); */
   width: 100%;
   padding: 20px;
}
.submoto{
   height: 100%;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
  
}

 .deck{
   
   height: 100%;
   width: 60%;
   display: flex;
   align-items: center;
   justify-content: space-evenly;
   /* background-color: rgb(155, 150, 161); */
 }
 
 
 .card-space:hover .card{
   transform: rotateY(-180deg);
 }
 
 .card{
   border-radius: 10px;
   height: 300px;
   margin: 10px;
   width: 200px;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   transform-style: preserve-3d;
   transition: all 0.5s ease;
   & h1{
     margin-top: 5px;
     text-align: center;
   }
   & p{
     margin-top: 0px;
   }
 }
 
 .face{
   border-radius: 10px;
   box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
   & h1{
     padding: 0;
     font-family: "Lato", sans-serif;
     color: white;
     text-align: justify;
   }
   /* background-color: #bf3a30;
   background-image: linear-gradient(315deg, #bf3a30 0%, #864ba2 74%); */
   background-color: #ff7878;
   background-image: linear-gradient(315deg, #ff7878 0%, #ff3838e2 74%);
   
   padding: 20px;
   position: absolute;
   height: 100%;
   width: 100%;
   &.front{
      display: flex;
      align-items: center;
      justify-content: center;
     
     z-index: 20;
     backface-visibility: hidden;
     transform: rotateY(0deg);
     
   }
   &.back{
     transform: rotateY(180deg);
     backface-visibility: hidden;
     color: white;
     text-align: center;
   }
 }
 .imagesdd{
   height: 300px;
   width: 100%;
   margin-top: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   /* padding-top: 190px; */
 }
 .imagesdd img{
   height: 400px;
   width: 70%;
   object-fit: contain;
   /* transition: 1.1s ease-in; */
 }



























 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);
   }
  
   .box1 {
      width: 100%;
      height: 500px;
      /* height: auto; */
      /* overflow: hidden; */
      /* padding: 20px; */
      background-image:url('../img/bannertop.webp');
      /* object-fit: cover ; */
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      
    }
    .subbox1{
      height: 100%;
      width: 100%;
      display: block;
      align-items: center;
      position: relative;
      /* position: relative;
      left: 60px;
      bottom: -75px; */
      line-height: 25px;
      /* justify-content:right; */
      background-color: rgba(0, 0, 0, 0.719);
    }
    
    .sub{
      width: 100%;
      /* background-color: #f88030; */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .sub h1{
      font-size: 35px;
      font-family: lato;
      color: rgb(161, 156, 156);
      /* background: rgb(4,1,53); */
      /* color: linear-gradient(90deg, rgba(4,1,53,1) 0%, rgba(255,255,255,1) 48%, rgba(2,0,40,1) 100%, rgba(0,212,255,1) 100%); */
      letter-spacing:1.5px;
      position: absolute;
      /* left: 60px; */
      bottom: 210px; 
      transition: 1.3s ease;
    }
    .sub h1:hover{
      cursor: pointer;
      transform: scale(1.3);
      color:rgb(143, 36, 36);
    }
    
    .subbox12{
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      width: 6%;
      position: absolute;
      bottom:-13px;
      /* background-color: rebeccapurple; */
      right: 70px;
    }
   
   
   
    .sup{
      height: 1300px;
      width: 100%;
      /* background-color: #f88030; */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 50px;
    }
    .sup h1{
      font-size: 24px;
       /* font-size: 2.25rem; */
       font-weight: 300;
       color: #dc3e3f;
       padding: 0 50px 35px;
       max-width: 980px;
       margin: 0 auto;
       font-family: "Lato", sans-serif;
    }
    .sup p{
      color: #1b1a1a;
    font-size: 14px;
    /* font-size: 1.375rem; */
    line-height: 23px;
    /* line-height: 2.25rem; */
    font-weight: 300;
    text-align: justify;
      
       max-width: 900px;
       margin: 0 auto;
       padding: 0 3.125rem;
       padding-bottom: 30px;
       font-family: "Lato", sans-serif;
    }
    .sup a{
      height: 40px;
      width: 220px;
      border: 1px solid #dc3e3f;
      text-align: center;
      padding-top:10px;
      text-decoration: none;
      color:red;
      font-family: "Lato", sans-serif;
      font-size: 14px;
      /* justify-content: center; */
    }
    .sup a:hover{
      background-color: #dc3e3f;
      color: white;
    }
    .imagesd{
      height: auto;
      width: 100%;
      /* margin-top: 40px; */
      /* padding-top: 190px; */
    }
    .imagesd img{
      height:100%;
      width: 100%;
      /* transition: 1.1s ease-in; */
    }
   
   
   
   
   
    .tbox1 {
      width: 100%;
      height: 300px;
      /* padding: 20px; */
      background-image:url('../img/ab1.avif');
      /* object-fit: cover ; */
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      
    }
    .tsubbox1{
      height: 100%;
      width: 100%;
      display: block;
      align-items: center;
      position: relative;
      /* position: relative;
      left: 60px;
      bottom: -75px; */
      line-height: 25px;
      /* justify-content:right; */
      background-color: rgba(0, 0, 0, 0.719);
    }
    
    .tsub{
      width: 100%;
      /* background-color: #f88030; */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tsub h1{
      font-size: 25px;
      font-family: lato;
      text-align: center;
      color: rgb(161, 156, 156);
      /* background: rgb(4,1,53); */
      /* color: linear-gradient(90deg, rgba(4,1,53,1) 0%, rgba(255,255,255,1) 48%, rgba(2,0,40,1) 100%, rgba(0,212,255,1) 100%); */
      letter-spacing:1.5px;
      position: absolute;
      /* left: 60px; */
      bottom: 110px; 
      transition: 1.3s ease;
    }
    .tsub h1:hover{
      cursor: pointer;
      transform: scale(1.3);
      color:rgb(143, 36, 36);
    }
   
   
   
   .super{
      height: 100px;
      width: 100%;
      padding-top: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .super h1{
      font-size: 24px;
       /* font-size: 2.25rem; */
       font-weight: 300;
       color: #dc3e3f;
       text-align: center;
       padding: 0 50px 35px;
       max-width: 980px;
       margin: 0 auto;
       font-family: "Lato", sans-serif;
   }
   
   .moto{
      height: auto;
      /* background-color: #3B5998; */
      transition-duration: 0.5s;
      /* background-color: rgb(67, 57, 57); */
      width: 100%;
      padding: 20px;
      overflow:hidden;
      /* -webkit-overflow-scrolling: hidden; */
   }
   .submoto{
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
     
   }
   
    .deck{
      
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      /* background-color: rgb(155, 150, 161); */
    }
    
    
    .card-space:hover .card{
      transform: rotateY(-180deg);
    }
    
    .card{
      border-radius: 10px;
      height: 200px;
      margin: 10px;
      width: 350px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      transform-style: preserve-3d;
      transition: all 0.5s ease;
      & h1{
        margin-top: 5px;
        text-align: center;
      }
      & p{
        margin-top: 0px;
      }
    }
    
    .face{
      border-radius: 10px;
      box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
      & h1{
        padding: 0;
        font-family: "Lato", sans-serif;
        color: white;
        text-align: justify;
      }
      /* background-color: #bf3a30;
      background-image: linear-gradient(315deg, #bf3a30 0%, #864ba2 74%); */
      background-color: #ff7878;
      background-image: linear-gradient(315deg, #ff7878 0%, #ff3838e2 74%);
      
      padding: 20px;
      position: absolute;
      height: 100%;
      width: 100%;
      &.front{
         display: flex;
         align-items: center;
         justify-content: center;
        
        z-index: 20;
        backface-visibility: hidden;
        transform: rotateY(0deg);
        
      }
      &.back{
        transform: rotateY(180deg);
        backface-visibility: hidden;
        color: white;
        text-align: center;
      }
    }
    .imagesdd{
      height: 300px;
      width: 100%;
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* padding-top: 190px; */
    }
    .imagesdd img{
      height: 400px;
      width: 70%;
      object-fit: contain;
      /* transition: 1.1s ease-in; */
    }
    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 */
  }
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
    

 }
 