* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo {
  width: 100%;
  min-width: 180px;
  height: 100%;
}
.logoImg {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

a {
  text-decoration: none;
}
.menuItem.active , .mobileMenu .active{
  background-color: #ff3855;
  color: white !important;
  
}
.menuItem {
  color: gray !important;
  margin: 5px 15px;
  border: 1px solid;
  padding: 5px 10px;
  border-radius: 7px;
  transition: all 1s;
}
.mobileMenu{
  width: 5vw;
}
.mobileMenuItem{
  width: 100%;
  height: 40px;
  border: 1px solid;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 10px;
  color: rgb(64, 124, 124) !important;
}
.burgerMenu{
  cursor: pointer;
}
.toggleBurgerMenu{
  display: flex;
}


.learnMore {
  width: 35%;
  color: white;
  padding: 5px 10px;
  margin: 0;
  margin-top: 40px;
  border-radius: 5px;
  text-align: center;
  font-size: calc(14px + 0.3vw);
  transition: 1s;
  background-color: #ff3855;
}
.learnMore:hover {
  background-color: white;
  color: #ff3855;
  border: 1px solid;
}
.about {
  background: url("../images/homebg.jpg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 700px;
}
.t .textp{
  font-size: calc(8px + 0.5vw);
  line-height: 1.6;
  color: rgb(64, 61, 61);
  font-weight: 450;
}
@media (max-width:995px) {
  .about {
    height: 800px;
  }
}
.about p.h {
  font-size: calc(12px + 2vw);
  font-weight: 400;
  z-index: 1;
  text-align: center;
  padding: 10px;
  color: black;
}

.about img {
  height: 150px;
  width: 95%;
}
.about p {
  color: black;
  font-size: calc(10px + 0.3vw);
}
footer a {
  color: white !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: calc(7px + 0.3vw);

}

footer a i {
  color: rgb(235, 74, 10);
}

footer{
    height: auto;
}
footer .p1 {
  font-size: calc(12px + 0.5vw);

  color: gold;
  letter-spacing: 2px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.footerLogo {
  min-width: 230px;
  max-width: 230px;
}

.footerLogo img{
 
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}
@keyframes growWhatsapp{
  0%{width: 80px;}
  50%{
   width: 90px;
  }
  100%{
    width: 80px;
  }
}
.whatsapp{
   animation: 1s growWhatsapp infinite linear;
   
}
