*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
        height: 100vh;
        width: 100vw;
       /* margin: 0; */
       /* padding: 0; */
       overflow-x: hidden;
      
   }
   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 */
  }
   .mobilenav{
    display: none;
   }
   .nav{
    position: fixed;
  top: 0;
  /* width: 100%; */
    height: 100px;
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.247);
    /* background-color:rgb(212, 212, 212); */
    padding: 10px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* background-color:rgb(13, 178, 255); */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset; */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
   }
   .subnav{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color:rgb(13, 178, 255); */
   }
   .logod{
    height: 100%;
    width: 30%;
    /* background-color:white; */
    overflow: hidden;
    /* display: flex; */
    /* align-items: left; */
    /* justify-content: left; */
   }
   .logod img{
    height: 100%;
    width: 50%;
    object-fit: contain;
   }
   .menud{
    height: 100%;
    width: 50%;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 11px;
   }
   .menud .linktext{
    font-size:1.3em;
    /* top:0px; */
    text-align:center;
    position:relative;
    z-index:2;
    font-weight: 600;
    color:#000000;
    color: #424242;
    /* color: rgb(13, 178, 255); */
    /* background: -webkit-linear-gradient(#3c2372, #c3b538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
    /* background: #c0392b; fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #c0392b, #8e44ad); Chrome 10-25, Safari 5.1-6 */
  /* linear-gradient(to right, #c0392b, #8e44ad); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    /* color: darkgoldenrod; */
    /* color: #7b4397; */
    /* color:rgb(101, 99, 99); */
    /* color:#FFABAB; */
    text-decoration:none;
    font-family: "Poppins", sans-serif;
    /* font-family: "Lato", sans-serif; */
    font-size: 16px;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
  }
  .menud .linktext:before{
    content:'';
    position:absolute;
    top:0px;
    left:-2.5px;
    width:calc(100% + 5px);
    border-left:1.5px solid black;
    border-right:1.5px solid black;
    height:150%;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
    opacity:1;
    background:transparent;
    max-height:0%;
    transform:translateY(20px);
    -webkit-transform:translateY(20px);
  }
  .menud .linktext:after{
    display:inline-block;
    content:attr(data-text);
    position:absolute;
    top:24px;
    left:0px;
    width:100%;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
    font-size:0.5em;
    color:black;
    transform:translateY(30px);
    -webkit-transform:translateY(30px);
    opacity:0;
  }
  .menud .item{
    position:relative;
    display:inline-block;
    height:35px;
    padding-top:15px;
    margin-left:25px;
    margin-right:25px;
    background:transparent;
    z-index:2;
    color:rgb(201, 36, 179);
    text-decoration:none;
    font-family:Arial, sans-serif;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
  }
  .menud .item:hover .linktext:before{
    max-height:150%;
    transition-delay:0.3s;
    -webkit-transition-delay:0.3s;
    transform:translateY(0%);
    -webkit-transform:translateY(0%);
  }
  .menud .item:hover .linktext:after{
    opacity:1;
    transition-delay:0.5s;
    -webkit-transition-delay:0.5s;
    transform:translateY(0px);
    -webkit-transform:translateY(0px);
  }
  .menud .item:hover .linktext{
    color:#f58320;
    top:-10px;
    transform:scale(1.3);
    -webkit-transform:scale(1.3);
  }
   .icond{
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content:right;
    /* background-color: saddlebrown; */
    transition: 1.1s ease-in;
   }
   .icond i:hover{
    transform: scale(1.2);
   }
   #i1{
    color: rgb(24, 162, 24);
    font-size: 23px;
    padding-right: 18px;
   }
   #i2{
    color: rgb(201, 31, 116);
    font-size: 23px;
    padding-right: 18px;
   }
   #i3{
    color: rgb(222, 8, 8);
    font-size: 23px;
    padding-right: 18px;
   }
   #i4{
    color: rgb(60, 60, 212);
    font-size: 23px;
    padding-right: 18px;
   }
   
  /* .{
    background: #00afea;
    background: -o-linear-gradient(65deg, #00afea 0%, #03b1ec 0%, #2a83c6 18%, #3e6cb2 44%, #4663aa 100%);
    background: linear-gradient(25deg, #00afea 0%, #03b1ec 0%, #2a83c6 18%, #3e6cb2 44%, #4663aa 100%);
  } */
   .contact1{
    height: 731px;
    width: 100%;
    padding: 20px;
    margin-top: 50px;
    /* background-color: antiquewhite; */
   }
   .subcontact1{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: darkblue; */
   }
   .subc1{
    height: 90%;
    width: 45%;
    /* background-color: saddlebrown; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
   }
   .subc11{
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: rebeccapurple; */
   }
   .subc12{
    height: 60%;
    width: 100%;
    /* background-color: red; */
   }
   .subc12 h1{
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Lato", sans-serif;
    color: orange;
   }
   .subc12 p{
    padding-top: 20px;
    font-size: 16px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    text-align: justify;
   }
   .subc12 button{
    margin-top: 20px;
    height: 35px;
    width: 190px;
    border-radius: 20px;
    border: none;
    color: white;
    background-color:#ffa600;
   }
   .subc13{
    height: 10%;
    width: 100%;
    /* background-color: aliceblue; */
    display: flex;
    align-items: center;
   }
   .subc13 i{
    font-size: 20px;
    color: #f05c00;
    padding: 10px;
   }
   .subc2{
    height: 90%;
    width: 45%;
    /* background-color: darkcyan; */
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .subc2 img{
    height: 80%;
    width: 80%;
    object-fit: contain;
   }
   .add{
    height: 500px;
    width: 100%;
    /* background-color:slategray; */
    padding: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
   }
   .subadd{
    height: 100%;
    width: 100%;
    /* background-color: azure; */
   }
   .subadd iframe{
    height: 100%;
    width: 100%;
    /* border-radius: 20px; */
   }
   .bgdiv{
    margin-top: 100px;
    height: 731px;
    width: 100%;
    background-image: url(../img/bgdiv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;

   }
   .subbgdiv{
    height: 100%;
    width: 100%;
    background-color: #191c50bf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
   .th{
    height: 30%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
   }
   .th h1{
    margin-top: 10px;
    font-size: 46px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing:normal;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Lato", sans-serif;
    color: rgba(255, 255, 255, 0.844);
   }
   .th h2{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    /* font-family: "Lato", sans-serif; */
    color: rgba(255, 255, 255, 0.821);
   }
   .tc{
    height: 40%;
    width: 80%;
    /* margin: 50px; */
    /* background-color: #454cd1; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* border-radius: 30px; */
   }
   .tc1{
    height: 90%;
    width: 24%;
    background-color: whitesmoke;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius:25px;
    transition: 1.1ms ease-in;
   }
   .tc1:hover{
    margin-bottom: 40px;
    background: linear-gradient(45deg,#df5f4b, #d85e00, #FFB000);
   }
   .tc1:hover i{
    color: rgba(245, 245, 245, 0.812);
   }
   .tc1:hover h2{
    color:white;
   }
   .tc1:hover p{
    color:white;
   }
   .tc1:hover button{
    /* background-color: #000000; */
    color: white;
    border:1px solid rgba(202, 183, 183, 0.464);
    background: linear-gradient(45deg,#df5f4b, #d85e00, #FFB000);
   }
  .tcc1{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: saddlebrown; */
  }
  .tcc2{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tcc3{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tcc4{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tc1 i{
    font-size: 30px;
    color: rgb(63, 62, 62);
  }
  .tc h2{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    color: rgb(50, 49, 49);
    /* font-family: "Lato", sans-serif; */
  }
  .tc p{
    font-size:16px;
    font-weight: 400;
    text-transform:lowercase;
    /* font-family: "Poppins", sans-serif; */
    color: rgb(50, 49, 49);
    font-family: "Lato", sans-serif;
  }
  .tc button{
    height: 40px;
    width: 200px;
    border-radius: 20px;
    border: 1px solid rgb(50, 49, 49);
    /* background-color: white; */
    font-family: "Poppins", sans-serif;
  }
  @import url('https://fonts.googleapis.com/css?family=Montserrat:300');


.wrapperr {
  height: 620px;
  width: 460px;
  background-color: white;
  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;
  border-radius: 24px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.headerr {
  width: 100%;
  height: 32%;
  background-image: url(https://images.unsplash.com/photo-1506305269769-53a5714a93be?ixlib=rb-1.2.1&auto=format&fit=crop&w=645&q=80);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.headerr h1 {
  margin: 0;
  padding: 34px 24px 12px;
  font-weight: 300;
  font-size: 60px;
}

.headerr p {
  margin: 0;
  padding: 0 24px;
  font-size: 16px;
  width: 360px;
  opacity: 0.8;
  margin: 0 auto;
}

#contact-form {
  display: flex;
  flex-direction: column;
  margin: 8px auto;
  width: 76%;
}

#contact-form h4 {
  color: #666;
  margin: 16px 0 6px;
  font-size: 16px;
  letter-spacing: 1px;
  
}

#contact-form input,
textarea {
  border: solid 1px #cbcbcb; 
  border-radius: 6px;
  width: 92%;
  padding: 6px 12px;
  outline: none;
  margin: 4px auto;
}

#contact-form input {
  height: 28px;
}

#contact-form textarea {
  height: 62px;
}

#contact-form button {
  height: 42px;
  width: 60%;
  margin: 24px auto;
  border-radius: 6px;
  border: none;
  color:white;
  background-color:orange;
  cursor: pointer;
}
#contact-form button:hover{
    background-color:rgb(221, 160, 48);
}
.contact{
    height: 400px;
    width: 100%;
    background-image: url(../img/conn.avif);
    background-position:center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    /* padding-top: 100px; */
        /* background-color: #454cd1; */
}
.subcontact{
    height: 100%;
    width: 100%;
    background-color:rgba(47, 47, 47, 0.822);
    display: flex;
    align-items: center;
    justify-content: center;
}
.subccon{
    height: 100%;
    width: 100%;    
    /* background-color: #454cd1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subccon h1{
    /* font-family:Arial, sans-serif; */
    font-size: 38px;
    color:rgb(222, 218, 218);
    font-family: "Poppins", sans-serif;
}
.subccon p{
    /* font-size: 38px; */
    font-size: 15px;
    color: rgb(207, 205, 205);
    font-family: "Poppins", sans-serif;
}
.summa{
    height: 20px;
    width: 100%;
    background-color:#e8e8e8;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left:10px;

}
.summa p{
    height: 50%;
    width: 0.6%;
   border-radius: 100%;
   background-color: rgb(240, 59, 59);
}
#np1{
    height: 50%;
    width: 0.6%;
    border-radius: 100%;
    background-color: rgb(236, 190, 52);
    /* padding-left: 5px; */
    margin-left: 3px;
}
#np2{
    height: 50%;
    width: 0.6%;
    border-radius: 100%;
    background-color: rgb(10, 141, 28);
    margin-left: 3px;
}
/* footer code */
.footer{
  height: 500px;
  width: 100%;
  background-color: #000a30;
  /* background-color:rebeccapurple; */
  padding: 20px;
}
.subfooter{
  height: 100%;
  width: 100%;
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.fdiv{
  height: 80%;
  width:100%;
  /* background-color: rgb(114, 55, 55); */
  display: flex;
  align-items: center;
  justify-content: space-around   ;
}
.seconddiv{
  height:50px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  /* padding-left: 10px; */
  background-color:#e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.minicon{
  height: 100%;
  width: 22%;
  /* background-color: darkgoldenrod; */
}
.imgg{
  height: 30%;
  width: 100%;
  background-color:rgb(255, 255, 255);
    overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: left;
  border-radius: 10px;
}
.imgg img{
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  opacity: 0.8;
}
.imgg img:hover{
  opacity: 1;
  /* transform: scale(0.4); */
}
.cons{
  height: 40%;
  width: 100%;
  /* background-color: bisque; */
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-around;
  position: relative;
}
.cons p{
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #97a0b8;
  /* margin-top: 20px; */
  /* line-height:25px; */
  text-transform:capitalize;
  text-align: left;
}

.footer-social-icon{
  height: 40%;
  margin-top: 20px;
  width: 100%;
  /* padding-top: 30px; */
  /* background-color: red; */
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
  /* justify-content: center; */
}
.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: #4270d4;
 }
 .instagram-bg{
  background: #e11574;
 }
 .google-bg{
  background: #fb381e;
 }
 .whatsapp-bg{
   background: rgb(36, 185, 36);
 }
.con2{
  height: 30%;
  width: 100%;
  /* background-color:honeydew; */
  overflow: hidden;
  display: flex;
  align-items: center;
}
.con2 h2{
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1.2px;
  color:white;
}
.con3{
  height: 60%;
  width: 100%;
  /* background-color: white; */
  display: flex;
  flex-direction: column;
}
.con3 a{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #97a0b8;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  text-decoration: none;
}
.con3 a:hover{
  color: white;
  letter-spacing: 2px;
}
.con3 i{
  font-size: 14px;
  color:darkorange;
  padding: 10px;
}
#con3{
  height: 60%;
  width: 100%;
  /* background-color: white; */
  display: flex;
  flex-direction: column;
}
#con3 a{
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  color: rgb(46, 95, 255);
  letter-spacing: 1.5px;
  text-transform: capitalize;
  /* text-decoration: none; */
}
#con3 a:hover{
  color: rgb(255, 140, 0);
  letter-spacing: 2px;
}
#con3 i{
  font-size: 14px;
  color: orange;
  padding: 10px;
}
.subcon2{
  height: 60%;
  width: 100%;
  /* background-color: blueviolet; */
  /* line-height: 20px; */
}
.subcon3{
  height:80%;
  width: 100%;
  /* background-color: greenyellow; */
  padding-left: 10px;
  /* line-height: 60px; */
}
.cons h2{
  padding-top: 20px;
  /* margin-top: 20px; */
  /* line-height: 40px; */
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #97a0b8;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  /* color: rgb(69, 56, 56); */
}
.subcon3 h2{
padding-top: 20px;
  /* margin-top: 20px; */
  /* line-height: 40px; */
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #97a0b8;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}
.subcon4{
  height: 20%;
  width: 100%;
  /* background-color: aqua; */
}
.subcon4 i{
  font-size: 19px;
  color: orange;
  padding: 10px;
}
.copy{
    height: 100%;
    width: 30%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.copy h2{
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color:black;
}
.copy span a{
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    color:rgb(26, 26, 165)
}
.copy1{
    height: 100%;
    width: 30%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copy1 h2{
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color:black;    
}
.copy2{
    height: 100%;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* background-color: saddlebrown; */
}
.copy2 a{
    font-size: 13px;
    font-family: "Manrope", sans-serif;
    color:rgb(23, 7, 143);   
    text-decoration: none;
    letter-spacing: 1.5px;
    padding-right: 10px;
}


@media screen and (max-width:600px) {

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    width: 100vw;
    height: 100vh;
       /* margin: 0;
       padding: 0; */
       overflow-x: hidden;
      position: absolute;
   }
   body::-webkit-scrollbar{
       display: none;
   }
   .mobilenav{
    height: 100px;
    width: 100%;
    background-color:white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:fixed;
    /* position: relative; */
  top: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(128, 128, 128, 0.247);
    /* background-color:rgb(212, 212, 212); */
    padding: 10px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    
}
.mobilenavlogo{
    height: 100%;
    width: 40%;
    /* background-color: #1248c5; */
}
.mobilenavlogo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
/* hamburger menu */


#menuToggle
{
  /* display: block; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0px;
  left: 0px;
  height:70px;
  width: 70px;
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
  background: radial-gradient(circle at 10% 20%, rgb(7, 121, 222) 0%, rgb(20, 72, 140) 90%);
  /* background-color: #1248c5; */
  /* background-color: #00000092; */
  /* background-color:#f1f2f5; */
  /* background-color:rgba(41, 41, 234, 0.696); */
}

#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: 5px;
  margin: 1px;
  /* margin-bottom: 5px; */
  position: relative;
    background-color: white;
  /* color: #1248c5; */
  /* background-color: #1248c5; */
  /* 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;
  /* background-color: #1248c5; */
}

/*
 * 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
{
    overflow: hidden;
  position: absolute;
  width: 450px;
  /* margin: -100px 0 0 -50px; */
  top:83px;
  left: -367px;
  padding: 40px;
  /* padding-right: 40px; */
  border: none;
  /* padding-left:px; */
  font-family: "Manrope", sans-serif;
  /* padding-top: 125px; */
  height: 350px;

  place-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* justify-content: left; */
  /* background: #dc3e3e; */
  background: radial-gradient(circle at 10% 20%, rgb(7, 121, 222) 0%, rgb(20, 72, 140) 90%);
  /* background: rgb(76, 57, 218); */
/* 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;
  /* padding-right: 20px; */
  /* border:0.1px solid rgba(255, 255, 255, 0.375); */
  width: 400px;
  height: 40px;
  border: none;
  /* 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;
}
.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 */
}
   .nav{
    display: none;
    position:fixed;
    /* position: relative; */
  top: 0;
  z-index: 2;
  /* width: 100%; */
    height: 100px;
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.247);
    /* background-color:rgb(212, 212, 212); */
    padding: 10px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* background-color:rgb(13, 178, 255); */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset; */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
   }
   .subnav{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color:rgb(13, 178, 255); */
   }
   .logod{
    height: 100%;
    width: 30%;
    /* background-color:white; */
    overflow: hidden;
    /* display: flex; */
    /* align-items: left; */
    /* justify-content: left; */
   }
   .logod img{
    height: 100%;
    width: 50%;
    object-fit: contain;
   }
   .menud{
    height: 100%;
    width: 50%;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 11px;
   }
   .menud .linktext{
    font-size:1.3em;
    /* top:0px; */
    text-align:center;
    position:relative;
    z-index:2;
    font-weight: 600;
    /* color:#000000; */
    color: #424242;
    /* color: rgb(13, 178, 255); */
    /* background: -webkit-linear-gradient(#3c2372, #c3b538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
    /* background: #c0392b; fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #c0392b, #8e44ad); Chrome 10-25, Safari 5.1-6 */
  /* linear-gradient(to right, #c0392b, #8e44ad); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    /* color: darkgoldenrod; */
    /* color: #7b4397; */
    /* color:rgb(101, 99, 99); */
    /* color:#FFABAB; */
    text-decoration:none;
    font-family: "Poppins", sans-serif;
    /* font-family: "Lato", sans-serif; */
    font-size: 16px;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
  }
  .menud .linktext:before{
    content:'';
    position:absolute;
    top:0px;
    left:-2.5px;
    width:calc(100% + 5px);
    border-left:1.5px solid black;
    border-right:1.5px solid black;
    height:150%;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
    opacity:1;
    background:transparent;
    max-height:0%;
    transform:translateY(20px);
    -webkit-transform:translateY(20px);
  }
  .menud .linktext:after{
    display:inline-block;
    content:attr(data-text);
    position:absolute;
    top:24px;
    left:0px;
    width:100%;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
    font-size:0.5em;
    color:black;
    transform:translateY(30px);
    -webkit-transform:translateY(30px);
    opacity:0;
  }
  .menud .item{
    position:relative;
    display:inline-block;
    height:35px;
    padding-top:15px;
    margin-left:25px;
    margin-right:25px;
    background:transparent;
    z-index:2;
    color:rgb(201, 36, 179);
    text-decoration:none;
    font-family:Arial, sans-serif;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
  }
  .menud .item:hover .linktext:before{
    max-height:150%;
    transition-delay:0.3s;
    -webkit-transition-delay:0.3s;
    transform:translateY(0%);
    -webkit-transform:translateY(0%);
  }
  .menud .item:hover .linktext:after{
    opacity:1;
    transition-delay:0.5s;
    -webkit-transition-delay:0.5s;
    transform:translateY(0px);
    -webkit-transform:translateY(0px);
  }
  .menud .item:hover .linktext{
    color:#f58320;
    top:-10px;
    transform:scale(1.3);
    -webkit-transform:scale(1.3);
  }
   .nav{
    display: none;
    position:fixed;
    /* position: relative; */
  top: 0;
  z-index: 2;
  /* width: 100%; */
    height: 100px;
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.247);
    /* background-color:rgb(212, 212, 212); */
    padding: 10px;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* background-color:rgb(13, 178, 255); */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset; */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
   }
   .subnav{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color:rgb(13, 178, 255); */
   }
   .logod{
    height: 100%;
    width: 30%;
    /* background-color:white; */
    overflow: hidden;
    /* display: flex; */
    /* align-items: left; */
    /* justify-content: left; */
   }
   .logod img{
    height: 100%;
    width: 50%;
    object-fit: contain;
   }
   .menud{
    height: 100%;
    width: 50%;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 11px;
   }
   .menud .linktext{
    font-size:1.3em;
    /* top:0px; */
    text-align:center;
    position:relative;
    z-index:2;
    font-weight: 600;
    /* color:#000000; */
    color: #424242;
    /* color: rgb(13, 178, 255); */
    /* background: -webkit-linear-gradient(#3c2372, #c3b538);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
    /* background: #c0392b; fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #c0392b, #8e44ad); Chrome 10-25, Safari 5.1-6 */
  /* linear-gradient(to right, #c0392b, #8e44ad); W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    /* color: darkgoldenrod; */
    /* color: #7b4397; */
    /* color:rgb(101, 99, 99); */
    /* color:#FFABAB; */
    text-decoration:none;
    font-family: "Poppins", sans-serif;
    /* font-family: "Lato", sans-serif; */
    font-size: 16px;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
  }
  .menud .linktext:before{
    content:'';
    position:absolute;
    top:0px;
    left:-2.5px;
    width:calc(100% + 5px);
    border-left:1.5px solid black;
    border-right:1.5px solid black;
    height:150%;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
    opacity:1;
    background:transparent;
    max-height:0%;
    transform:translateY(20px);
    -webkit-transform:translateY(20px);
  }
  .menud .linktext:after{
    display:inline-block;
    content:attr(data-text);
    position:absolute;
    top:24px;
    left:0px;
    width:100%;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
    font-size:0.5em;
    color:black;
    transform:translateY(30px);
    -webkit-transform:translateY(30px);
    opacity:0;
  }
  .menud .item{
    position:relative;
    display:inline-block;
    height:35px;
    padding-top:15px;
    margin-left:25px;
    margin-right:25px;
    background:transparent;
    z-index:2;
    color:rgb(201, 36, 179);
    text-decoration:none;
    font-family:Arial, sans-serif;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
    -webkit-transition:0.3s ease-in-out;
  }
  .menud .item:hover .linktext:before{
    max-height:150%;
    transition-delay:0.3s;
    -webkit-transition-delay:0.3s;
    transform:translateY(0%);
    -webkit-transform:translateY(0%);
  }
  .menud .item:hover .linktext:after{
    opacity:1;
    transition-delay:0.5s;
    -webkit-transition-delay:0.5s;
    transform:translateY(0px);
    -webkit-transform:translateY(0px);
  }
  .menud .item:hover .linktext{
    color:#f58320;
    top:-10px;
    transform:scale(1.3);
    -webkit-transform:scale(1.3);
  }
   .icond{
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content:right;
    /* background-color: saddlebrown; */
    transition: 1.1s ease-in;
   }
   .icond i:hover{
    transform: scale(1.2);
   }
   #i1{
    color: rgb(24, 162, 24);
    font-size: 23px;
    padding-right: 18px;
   }
   #i2{
    color: rgb(201, 31, 116);
    font-size: 23px;
    padding-right: 18px;
   }
   #i3{
    color: rgb(222, 8, 8);
    font-size: 23px;
    padding-right: 18px;
   }
   #i4{
    color: rgb(60, 60, 212);
    font-size: 23px;
    padding-right: 18px;
   }
   .contact1{
    height:auto;
    width: 100%;
    padding: 20px;
    margin-top: 50px;
    /* background-color: antiquewhite; */
   }
   .subcontact1{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
      align-items: center;
    justify-content: center;
    /* background-color: darkblue; */
   }
   .subc1{
    height: 100%;
    width: 100%;
    /* background-color: saddlebrown; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
   }
   .subc11{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: rebeccapurple; */
   }
   .subc12{
    height: 100%;
    width: 100%;
    /* background-color: red; */
   }
   .subc12 h1{
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Lato", sans-serif;
    color: orange;
   }
   .subc12 p{
    padding-top: 20px;
    font-size: 16px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    text-align: justify;
   }
   .subc12 button{
    margin-top: 20px;
    height: 35px;
    width: 190px;
    border-radius: 20px;
    border: none;
    color: white;
    background-color:#ffa600;
   }
   .subc13{
    height: 10%;
    width: 100%;
    /* background-color: aliceblue; */
    display: flex;
    align-items: center;
   }
   .subc13 i{
    font-size: 20px;
    color: #f05c00;
    padding: 10px;
   }
   .subc2{
    margin-top: 70px;
    height: 100%;
    width: 100%;
    /* background-color: darkcyan; */
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .subc2 img{
    height: 80%;
    width: 80%;
    object-fit: contain;
   }
   .add{
    height: 500px;
    width: 100%;
    /* background-color:slategray; */
    padding: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
   }
   .subadd{
    height: 100%;
    width: 100%;
    /* background-color: azure; */
   }
   .subadd iframe{
    height: 100%;
    width: 100%;
    /* border-radius: 20px; */
   }
   .bgdiv{
    margin-top: 100px;
    height:auto;
    width: 100%;
    background-image: url(../img/bgdiv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;

   }
   .subbgdiv{
    height: 100%;
    width: 100%;
    background-color: #191c50bf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}
   .th{
    height: 30%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
   }
   .th h1{
    margin-top: 30px;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing:normal;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Lato", sans-serif;
    color: rgba(255, 255, 255, 0.844);
   }
   .th h2{
    font-size:18px;
    font-weight: 400;
    margin-top: 50px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    /* font-family: "Lato", sans-serif; */
    color: rgba(255, 255, 255, 0.821);
   }
   .tc{
    height: 40%;
    width: 100%;
    /* margin: 50px; */
    /* background-color: #454cd1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* border-radius: 30px; */
   }
   .tc1{
    margin-top:10px;
    margin-bottom: 10px;
    height: 240px;
    width: 70%;
    background-color: whitesmoke;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius:25px;
    transition: 1.1ms ease-in;
   }
   .tc1:hover{
    margin-bottom: 40px;
    background: linear-gradient(45deg,#df5f4b, #d85e00, #FFB000);
   }
   .tc1:hover i{
    color: rgba(245, 245, 245, 0.812);
   }
   .tc1:hover h2{
    color:white;
   }
   .tc1:hover p{
    color:white;
   }
   .tc1:hover button{
    /* background-color: #000000; */
    color: white;
    border:1px solid rgba(202, 183, 183, 0.464);
    background: linear-gradient(45deg,#df5f4b, #d85e00, #FFB000);
   }
  .tcc1{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: saddlebrown; */
  }
  .tcc2{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tcc3{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tcc4{
    height: 25%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .tc1 i{
    font-size: 30px;
    color: rgb(63, 62, 62);
  }
  .tc h2{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    color: rgb(50, 49, 49);
    /* font-family: "Lato", sans-serif; */
  }
  .tc p{
    font-size:16px;
    font-weight: 400;
    text-transform:lowercase;
    /* font-family: "Poppins", sans-serif; */
    color: rgb(50, 49, 49);
    font-family: "Lato", sans-serif;
  }
  .tc button{
    height: 40px;
    width: 200px;
    border-radius: 20px;
    border: 1px solid rgb(50, 49, 49);
    /* background-color: white; */
    font-family: "Poppins", sans-serif;
  }
  @import url('https://fonts.googleapis.com/css?family=Montserrat:300');


.wrapperr {
  height: 620px;
  width: 460px;
  background-color: white;
  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;
  border-radius: 24px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.headerr {
  width: 100%;
  height: 32%;
  background-image: url(https://images.unsplash.com/photo-1506305269769-53a5714a93be?ixlib=rb-1.2.1&auto=format&fit=crop&w=645&q=80);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.headerr h1 {
  margin: 0;
  padding: 34px 24px 12px;
  font-weight: 300;
  font-size: 32px;
}

.headerr p {
  margin: 0;
  padding: 0 24px;
  font-size: 16px;
  width: 360px;
  opacity: 0.8;
  margin: 0 auto;
}

#contact-form {
  display: flex;
  flex-direction: column;
  margin: 8px auto;
  width: 76%;
}

#contact-form h4 {
  color: #666;
  margin: 16px 0 6px;
  font-size: 16px;
  letter-spacing: 1px;
  
}

#contact-form input,
textarea {
  border: solid 1px #cbcbcb; 
  border-radius: 6px;
  width: 92%;
  padding: 6px 12px;
  outline: none;
  margin: 4px auto;
}

#contact-form input {
  height: 28px;
}

#contact-form textarea {
  height: 62px;
}

#contact-form button {
  height: 42px;
  width: 60%;
  margin: 24px auto;
  border-radius: 6px;
  border: none;
  color:white;
  background-color:orange;
  cursor: pointer;
}
#contact-form button:hover{
    background-color:rgb(221, 160, 48);
}
.contact{
    height: 400px;
    width: 100%;
    background-image: url(../img/conn.avif);
    background-position:center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    /* padding-top: 100px; */
        /* background-color: #454cd1; */
}
.subcontact{
    height: 100%;
    width: 100%;
    background-color:rgba(47, 47, 47, 0.822);
    display: flex;
    align-items: center;
    justify-content: center;
}
.subccon{
    height: 100%;
    width: 100%;    
    /* background-color: #454cd1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subccon h1{
  padding: 20px;
    /* font-family:Arial, sans-serif; */
    font-size: 32px;
    text-align: center;
    color:rgb(222, 218, 218);
    font-family: "Poppins", sans-serif;
}
.subccon p{
    /* font-size: 38px; */
    font-size: 15px;
    text-align: center;
    color: rgb(207, 205, 205);
    font-family: "Poppins", sans-serif;
} 

   





















































































.summa{
  height: 15px;
  width: 100%;
  background-color:white;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left:10px;

}
.summa p{
  height: 50%;
  width: 1.7%;
 border-radius: 100%;
 background-color: rgb(240, 59, 59);
}
#np1{
  height: 50%;
  width: 1.7%;
  border-radius: 100%;
  background-color: rgb(236, 190, 52);
  /* padding-left: 5px; */
  margin-left: 3px;
}
#np2{
  height: 50%;
  width: 1.7%;
  border-radius: 100%;
  background-color: rgb(10, 141, 28);
  margin-left: 3px;
}
/* footer code */
.footer{
  overflow: hidden  ;
  height: auto;
  width: 100%;
  background-color: #000a30;
  /* background-color:rebeccapurple; */
  padding: 20px;
}
.subfooter{
  height: 100%;
  width: 100%;
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.fdiv{
  height: 80%;
  width:100%;
  /* background-color: rgb(114, 55, 55); */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around   ;
}
.seconddiv{
  height:50px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  /* padding-left: 10px; */
  background-color:#e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.minicon{
  height: 100%;
  width: 100%;
  margin-bottom:30px;
  /* background-color: darkgoldenrod; */
}
.imgg{
  height: 30%;
  width: 100%;
  background-color:rgb(255, 255, 255);
    overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: left;
  border-radius: 10px;
}
.imgg img{
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  opacity: 0.8;
}
.imgg img:hover{
  opacity: 1;
  /* transform: scale(0.4); */
}
.cons{
  height: 100%;
  width: 100%;
  /* background-color: bisque; */
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-around;
  position: relative;
}
.cons p{
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #97a0b8;
  /* margin-top: 20px; */
  /* line-height:25px; */
  text-transform:capitalize;
  text-align: left;
}

.footer-social-icon{
  height: 40%;
  width: 100%;
  /* padding-top: 30px; */
  /* background-color: red; */
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
  /* justify-content: center; */
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  margin-top: 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: #4270d4;
 }
 .instagram-bg{
  background: #e11574;
 }
 .google-bg{
  background: #fb381e;
 }
 .whatsapp-bg{
   background: rgb(36, 185, 36);
 }
.con2{
  height: 30%;
  width: 100%;
  /* background-color:honeydew; */
  overflow: hidden;
  display: flex;
  align-items: center;
}
.con2 h2{
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1.2px;
  color:white;
  margin-bottom: 20px;
}
.con3{
  height: 60%;
  width: 100%;
  /* background-color: white; */
  display: flex;
  flex-direction: column;
}
.con3 a{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #97a0b8;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  text-decoration: none;
}
.con3 a:hover{
  color: white;
  letter-spacing: 2px;
}
.con3 i{
  font-size: 14px;
  color:darkorange;
  padding: 10px;
}
#con3{
  height: 60%;
  width: 100%;
  /* background-color: white; */
  display: flex;
  flex-direction: column;
}
#con3 a{
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  color: rgb(46, 95, 255);
  letter-spacing: 1.5px;
  text-transform: capitalize;
  /* text-decoration: none; */
}
#con3 a:hover{
  color: rgb(255, 140, 0);
  letter-spacing: 2px;
}
#con3 i{
  font-size: 14px;
  color: orange;
  padding: 10px;
}
.subcon2{
  height: 60%;
  width: 100%;
  /* background-color: blueviolet; */
  /* line-height: 20px; */
}
.subcon3{
  height:80%;
  width: 100%;
  /* background-color: greenyellow; */
  padding-left: 10px;
  /* line-height: 60px; */
}
.subcon3 h2{
  padding-top: 20px;
  /* margin-top: 20px; */
  /* line-height: 40px; */
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #97a0b8;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  /* color: rgb(69, 56, 56); */
}
.subcon4{
  height: 20%;
  width: 100%;
  /* background-color: aqua; */
}
.subcon4 i{
  font-size: 19px;
  color: orange;
  padding: 10px;
}
.copy{
  height: 100%;
  width: 100%;
  /* background-color: saddlebrown; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy h2{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color:black;
}
.copy span a{
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  color:rgb(26, 26, 165)
}
.copy1{
  display: none;
  height: 100%;
  width: 0%;
  /* background-color: saddlebrown; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copy1 h2{
  display: none;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color:black;    
}
.copy2{
  height: 100%;
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* background-color: saddlebrown; */
}
.copy2 a{
  display: none;
  font-size: 13px;
  font-family: "Manrope", sans-serif;
  color:rgb(23, 7, 143);   
  text-decoration: none;
  letter-spacing: 1.5px;
  padding-right: 10px;
}





}