/********** Template CSS **********/

@font-face { font-family: 'goodtimes'; src: url(fonts/goodtimes/good_times_rg-webfont.woff) format("woff"), url(fonts/goodtimes/Good Times Rg.otf) format("truetype"); font-weight: 800; }

@font-face { font-family: 'sanchez'; src: url(fonts/sanchez/latinotype_-_sanchez-regular-webfont.woff) format("woff"), url(fonts/sanchez/Latinotype - Sanchez-Regular.otf) format("truetype"); font-weight: 800; }

@font-face { font-family: 'autoradiographic'; src: url(fonts/autoradiographic/autoradiographic_rg-webfont.woff) format("woff"), url(fonts/autoradiographic/autoradiographic rg.otf) format("truetype"); font-weight: 800; }

@font-face { font-family: 'overpass'; src: url(fonts/overpass/overpass_regular-webfont.woff) format("woff"), url(fonts/overpass/overpass_regular.ttf) format("truetype"); font-weight: 400; font-style: normal; }

@font-face { font-family: 'laila'; src: url(fonts/laila/laila-semibold-webfont.woff) format("woff"), url(fonts/laila/Laila-Semibold.ttf) format("truetype"); font-weight: 800; font-style: normal; }

@font-face { font-family: 'montserrat'; src: url(fonts/montserrat/montserrat-bold-webfont.woff) format("woff"), url(fonts/montserrat/Montserrat-Bold.ttf) format("truetype"); font-weight: 800; font-style: normal; }

@font-face { font-family: 'Cooper'; src: url(fonts/cooper/cooperhewitt-bold-webfont.woff) format("woff"), url(fonts/cooper/CooperHewitt-Light.otf) format("truetype"); font-weight: 500; font-style: normal; }


:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


.all_title_heading{
  font-weight: bold !important;
  font-size:35px;
	color:#853500;
	font-family: 'Cooper';
	/*text-shadow: 2px 2px #f80000;*/
	letter-spacing: 0.3px;
	line-height: 50px;
}


/*** Button ***/
.btn {
    font-family: 'montserrat';
    font-weight: 500;
    transition: .5s;
}
.btnlogin {
    font-family: 'montserrat';
    font-weight: 500;
    transition: .5s;
		font-size:18px;
		background-color:#ff0000;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 #9d5000;
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 30px;
    height: 30px;
		border-radius: 5px;
}

.btn-sm-square {
    width: 25px;
    height: 25px;
}

.btn-lg-square {
    width: 38px;
    height: 38px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/

.navbar-dark .navbar-nav .nav-link {
   font-family: 'sanchez';
    position: relative;
    margin-left: 11px;
   /* padding: 35px 0;*/
    color: #055500;
    font-size: 17px;
    font-weight: 800 !important;
    outline: none;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 10px;
    color: #055500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ff3700;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: #ff0000 !important;
    border-color: #ff0000 !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 7px 0;
        color: #000000;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
				background-color: #ffffff;
        border-bottom: 1px solid #000;
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #ff3700;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {

.discription{
    font-size: 17px !important;
}

.points{
 font-size:15px !important;
 line-height: 21px;
 font-weight: 500 !important;
}
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
		
		.navbar{
		  padding: 8px 25px 8px 15px;
		}
		.welcome{
		font-size: 32px !important;
		}
		.light{
		font-size: 18px !important;
		text-align: justify;
		}
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ff4500;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 201px;
    padding: 0 28px;
    transition: .5s;
		border: solid 1px #00870c;
}
.vsservice-item {
    position: relative;
    padding: 0 15px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b210;
    border-radius: 2px;
		    border: 1px solid #e5d400;
   /* transform: rotate(-45deg);*/
}

.service-item .service-icon i {
    transform: rotate(45deg);
		font-size: 21px;
}

.service-item a.btn {
    position: absolute;
    width: 50px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


.bg{
 background-color:#eeffef;
}

.footer_links{
 font-size:15px;
 color:#044500;
 line-height: 25px;
 font-family: 'montserrat';
 letter-spacing: 0.1px;
}

.footer_heading{
 font-size:22px;
 margin-bottom: 0 !important;
 color:#044500;
 font-family: 'montserrat';
 font-weight: 600 !important;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: 40px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background-color: #fff1b7;
    /*background: linear-gradient(rgb(0 28 197), rgb(0 41 157 / 73%)), url(../img/carousel-1.jpg) center center no-repeat;*/
    background-size: cover;
}

.bg-contactus {
   background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 5%)), url(../img/contact_banner.jpg) center center no-repeat;
   background-size: cover;
	 padding-top: 40px;
	 padding-bottom: 40px;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: 0px;
    }
}

.res{
   padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.icons_bg1{
width: 60px;
height: 60px;
background-color:#FF0000;
}

.icons_bg2{
width: 60px;
height: 60px;
background-color:#7421b1;
}

.icons_bg3{
width: 60px;
height: 60px;
background-color:#016fc4;
}

.icons_bg4{
width: 60px;
height: 60px;
background-color:#00b500;
}

.icons_works{
font-size:20px;
color:#ffffff;
}
.header{
      background-color: #16be33 !important;
}
.designby{
    margin-bottom: 10px;
    padding: 18px;
    height: 50px;
		font-size:15px;
		font-family: 'overpass';
}

.wlc_title{
 color: #066b00;
 font-weight: bolder;
 font-size: 35px;
 font-family: 'autoradiographic';
 letter-spacing: 0.3px;
 margin-bottom: 3px;
}

.welcome{
color: #066b00;
font-weight: bolder;
font-size: 40px;
font-family: 'goodtimes';
letter-spacing: 0.5px;
}

.light{
 color: #000;
 font-weight: 500px;
 font-size: 19px;
 font-family: 'autoradiographic';
 line-height: 25px;
 margin-bottom: 10px;
}

.btnall{
    padding: 8px 15px 8px 15px;
}
.footerlogo{
  width: 55%;
    height: auto !important;
    animation: ani 5s linear;
    margin-top: 60px;
}
.toppx{
padding-right:4rem !important;
padding-left:4rem !important
}

.products{
     padding: 15px !important;
		 text-align:center;
}

.productdetails{
    padding: 20px !important;
    text-align: justify;
		font-size:16px;
		color: #000000;
		line-height:25px;
		font-family: "Rubik",sans-serif;
	background-color: #EEF9FF !important;
}
.iconsize{
 font-size: 15px;
}

.wplogo{
  width: 160px;
  height:auto;
}

.bgcontact {
    width: 100% !important;
    height: auto;}
		
.login {
  background-color: #ff3700;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: 'sanchez';
  font-size: 17px;
  font-weight: 600;
  outline: 0;
  padding: 8px 18px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.login:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.login:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .login {
    padding: 8px 20px;
		margin-left: 20px;
  }
	
	.points{
 font-size:15px !important;
 line-height: 24px;
 font-weight: 500 !important;
}
}

.discription{
 font-size:20px;
 font-weight: 500 !important;
 font-family: 'overpass';
 line-height: 25px;
 color: #212121;
 text-align: center;
}

.points{
 font-size:17px;
 line-height: 24px;
 font-weight: 500 !important;
}

.why_c_title{
 font-size:20px;
 font-weight: 500 !important;
 font-family: 'overpass';
 line-height: 28px;
 color: #045a00;
 margin-bottom:1px !important;
}

.headings_items{
 font-family: 'laila'; 
 color: #ff0000 !important;
 font-weight: 600 !important;
 font-size:30px;
 line-height: 50px;
}

.vsms_title{
 font-family: 'laila'; 
 color: #ff0000 !important;
 font-weight: 600 !important;
 font-size:25px;
 line-height: 30px;
 margin-bottom: 5px;
}

.certificate_name{
 color: #ff0000 !important;
 font-size:21px;
 line-height: 26px;
 font-weight: 500 !important;
}

.footer_links{
     font-size: 14px;
}

.tagline{
    font-family: 'laila';
    color: #8b4900 !important;
    font-weight: 600 !important;
    font-size: 18px;
    line-height: 26px;
}

.rounded_why{
    border-radius: 45px 0px 45px 0px !important;
}

.rounded_pic{
    border-radius: 25px 25px 0px 0px !important;
		}
	
.tracking-in-expand {
	-webkit-animation: tracking-in-expand 0.7000000000000001s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 0.7000000000000001s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}


@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
	
	
	
 .hero {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
    }

    /* VIDEO */
    .bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* OVERLAY */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(55 55 55 / 11%);
    }

    /* CONTENT */
    .content {
      position: absolute;
      top: 50%;
      left: 35%;
      transform: translateY(-50%);
      color: white;
      max-width: 90%;
    }

    .content h1 {
      font-size: 55px;
      line-height: 90px;
      font-weight: bold;
			text-shadow: 3px 3px 0 #ffffff, 5px 8px 0 rgba(0, 0, 0, 0.15);
    }

    .orange {
      color: #ff5100;
    }

    .green {
      color: #1fb500;
    }

    /* TYPING CURSOR */
    .cursor {
      display: inline-block;
      width: 3px;
      background: white;
      margin-left: 5px;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }
		

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .content h1 {
        font-size: 40px;
				line-height: 80px;
      }
			
			.service-item{
			    padding: 0 0px;
			}
			
			.hero{
			    height: 400px;
			}
			
    }

    @media (max-width: 768px) {
      .hero {
        height: 350px;
      }

      .content {
        left: 25%;
      }

      .content h1 {
        font-size: 45px;
				line-height: 80px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        height: 280px;
      }

      .content h1 {
        font-size: 28px;
				 line-height: 51px;
      }
			  .content {
        left: 12%;
      }
    }
		
/*animation menu bar*/
.scale-in-hor-center {
	-webkit-animation: scale-in-hor-center 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-hor-center 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}
/*animation menu bar end*/


/*animation logo*/

.swing-in-top-fwd {
	-webkit-animation: swing-in-top-fwd 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: swing-in-top-fwd 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}

/*animation logo end*/

/*animation login button*/
.wobble-hor-bottom {
	-webkit-animation: wobble-hor-bottom 0.8s both;
	        animation: wobble-hor-bottom 0.8s both;
}


@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}


/*animation login button end*/


/*animation pics*/
.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}


@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/*animation pics ends*/

.bounce-in-top {
	-webkit-animation: bounce-in-top 1.1s both;
	        animation: bounce-in-top 1.1s both;
}


@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}


/*gallery images*/

 .gallery {
      overflow: hidden;
      width: 100%;
      padding: 20px 0;
      position: relative;
    }

    .gallery-track {
      display: flex;
      width: calc(250px * 12);
      animation: scroll 20s linear infinite;
    }

    .gallery-track img {
      width: 250px;
      height: 220px;
      object-fit: cover;
      margin: 0 15px;
      border: 1px solid #b6b6b6;
      transition: transform 0.3s ease;
    }

    .gallery-track img:hover {
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-250px * 6));
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gallery-track img {
        width: 160px;
        height: 100px;
        margin: 0 10px;
      }

      .gallery-track {
        width: calc(180px * 12);
      }
    }

    @media (max-width: 480px) {
      .gallery-track img {
        width: 120px;
        height: 80px;
      }
    }

/*gallery images end*/