/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #E1C53E;
    --light: #F1F8FF;
    --dark: #0F172B;
}
body{
    /*font-family: "Roboto", sans-serif;*/
    /*font-family: "Heebo", sans-serif !important;*/
     font-family: "Poppins", sans-serif !important;
}
h2, h3{
      /*font-family: "Heebo", sans-serif !important;*/
       font-family: "Poppins", sans-serif !important;
}
.color{
    color: var(--primary);
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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 {
    font-weight: 500;
    /* text-transform: uppercase; */
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 39px 0;
    color: #017F01;
    font-size: 17px;
    /* text-transform: uppercase; */
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@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;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    /* background: rgb(15 23 43 / 37%); */
    background: rgb(15 23 43 / 45%)
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: #017f01;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    /* background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/service/about-img.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 40px;
    background-color: #E1C53E;
}
.testimonial-item p{
  font-size: 13px;
  line-height: 23px;
}
.testimonial-carousel .owl-nav,.service-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.service-carousel .owl-nav{
     top: calc(50% - 0px);
}

.testimonial-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.service-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}
.service-carousel .owl-nav .owl-prev{
    margin-left:-30px;
}
.service-carousel .owl-nav .owl-next{
    margin-right:-30px;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}
.testimonial-star{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.testimonial-star i{
  font-size: 20px;
  color: rgb(245, 196, 20);

}

/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    /* margin-top: -110px; */
    /* padding-top: 180px; */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #017F01;
    border: 1px solid #017F01;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    background-color: #E1C53E;
    
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* custom */
.section-padding{
    padding:10px 50px;
}
.logo{
    width: 170px;
}
.menu-top{
    background-color: #017F01;
}
.c-inr,.c-item,.c-cap{
    height: calc(100vh - 100px);

}
.c-item img{
    object-fit:cover;
}
.c-cap div h1{
    font-weight: 500;
    /*font-family: "Dancing Script", cursive;*/
    font-family: "Montserrat", sans-serif !important;
        font-size: 60px;
    line-height: 79px;
}
.abt-tle{
    color: #017F01;
}

  .contain {
    margin: 0 auto;
    max-width: 1500px;
    width: 100%;
  }
  
  .item {
    align-items: center;
    background-color: tomato;
    color: white;
    display: flex;
    height: 700px;
    justify-content: center;
    /* width: 600px; */
    border-radius: 20px;
    overflow: hidden;
  }
  
  .home-about-desc{
    font-size: 15px;
    line-height:27px;

  }
  .home-abt-btn{
    font-size: 17px;
  }
  
  figure{
    margin: 0;
  }
figure.snip0016 {
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  width: 100%;
  background: #000000;
  text-align: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  border-radius:15px;
}
figure.snip0016 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip0016 img {
  max-width: 100%;
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  object-fit: cover;
  border-radius:15px;

}
figure.snip0016 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 1em;
  width: 100%;
  height: 100%;
}
figure.snip0016 figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  content: '';
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
figure.snip0016 h2,
figure.snip0016 p {
  margin: 0 0 5px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s,-webkit-transform 0.35s,-moz-transform 0.35s,-o-transform 0.35s,transform 0.35s;
  color: #fff;
  font-size:14px;
}
figure.snip0016 h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-transform: translate3d(30%, 0%, 0);
  transform: translate3d(30%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
figure.snip0016 h2 span {
  font-weight: 800;
}
figure.snip0016 p {
    -webkit-transform: translate3d(0%, 30%, 0);
    transform: translate3d(0%, 30%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    font-size: 14px;
    margin-top: 15px;
    margin-left: 20px;
    line-height: 24px;
    position: relative;
        font-weight: 400;
}
/*figure.snip0016 p::before{*/
/*    content: '';*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    background-color: #fff;*/
/*    position: absolute;*/
/*    left: -20px;*/
/*    top: 10px;*/
/*}*/
figure.snip0016 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: #ffffff;
}
figure.snip0016:hover img {
  opacity: 0.3;
}
figure.snip0016:hover figcaption h2 {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
figure.snip0016:hover figcaption p {
  opacity: 0.9;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
figure.snip0016:hover figcaption::before {
  background: rgba(255, 255, 255, 0);
  left: 18px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.f-h3{
    word-spacing: -0.15em;
  font-weight: 300;
  text-transform: uppercase;

  color: #fff;
}
.f-h3 span{
    font-weight: 800;
}
figure.snip0016:hover .f-h3{
    display: none;
    transform: 0.5s;
    /* transition-delay: 0.4s; */
}


.service-tle h2 {
    /* font-weight: 300; */
    /*text-transform: uppercase;*/
    /*font-size: 30px;*/
    /*line-height: 50px;*/
    /*width:90%;*/
    /*color:#222;*/
        text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    color: #222;
    font-weight: 500;
    text-align:center;
   
  }
  .service-tle h2 span {
    font-weight: 800;
    color: #E1C53E;
  }
.service-tle h2::last-word{
    color:red;
}

.service-header-btn {
    letter-spacing: 1px;
    outline: 0;
    border: none;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    /* width: 280px; */
    /* height: 70px; */
    transition: 0.5s;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.service-header-btn::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #E1C53E;
  position: absolute;
  left: 10px;
  bottom: -15px;
  z-index: -2;
  transition: 0.5s;
}
.service-header-btn:hover::after{
  left: 0;
  bottom: 0;
}





  .section-tle h3{
    font-size: 37px;
    line-height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #017F01; */
    font-weight:600;
    text-align:center;
  }
  .section-tle h3::before{
    content: '';
    width: 60px;
    height: 3px;
    border-radius: 30px;
    background-color: #017F01;
    position: absolute;
    bottom: -20px;
  }

  .plan-bx{
    width: 80%;
    /* height: 100%; */
    background-color: #f2f2f2;
    padding: 40px;
    border-radius:7px;
  }
 

  .plan-tle-bx{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px dashed #E1C53E;
    border-bottom: 2px dashed #E1C53E;
  }
  .plan-tle-bx h3{
    color: #017F01;
    font-size: 27px;
        font-weight: 500;

  }
  .plan-dtls{
    width: 100%;
    /*height: 200px;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 20px 30px;
   
  }
  .plan-dtls h3{
    font-weight: 600;
    font-size: 27px;
    color: #E1C53E;
  }
  .plan-dtls p{
    text-align: center;
    text-transform: capitalize;
    line-height: 30px;
    font-size: 15px;

  }
  .plan-dtls ul{
      padding-left:0;
  }
    .plan-dtls ul li{
    text-transform: capitalize;
    font-size: 15px;
    margin-top: 10px;
    line-height: 27px;
    color: #000;
    }
  .plan-btn-bx{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .plan-btn-bx button{
    width: 100%;
    height: 45px;
    background-color: #E1C53E;
    color: #000000;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 5px;
    font-weight: 600;

  }
  .plan-btn-bx button:hover{
    border-radius: 40px;
    background-color: #017F01;
    color: #fff;
  }
  .plan-bx2{
    width: 80%;
    height: 450px;
    background-color: #e2cd60;
    padding: 40px;
  }
  .plan-tle-bx2{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px dashed #017F01;
    border-bottom: 2px dashed #017F01;
  }
  .plan-tle-bx2 h3{
    color: #017F01;
    font-size: 27px;

  }

  .plan-dtls2{
    width: 100%;
    height: 255px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 20px 30px;
   
  }
  .plan-dtls2 h3{
    font-weight: 600;
    font-size: 30px;
    color: #017F01;
  }
  .plan-dtls2 p{
    text-align: center;
    color: #222;
    text-transform: capitalize;
    line-height: 30px;
    font-size: 15px;

  }
  .plan-btn-bx2{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .plan-btn-bx2 button{
    width: 100%;
    height: 45px;
    background-color: #017F01;
    color: #fff;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 5px;
    font-weight: 600;

  }
  .plan-btn-bx2 button:hover{
    border-radius: 40px;
    background-color: #017F01;
    color: #fff;
  }
  
  .scnd-child .col-lg-4:nth-child(2) .plan-bx{
      width: 80%;
    min-height: 390px;
    background-color: #e2cd60;
    padding: 40px;
  }
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-tle-bx {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px dashed #017F01;
    border-bottom: 2px dashed #017F01;
}
  
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-dtls {
    width: 100%;
    /*height: 255px;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 20px 30px;
}
  
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-dtls h3 {
    font-weight: 600;
    font-size: 30px;
    color: #017F01;
}
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-dtls p {
    text-align: center;
    color: #222;
    text-transform: capitalize;
    line-height: 30px;
    font-size: 15px;
}
.packages-form{
    padding:18px;
}
.pkg-form-inp label{
    font-size:14px;
    margin-bottom:3px;
    color:#000;
}
  .pkg-form-inp  input{
      border-radius:8px;
      font-size:14px;
  }
  .pkg-form-inp textarea{
       border-radius:8px;
      font-size:14px;
      height:80px;
  }
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-btn-bx {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-btn-bx button {
    width: 100%;
    height: 45px;
    background-color: #017F01;
    color: #fff;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 5px;
    font-weight: 600;
}
  
  .scnd-child .col-lg-4:nth-child(2) .plan-bx .plan-btn-bx button:hover {
    border-radius: 40px;
    background-color: #017F01;
    color: #fff;
}
  
  
  
  
  

.event-desc p{
    color:  #000;
    font-size: 17px;
    line-height: 30px;

}
.event-desc ol li{
    color:  #000;
    font-size: 17px;
    line-height: 30px;
    margin-top: 20px;
    /* font-weight: 600; */
}
.event-bx p{
    color:  #5d5d5d;
    font-size: 17px;
    line-height: 30px;
}
.event-bx ,.event-email-bx{
    padding: 0 50px;
}
.event-email-bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.event-email-bx input{
    height: 50px;
}
.event-email-bx h3{
    color: #E1C53E;
}

.event-img-bx{
    width: 90%;
    height: 18rem;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.event-img-bx h2{
    font-weight:600;
    font-size: 26px;
    text-align: center;
    color: #fff;
    line-height: 35px;

}
.event-about-desc{
        font-size: 15px;
    line-height: 27px;
    margin: 0;
    margin-top: 10px;
    color: #000;
}


.AIC-sec{
    width: 100%;
    /*background-color: #f2f2f2;*/
    flex-direction: column;
    justify-content:center;
    align-items:center;
    display:flex;
    
}
.AIC-sec-container{
    max-width:1400px;
    width:100%;
}
.AIC-icon-bx{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2f802f;

}
.AIC-icon-bx i{
    font-size: 50px;
}
.AIC-main-bx{
padding: 10px 40px;
width:100%;
min-height:170px;
background:#f2f2f2;
border-radius:7px;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

}
.AIC-main-bx p{
    text-align: center;
    font-size: 14px;
margin-top: 20px;
}

.as-bx{
    width: 100%;
    height: 200px;
    background-color: #f2f2f2;
    padding: 20px;
}
.as-icon-bx{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}
.as-icon-bx i{
color: #E1C53E;
font-size: 30px;
}
.as-bx p{
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight:600;
}
.footer{
    background-color: #f2f2f2;
    padding-top: 0;
}
.ftr-logo-bx{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ftr-logo-bx img{
    width: 300px;
}
.ft-links{
    color: #000;
}

.ftr-icons a i{
    color: #017F01;

}
.ft-links p {
     font-size: 15px;
}
.ft-links p i{
    color: #017F01;
}
.ft-links a{
    color: #000 !important;
    font-size: 15px;
}
.copyright{
    border-top: 1px solid #017f0180 !important; 
}
.ftr-bottom{
  
     font-size: 14px;
}
.ftr-bottom a{
  color: #017F01 !important;
}
/* Contact us */



.right_conatct_social_icon{
    background: #E1C53E;
}
.contact_us{
   background-color: #f1f1f1;
   padding: 120px 0px;
}

.contact_inner{
   background-color: #fff;
   position: relative;
   /* box-shadow: 20px 22px 44px #cccc; */
   border-radius: 25px;
}
.contact_field{
   /* padding: 60px 340px 90px 100px; */
   padding: 50px;
}

.right_conatct_social_icon{
   height: 100%;
}

.contact_field h3{
  color: #000;
   font-size: 40px;
   letter-spacing: 1px;
   font-weight: 600;
   margin-bottom: 10px;
}
.contact_field p{
   color: #000;
   font-size: 15px;
   font-weight: 400;
   margin-bottom: 35px;
}
.contact_field .form-control{
   border-radius: 0px;
   height: 50px;
  
   border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus{
   box-shadow: none;
   outline: none;
   border: 1px solid #017F01;
}
.contact_field .form-control::placeholder{
   font-size: 13px;
   letter-spacing: 1px;
}

.contact_info_sec {
   position: absolute;
   background-color: #fff;
   right: 0px;
   top: 18%;
   height: 340px;
   width: 340px;
   padding: 35px;
   border-radius: 25px 0 0 25px;
}
.contact_info_sec h4{
   letter-spacing: 1px;
   padding-bottom: 15px;
}
.contact_info_sec p{
  font-size:15px;
}

.info_single{
   margin: 30px 0px;
}
.info_single i{
   margin-right: 15px;
}
.info_single span{
   font-size: 14px;
   letter-spacing: 1px;
}

button.contact_form_submit {
   background: #E1C53E;
   border: none;
   color: #fff;
   padding: 10px 15px;
   width: 100%;
   height: 50px;
   margin-top: 25px;
   border-radius: 5px;
   cursor: pointer;
   font-size: 14px;
   letter-spacing: 2px;
   transition: 0.5s;
}
button.contact_form_submit:hover{
    background-color: #017F01;
    color: #fff;
}
.socil_item_inner li{
   list-style: none;
}
.socil_item_inner li a{
   color: #fff;
   margin: 0px 15px;
   font-size: 14px;
}
.socil_item_inner{
   padding-bottom: 10px;
}

.map_sec{
   padding: 30px 0px 70px 0;
}
.map_inner h4, .map_inner p{
   color: #000;
   text-align: center;
   font-size:35px;
}
.map_inner p{
   font-size: 13px;
}
.map_bind{
  margin-top: 50px;
   border-radius: 30px;
   overflow: hidden;
}
.map_bind iframe{
   border-radius: 30px;
}

.about-us-img {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.abt-img-bx{
    width: 70%;
    height: 400px;
    background-image: url(../img/service/wd-ev_11zon.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.abt-img-bx img{
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: -20%;
    left: -30%;
    object-fit: cover;
}
.about-desc p{
font-size: 14px;
    line-height: 27px;
    margin: 0;
    margin-top: 10px;
    color: #000;
}
.aboutus-bx{
    width: 100%;
    height: 200px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 7px;
}
.aboutus-bx p{
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-weight: 500;
    font-size:15px;
}
.about-carousel .about-item{
    width:100%;
    height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.about-carousel .about-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    border-radius:7px;
}
.about-carousel .owl-nav{
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
    gap:10px;
    margin-top:10px;
}
.about-carousel .owl-nav .owl-next, .about-carousel .owl-nav .owl-prev {
    width:40px;
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#e1c53e;
    font-size:20px;
    color:#fff;
    border-radius:7px;
}
/* Gallery */

.warpper{
    display:flex;
    flex-direction: column;
    align-items: center;
  }
  .tabs{
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
  }
  .tab{
    cursor: pointer;
    padding:7px 25px;
    margin:0px 2px;
    background:#f2f2f2;
    display:inline-block;
    color:#222;
    border-radius:3px 3px 0px 0px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 4px;
   border-radius: 30px;
    position: relative;
  }
  .panels{
    border-top: 0;
    min-height:200px;
    width:100%;
    border-radius:3px;
    overflow:hidden;
    padding:20px;  
  }
  .panel{
    display:none;
    animation: fadein .8s;
  }
  @keyframes fadein {
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  .panel-title{
    font-size:1.5em;
    font-weight:bold
  }
  .radio{
    display:none;
  }
  #one:checked ~ .panels #one-panel,
  #two:checked ~ .panels #two-panel,
  #three:checked ~ .panels #three-panel,
  #four:checked ~ .panels #four-panel{
    display:block
  }
  #one:checked ~ .tabs #one-tab,
  #two:checked ~ .tabs #two-tab,
  #three:checked ~ .tabs #three-tab,
  #four:checked ~ .tabs #four-tab{
    background:var(--primary);
    color:#fff !important;
    position: relative;
  }
  #one:checked ~ .tabs #one-tab::after,#two:checked ~ .tabs #two-tab::after,#three:checked ~ .tabs #three-tab::after,#four:checked ~ .tabs #four-tab::after{
      content: '';
      width:30px;
      height: 30px;
      background-color: var(--main-color);
      position: absolute;
      bottom: -9%;
      left: 47%;
      transform: rotate(50deg);
  }
  .ta h3{
   font-size: 20px;
  }
  .gallery-img-bx-1{
    width: 100%;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius: 7px;
    overflow: hidden;
  }
  .gallery-img-bx-1 img, .gallery-img-bx-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .gallery-img-bx-1 img:hover,.gallery-img-bx-2 img:hover{
    transform: scale(1.1);
  }
  .gallery-img-bx-2{
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius:7px;
    overflow: hidden;

  }
  .gal-video-bx{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;

  }
  .gal-video-bx iframe{
    width: 100%;
    height: 100%;

  }
  
.gallery-img-bx-2 a,.gallery-img-bx-1 a {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
  }
.header-tle{
  font-size: 60px;
  color: #fff;
}

  /* Services */
  .service-baner{
    height: 70vh;
  }
  .service-baner-header{
    height: 100%;
  }
  .services{
  font-weight:700;
  font-size:15px;
  letter-spacing:1px;
      
  }
.service-header-bx{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px;

}
.service-header-bx h2{
     font-size: 70px;
    color: #fff;
    font-weight: 500;
    line-height: 85px;
}
.service-header-bx h2 span{
  color: #E1C53E;

}
  .acordion-cstm-item{
    border: none;
    background-color: transparent;
  }
  .acordion-cstm-btn{
    font-size: 20px;
    font-weight: 600;
  }
  .acordion-cstm-btn:not(.collapsed){
    background-color: #e1c63eab;
    color: #fff;
   
  }
  .service-img-bx1{
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
  }
  .service-img-bx1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
     border-radius:20px;
    /*border-top-left-radius: 80px;*/
    /*border-top-right-radius: 20px;*/
    /*border-bottom-right-radius: 80px;*/
    /*border-bottom-left-radius: 20px;*/
  }
  .service-img-bx2{
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
  }
  .service-img-bx2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:20px;
    /*border-top-right-radius: 80px;*/
    /*border-top-left-radius: 20px;*/
    /*border-bottom-left-radius: 80px;*/
    /*border-bottom-right-radius: 20px;*/
  }
  .service-details h3{
    /*word-spacing: -0.15em;*/
    /* font-weight: 300; */
    text-transform: uppercase;
       font-size: 28px;
    line-height: 50px;
    font-weight: 500;
}
.service-details h3 span{
    color: #E1C53E;
}
.service-list ul li{
    margin-top: 7px;
   color: #000;
   line-height: 30px;
   font-size: 14px;
   letter-spacing: 1px;

}.service-list {
     color: #000;
   line-height: 26px;
   font-size: 14px;
   /*letter-spacing: 1px;*/
}
.service-first-bx{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}

.service-first-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-main{
  width: 85%;
  height:500px;
  position: absolute;
  bottom: -50px;

  border-radius: 20px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-image: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05) 75%);
  border-radius: 20px;
  
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;


}
.service-main h3{
  font-size: 35px;
  color: #fff;
  font-weight: 600;
  text-align:center;
}
.service-main  ul{
  list-style: none;
  padding: 0;
}
.service-main  ul li{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size:16px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}
.service-main-bottom{
  width: 100%;
  height: 200px;
  background: transparent;
  position: absolute;
  top: -200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.service-main-bottom h3{
  font-size: 45px;
  color: #fff;
  font-weight: 600;
}
.service-main-bottom ul{
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top:20px;
  flex-wrap:wrap;
}
.service-main-bottom ul li{
  height:50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-image: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05) 75%);
  padding: 5px 20px;
  color: #fff;
  font-size: 15px;
font-weight:500;
text-transform:capitalize;

}
.service-advantage-bx{
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.service-advantage-bx img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-form{
  width: 100%;
  height: 100%;
  /*background: #f7f7f7;*/
  border:1px solid #2f2f2f;
  padding: 20px;
  border-radius: 10px;
}
.book-form select{
  background-color: transparent;
  height: 50px;
  color: #2f2f2f;
  border-radius: 7px;
  border-color:#bdacac;
}
/*.book-form select option{*/
/*background-color: #222;*/
/*}*/

.booking-sec-container{
    max-width:1300px !important;
}

 .form-bx-2{
  width: 100%;
  height: 100%;
  /*border: 1px solid #d81594;*/
  /*padding: 20px;*/
  border-radius:7px;
}
 .form-bx-2 label{
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #222;
  font-weight:500;

}
 .form-bx-2 input{
  border: none;
  background-color: transparent;
  border: 1px solid #bdacac;
  border-radius: 7px;
  color: #222 !important;
  font-size: 13px;
  height: 50px;

}
 .form-bx-2 textarea{
  height: 100px;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  color: #fff !important;
  font-size: 13px;

}
 .form-bx-2 input:focus, .form-bx-2 textarea:focus{
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.slot-bx{
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 12px;
}
.slot-bx .slot-span{
  padding: 5px 7px;
  background-color: orangered;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.slot-bx h3{
  font-weight: 400;
  color: #222;
  font-size: 24px;
  margin-top:10px
}
.slot-bx h2{
  font-weight: 600;
  font-size: 24px;
  margin-top: 10px;
}
.slot-bx ul{
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  margin: 15px 0;
}
.slot-bx ul li{
  font-size: 14px;
  border-radius: 20px;
  background-color: #cfcfcf;
  color: #222;
  padding: 5px 8px;
}
.slot-bx p{
 font-size: 15px;
    color: #474748;
    margin-top: 10px;
    line-height: 27px;
}
.slot-bx p span{
  margin: 8px;
}
.book-form-2{
  width: 100%;
  height: 100%;
  background-color: #f2efef;
  border-radius: 10px;
  padding: 18px;
}
.book-form-2 h2{
  font-size: 19px;
  color: #222;
  font-weight: 600;
  
}
.book-form-2 ul{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.book-form-2 ul li{
width: 110px;
height: 35px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
font-size: 14px;
font-weight: 600;
padding: 5px 7px;
margin-top: 10px;
}
.li-green{
  background-color: rgb(43, 224, 70);
}
.li-red{
  background-color:orangered;
}
.Proceed-btn{
  text-decoration: none;
  padding:7px 50px;
  width: 100%;
  background-color: #e1c53e;
  color: #fff;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border:0;
  transition: 0.5s;

}
.Proceed-btn:hover{
  background-color: #017f01;
  color: #fff;
}
.booking-section{
    padding-bottom:100px !important;
}
.available-slot{
    display:none;
}
.available-slot-check{
   font-size: 13px;
    padding: 10px 10px;
    background: #017f0185;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 7px;
    margin-top: 10px;

    
}
.available-slot:checked + .available-slot-check {
   background:#017f01;
    color:#fff;
}
.slot-booking-section{
    width:100%;
    display:flex; 
    justify-content:space-between;
    align-items:center; 
    flex-wrap:wrap;
}


.booking-details-sec{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.bkng-details-2{
  width: 75%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px;

}
.bkng-details-2 h3{
  color: #222;
  font-size: 30px;

}

.bkng-details-form{
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  border:1px solid #bdacac;
}
.ov-bx{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

}
.ov-bx p{
  font-size: 14px;
  color: #2f2f2f;
  margin:0;
}
.bkng-details-form h3{
  font-weight: 600;
  color: #e1c53e;

}
.bkng-details-form label{
  font-size: 13px;
  font-weight: 500;

}
.bkng-details-form input,.bkng-details-form select{
  height: 45px;
  background-color: transparent;
  border-radius: 10px;
  border: none;
  border: 1px solid #bdacac;
  font-size: 14px;
  color: #222;

}

.bkng-details-form input:focus,.bkng-details-form select:focus{
  background-color: transparent;
}
.coupen-code{
  display: flex;
  justify-content: center;
}
.coupen-code input{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.c-code-btn{
  width: 200px;
  border: none;
  outline: none;
  border: 1px solid #222;
  background-color: #222;
  color: #ccc;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 600;
}
.preview{
    width:100%;
    height:100%;
    background-color:#fff;
    border-radius:10px;
    padding:20px;
    
}
.preview ul{
    list-style:none;
    padding:0;
    margin:0;
    
}
.preview ul li{
    padding:0;
    margin:0;
    height:unset;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    font-size:14px;
    font-weight:600;
    
}
.file-input{
    background-color:transparent !important;
}

.file-input::file-selector-button {
  color: #fff;
  padding: 0.5em;
  background-color:#017f01;
  height:45px;
}
.booking-top{
    justify-content:center;
}
.booking-top h2{
    font-size:30px;
    color:#222;
}



.home-about-desc p{
   font-size: 16px;
    line-height: 31px;
    margin: 0;
    margin-top: 10px;
    color:#000;
}

.about-img{
    width:100%;
    height:260px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.about-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:7px;

    
}
.about-mg-1{
    /*margin-top:50px;*/
    justify-content:flex-end;
}
.about-mg-1 img{
    width:100%;
    border-radius:7px;
}
.about-img-3{
     width:100%;
    height:200px;
    display:flex;
    justify-content:flex-end;
    position:relative;
    align-items:center;
}
.about-img-3 img{ 
      width:100%;
       height:100%;
    object-fit:cover;
    /*position:absolute;*/
    top:-50px;
    border-radius:7px;
}

.about-img-4{
     width:100%;
    height:200px;
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
    position:relative;
}
.about-img-4 img{ 
      width:100%;
    height:100%;
    object-fit:cover;
       /*position:absolute;*/
    top:-50px;
    border-radius:7px;
}

.service-booking-btn{
  text-decoration: none;
  padding:7px 50px;
  width: 100%;
  background-color: #e1c53e;
  color: #fff;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border:0;
  transition: 0.5s;
  width:180px;
  margin-top:15px;

}
.service-booking-btn:hover{
  background-color: #017f01;
  color: #fff;
}
.gallery-child {
    align-items:center;
}
.gallery-child .gal-image:nth-child(even){
    height:470px;
}
.gallery-child .gal-image:nth-child(even) .gallery-img-bx-1{
    height:100%;
}
.about-tag{
   /*padding: 15px 47px;*/
    border-radius: 40px;
    font-size: 25px;
    /*background-color: #017f012e;*/
    color: #017f01;
}
.ft-links h6{
    color:#017f01;
}

.bkng-details-1{
  width: 40%;
  height: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius:15px;
}

.bkng-details-1 h2{
  color: #222;
  font-weight:500;
}
.bkng-details-1 ul {
  width: 100%;
  list-style: none;

}
.bkng-details-1 ul li{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*height: 50px;*/
  padding: 7px 20px;
  /*margin-top: 15px;*/
  color: #222;
}
.bkng-details-1 ul li h3{
  font-size: 17px;
  color: #2f2f2f;
}
.bkng-details-2{
  width: 65%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px;

}
.bkng-details-2 h3{
  color: #222;
  font-size: 27px;
  font-weight:500;

}
.preview ul li{
    margin-top:0;
}

.px_5{
    padding-right: 3rem ;
    padding-left: 3rem ;
}
.pading_50{
    padding:50px;
}
.navbarTop{
    padding:0 70px 0 20px;
}
.my_5 {
    margin-top: 3rem ;
    margin-bottom: 3rem ;
}
@media screen and (max-width:1200px){
 .xl-pading-0{
     padding:0;
 }
  .scnd-child .col-lg-4:nth-child(2) .plan-bx{
     width:100%;
 }
.event-img-bx{
    width:100%;
}
}
@media screen and (max-width:1100px){
 .plan-bx{
     width:100%;
 }

}
@media screen and (max-width:992px){
 .flex-col-rvse{
     display: flex;
    flex-direction: column-reverse;
     
 }
 .m-lg-top-20{
     margin-top:20px !important;
 }
 .m-lg-top-50{
     margin-top:50px;
 }
 .abt-img-bx img {
     bottom:unset;
     top:30px;
 }
 .service-main-bottom{
     top:-30rem;
 }
 .services{
     line-height:30px;
 }
 .d-none-svc-img{
     display:none;
 }
 .gallery-img-bx-1{
    height:300px;
    margin:0;
}
.gallery-child .gal-image:nth-child(even) {
    height: 300px !important;
     margin:0;
     margin-top:20px;
}
.contact_info_sec{
    position:static;
}
.slot-booking-section{
    justify-content:flex-start;
    gap:10px;
}
.bkng-details-2{
    width:100% !important;
    padding:10px;
}
.navbarTop{
    padding:0 20px 0 20px;
}
.logo{
    width:130px;
}
.my_5 {
    margin-top: 35px  ;
    margin-bottom:0px ;
}
}
@media screen and (max-width:768px){
    .service-advantage-bx{
        height:180px;
    }
    .c-inr, .c-item, .c-cap {
    height: 54vh;
}
.header-tle {
    font-size: 40px;
    color: #fff;
}
.c-cap div h1 {
    font-size: 32px;
    line-height: 40px;
    padding: 0 30px;
}
figure.snip0016 figcaption{
    padding:20px;
}


}
@media screen and (max-width:567px){
    .section-padding{
        padding:10px 0px;
    }
    .about-mg-1 img,.about-img-4 img{
        width:100%;
    }
     /*.about-img-3 img{*/
     /*    width:80%;*/
     /*}*/
     .package-pd{
         padding:10px;
     }
     .section-tle h3{
         font-size:27px;
         text-align:center;
         line-height:30px;
     }
     .sm-pading-0{
         padding:0;
     }
     .px_5{
    padding-right: 5px ;
    padding-left: 5px ;
}
 .section-tle h3{
     font-size:25px;
 }
 .abt-img-bx {
    width: 76%;
    height: 344px;
}
.abt-img-bx img {
    width: 200px;
    height: 200px;
}
.service-main-bottom ul li {
    width:100%;
}
.service-header-bx{
    padding:10px;
}
.service-header-bx h2 {
    font-size: 30px;
    color: #fff;
    line-height:45px;
}
.accordion-body{
    padding:0px;
}
.service-img-bx1,.service-img-bx2{
    height:280px;
}
.service-header-btn {
   
    font-size: 15px;
    width: 200px;
    height: 59px;
}
.service-header-btn::after {
    left: 10px;
    bottom: -7px;
}
.service-img-bx2 img,.service-img-bx1 img {
    border-radius:10px;
}
.service-details h3{
    font-size:23px;
    line-height:30px;
}
.testimonial-carousel ,.testimonial-carousel .testimonial-item{
    padding:0 ;
}
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next{
    display:none;
}
.panels{
    padding:0;
}
.px-c{
    padding:0 !important;
}
.contact_field{
    padding:0;
    padding-top:20px;
}
.contact_info_sec{
    padding:0;
    padding-top:50px;
}
.map_inner h4, .map_inner p{
    font-size:20px;
}
.available-slot-check{
    width:48%;
}
.bkng-details-form {
    padding:20px 10px;
}
.about-img {
    height:150px;
}
.service-tle h2 {
    text-transform: uppercase;
    font-size: 25px;
    line-height: 35px;
    width: 100%;
    color: #222;
    font-weight: 500;
}
.pading_50{
    padding:15px 0;
}
.about-carousel .about-item{
    height:300px;
}
.service-baner {
    height: 45vh;
}

}

.nav-meu{
    width:40px;
    height:40px;
    background:#e1c53e ;
    color:#fff;
    border-radius:4px;
   
}
.nav-meu i{
    font-size:20px;
}

.sticky-nav{
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#fff;
    z-index:999;
}

.cnt-form label{
    font-size:14px;
    margin-bottom:7px;
    color:#000;
    
}


/*.custom-testimonial{*/
/*    border-radius:10px;*/
/*    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;*/
/*}*/

.about-bottom-main-bx{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    gap:15px;
    background:#f2f2f2;
    padding:15px;
    border-radius:15px;
    min-height:180px;
}
.about-bottom-main-bx .icon-bx{
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.about-bottom-main-bx .icon-bx i{
    font-size:35px;
    color:#2f802f;
}
.about-bottom-main-bx h3{
    font-size:19px;
    font-weight:600;
    text-align:center;
    
}

.rooms-bottom-main-bx{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:15px;
    background:#f2f2f2;
    padding:15px;
    border-radius:15px;
}
.rooms-bottom-main-bx .icon-bx{
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.rooms-bottom-main-bx .icon-bx i{
    font-size:35px;
    color:#2f802f;
}
.rooms-bottom-main-bx h3{
    font-size:19px;
    font-weight:600;
    text-align:center;
    
}



.content,.content-2{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: #fff;
	border-radius: 7px ;
	overflow: hidden;
  }
  
  .content .list,.content-2 .list{
	display: flex;
	flex-direction: column;
	position: relative;
	width: 25%;
	margin-right: 50px;
	/* background: #222; */
  }
  
  .content .list label,.content-2 .list label{
    cursor: pointer;
    min-height: 45px;
    line-height: 60px;
    font-weight: 500;
    color: #017F01;
    background-color: #f2f2f2;
    padding-left: 25px;
    transition: all 0.5s ease;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* font-weight: 600; */
    font-size: 17px;
    line-height: 57px;
    margin-top: 10px;
    border-radius: 10px;
    letter-spacing: 0;
  }
  .content .list label:first-child,.content-2 .list label:first-child{
    margin-top: 0;
  }
  .content .list label span .content-2 .list label span{
	line-height: 33px;
  }
  
  #home:checked ~ .list label.home,
  #blog:checked ~ .list label.blog,
  #Wedding:checked ~ .list label.Wedding,
  #help:checked ~ .list label.help,
  #code:checked ~ .list label.code,
  #about:checked ~ .list label.about,
  #tab6:checked ~ .list label.tab6,
  #home-2:checked ~ .list label.home-2,
  #wedding2:checked ~ .list label.wedding2,
  #vid1:checked ~ .list label.vid1,
  #vid2:checked ~ .list label.vid2,
  #vid3:checked ~ .list label.vid3,
  #vid4:checked ~ .list label.vid4,
  #vid5:checked ~ .list label.vid5{
	color: #fff;
	background-color: #E1C53E;
  }
 
  
  .content .text-content, .content-2 .text-content{
	width: 75%;
	height: 100%;
	color: rgba(255, 255, 255, 0.7);
  }
  
  .content .text ,.content-2 .text{
	display: none;
  }
  
  .content .text .title{
	font-size: 25px;
	margin-bottom: 10px;
	font-weight: 500;
  }
  
  .content input,.content-2 input{
	display: none;
  }
  .container .text p{
	text-align: justify;
  }
  
  .content .text-content .home,.content-2 .text-content .home-2{
	display: block;
  }
  
  #home:checked ~ .text-content .home,
  #blog:checked ~ .text-content .blog,
  #Wedding:checked ~ .text-content .Wedding,
  #help:checked ~ .text-content .help,
  #code:checked ~ .text-content .code,
  #about:checked ~ .text-content .about,
  #tab6:checked ~ .text-content .tab6,
  #home-2:checked ~ .text-content .home-2,
  #vid1:checked ~ .text-content .vid1,
  #wedding2:checked ~ .text-content .wedding2,
  #vid2:checked ~ .text-content .vid2,
  #vid3:checked ~ .text-content .vid3,
  #vid4:checked ~ .text-content .vid4,
  #vid5:checked ~ .text-content .vid5{
	display: block;
  }
  
  #Wedding:checked ~ .text-content .home,
  #blog:checked ~ .text-content .home,
  #help:checked ~ .text-content .home,
  #code:checked ~ .text-content .home,
  #about:checked ~ .text-content .home,
  #tab6:checked ~ .text-content .home,
  #wedding2:checked ~ .text-content .home-2,
  #vid1:checked ~ .text-content .home-2,
  #vid2:checked ~ .text-content .home-2,
  #vid3:checked ~ .text-content .home-2,
  #vid4:checked ~ .text-content .home-2,
  #vid5:checked ~ .text-content .home-2{
	display: none;
  }
  
  .content .list label:hover,.content-2 .list label:hover{
    color: #fff;
    background-color: #E1C53E;
  }
  .tab-service{
    min-height: 200px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
  }
  .no-image{
    margin: auto;
    background-color: #f2f2f2;
    width: 200px;
    color: red;
    padding: 15px;
    font-size: 15px;
    border-radius: 10px;
    text-align: center;
  }
  
  @media screen and (max-width:991px){
    
        .content .list,.content-2 .list{
            width:33%;
        }
         .content .text-content,.content-2 .text-content{
             width:67%;
         }
  }
    @media screen and (max-width:768px){
          .content, .content-2{
          flex-direction:column;
      }
        .content .list,.content-2 .list{
            width:100%;
        }
         .content .text-content,.content-2 .text-content{
             width:100%;
         }
         .service-carousel .owl-nav {
    display:none;
    
}
.accordion-body-custom{
    padding:10px;
}

    }
.project-card {
    --space: 30px;
    position: relative;
    overflow: hidden
}

.project-card .project-img {
    overflow: hidden;
    border-radius: 10px;
    z-index: 2
}

.project-card .project-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.project-card .project-img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    /* background: -webkit-linear-gradient(top, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%); */
    /* background: linear-gradient(to bottom, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%); */
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 1;
    border-radius: inherit
}

.project-card .project-content-wrap {
    position: absolute;
    left: var(--space);
    bottom: -30px;
    width: 100%;
    max-width: calc(100% - var(--space)*2 - 28px);
    z-index: 3;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.project-card .project-content {
    /* background-color: var(--theme-color); */
    background-size: auto;
    background-position: right center;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    padding: 26px 30px
}

.project-card .box-title {
    color: var(--white-color);
    margin-bottom: 2px
}

.project-card .box-title a:hover {
    color: var(--smoke-color2)
}

.project-card .project-subtitle {
    margin-bottom: -0.5em;
    color: var(--white-color)
}

.project-card .icon-btn {
    position: absolute;
    right: -28px;
    top: calc(50% - 28px);
    background-color: var(--white-color);
    border: none;
    color: var(--theme-color);
    font-size: 24px
}

.project-card .icon-btn:hover {
    background-color: var(--title-color)
}

.project-card:hover .project-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.project-card:hover .project-img:before {
    height: 100%;
    opacity: 1
}

.project-card:hover .project-content-wrap {
    bottom: var(--space);
    opacity: 1
}
.home-service-box .project-img {
    position: relative;
    height: 32rem ;
}

.home-service-box .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-service-box .project-content-wrap {
    left: 40px;
}

.home-service-title {
        position: absolute;
    color: #fff;
    font-weight: 600;
    top: 0;
    /* font-size: 24px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 10px;
    background: rgb(34, 34, 34);
    background: linear-gradient(0deg, rgb(34 34 34 / 11%) 0%, rgb(34 34 34 / 50%) 100%);
    text-align: center;
    border-radius: 7px;
    height: 100%;
    padding: 15px;
    line-height: 37px;
    flex-direction: column;
}
.home-service-title h3{
   font-size: 31px;
    color: #fff;
    font-weight: 500;
}
.home-service-title p{
      font-size: 15px;
    color: #f4f4f4;
    font-weight: 400;
    margin: 0;
}

.home-service-box:hover .home-service-title {
    top: -50px;
    opacity: 0;
    transition: 0.5s;

}

.home-service-box-desc .project-subtitle {
    font-size: 14px;
    /* margin-top: 15px; */
    text-align: center;
    font-weight: 500;

}

.home-service-box-desc {
    padding: 15px 20px !important;
    background-color: unset;
    /* 1791e4b3 */
    background: linear-gradient(0deg, rgba(34, 34, 34, 0.633578431372549) 0%, rgba(34, 34, 34, 0.633578431372549) 100%);
}

.home-service-box-desc .box-title {
    font-size: 20px;
    display: flex;
    justify-content: center;

}

.home-service-box-desc .box-title a {
    text-align: center;

}
.project-icons{
   display: flex;
    justify-content: center;
    align-items:center;
    gap:10px;
}
.project-icons i{
    width:40px;
    height:40px;
    display: flex;
    justify-content: center;
    align-items:center;
    font-size:17px;
    background:#fff;
    color:#017F01;
    border-radius:20%;
}
.container{
    max-width:1390px;
}

.accordion-button-custom:not(.collapsed) {
             color: #fff;
    background-color: #E1C53E;
        border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.accordion-button-custom{
        color: #017F01;
    background-color: transparent;
    padding:20px;
    font-size:20px;
    border-radius:15px !important;
     border: 1px solid #ccc;
     margin-top:10px;
    
    font-weight:600;
}
.accordion-item-custom{
    background:transparent;
    border:0;
}
.accordion-custom{
    border: 0;
}
.accordion-body-custom{
    background:#f7f7f7;
     border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}
.about-ul ul li{
        text-transform: capitalize;
    font-size: 15px;
    margin-top: 10px;
    line-height: 27px;
    color: #000;
}
.about-ul h3{
       font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}
