* {
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #fff;
}

h1,
h2,
h3,
h4 {
    
        font-family: "Italiana", sans-serif;
        font-weight: 400;
        font-style: normal;
    
    font-size: 36px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 36px;
}

p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

h2.accordion-header{
    font-family: "Montserrat", sans-serif;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hide {
    display: none;
}





/* Header */

header {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 0;

}

header .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 140px;
}

.logo a img {
    height: 115px;
    width: auto;
}

header nav {
    display: flex;
    gap: 60px;
}

header nav a {
    color: #ffffff;
    padding-right: 0px;
    text-decoration: none;
    position: relative;
}



header nav a::after {
    content:"";
    position: absolute;
    bottom: -10px;
    background-color: #41464b;
    border-radius: 10px;
    height: 2px;
    left: 0px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}
header nav a:hover::after {
    opacity: 1; 
    
}

.hamburger-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    
    background-color: white;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hamburger-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 99;
}

.hamburger {
    cursor: pointer;
}

.hamburger.active ~ .hamburger-menu {
    display: flex;
}




/* Banner */

.hero_section {
    background-image: url(../images/banner.png);
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
    margin: 0px 0px 150px 0px;
    height: 91vh;
}

.hero_section .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;

}


.hero_section h1 {
    font-size: 70px;
    /* color: #ffffff; */
    align-items: center;
    margin: 0px;
}

.hero_section p {
    font-size: 16px;
    /* color: #ffffff; */
    padding-bottom: 5px;
    /* padding: 20px; */
    text-align: center;
    width: 36%;
}

/* .banner-button {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.button {
    background-color: transparent;
    color: white;
    padding: 8px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    display: inline-flex;
}

button i {
    font-size: 15px;
    margin-left: 10px;
    display: flex;
}

.button:hover{
    background-color: #00000024;
  
    backdrop-filter: blur(10px);
}





/* About Us */

.about_us {
    margin: 60px 0px;
}


.about_us .about_sec {
    display: flex;
    gap: 40px;
    align-items: center;
}


.about_us .about_us-content {
    width: 45%;
    padding: 0px;
}

.about_us .about_us-image {
    width: 55%;
}

.about_us .about_us-image img {
    width: 100%;
    height: auto;
}

.about_us h2 {
    /* font-size: 42px; */
    /* color: #ffffff; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px 0px 20px 0px;
}

.about_us p {
    /* font-size: 14px; */
    /* color: #ffffff; */
    padding: 0px 20px 0px 0px
}

.about_us-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: block;
}

.about_us-button_resp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    display: none;
}








/* Mission & Vision */

.mission-vision {
    display: flex;
    justify-content: space-around;
    margin: 100px 0;
}

.mission-vision .cards {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.card {
    padding: 20px;
    margin: 20px;
    width: 36%;
    background-color: #000;
    box-shadow: rgb(54 54 54 / 35%) 0px -50px 36px -28px inset;
}


/* h2 {
    font-weight: bold;
    margin-top: 0;
}

p {
    font-size: 16px;
    color: #fff;
} */





/* Counter */

#counter {
    /* color: #fff; */
    /* padding: 100px 0; */
    margin: 100px 0px;
    background: rgba(255, 255, 255, 0.1);
}

#counter .cards {
    display: flex;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.1); */
    /* width: 100%; */

}

#counter .count {
    padding: 50px;
    /* color: #fff; */
    text-align: center;
}

.count h4 {
    /* color: #fff; */
    font-size: 22px;
    margin: 0;
    font-weight: 200;
}

#counter .number {
    font-size: 60px;
    font-weight: 200;
    margin: 0;
}





/* Video */

.video-section {
    margin: 100px 0px;
}

.video-section video {
    width: 50vw;
    height: 100%;
    object-fit: cover;
    
}

.video-section .videoplay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section .videocontent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-section .content {
    display: flex;
    flex-direction: column;
    width: 61%;
    text-align: center;
}





/* Services */

.services {
    margin: 100px 0px;
}

.services h2 {
    /* font-size: 28px; */
    /* color: #ffffff; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
}

.services h3 {
    font-size: 24px;
}

.services p {
    font-size: 16px;
}

.services .cards {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.services .card {
    border: 1px solid #fff;
    border-radius: 6px;
}

.services .card-heading {
    padding-bottom: 30px;
}

.services .cards i {
    font-size: 32px;
}






/* About_two */

.about_two {
    margin: 100px 0px;
}

.about_two .about_two-sec {
    display: flex;
}

.about_two .about_two-content {
    width: 60%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_two .about_two-image {
    width: 40%;
}

.about_two .about_two-image img {
    width: 100%;
    height: auto;
}

.about_two h2 {
    /* font-size: 42px; */
    /* color: #ffffff; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
}

.about_two p {
    /* font-size: 14px; */
    /* color: #ffffff; */
    padding: 20px 100px 40px 0px
}

.about_two-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: block;
}

.about_two-button img {
    height: 10px;
    width: auto;
}

.about_two-button_resp {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    display: none;
}







/* Gallery */

.gallery {
    margin: 100px 0px;
}

.gallery h2 {
    /* font-size: 42px; */
    /* color: #ffffff; */
    margin: 0px;
    width: 50%;
}

.gallery .gallery_heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.gallery .gallery-button {
    display: flex;
    align-items: center;
    justify-content: center;
}






.gallery figure img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.gallery .gallery_card {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    padding: 0px;
    margin: 0px;
}

.gallery .gallery_background {
    background-image: url(../../../web/assets/images/image1.png);
    background-position: left;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    background-repeat: no-repeat;
}




/* Testimonial */

.testimonial {
    margin: 100px 0px;
}

.testimonial-main {
    display: flex;
}

.testimonial .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial .review-image img {
    width: 80%;
    height: auto;
}

.testimonial .review {
    display: flex;
    margin-bottom: 10px;
}

.testimonial .review-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial .review-rating {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial .review-rating p {
    font-weight: 100;
}


.testimonial .review-rating .top {
    margin-bottom: 0px;
}

/* .testimonial .review-rating .bottom {
    display: flex;
    justify-content: flex-start;
    font-weight: 100;
} */

.testimonial .review-star {
    display: flex;
    justify-content: flex-start;
}

.testimonial .review-rating img {
    height: 15px;
    width: 15px;
}

.card {
  /* Enable vertical scrolling */
  overflow-y: auto;
  
  /* Set a fixed height or max-height as needed */
  max-height: 400px; /* Adjust this value as needed */
  
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.card::-webkit-scrollbar {
  display: none;
}

/* Ensure proper padding and sizing */
.card {
  padding-right: 5px; /* Add some padding to prevent content from touching the right edge */
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

.swiper {
    width: 600px;
    height: 400px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, auto);
    left: var(--swiper-pagination-left, 2px);
}

.swiper-slide .card {
    background-color: #131111;
    width: 500px;
    height: 300px;
    overflow-y: scroll;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.swiper-slide .card h3 {
    margin-bottom: 0px;
    font-size: 24px;
}

.swiper-slide .card .occup {
    margin-top: 0px;
    font-size: 14px;
    font-weight: 100;
}

.swiper-slide .name {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.swiper-slide .review {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.swiper-slide .review p {
    font-size: 15px;
}






/* Contact */

.contact {
    background: #060606;
    margin: 0px 0px;
}

/* .contact .container{
    margin: auto;
    padding: 100px;
} */

.contact .map {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0px 20px 0px;
    filter: grayscale(100%);
}

.contact .form_section p {
    margin: 15px 0px 70px 0px;
}

.contact .form_line {
    display: flex;
    margin: 0px 0px 30px 0px;
    gap: 30px;
    flex-wrap: wrap;
    padding-right: 50px;
}

.contact .form_line div {
 width: 45%;
}

.contact .form_line div:last-child {
    width: 100%;
   }

.contact .contact_us {
    display: flex;
    padding: 30px 0px;
}

.contact .form_section {
    width: 60%;
}

.contact .contactifo {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 65px;
}


.contact.info_section {
    width: 40%;
}

.contact h2 {
    /* font-size: 42px; */
    /* color: #ffffff; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
}


.contact input,
.contact textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    margin-top: 5px;
    color: #fff;
    width: 100%;
}

.contact input::-webkit-input-placeholder,
.contact textarea::-webkit-input-placeholder {
    font-style: italic;
    font-size: 1em;
    color: rgba(245, 255, 250, 0.526);
    padding: 5px;
    font-weight: 300;
}

.contact .form-button {
    display: flex;
    justify-content: flex-start;
    margin: 20px 25px 20px 0px;
}

.contact form input:focus {
    outline: none;
}

.contact form textarea:focus {
    outline: none;
}

.contact i {
    color: #fff;
}

.contact .vertical_l {
    border-left: 2px solid #fff;
    height: 200px;
    margin: 85px 20px 85px 20px;
}

.contact h3 {
    /* color: #fff; */
    margin-bottom: 20px;
}

.contact .info_section {
    margin: 50px 0px 0px 50px;
}

.contact .info_section p {
    margin: 0px 100px 10px 0px;
}

.contact .social_heading {
    margin-top: 30px;
}

.contact .social_icon {
    display: flex;
    justify-content: flex-start;
    gap: 15px
}





/* Footer */

.foot {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin: 60px 0px;
}

footer h3 {
    /* color: #ffffff; */
    margin-bottom: 18px;
}

.footer_line {
    width: 100%;
    height: auto;
    /* margin: 50px 0px; */
}

footer li {
    padding-bottom: 5px;
}

footer ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    gap: 35px;
}

footer .stay {
    width: 50%;
}

footer .stay p {
    width: 75%;
}

footer img {
    height: 140px;
    width: auto;
}

.footer_logo{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer_logo p{
    width: 60%;
    text-align: center;
    margin-top: 15px;;
}

footer .exploring {
    /* color: white; */
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .exploring_content {
    display: flex;
    flex-direction: column;
}

footer .connect {
    width: 20%;
}

footer .footer_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

footer .icons {
    display: flex;
    margin-top: 10px;
    gap: 15px;
}

footer i {
    color: #fff;
}

footer hr {
    margin: 10px 0px;
    color: #343434;
    opacity: 1;
}
footer .copyright_text {
    margin: 10px 0px;
    text-align: center;
    padding: 10px;
}


@media screen and (min-width: 768px) and (max-width: 1023px) {

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
        z-index: 1;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }

    header .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 10px 0px
    }

    .nav-links.active {
        display: flex;
        gap: 10px;
    }


   

    h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 36px;
    }

    

    .hero_section {
        background-image: url(../../../web/assets/images/banner.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0px 0px 100px 0px;
        height: 60vh;
    }

    .hero_section .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 28vh;
    }

    .about_us .about_sec {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .about_us .about_us-image {
        width: 100%;
    }

    .about_us .about_us-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .about_us .about_us-content {
        width: 100%;
        padding: 0px;
    }

    .about_us .about_us-content {
        width: 100%;
        padding: 0px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about_us-button {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        display: none;
    }

    .about_us-button_resp {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        display: block;
    }





    .card {
        width: 50%;
        text-align: center;
        padding: 0px;
    }

    .video-section .content {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .video-section .content p {
        text-align: left;
    }


    .video-section .videocontent {
        gap: 20px;
    }

    .services .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: initial;
        padding: 10px;
    }

    .services h2 {
        justify-content: center;
    }

    .card {
        width: 60%;
        text-align: center;
        padding: 0px;
    }

    .about_two .about_two-sec {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .about_two .about_two-content {
        width: 100%;
        padding: 0px;
        align-items: center;
    }

    .about_two p {
        padding: 0px;
        text-align: left;
        margin: 10px;
    }

    .about_two .about_two-image {
        width: 100%;
    }

    .about_two .about_two-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .about_two-button {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        display: none;
    }

    .about_two-button_resp {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        display: block;
    }



    .gallery .gallery_card {
        flex-direction: column;
        padding: 0px;
        margin: 0px;
    }

    .gallery figure img {
        width: 600px;
        height: 600px;
        object-fit: cover;
        object-position: center;
    }

    .testimonial-main {
        display: flex;
        flex-direction: column;
    }

    .testimonial .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: center;
        justify-content: center;
    }

    .testimonial .review {
        gap: 20px;
    }

    .testimonial .review-rating {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .testimonial .review-image img {
        width: 100%;
        height: auto;
    }

    .testimonial .content .heading {
        text-align: center;
    }

    .contact .contact_us {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .contact .form_section {
        width: 100%;
    }

    form {
        gap: 50px;
        display: flex;
        flex-direction: column;
    }

    .contact .form_line {
        display: flex;
        flex-direction: column;
        margin: 0px;
        gap: 50px;
    }

    .contact .contact_us {
        display: flex;
        padding: 0px;
        gap: 50px;
        align-items: center;
    }

    .contact input,
    .contact textarea {
        width: 100%;
    }

    .contact h2 {
        justify-content: center;
    }

    .contact .form_section p {
        text-align: center;
        margin: 15px;
    }

    .contact .form-button {
        display: flex;
        justify-content: center;
        margin: 20px 25px 20px 0px;
    }

    .contact .vertical_l {
        display: none;
    }

    .contact .info_section {
        margin: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%
    }

    .contact .info_section p {
        margin: 0px 0px 10px 0px;
    }

    .foot {
        align-items: center;
    }

    footer img {
        height: 80px;
        width: auto;
    }

    footer .footer_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    footer .stay {
        width: 100%;
        text-align: center;
    }

    footer .stay p {
        width: 100%;
    }

    footer .exploring {
        width: 100%;
    }

    footer ul {
        text-align: center;
    }

    footer .connect {
        width: 100%;
        text-align: center;
    }

    footer .icons {
        display: flex;
        margin-top: 10px;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    footer .copyright_text {
        margin: 10px 0px;
        text-align: center;
    }



}








@media screen and (max-width: 767px) {

    .hamburger-menu.active .nav-links{

        display: flex;
        gap: 15px;
    }

    .hamburger-menu .nav-links{

        display: none;
    }

    .mobhide{

        display: none !important;
    }

    .hero_section h1 {
        font-size: 45px;
        padding-bottom: 10px;
        margin: 0px;
    }

    #counter .count {
        padding: 15px 10px;
        text-align: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 68vh;
        z-index: 1;
        padding-top: 63px;
        border-bottom: solid 1px #292929;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }












    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }

    p {
       
        font-weight: 300;
        font-size: 14px;
    }

    header .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0px 10px 0px
    }

    .nav-links.active {
        display: flex;
        gap: 10px;
    }

    .hero_section {
        
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 255px 0px 100px 0px;
        height: 52vh;
    }

    .logo a img {
        height: 85px;
        width: auto;
    }

    .hero_section .hero {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 7vh;
    }

   

    .hero_section p {
        width: 85%;
        font-size: 14px;
    }

    .button {
        padding: 8px 14px;
        font-size: 12px;
    }

    .about_us h2 {
        justify-content: center;
    }

    .about_us .about_sec {
        flex-direction: column;
    }

    .about_us .about_us-content {
        width: 100%;
        padding: 0px;
        text-align: center;
    }

    .about_us p {
        padding: 0px;
    }

    .about_us-button {
        justify-content: center;
        display: flex;
        align-items: center;
        display: none;
    }

    .about_us-button_resp {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        /* display: block; */
    }
    

    .about_us .about_us-image {
        width: 100%;
        margin-top: 20px;
    }

    .mission-vision .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        text-align: center;
    }
    .video-section {
       
        margin-bottom: 0px;
    }
    .services {
       margin-bottom: 25px;;
        margin-top: 25px;
    }
    .about_two {
        margin: 40px 0px;
    }
    .gallery .gallery_heading {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-direction: column;
    }
    .contact .form_line div {
        width: 100%;
    }

    .contact .contactifo {
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 20px;
        padding-top: 40px;
    }

    .gallery h2 {
        margin: 0px;
        width: 100%;
        padding-bottom: 25px;
        text-align: center;
        font-size: 30px;
    }

    .video-section video {
        width: 100vw;
    }

    .video-section .videocontent {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .video-section .content {
        width: 100%;
    }

    .services .cards {
        flex-direction: column;
    }

    .services h2 {
        justify-content: center;
    }

    .services h3 {
        font-size: 20px;
    }

    .about_two .about_two-sec {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about_two .about_two-image {
        width: 100%;
    }

    .about_two .about_two-content {
        width: 100%;
        padding: 0px;
        text-align: center;
        align-items: center;
    }

    .about_two p {
        padding: 0px;
    }

    .about_two-button {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        display: none;
    }

    .about_two-button_resp {
        display: flex;
        align-items: center;
        justify-content: center;
        /* display: block; */
    }
    
    

    .about_two h2 {
        margin-bottom: 20px;
    }

    .gallery .gallery_card {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .testimonial-main {
        display: flex;
        flex-direction: column;
    }

    .testimonial .content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .testimonial .people {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial .review-rating {
        width: 60%;
    }

    .testimonial .slider {
        margin: 20px 0px;
    }

    .swiper {
        width: 100%;
        height: 300px;
    }





    .contact .contact_us {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .contact .form_section {
        width: 100%;
    }

    form {
        gap: 50px;
        display: flex;
        flex-direction: column;
    }

    .contact .form_line {
        display: flex;
        flex-direction: column;
        margin: 0px;
        gap: 50px;
    }

    .contact .contact_us {
        display: flex;
        padding: 0px;
    }

    .contact input,
    .contact textarea {
        width: 100%;
    }

    .contact h2 {
        justify-content: center;
    }

    .contact .form_section p {
        text-align: center;
        margin: 15px;
    }

    .contact .form-button {
        display: flex;
        justify-content: center;
        margin: 20px 25px 20px 0px;
    }

    .contact .vertical_l {
        display: none;
    }

    .contact .info_section {
        margin: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact .info_section p {
        margin: 0px 0px 10px 0px;
    }

    .foot {
        align-items: center;
    }

    footer img {
        height: 120px;
        width: auto;
    }
    .footer_logo p {
        width: 80%;
        text-align: center;
        margin-top: 15px;
    }

    footer ul {
        margin: 0px;
        padding: 0px 29px;
        display: flex;
        gap: 49px;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
    }

    footer .footer_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    footer .stay {
        width: 100%;
        text-align: center;
    }

    footer .stay p {
        width: 100%;
    }

    footer .exploring {
        width: 100%;
    }

    footer ul {
        text-align: center;
    }

    footer .connect {
        width: 100%;
        text-align: center;
    }

    footer .icons {
        display: flex;
        margin-top: 10px;
        gap: 35px;
        align-items: center;
        justify-content: center;
    }

    footer .copyright_text {
        margin: 10px 0px;
        text-align: center;
    }

    .gallery figure img {
        width: 330px;
        height: 400px;
        object-fit: cover;
    }

    .mission-vision {
      
        margin-bottom: 20px;
        margin-top: 20px;
    }

    #counter {
      
        margin-top: 20px;
    }

   #counter .number {
    font-size: 50px;
    font-weight: 200;
    margin: 0;
}



}