*{
    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: 220px;
   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;
 }
 .pic{
   height:1900px;
   width: 100%;
   padding: 20px;
   /* background-color: #810a42; */
 }
.subpic{
   height: 100%;
   width: 100%;
   /* background-color: #3B5998; */
   overflow: hidden;
   place-items: center;
   display:grid;
   grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, auto); /* You can adjust the height of each row as needed */
  gap: 5px;
}
.singlepicture{
   height: 250px;
   width: 350px;
   background-color: white ;
   overflow: hidden;
   display: grid;
   place-items: center;
   border-radius: 10px;
   transition: 1.3s;
}
.singlepicture:hover{
   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;
}
.singlepicture img{
   /* margin: 10px; */
   height: 90%;
   width: 80%;
   object-fit: fill;
   transition: 1.3s ease;
   opacity: 0.5;
   /* border-radius: 10px; */
}
.singlepicture img:hover{
   transform: scale(1.2);
   cursor: pointer;
   opacity: 1.1;
}


































 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;
  }

  .pic{
   height:auto;
   width: 100%;
   padding: 20px;
   /* background-color: #810a42; */
 }
.subpic{
   height: 100%;
   width: 100%;
   /* background-color: #3B5998; */
   overflow: hidden;
   place-items: center;
   display: flex;
   flex-direction: column;
}
.singlepicture{
   height: 350px;
   width: 250px;
   background-color: white ;
   overflow: hidden;
   display: grid;
   place-items: center;
   border-radius: 10px;
   transition: 1.3s;
}
.singlepicture:hover{
   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;
}
.singlepicture img{
   /* margin: 10px; */
   height: 100%;
   width: 100%;
   object-fit: contain;
   transition: 1.3s ease;
   opacity: 0.5;
   /* border-radius: 10px; */
}
.singlepicture img:hover{
   transform: scale(1.2);
   cursor: pointer;
   opacity: 1.1;
}




























































  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 */
}
}
 
 