﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0px
}

button {
    border: 0;
    background: transparent;
}
/*<<<<<<<<<Nav-start>>>>>>>>>>>*/

.wrapper {
    background: #052e10;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 5px 0px
}

.logo img {
    width: 75px;
}

.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

#show-menu,
#show-services {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0
}

    .nav-links li {
        position: relative;
    }

    .nav-links .a,
    .nav-links label.desktop-link {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        padding: 8px 14px;
        display: block;
        transition: color 0.3s;
        cursor: pointer;
    }

        .nav-links .a:hover,
        .nav-links label:hover {
            color: #4cd797;
        }

/* Dropdown */
.dropdown {
    position: absolute;
    background: #198754;
    top: 100%;
    left: 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 4;
}

    .dropdown li .a {
        color: #fff;
        padding: 10px;
        display: block;
    }

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media screen and (max-width: 900px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -110%;
        width: 100%;
        background: #14181f;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
    }

    #show-menu:checked ~ .nav-links {
        left: 0;
        z-index: 3;
        top: 100px;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-links label.desktop-link {
        display: block;
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        background: none;
        padding-left: 20px;
    }

    #show-services:checked ~ .dropdown {
        max-height: 300px;
    }

    .dropdown li .a {
        padding: 10px 0;
        color: #fff;
    }

    .nav-links li:hover .dropdown {
        opacity: 1;
        visibility: visible;
    }
}
/*<<<<<<<<<Nav-End>>>>>>>>>>>*/

/*<<<<<<<<<banner-start>>>>>>>>>>>*/
.owl-dots {
    display: none;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button.owl-prev span {
    font-size: 55px;
    color: #fff;
    margin-left: 15px;
}

button.owl-next span {
    font-size: 50px;
    color: #fff;
    margin-right: 15px;
}

.banner-bottom-section-sub-heading {
    font-size: 16px;
    font-family: 'Barlow';
    font-weight: 500;
}
/*<<<<<<<<<banner-End>>>>>>>>>>>*/

/*<<<<<<<<<banner-bootom-section-start>>>>>>>>>>>*/

.banner-bottom-section-heading {
    font-size: 30px;
    display: block;
    font-weight: 300;
    margin-bottom: 15px;
}

/*<<<<<<<<<banner-bootom-section-start>>>>>>>>>>>*/

/*<<<<<<<<<section1-start>>>>>>>>>>>*/
.section1-card-heading {
    font-size: 18px;
    color: #000000;
    font-family: 'Barlow';
    background: #e9bd30;
    padding: 15px;
    display: block;
    border-radius: 6px;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 0;
    text-align: center;
}

.read-btn {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    background: #063621;
    width: 100%;
    padding: 10px 0px;
    border-radius: 4px;
    color: #fff;
    margin-top: 15px;
}

    .read-btn a {
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        color: #323030;
    }

.section1-card-sub-heading {
    font-size: 24px;
    margin-top: 15px;
    color: #000000;
    font-family: 'Barlow';
    font-weight: 600;
    margin-bottom: 12px;
}

.section1-card img {
    height: 100%;
}

.section1-card-timing-heading {
    padding: 5px;
    background: #00000026;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 10px;
}

.section1 {
    margin: 50px 0px;
    margin-top: 100px;
}

.section1-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 1px 3px 0px #e5e9f261;
    height: 100%
}

.section1-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 50px;
    display: block
}

.section1-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #052e10;
}
/*<<<<<<<<<section1-End>>>>>>>>>>>*/

/*heading-section-start*/
.heading-div-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #052e10;
}

.heading-div {
    padding: 50px 0px;
}

.heading-div-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    display: block;
}
/*heading-section-end*/

/*<<<<<<<<<section4-start>>>>>>>>>>>*/

.single__service-section4 {
    padding: 30px;
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.1);
    margin-bottom: 10px;
    transition: .3s;
    position: relative;
    border-radius: 10px;
    background: #ffffff;
}

    .single__service-section4 span {
        font-size: 14px;
        font-weight: 500;
        margin-top: 16px;
        display: block;
        color: #464141;
    }

.numbering-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section4 {
    background: #052e10;
    padding: 50px;
    margin: 50px;
    border-radius: 60px;
    margin-top: 0px
}

.sm-heading {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    display: block
}

.big-heading-new {
    font-size: 17px;
    font-family: 'Barlow';
    margin: 15px 0px;
    display: block;
    color: #fff;
}

.big-heading {
    font-size: 60px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    display: block
}

.single__service {
    padding: 30px;
    box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.1);
    margin-bottom: 30px;
    transition: .3s;
    position: relative;
    border-radius: 10px;
    background: #ffffff;
}

/*<<<<<<<<<section4-End>>>>>>>>>>>*/


/*section5-start*/
.section5 {
    margin: 80px 0px;
}

    .section5.h1 {
        font-family: 'Barlow';
        font-size: 55px;
        margin-bottom: 15px;
    }

    .section5.span {
        color: #2a2929;
        font-size: 17px;
        line-height: 24px;
        letter-spacing: 0.3px;
        font-family: 'Barlow';
    }

.section5-btn {
    margin-top: 20px;
}

    .section5-btn .a {
        margin-top: 25px;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: #052e10;
        text-decoration: none;
        font-weight: bold;
        font-family: 'Barlow';
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: 2px solid #052e10;
    }
/*section5-end*/

/*<<<<<<<<<section2-start>>>>>>>>>>*/
.section2 {
    margin: 50px 0px;
    margin-top: 100px;
}

.mt-50-add {
    margin-top: 50px;
}

.section2-card {
    background: #e9bd30;
    border-radius: 4px;
    height: 100%;
    transition: .5s ease all;
}

    .section2-card:hover {
        background: #ffffff;
        border: 1px solid;
        box-shadow: 0px 1px 2px 0px #ff000024;
    }

        .section2-card:hover .section2-card-icon i {
            color: #0c0c0c;
        }

        .section2-card:hover .section2-heading span {
            color: #0c0c0c;
        }

        .section2-card:hover .section2-sub-heading span {
            color: #0c0c0c;
        }

        .section2-card:hover .section2-card-icon {
            background: #ffffff;
            border: 1px solid;
        }


.section2-card-icon i {
    color: #fff;
    font-size: 30px;
}

.section2-heading span {
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
    color: #000;
    font-weight: 500;
}

.section2-sub-heading span {
    font-size: 12px;
    color: #000;
    font-weight: 500;
}

.section2-card-icon {
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    position: absolute;
    top: -20%;
}
/*<<<<<<<<<section2-end>>>>>>>>>>*/

/*section-gallery-start*/

.main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}

    .main .card-image img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}
/*section-gallery-end*/


/*FAQ-start*/
.faq {
    padding: 80px 0px;
}

.section-faq-heading-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #052e10;
}

.section-faq-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 50px;
    display: block;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 32px 0px rgb(8 8 8 / 6%);
    margin-bottom: 15px;
    border-radius: 15px;
}

    .question::after {
        content: "\002B";
        font-size: 2.2rem;
        position: absolute;
        right: 20px;
        transition: 0.2s;
    }

    .question.active::after {
        transform: rotate(45deg);
    }

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.question.active + .answercont {
}

/*FAQ-end*/


/*<<<<<<<<<section-contact-start>>>>>>>>>>>*/
.section-contact {
    margin: 50px 0px;
}
.form-group .label {
    font-size: 16px;
    font-family: 'Barlow';
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}
.section-contact-card {
    background: #198754;
    padding: 30px;
    border-radius: 15px;
}

.section-contact-heading-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #052e10;
}

.section-contact-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 50px;
    display: block;
}

.section-contact-card .p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0px
}

.section-contact-card .h1 {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 50px;
    color: #fff
}

.fomr-control {
    display: block;
    font-weight: normal;
    line-height: normal;
    border: 1px solid #fff;
    background-color: #00000000;
    height: 60px;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 40px;
    width: 100%;
    color: #fff
}

.section-contact-img img {
    height: 545px;
    border-radius: 30px;
}

.fomr-control::placeholder {
    color: #fff
}

.btn-form-section-contact {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #000000;
    padding: 15px;
    background: #fff;
    color: #00358d;
    font-size: 18px;
    font-weight: 500;
    transition: .5s ease all
}

    .btn-form-section-contact:hover {
        background: #000000;
        color: #ffffff;
    }
/*<<<<<<<<<section-contact-End>>>>>>>>>>>*/

/*<<<<<<<<<Footer-start>>>>>>>>>>>**/
.footer {
    background: linear-gradient(105deg, #052e10, #1db17f);
    padding: 20px;
}
/*END SOCIAL PROFILE CSS*/
.copyright {
    color: #fff;
    font-size: 15px;
    text-align: center;
}

    .copyright a {
        color: #01c7e9;
        transition: all 0.2s ease 0s;
    }

        .copyright a:hover {
            color: #ff3666;
        }

/*<<<<<<<<<Footer-End>>>>>>>>>>>**/

/*<<<<<<<<<Responsiv-start>>>>>>>>>>>**/
@media(max-width:991px) {
    .booking-container {
        max-width: max-content;
    }

    .banner-sm-heading .h1 {
        font-size: 30px;
    }

    .banner-sm-heading {
        transform: translate(-50%, 18%);
    }

    .banner-section::after {
        height: auto;
    }

    img.img-fluid.banner-img {
        height: 500px
    }

    .section1-heading {
        font-size: 30px;
    }

    .section4 {
        padding: 30px 0;
        margin: 10px;
    }

    .section5.h1 {
        font-size: 30px;
    }


    .q-div.top img.img-fluid.q-img {
        top: auto !important;
    }

    .q-div.bottom img.img-fluid.q-img {
        bottom: auto !important;
    }

    nav .nav-content {
        justify-content: center
    }

    .desktop-link {
        display: none
    }

    .heading-div-heading {
        color: #000;
        font-weight: bold;
        font-size: 30px;
        display: block;
    }

    .big-heading {
        font-size: 30px;
    }

    .section-faq-heading {
        font-size: 30px;
    }

    .section3-heading {
        font-size: 30px;
    }

    .section-contact-heading {
        font-size: 30px;
    }

    .padding-right {
        padding-right: 0;
    }

    .banner-heading {
        font-size: 40px;
    }

    .banner-sub-heading {
        font-weight: normal;
        color: #000;
    }

    .position-container-fluid {
        top: 5%
    }

    .banner-card {
        display: none
    }
}
/*<<<<<<<<<Responsiv-End>>>>>>>>>>>**/

