/********** CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: #C29A4A;
    border: 10px solid #C29A4A;
}

#contact {
    background-image: url("../img/carousel-2-2.jpg");
  background-size: cover;
  background-position: center center;
    /*background: rgba(15, 66, 41, .6) !important;*/
}
.facts, .quote {
    background-image: url("../img/carousel-1-1.jpg");
  background-size: cover;
  background-position: center center;
    /*background: rgba(15, 66, 41, .6) !important;*/
}

.banner-offer-cms {
    background: #E8F5E9 !important;
    margin: 60px 0 0;
    padding: 44px 365px;
    position: relative;
}
.banner-offer-cms .banner-offer-inner {
    /*padding: 47px 44px 47px 46px;*/
    display: inline-block;
    vertical-align: top;
    width: 100%;
    /*position: relative;*/
    z-index: 1;
}
@keyframes border-dance{
    0% {
        background-position: 0 0,300px 181px,0 150px,1148px 0;
    }
    100% {
        background-position: 300px 0,0 181px,0 0,1148px 150px;
    }
}

.banner-offer-cms .banner-offer-inner::after{
    /*content: "";*/
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    /*border: 2px dashed #0F4229;*/
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 5px;
}
/*.banner-offer-cms:hover .banner-offer-inner::after{
    border: none;
    background: linear-gradient(90deg,#0F4229 50%,transparent 50%),linear-gradient(90deg,#0F4229 50%,transparent 50%),linear-gradient(0deg,#0F4229 50%,transparent 50%),linear-gradient(0deg,#0F4229 50%,transparent 50%);
    background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
    background-size: 13px 2px,13px 2px,2px 13px,2px 13px;
    background-position: 0 0,200px 100px,0 100px,200px 0;
    animation: border-dance 4s infinite linear;
}*/
.banner-offer-inner .offer-image {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -73px;
    text-align: center;
}
.banner-offer-inner .text1 {
    display: block;
    width: 100%;
    float: left;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: --dark;
    line-height: 30px;
    letter-spacing: 0.9px;
    position: relative;
    z-index: 1;
}
.banner-offer-inner .text1 span {
    color: #74ab26;
    width:100%;
}
.banner-offer-inner .offer-description .text2 {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: --dark;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin: -23px 0 2px;
}
.banner-offer-inner .text3 {
    display: block;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    color: #74ab26;
    line-height: normal;
    letter-spacing: 1.04px;
    margin: 0 0 14px;
    transition: all 0.5s ease;
}
.banner-offer-inner .text3:hover{
    color: #ffd200;
}
.banner-offer-inner .offer-description {
    width: auto;
    /* float: right; */
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 43px 0 0;
    display: flex;
}




.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: 0px;
        z-index: 1;
    }
 
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}
.navbar-brand img{
    width:118px;
    height: auto;
  position: absolute;
  top: -3%;
}

/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
width:100%;

}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
     display: none;
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
     display: none;
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer{
     background: url(../img/footer-2.png) top center no-repeat; 
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
   
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #C29A4A;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 78vh;
}

/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 72%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}

#about{
    margin:60px 0 0 0;
}

/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 6%;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #FFFFFF;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #FFFFFF;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #FFFFFF;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }


}

/*@media screen and (max-width: 375px) and (min-width: 428px) {
.hero .hero-waves {
    bottom: 33% !important;
}
}*/
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.ts{
    display: none !important;
}
.carousel-inner {
    height: auto !important;
}
.display-1 {
    font-size: calc(1.225rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
}
.hero .hero-waves {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 52% !important;
    right: 0;
    z-index: 3;
    overflow:visible;
}
.about-img::before {
    width: 100px !important;
    height: 181px !important;
}
.banner-offer-cms {
    background: #E8F5E9 !important;
    margin: 0px 0 0 !important;
    padding: 43px 0px !important;
    position: relative;
}
.banner-offer-inner .offer-image img {
   width: 100% !important;
}
.banner-offer-inner .text1 {
   width: 100% !important;
    text-align:center;
    margin: 0px 0px 0px 0px;
    }
    .banner-offer-inner .text1 span {
    width: auto;
}
.banner-offer-inner .offer-description .text2 {
    text-align: center;
    width: 100%;
}
.banner-offer-inner .text1-1 {
   width: auto !important;
    text-align: left;
    margin: 56px 0px 0px -5px;
    }
    .banner-offer-inner .text1-1 span {
    width: 40%;
}
.text2 {
    text-align: center;
    margin: 20px auto;
    display: block;
    /* top: 20%; */
    /* position: relative; */
}
    .banner-offer-inner .offer-description {
    width: auto !important;
    /*position: absolute !important;*/
    top: 100% !important;
    left: 0 !important;
    right:0 !important;
    bottom: 0 !important;
    margin: 0 0!important;
    
}

.banner-offer-inner .text3 {
    text-align: center;
    display: block;
    width: 100%;
}
.banner-offer-cms .banner-offer-inner {
    padding: 128px 44px 0px 46px !important;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    z-index: 1;
}
.banner-offer-cms:hover .banner-offer-inner::after {
    border: none;
    background: #E8F5E5;
    background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
    background-size: 13px 2px,13px 2px,2px 13px,2px 13px;
    background-position: 0 0,200px 100px,0 100px,200px 0;
    animation: border-dance 4s infinite linear;
}



/*#contact {
    background-image: url("../img/carousel-2.jpg");
  background-size: cover;
  background-position: center center;
    background: rgba(15, 66, 41, .6) !important;
}*/

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
    width:100%;
}

.service-item {
    position: relative;
    text-align: center;
    height: 400px !important;
}

.footer {
    background-position: center;
    background-repeat: repeat-y !important;
}


}
/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow:rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.1);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 4px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 4px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/
@media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
 .carousel-inner {
    height: auto !important;
}
.facts, .quote {
    background: rgba(15, 66, 41, .6) !important;
}
.hero .hero-waves {
    bottom: 49% !important;
}
.display-1 {
    font-size: calc(0.625rem + 4.5vw);
}
.banner-offer-cms {
    background: #E8F5E9 !important;
    margin: 60px 0 0 !important;
    padding: 43px 40px !important;
    position: relative;
}
.banner-offer-inner .offer-image img {
   width: 50% !important;
}
.banner-offer-inner .text1 {
   width: auto !important;
    text-align: center;
    margin: 55px 0 0 0;
    }


.banner-offer-cms:hover .banner-offer-inner::after {
    border: none;
    background: #E8F5E5;
    background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
    background-size: 13px 2px,13px 2px,2px 13px,2px 13px;
    background-position: 0 0,200px 100px,0 100px,200px 0;
    animation: border-dance 4s infinite linear;
}
 .offer-description {
    width:100% !important;
  
}
.banner-offer-cms .banner-offer-inner::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed #0F4229;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 5px;
}
}
/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

/*====================
18. Big banner css 
======================*/

.big-banner{
  position: relative;
   /*overflow: hidden;*/
}

.big-banner .banner-wrap{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.big-banner .banner-content{
  text-align: center;
}

.big-banner .banner-content h6{
  color: var(--color-dark);
  font-size: 22px;
  text-transform: lowercase;
  letter-spacing: 4px;
}

.big-banner .banner-content h2{
  /*color: var(--color-dark);*/
  /*text-transform: uppercase;*/
  margin-top: 20px;
  margin-bottom: 20px;
}

.big-banner .banner-content p{
  color: var(--color-dark);
  /*text-transform: lowercase;*/
  font-size: 20px;
  border-top: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  display: inline-block;
}

.big-banner .banner-content .theme-btn{
  border-radius: 50px;
  margin-top: 30px;
  padding: 8px 28px;
}

/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/carousel-1-1.jpg) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(2, 19, 5, 0.4);
    /*clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);*/
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(13, 36, 13, 0.4);
}


.card {
  position: relative;
  width: 100%;
  height: auto;
  color: #0F4229;
  background: #E8F5E9 !important;
  overflow: hidden;
  border-top: 1px solid rgba(52, 142, 56, 0.5);
  border-right: 1px solid rgba(15, 66, 41, 0.5);
  border-bottom: 1px solid rgba(52, 142, 56, 0.5);
  border-left: 1px solid rgba(15, 66, 41, 0.5);
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  /*padding: 1em;*/
}

/*p {
  font-size: 0.95rem;
  text-align: center;
}*/

marque {
  position: absolute;
  border-radius: 100vmax;
}

.top {
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent 50%,
    rgba(52, 142, 56, 0.5),
    rgb(52, 142, 56)
  );
}

.bottom {
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgb(52, 142, 56),
    rgba(52, 142, 56, 0.5),
    transparent 50%
  );
}

.right {
  top: 0;
  right: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(15, 66, 41, 0.5),
    rgb(15, 66, 41)
  );
}

.left {
  left: 0;
  bottom: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    180deg,
    rgb(15, 66, 41),
    rgba(15, 66, 41, 0.5),
    transparent 70%
  );
}

.top {
  animation: animateTop 3s ease-in-out infinite;
}

.bottom {
  animation: animateBottom 3s ease-in-out infinite;
}

.right {
  animation: animateRight 3s ease-in-out infinite;
}

.left {
  animation: animateLeft 3s ease-in-out infinite;
}

@keyframes animateTop {
  25% {
    width: 100%;
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@keyframes animateBottom {
  0%,
  50% {
    opacity: 0;
    width: 0;
  }

  75% {
    opacity: 1;
    width: 100%;
  }

  76%,
  100% {
    opacity: 0;
  }
}

@keyframes animateRight {
  0%,
  25% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 100%;
  }

  55%,
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes animateLeft {
  0%,
  75% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}






/*====================
15. Hero css 
======================*/

.hero-section {
  position: relative;
  /*overflow: hidden;*/
}

.hero-slider-wrap{
  background: var(--theme-color-light);
  border-radius: 10px;
}

.hero-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-single .hero-content {
  position: relative;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-title {
  color: var(--color-dark);
  font-size: 45px;
  font-weight: 700;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color);
}

.hero-single .hero-content p {
  color: var(--color-dark);
  line-height: 30px;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 25px;
}

.hero-btn{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* hs-1 */
.hs-1 .hero-slider{
  border-radius: 15px;
  overflow: hidden;
}

.hs-1 .hero-single{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 50px;
}

.hs-1 .hero-slider .owl-dots .owl-dot{
  background: var(--theme-color);
}

.hs-1 .hero-banner{
  position: relative;
  border-radius: 15px;
}

.hs-1 .hero-banner img{
  border-radius: 15px;
}

.hs-1 .hero-banner .banner-content{
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.hs-1 .hero-banner .banner-content p{
  color: var(--theme-color);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
}

.hs-1 .hero-banner .banner-content h3{
  /*color: var(--color-dark);*/
  margin: 5px 0 7px 0;
  /*line-height: 1.2;*/
}

.hs-1 .hero-banner .banner-content  h3 .ts {
  /*color: var(--color-dark);*/
  margin: 5px 0 7px 0;
  line-height: 1.2;
}

.hs-1 .hero-banner .banner-content .theme-btn{
  padding: 7px 15px;
}

@media all and (max-width: 991px) {
  .hs-1 .hero-banner img{
    width: 100%;
  }
}




