/* font-family: 'Great Vibes', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif; */
/* @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,600&family=Roboto:wght@400;500;700&display=swap'); */

*{
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* topbar section  start*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
 
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  padding-bottom:5px ;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 10px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #f1c93b;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color:#d7e8fe;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.header .logo p {
  font-size: 40px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #1a5d1a;
  font-family:  Arial, Helvetica, sans-serif;
 
}

@media only screen and (min-width: 200px) and (max-width: 400px){
  .header .logo p{font-size: 18px;}
  

  
}
@media only screen and (min-width: 400px) and (max-width: 575px){
  .header .logo p{font-size: 20px;}
  
}

@media only screen and (min-width: 575px) and (max-width: 1020px){
  .header .logo p{font-size: 35px;}
}




.header .logo img h1 a{
  text-decoration: none;
}


.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/* topbar section end */





/* navbar css start */

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: #1a5d1a;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover a {
    color: #f1c93b;
    text-decoration: underline;
    text-decoration-color: white;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0 10px 0;
    margin: 0;
    background: rgba(0, 131, 116, 0.9);
    overflow: auto;
    transition: 0.3s;
    z-index: 9998;
    height: 180px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}

/* navbar css ends */




/* about section css start */

.about {
  background: #ffff;
  padding-bottom: 20px;
 
  background-position: center;
  background-size: cover;
}

.about h1 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding-top: 30px;
  color: black;

}

.about p {
  text-align: justify;
}

/* about section css end */

/* gilimpse css start */
.glimpse h1 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: black;
}
.glimpse p{
  font-size: 15px;
}



.glimpse .card-title,
.card-text {
  text-align: center;
}

.glimpse {
  background-color: #f8f8f8;
  margin-top: -16px;
}

.glimpse .card {
  background-color:#00796b;
  padding: 10px 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.30);
}

.card-title,
.card-text {
  color: white;
}



/* gilimps css end here */
/* profile css start here */
/* .profile {
  background-image: linear-gradient(rgba(30, 30, 32, 0.85), rgba(30, 30, 32, 0.85)), url(/image/profile-1.jpg);
  background-position: center;
  background-size: cover;
  padding-bottom: 20px;
} */
.profile{
  padding-bottom: 50px;
}
.profile h1 {
  text-align: center;
  color: black;
  padding-top: 30px;
}

.profile .log_1 {
  display: flex;
}

.log_1 h3 {
  margin-top: 17px;
  margin-left: 20px;
  color: black;
}

.profil_pic ul {
  display: flex;
  justify-content: space-around;
}

.profil_pic ul li {
  list-style: none;
}

.profil_pic .card {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
  margin: 0px 22px;
}

.profile p {
  color: black;


  text-align: center;
}

/* profile css ends here */
/* product css start */
.products h4{
  padding: 10px 0;
}
  .product_desc p{
    text-align: justify;
    font-size: 16px;
    margin-top: -10px;
  }


/* product css ennds */


/* client css start here */
.client_details  marquee ul li{
  list-style: none;
  font-size: 16px;
  color: black;
}
.client_details h1{
  text-align: center;
  padding: 10px 0;
}

/* why css start  */
.why ul li {
  padding: 15px 0;
  font-size: 22px;

}

.desc ul {
  list-style: none;
  display: flex;
}

.desc ul li {
  padding: 0 20px;
}

.desc .card .card-body h5 p {
  color: black;
}

/* why css end */

/* contact */
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}


.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/* service section */
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: #ffff;
  position: relative;
  background: rgba((255, 255, 255), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba((255, 255, 255), 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #0ea2bd;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid #ffff;
}

.services .details h3 {
  color: #1a1f24;
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: #0ea2bd;
}

.services .service-item:hover .details .icon {
  background: #ffff;
  border: 2px solid #0ea2bd;
}

.services .service-item:hover .details .icon i {
  color: #0ea2bd;
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}



#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/* <.......................about  html start here................................> */

.about1 h2 {
position: absolute;
 top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}

.breadcrumb {
  position:absolute ;
 top: 60%;
left: 50%;
transform: translate(-50%, -50%);
}


@media only screen and (min-width: 200px) and (max-width: 450px){
 
.breadcrumb {
  position:absolute ;
 top: 70%;
left: 50%;
transform: translate(-50%, -50%);
}
}

/* hamburger menu  start here*/
 .hamburger{
 display:none ;
  cursor: pointer;
}

.bar{
  display:block;
  width:25px;
  height:3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: black;
}


@media(max-width:700px){
  .hamburger{
    display: block;
  }
  .hamburger .active .bar:nth-child(2){
    opacity: 0;
  }

  .hamburger .active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger .active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu{
    position: fixed;
    left: -100%;
    top:70px;
    gap:0;
    flex-direction: column;
    background-color: #1a1f24;
    width: 100%;
    text-align: center;
    transition: 0.3s ;

  }
  .nav-item{
    margin: 13px 0;

  }
  .nav-menu .active{
    left: 0;
  }
  .hamburger{
    margin-left: 25px;
  }
  .topbar .logo img {
    height: 50px;
    padding-top: 12px;
    margin-top: 15px;
  
  
  }
  
  .logo p{
         font-size: 20px;
         margin-top: 15px;
  }
   .contact_1 ul li i{
    margin-left: -5px;
    margin-top: 12px;
   }
   
   .contact_1 ul li i{
    margin-top: 10px;
   }
}





@media only screen and (min-width:400px) and (max-width: 575px){
  .hamburger{
    display: block;
  }
  .hamburger .active .bar:nth-child(2){
    opacity: 0;
  }

  .hamburger .active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger .active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu{
    position: fixed;
    left: -100%;
    top:70px;
    gap:0;
    flex-direction: column;
    background-color: #1a1f24;
    width: 100%;
    text-align: center;
    transition: 0.3s ;

  }
  .nav-item{
    margin: 13px 0;

  }
  .nav-menu .active{
    left: 0;
  }
  .hamburger{
    margin-left: 25px;
  }
  .topbar .logo img {
    height: 50px;
    padding-top: 12px;
    margin-top: 20px;
  
  
  }
  
  .logo p {
    font-size: 10px;
    margin-top: 20px;
    margin-left: 20px;
}
   
   
.fa-envelope:before{
        margin-left: -20px;
   }
   .contact_1 ul li {
    font-size: 15px;
   }
   .fa-envelope{
    margin-bottom: -10px;
   }
}


@media only screen and (min-width:700px) and (max-width: 1140px){
  
  
  
  .topbar .logo img {
    height: 50px;
    padding-top: 12px;
    margin-top: 20px;
    margin-left: 40px;
  
  
  }
  
  .logo p {
    font-size: 15px;
    margin-top: 20px;
    margin-left: 20px;
}
   
   
.fa-envelope:before{
        margin-left: -20px;
   }
   .contact_1 ul li {
    font-size: 15px;
   }
   .fa-envelope{
    margin-bottom: -10px;
   }
}



/* swiper css start here */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: auto;
  height: auto;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

/* swipper css end here */
/* product button css start here */
/* CSS */
.button-88 {

  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: #ad5389;
  background: linear-gradient(0deg, rgb(0,121,107.1) 0%, rgb(0,121,107,0.5) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 20em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-88:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.button-88:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}
/* product css button end here */


.part p{
  text-align: justify;
  padding: 10px 0;
  font-weight: 700;
}
.part img{
  border: 3px solid #00796b;
  
}





/* animation css start here */





.fadeInLeft{
  opacity: 0;

  animation: slideLeft 0.5s ease forwards;
  animation-delay: 1s;
  
}
@keyframes slideLeft{
  0%{
      transform: translateX(-100px);
      opacity:0;
  }

  100%{
      transform: translateX(0px);
      opacity:1;
  }
}
.fadeInRight{
  opacity: 0;
  animation: slideRight 0.5s ease forwards;
  animation-delay: 1s;

}
@keyframes slideRight{
  0%{
      transform: translateX(100px);
      opacity:0;
  }

  100%{
      transform: translateX(0px);
      opacity:1;
  }
}
.slideBottom{
  opacity: 0;
  animation: slideBottom 1s ease forwards;
  animation-delay: 1s;
}
@keyframes slideBottom{
  0%{
      transform: translateY(100px);
      opacity:0;
  }

  100%{
      transform: translateY(0px);
      opacity:1;
  }
}


.slideUp{
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: 1s;
}
@keyframes slideUp {
  0%
   {
    transform: translateY(100%);
    opacity: 0;
  }
   
  
  100% {
    transform: translateY(0);
    opacity: 1;
  
  }
}

/* animation css end here */




.zoomIn
{
   
        
        animation: zoom-in-zoom-out 2s ease infinite;
      }
      
      @keyframes zoom-in-zoom-out {
        0% {
          transform: scale(1, 1);
        }
        50% {
          transform: scale(1.1, 1.1);
        }
        100% {
          transform: scale(1, 1);
        }
      }
      
      
      /* BOTTOM  UNDERLINE CSS START */

 
      .section-header h1:after {
        content: "";
        position: absolute;
        display: block;
        width: 100px;
        height: 3px;
        background: #00796b;
        top: 100%;
        left: 50%;
      
        transform: translate(-50%, -50%);
      
       
    } 

    .section-header h1 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative;
    }


 