*{
    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/contact.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;
  }
  .map{
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map iframe{
    height: 100%;
    width: 100%;
  }



.banner{
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.container{
    height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(233, 53, 53);
}



 svg {
	height: 23rem;
	margin-right: 4rem;
}

#envelope {
  animation: float 2s ease-in-out infinite;
}

#star1, #star2, #star3, #star4, #star5, #star6 {
  animation: blink 1s ease-in-out infinite;
}
#star2 { animation-delay: 100ms; }
#star3 { animation-delay: 500ms; }
#star4 { animation-delay: 700ms; }
#star5 { animation-delay: 300ms; }
#star6 { animation-delay: 200ms }

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}


form {
	min-width: 25rem;
	display: flex;
    height: 500px;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
	.title {
		font-family: "Lato", sans-serif;
		color: whitesmoke;
		font-size: 2.5rem;
	}
    
  .form-control {
    background-color: #f2f6f8;
		border-radius: 6px;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		
    &.thick {
      height: 3.3rem;
      padding: .5rem 3.5rem;
    }
		
		&:focus {
			background-color: #f2f6f8;
			border: none;
			box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		}
  }
	
	.message .form-control {
			padding: .5rem 1.8rem;
            /* border: none; */
	}
	
  ::placeholder {
    font-family: 'Quicksand', sans-serif;
		font-weight: 200;
    font-size: 14px;
    color: #838788;
    position: relative;
    left: 0;
  }
	
  input,
  textarea {
		font-family: 'Quicksand', sans-serif;
    color: #212529;
    font-size: 1.1rem;
    /* left: 0; */
  }
	
  .icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
  }
}

.btn.btn-primary {
  font-family: 'Quicksand', sans-serif;
	font-weight: bold;
  height: 2.5rem;
  color: white;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 10px;
  background-image:linear-gradient(131deg, #07adc3a9, #078fd3, #066cba, #0482ef);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}






























 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;
  }
  .map{
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .map iframe{
    height: 100%;
    width: 100%;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
    /* 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; */
  }
  .container{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(233, 53, 53);
}



 svg {
	height: 13rem;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
	/* margin-right: 4rem; */
  display: flex;
  padding-left: 60px;
  align-items: center;
  justify-content: center;
}

#envelope {
  animation: float 2s ease-in-out infinite;
}

#star1, #star2, #star3, #star4, #star5, #star6 {
  animation: blink 1s ease-in-out infinite;
}
#star2 { animation-delay: 100ms; }
#star3 { animation-delay: 500ms; }
#star4 { animation-delay: 700ms; }
#star5 { animation-delay: 300ms; }
#star6 { animation-delay: 200ms }

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}


form {
  padding: 20px;
	min-width: 25rem;
	display: flex;
    height: 500px;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
	.title {
		font-family: "Lato", sans-serif;
		color: whitesmoke;
		font-size: 2.5rem;
	}
    
  .form-control {
    width: 100%;
    background-color: #f2f6f8;
		border-radius: 6px;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		
    &.thick {
      height: 3.5rem;
      padding:30px;
    }
		
		&:focus {
			background-color: #f2f6f8;
			border: none;
			box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		}
  }
	
	.message .form-control {
    width: 100%;
			padding: .5rem 1.8rem;
            /* border: none; */
	}
	
  ::placeholder {
    /* padding-left: 10px; */
    font-family: 'Quicksand', sans-serif;
		font-weight: 200;
    font-size: 14px;
    color: #838788;
    position: relative;
    left: 0;
  }
	
  input,
  textarea {
		font-family: 'Quicksand', sans-serif;
    color: #212529;
    font-size: 1.1rem;
    /* margin: 20px; */
    /* left: 0; */
  }
	
  .icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
  }
}

.btn.btn-primary {
  font-family: 'Quicksand', sans-serif;
	font-weight: bold;
  height: 2.5rem;
  color: white;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 10px;
  background-image:linear-gradient(131deg, #07adc3a9, #078fd3, #066cba, #0482ef);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}


 



























































  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 */
}
}
 

 