:root {
    --white: #fff;
    --black: #000;
    --border-radius: 50px;
}

* {
    margin: 0px;
    padding: 0px;

}

/* Define scrollbar styles for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 5px; /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Set the background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #000000; /* Set the color of the scrollbar thumb */
}


::-webkit-scrollbar-track {
    background: #f1f1f1; /* Set the background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #000000; /* Set the color of the scrollbar thumb */
}

::-webkit-scrollbar {
    width: 5; /* Hide the scrollbar */
}



body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: var(--white);
    color: var(--black);
}

h2 {
    font-family: "Lora", serif;
    font-weight: normal;
    font-size: 35px;
}

h3 {
    font-family: "Lora";
    font-weight: normal;
    font-size: 20px;
}

p {
    font-size: 14px;
}

/* Navigation styles */
.navbar-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 14px;
    padding: 1rem;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.nav-items,
.nav-right {
    display: flex;
    list-style: none;
    padding-left: 0px;
    align-items: center;
}

.nav-item {
    padding: 0 1rem;
    color: white;
    text-decoration: none;
}
.nav-toggle{
    position: absolute;
    right: 0;
    top: 25px;
}

.nav-items {
    list-style: none;
    padding: 0;
}

.nav-item {
    display: inline-block;
    margin-right: 20px;
    position: relative;

}

.nav-item a {
    text-decoration: none;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #aaa;
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}
.mobile-nav {
    display: none;
}

.logo {
    flex-grow: 1;
    text-align: center;
    color: white;
}
.logo img{
    position: absolute;
    left: 43%;
}

/* Header section styles */
.header {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-image: url("images/Shilpi-pool.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    background-color: #3f3f3f;
}

.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.header-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.header-banner.active {
    opacity: 1;
}
.header-banner.active .header-text {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideInText 1s forwards;
    font-size: 35px;
}

@keyframes slideInText {
    from {
        opacity: 0;
        top: 70%;
        font-size: 35px;

    }
    to {
        opacity: 1;
        top: 60%;
        font-size: 38px;

    }
}


.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
}
.centered-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 38px;
}
/* .header-banner .small-logo-header{
    display: block;
    margin: auto;
    width: 150px;
    height: auto;
} */
.reserve-now-btn {
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s linear;
    font-family: "Manrope", serif;
}
.reserve-now-btn:hover{
    background-color: #3e0505;
    color: white;
}

.down-arrow {
    position: absolute;
    top: 80%;
    left: 49%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        /* Adjust the amount of movement */
    }

    100% {
        transform: translateY(0);
    }
}

.down-arrow {
    animation: moveUpDown 2s infinite;
    /* Adjust the animation duration as needed */
}



.nav-toggle {
    display: none;
}

.header-text {
    font-family: "Lora", serif;
}

.lora-italic {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: normal;
}

.divider {
    display: block;
    margin: auto;
}

/* first section after header section */

.experience h2 {
    margin-bottom: 0px;
}

.container {
    /* max-width: 1200px; */
    margin: 0px auto;
    padding: 10px 40px;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
}

.heading h2 {
    font-size: 35px;
    font-weight: normal;
}
.experience .grid-1 h2{
    font-size: 25px;
}

.description {
    font-size: 14px;
    max-width: 800px;
    margin: auto;
    font-weight: lighter;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    justify-items: center;
}

.grid-1 .grid-item img {
    max-width: 100%;
    height: auto;
}

.grid-1 .grid-item {
    text-align: center;
    width: calc(100% - 10px);
}

.grid-1 .grid-item h2 {
    margin-top: 0;
}

.grid-1 .grid-item p {
    margin-bottom: 0;
}

.grid-item {
  position: relative;
}

.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay img {
  width: 100%;
  vertical-align: middle;
  transition: transform 0.5s ease;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  z-index: 2;
  transition: bottom 0.2s linear;
}
.overlay-text:hover{
  bottom: 10px;
}
.grid-1 hr{
  width: 10rem;
    text-align: center;
    margin: 10px auto;
}
.overlay-text h2,
.overlay-text p {
  margin: 0;
}

.image-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 2) 100%);
  pointer-events: none;
  z-index: 1;
}



/*packages Section */

.packages h2 {
    font-family: "Lora", serif;
    font-size: 35px;
    font-weight: normal;
    margin-bottom: 20px;
    margin-top: 80px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid #0808083b;
    position: relative;
    /* padding-bottom: 50px; */
    border-radius: 0px !important;
}

.card-text {
    padding: 10px;
}

.card img {
    max-width: 100%;
    height: auto;
}

.card h3 {
    margin-top: 10px;
    padding: 0px 10px;

}

.card ul {
    margin: 10px 0;
    padding: 0;
}

.card ul li {
    /* margin-left: 40px; */
    font-size: 12px;
}

/* .card button {
    position: absolute;
    bottom: 0px;;
    margin: 10px 20px;
    padding: 10px 20px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */

.card button:hover {
    background-color: #3f3f3f;
}
.flex{
    display: flex;
}
.packages .reserve-now-btn{
    display: block;
    margin: 50px auto;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    transition: background-color 0.3s linear;
    font-family: "Manrope", serif;
}
.packages .reserve-now-btn:hover{
    background-color: #3e0505;
}


/* Video section */
.video-section  {
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.video-section h2,
.video-section p {
    /* flex: 1; */
    margin: auto;
}


.video-section {
    position: relative;
    overflow: hidden;
}

.video-section-text {
    margin-bottom: 50px;
    margin-top: 80px;
}

.video-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.video {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-button svg {
    width: 64px;
    height: 64px;
    fill: #fff;
}

.waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
}

.card-1 {
    border: 1px solid #4d4d4d5d;
    padding: 20px;
    height: 230px;
}

.icon-invert {
    filter: invert(100%);
    margin-bottom: 10px;
}
.card-1 .icon {
  margin-bottom: 10px;
}
.experiences .reserve-now-btn {
    display: block;
    margin: 50px auto;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    transition: background-color 0.3s linear;
    font-family: "Manrope", serif;
}
.experiences .reserve-now-btn:hover{
    background-color: #3e0505;
}
.horse-section div{
    flex:1;
    justify-content: center;
}
.horse-section{
    align-items: center;
}

.bg-color-cream{
  background-color: #FFF7EA;
}
/* Contact section */

.contact-section{
  background-color: #3f3f3f;
  background-image: url("images/ducks.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  color: var(--white)
}
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.icon-text {
  text-align: center;
  margin-top: 10px;
}
.contact-icon i{
  color: black;
  /* font-size: 18px; */
}
/* Testimonial Section */
.testimonials-section .card-img-top {
    margin-top: 10px;
    padding: 2px 20px;
    max-width: 50%;
}

.stars-count {
    font-weight: normal;
    margin-right: 5px;
    font-size: 12px;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 400px; /* Adjust the maximum width as needed */
  /* max-height: 300px;  */
}
/* Footer Section */

footer.footer{
    background-color: var(--black);
    color: var(--white);
    background-image: url("images/Amantra_Shilpi_Resort.png");
}
.small-logos{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
ul{
    padding-left: 0px;
}
.footer-menu ul>li{
    list-style-type: none;
    line-height: 30px;

}
.footer-menu ul a{
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
}
.footer-last div:nth-child(2){
    gap:20px;

}

a{
    transition: color 0.2s linear;
    text-decoration: none;
    color:var(--white);
}
a:hover{
    color: #aaa !important;
}
.footer-last{
    font-size: 12px;
}

/* Form Model */

.modal-body{
    background-color: var(--black) !important;
}
input, select, textarea{
    background-color: var(--white) !important;
}
.modal-title{
    display: block;
    margin: auto;
}
.modal-header .close{
    position: absolute;
    top: 10px;
    right: 10px;
}
.form-message{
    color: var(--white);
}


/* The Modal (background) */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 46.25%; /* 16:9 aspect ratio for responsive videos */
    overflow: hidden;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-icon {
    width: 50px;
    height: 50px;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
}
#videoFrame{
    width:80vw;
    height:70vh;
}

/*form Styles*/
.has-error input,
.has-error textarea,
.has-error select {
    border: 1px solid red; /* Change the border color to red */
}
.list-unstyled {
  color: red;
}
/* Mobile and Tablet Reponsive styles */
@media (max-width: 1020px) {

    .nav-items,
    .nav-right {
        display: none;
    }

    .nav-item {
        text-align: center;
        padding: 1rem;

    }
    .mobile-nav{
        display: none;
    }
    .mobile-nav .nav-item, .mobile-nav .nav-items{
        display: block;
    }
    .navbar-1 {
        align-items: flex-start;
        width: 90%;
    }
    .logo{
        position: absolute;
        left: 0;
    }
    .nav-toggle {
        display: block;
        color: white;
        cursor: pointer;
    }
}

@media screen and (max-width: 767px) {
    /* .header{
        height: 60vh;
    }
    .slider{
        height: 60vh;
    } */
    /* .header-text{
        font-size: 25px;
    } */
    .grid-single{
     width: 100% !important;
    }
    .grid-1 .grid-item {
        text-align: center;
        width: calc(100% - 0px);
    }
    .slide .slide__img img{
      object-fit: cover;
      zoom: 0.7;
      object-position: top;
    }
    .footer-logo-section p{
      padding: 0px;
    }
    .container{
      padding: 15px;
    }
    .packages h2, .card h3 {
      text-align: center;
    }
    .nav-toggle .fas{
      font-size: 25px;
    }
    .slider, .header{
      height: 70vh;
    }
    .slide .other-sec{
      /* margin-top: 0px; */
      display: none;
    }
    .slide .slide__content{
      top: 25%;
    }
    .card-1{
      height: unset;
    }
    .small-logos{
      display: none;
    }
    .other-sec img {
      width: 272px;
  }
    .bg-color-cream .container{
      padding: 5px;
    }
    .footer-links .footer-menu{
      display: none;
    }
    h2{
      font-size: 28px;
    }
    p{
      font-size: 14px;
    }
    .footer-last .terms-conditions{
      justify-content: flex-start !important;
    }
    .contact-section div:nth-child(1){
        text-align: center;
    }
    .footer-menu{
      display: none;
    }
    .down-arrow {
        top: 90%;
    }
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .navbar-1 {
        justify-content: space-between;
    }

    .nav-items {
        display: none;
    }
    .mobile-nav .nav-item, .mobile-nav .nav-items{
        display: block;
        text-align: left;
    }
    .mobile-nav {
        background-color: #000000;
        color: var(--white);
        position: absolute;
        top:50px;
        right: 0px;
        z-index: 1;
        height: 40vh;
        width: 50vw;
        display:none;
        padding-left: 15px;
        padding-right: 5px;
        padding-top: 20px;
    }
    .reserve-now-btn{
        padding: 5px 15px;
    }
    #videoFrame{
        width:460px;
        height:215px;
    }
}

@media screen and (max-width: 480px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-1 .grid-item {
        text-align: center;
        width: calc(100% - 0px);
    }
    .grid-single{
     width: 100% !important;
    }
}





/*hero slider*/
@media (min-width: 992px) {
    .slider, .slide {
      height: 100vh;
    }
  }

  img.gud{
    }
  .slide {
    position: relative;
  }
  .slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  @media (min-width: 992px) {
    .slide .slide__img {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }
  }
  .slide .slide__img img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    transition: all 1s ease;
  }
  .slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
  }
  .slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
  }
  .slide .slide__content--headings {
    color: #FFF;
  }
  .slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
  }
  .slide .slide__content--headings .animated {
    transition: all 0.5s ease;
  }
  .slide .slide__content--headings .top-title {
    font-family: "Playball", cursive;
    font-size: 2.5rem;
  }
  .slide .slide__content--headings .title {
    font-size: 3.5rem;
  }
  .slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
  }

  .slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
  }

  .slick-dotted .slick-slider {
    margin-bottom: 30px;
  }

  .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }

  .simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
  }
  .simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
  }
  .simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
    opacity: 1;
  }
  .simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
  }

  .stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
  }
  .stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
  }
  .stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
    opacity: 1;
  }
  .stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
  }
  .stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
  }

  /* /////////// IMAGE ZOOM /////////// */
  @-webkit-keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
    }
  }
  @keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
    }
  }
  .zoomInImage {
    -webkit-animation-name: zoomInImage;
            animation-name: zoomInImage;
  }

  @-webkit-keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
      transform: scale3d(1, 1, 1);
    }
  }

  @keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
      transform: scale3d(1, 1, 1);
    }
  }
  .zoomOutImage {
    -webkit-animation-name: zoomOutImage;
            animation-name: zoomOutImage;
  }

  .slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, .12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
  }
  .slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 999;
  }
  .slick-nav.next-arrow {
    left: auto;
    right: 3%;
  }
  .slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
  }
  .slick-nav i:before, .slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
  }
  .slick-nav i:before {
    transform: rotate(-40deg);
  }
  .slick-nav i:after {
    transform: rotate(40deg);
  }
  .slick-nav:before, .slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
  }
  .slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
  }
  .slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
            animation: stroke 1s ease forwards 0.3s;
  }
  .slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
            animation: arrow 1.6s ease forwards;
  }
  .slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
            animation: arrowUp 1.6s ease forwards;
  }
  .slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
            animation: arrowDown 1.6s ease forwards;
  }

  @-webkit-keyframes stroke {
    52% {
      transform: rotate(-180deg);
      stroke-dashoffset: 0;
    }
    52.1% {
      transform: rotate(-360deg);
      stroke-dashoffset: 0;
    }
    100% {
      transform: rotate(-180deg);
      stroke-dashoffset: 126;
    }
  }

  @keyframes stroke {
    52% {
      transform: rotate(-180deg);
      stroke-dashoffset: 0;
    }
    52.1% {
      transform: rotate(-360deg);
      stroke-dashoffset: 0;
    }
    100% {
      transform: rotate(-180deg);
      stroke-dashoffset: 126;
    }
  }
  @-webkit-keyframes arrow {
    0%, 100% {
      transform: translateX(0);
      opacity: 1;
    }
    23% {
      transform: translateX(17px);
      opacity: 1;
    }
    24%, 80% {
      transform: translateX(-22px);
      opacity: 0;
    }
    81% {
      opacity: 1;
      transform: translateX(-22px);
    }
  }
  @keyframes arrow {
    0%, 100% {
      transform: translateX(0);
      opacity: 1;
    }
    23% {
      transform: translateX(17px);
      opacity: 1;
    }
    24%, 80% {
      transform: translateX(-22px);
      opacity: 0;
    }
    81% {
      opacity: 1;
      transform: translateX(-22px);
    }
  }
  @-webkit-keyframes arrowUp {
    0%, 100% {
      transform: rotate(-40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
  @keyframes arrowUp {
    0%, 100% {
      transform: rotate(-40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
  @-webkit-keyframes arrowDown {
    0%, 100% {
      transform: rotate(40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }
  @keyframes arrowDown {
    0%, 100% {
      transform: rotate(40deg) scaleX(1);
    }
    20%, 80% {
      transform: rotate(0deg) scaleX(0.1);
    }
  }



  /****************************************************/
   .slide-content p {
      color: white;
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    /* button {
      padding: 1em 2em;
      background-color: #333;
      color: white;
      border: none;
      cursor: pointer;
    } */
  .contact a{
      text-decoration: none;
      color: black;
      background-color: white;
      padding: 0.3em 1rem;
      font-size: 12px;

  }
  .contact{
      margin-top: 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index:100000;
  }
  #whatsapp{
      margin-right: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1em;
  }
  #email{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;

  }
  #whatsapp i{
      color: green;
      font-size: 1.5rem;
  }
  #email i{
    font-size: 1.5rem;
      color: red;
  }
  .footer-slider{
      display: flex;
      position: absolute;
      z-index: 999;
      bottom: 5%;
      color: white;
      justify-content: space-around;
      width: 100%;
      padding: 10px;
      align-items: center;
  }
  .social-icons i{
      padding: 4px;
      color: white;
      font-size: 19px;;
  }
  .footer-slider p{
      text-transform: uppercase;
      font-size: 12px;;
  }
  .other-sec img {
      max-width:400px;
     /* height: 16vh;*/
      margin-bottom: 15px;
  }
  .other-sec{
      margin-top:300px;
  }
  .logo-main img {
      position: absolute;
      z-index: 999;
      max-width: 200px;
     transform:translate(-50%, 10%);
  /*	margin-left:30px;*/
      /* right: 0; */
      top: 50px;
  }


  .slider [data-animation-in] {
      opacity: 0;
  }

  @media screen and (max-width: 992px) {
    .slide .slide__img img{
        height:100vh;
        object-fit:cover;
    }
    .logo-main img {
      max-width: 320px;

  }
    .other-sec img {
     /* max-width:800px; */
      margin-bottom: 15px;
  }
  .contact a, .footer-slider p{
      /* font-size:32px; */
  }
  .slick-nav.prev-arrow {

    transform: scale(1);
  left:7%;
  }
  .slick-nav.next-arrow {
     transform: scale(1);
     right:7%;
  }
  .slick-nav.prev-arrow i {
      transform: rotate(180deg);
  }
  .contact a {
      max-width: 100%;
      /* font-size: 32px; */
      width: 100%;
      margin-bottom: 20px;
  }
  #whatsapp i , #email i{
      font-size: 32px;
  }
  .contact{
      display:block !important;
  }
  .social-icons i {
      padding: 15px;
      color: white;
      /* font-size: 40px; */
  }
  }
  .card-body {

      min-height: 400px;
  }
  .form-control {
      font-size: 15px;
  }
  .btn-enquire {
      background: green;
      color: #000 !important;
      font-size:15px;
  }
  h4.poptitle {
      margin-bottom: 25px;
      padding-left: 15px;
  }
  @media screen and (min-width: 1400px) {
      .other-sec img {
      max-width:700px;
     /* height: 16vh;*/
      margin-bottom: 15px;
  }
 }
.modal-title img{
  height: 200px;
}

/*--whatsup-btn-css--*/
.WA_Chat_Widget .WA_FloatingButton{
  position: fixed;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.185);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 1000;
}
.WA_Chat_Widget .WA_FloatingButton svg{
  width: 40px;
  height: 40px;
  fill: #4fce5d;
}
.WA_Chat_Widget[data-position^="top-"] .WA_FloatingButton{
  top: 20px;
}
.WA_Chat_Widget[data-position^="bottom-"] .WA_FloatingButton{
  bottom: 20px;
}
.WA_Chat_Widget[data-position$="-left"] .WA_FloatingButton{
  left: 20px;
}
.WA_Chat_Widget[data-position$="-right"] .WA_FloatingButton{
  right: 20px;
}
.WA_Chat_Widget[data-position$="-center"] .WA_FloatingButton{
  left: 50%;
  transform: translateX(-50%);
}

.WA_Chat_Widget[data-position^="top-"] .WA_ChatBox{
  top: 110px;
}
.WA_Chat_Widget[data-position^="bottom-"] .WA_ChatBox{
  bottom: 110px;
}
.WA_Chat_Widget[data-position$="-left"] .WA_ChatBox{
  left: 30px;
}
.WA_Chat_Widget[data-position$="-right"] .WA_ChatBox{
  right: 30px;
}
.WA_Chat_Widget[data-position$="-center"] .WA_ChatBox{
  left: 50%;
  transform: translateX(-50%);
}


.WA_Chat_Widget .WA_ChatBox{
  position: fixed;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header{
  width: auto;
  background: #095e54;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .name{
  color: #fff;
  font-weight: 600;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .answer_time{
  color: #e4e4e4;
  font-size: 14px;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close{
  background: transparent;
  color: #fff;
  border: none;
  outline: none;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close svg{
  fill: #ffff;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body{
  padding: 20px;
  background: #e6ddd4;
  position: relative;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(./bg-pattern.png);
  opacity: 0.1;
  z-index: 0;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message{
  max-width: 280px;
  background: #fff;
  padding: 20px;
  padding-top: 10px;
  border-radius: 8px;
  z-index: 1;
  position: relative;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  left: -10px;
  top: 0px;
  border-radius: 3px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .username{
  color: darkgray;
  font-weight: 500;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .message_content{
  font-size: 14px;
  color: #000;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer{
  padding: 20px;
  background-color: #fff;
  width: 100%;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn{
  width: 100%;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 1000px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn.btn-whatsapp{
  background: #095e54;
  color: #fff;
  display: block;
  text-align: center;
}

.grid-single{
  width: 50%;
  margin: auto;
  padding: 25px 0px;
  display: flex;
  justify-content: center;
}


