.myNav_content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 1rem 0;
}

.logo img {
    width: 70px;
}

.menu ul {
    display: flex;
    gap: 3rem;
    align-items: center;
    height: 100%;
}

.menu ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.menu ul li a {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    color: var(--black-color);
}

.active-page {
    color: var(--main-color) !important;
}

.topNav p {
    background-color: var(--main-color);
    text-align: center;
    font-weight: 600;
    color: var(--white-color);
    padding: 10px 0;
}



.dropdown_menu {
    position: relative;
}

.dropdown_menu:hover .dropdown_menu__list {
    display: block;
}

.dropdown_menu__list {
    position: absolute;
    display: none;
    left: -50%;
    top: 100%;
    background-color: whitesmoke;
    z-index: 99;
    width: 250px;
}

.header_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_menu__list::before {
    content: '';
    position: absolute;
    left: 30%;
    top: -13px;
    height: 24px;
    width: 24px;
    transform: rotate(45deg);
    background-color: whitesmoke;
}

.dropdown_menu__list a:hover {
    color: var(--main-color);
    padding-left: 1.5rem;
    transition: .3s ease all;
}

.dropdown_menu__list a {
    transition: .3s ease all;
    font-size: 16px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

/* banner_wrapper */
.banner_wrapper {
    background: linear-gradient(-90deg, rgba(0, 0, 0, .4), rgb(0 0 0)), url('../images/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-attachment: fixed;
}

.banner_wrapper__content {
    color: var(--white-color);
}

.banner_wrapper__content h1 {
    font-size: 70px;
    font-weight: 600;
    margin-top: 1rem;
    color: #f9f4dc;
}

.banner_wrapper__content h6 {
    background-color: var(--main-color);
    padding: 7px 20px;
    border-radius: 100px;
    max-width: max-content;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.banner_wrapper__content p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 1rem;
    max-width: 700px;
}

/* about css */
.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 3rem;
}

.about_img,
.about_content,
.newslatter_wrapper__left,
.newslatter_wrapper__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_img img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    object-fit: cover;
    object-position: bottom;
    /* background-color: whitesmoke; */

}

.about_content h2 {
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--main-color);
}

.about_content p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 1rem;
}

.myBtn {
    margin-top: 2rem;
}

.myBtn a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    /* opacity: .8; */
}

/* counter_wrapper */
.white_bg {
    background-image: url('../images/white_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.main_heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main_heading h2 {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--main-color);
    font-size: 44px;
}

.main_heading p {
    font-size: 18px;
    line-height: 30px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem !important;
}

.counter_box {
    background-color: var(--black-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    transition: .3s ease all;

}

.counter_box h3 {
    font-size: 55px;
}

.counter_box p {
    font-size: 18px;
    margin-top: 1rem;
    text-transform: capitalize;
}

.counter_box:hover {
    background-color: var(--main-color);
    transition: .3s ease all;
    color: var(--white-color);
    transform: scale(1.1);
}

.form_box input,
.form_box textarea {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
}

.form_box button {
    width: 100%;
}

.modal-title {
    font-weight: 600;
}

/* services_wrapper */
.services_wrapper {
    background-color: #4A4A4A;
}

.white_heading {
    color: var(--white-color);
}

.white_heading h2 {
    color: var(--white-color);
}

.service_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    /* margin-bottom: 1rem; */
    transition: .3s ease all;
    cursor: pointer;
    border-bottom: 1px solid #fff;

}

/* .service_box:nth-child(1) {
    transition: .3s ease all;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.service_box:hover:nth-child(1) {
    transition: .3s ease all;
    background-image: url('../images/banner.jpg') !important;
} */

.service_box:hover {
    padding: 2rem;
    transition: .3s ease all;
    background-color: var(--white-color);
    color: var(--black-color);
}

.service_box:hover h3,
.service_box:hover p,
.service_box:hover a {
    color: var(--black-color);
}

.service_box h3 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 25px;
    width: 36%;
    color: var(--white-color);
}

.service_box p {
    font-size: 16px;
    line-height: 26px;
    max-width: 516px;
    color: whitesmoke;
}

.service_box a {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white-color);
}

.service_box a:hover {
    color: black;
}

/* offer_box */
.offer_box {
    background-color: #EEEDED;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid #ccc;
}

.offer_box h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--grey-color);
}

.offer_box p {

    font-size: 16px;
    line-height: 28px;
    margin-top: 1rem;
}

/* cta_wrapper */
.cta_wrapper {
    background-color: #0D5444;
    padding: 50px 0;
    text-align: center;
    color: var(--white-color);
}

.cta_wrapper__content h2 {
    font-weight: 600;
    font-size: 44px;
}

.cta_wrapper__content p {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem !important;
    font-size: 18px;
    line-height: 30px;
}

/* testimonial_box */
.testimonial_box {
    border: 1px solid #ccc;
    margin: 0 12px;
    padding: 2rem;
    text-align: center;
    background-color: whitesmoke;
}

.slick-track {
    margin-bottom: 10px;
}

.quaote {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quaote img {
    width: 50px;
}

.testimonial_box__content p {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 26px;
}

.testimonial_box__content h3 {
    margin-top: 1rem;
    font-size: 22px;
    font-weight: 600;
}

.slick-dots {
    line-height: 0;
    bottom: -3rem !important;
}

.slick-dots li button::before {
    display: none;
}

.slick-dots li {
    height: 16px !important;
    width: 16px !important;
    border-radius: 100%;
    background-color: #ddd;
}

.slick-dots li.slick-active {
    background-color: var(--main-color);
    transition: .3s ease;
}

/* clients_wrapper */
.clients_wrapper {
    background-color: var(--black-color);
    padding: 50px 0;
}

.clients_box__img {
    display: flex !important;
    justify-content: center;
    align-items: center;

}

.clients_box__img img {
    width: 200px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

/* newslatter_wrapper__left */
.newslatter_wrapper__left img {
    height: 400px;
    object-fit: contain;
}

.newslatter_wrapper__right h3 {
    font-size: 42px;
    font-weight: 600;
    color: var(--black-color);
    text-transform: capitalize;
}

.newslatter_wrapper__right p {
    font-size: 18px;
    margin-top: 1rem;
}

.subscribe_input {
    margin-top: 2rem;
}

.subscribe_input input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 25px;
}

.subscribe_input button {
    width: 100%;
}

.menu_btn {
    display: none;
}

.menu_btn i {
    font-size: 32px;
}


.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, .4);
    backdrop-filter: blur(2px);

    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.5s ease;
    will-change: right, backdrop-filter;
}

.mobileNav.show {
    /* transition: .3s all ease; */
    right: 0;
}

.mobileNav_content {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--white-color);
    width: 40%;
    height: 100%;
}

.mobileNav_content__header {
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: end;
    align-items: center;
}

.close_btn {
    padding: 10px;
    background-color: #0D5444;
}

.close_btn i {
    color: var(--white-color);
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
}

.mobile_menu ul,
.mobile_menu ul li {
    width: 100%;
}

.mobile_menu ul li a {
    font-size: 18px;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    width: 100%;
    display: block;
    text-transform: capitalize;
    color: var(--black-color);
}

.myDrop__list {
    height: 0;
    overflow: hidden;
}

.myDrop_btn {
    position: relative;
}

.myDrop_btn::after {
    content: '\002B';
    position: absolute;
    right: 1rem;
    top: 50%;
    font-size: 28px;
    transform: translateY(-50%);
}

.myDrop__list a {
    background-color: #f0fff4;
    padding: 10px 10px 10px 2rem !important;
    font-size: 14px !important;
}

.myDrop.active .myDrop_btn::after {
    content: '\2212';
}

.myDrop.active .myDrop__list {
    height: auto;
}

.myDrop.active .myDrop_btn {
    background-color: #0D5444;
    color: var(--white-color);
}

.mobile_social {
    position: absolute;
    left: 0;
    bottom: 2rem;
    width: 100%;
    text-align: center;
}

.mobile_social__links {
    margin-top: 12px;
}

.mobile_social__links img {
    width: 30px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.mobile_social p {
    text-transform: capitalize;
    font-weight: 700;
    color: var(--main-color);
}

@media(max-width:1200px) {
    .menu ul {
        gap: 2rem;
    }

    .banner_wrapper__content h1 {
        font-size: 60px;
    }

    .counter_box h3 {
        font-size: 44px;
    }

    .counter_box p {
        font-size: 15px;
    }

    .counter_box {
        padding: 1rem;
    }

    .service_box h3 {
        font-size: 18px;
    }

    .service_box p {
        font-size: 14px;
        line-height: 24px;
        max-width: 488px;
    }

    .offer_box h3 {
        font-size: 20px;
    }

    .offer_box p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media(max-width:992px) {
    .menu_btn {
        display: block;
    }

    .menu ul {
        display: none;
    }

    .header_btn {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .counter_box {
        margin-bottom: 24px;
    }

    .about_content {
        margin-top: 1rem;
    }

    .service_box {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .service_box p {
        font-size: 16px;
        margin-top: 1rem;
        margin-bottom: 1rem !important;
        max-width: 100%;
    }

    .service_box h3 {
        font-size: 25px;
        width: 100%;
    }

    .center_box {
        margin: 0 25%;
        margin-top: 24px;
    }


}

@media(max-width:768px) {
    .mobile_menu ul li a {
        font-size: 16px;
    }

    .mobileNav_content {
        width: 75%;
    }

    .topNav p {
        font-size: 13px;
    }

    .banner_wrapper {
        padding: 50px 0;
    }

    .banner_wrapper__content h1 {
        font-size: 36px;
    }

    .banner_wrapper__content p {
        font-size: 14px;
        line-height: 24px;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .about_img img {
        height: 300px;
        object-fit: contain;
    }

    .about_content h2 {
        font-size: 32px;
    }

    .about_content p {
        font-size: 16px;
        margin-top: 10px;
        line-height: 26px;
    }

    .main_heading h2 {
        font-size: 25px;
    }

    .main_heading p {
        font-size: 14px;
        line-height: 24px;
    }

    .counter_box h3 {
        font-size: 34px;
    }

    .counter_box p {
        margin-top: 6px;
    }

    .center_box {
        margin: 0;
    }

    .offer_box {
        margin-bottom: 1rem;
        height: auto;
    }

    .service_box h3 {
        font-size: 20px;
    }

    .cta_wrapper {
        padding: 35px 0;
    }

    .cta_wrapper__content p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 12px !important;
    }

    .cta_wrapper__content h2,
    .newslatter_wrapper__right h3 {
        font-size: 32px;
    }

    .subscribe_input {
        margin-top: 1rem;
    }

    .subscribe_input input {
        margin-bottom: 10px;
    }

    .clients_box__img img {
        width: 125px;
    }

    .newslatter_wrapper__left img {
        height: 300px;
    }

    .service_box {
        margin-bottom: 0;
        padding: 1rem 0;
    }

    .service_box p {
        font-size: 14px;
    }

    .service_box a {
        font-size: 14px;
    }

    .white_bg {
        background-attachment: inherit;
    }

    .testimonial_box__content p {
        font-size: 14px;
        line-height: 24px;
    }

    .quaote img {
        width: 44px;
    }

    .testimonial_box {
        padding: 1.5rem 1rem;
    }

    .testimonial_box__content h3 {
        font-size: 18px;
    }

    .newslatter_wrapper__right {
        margin-top: 1rem;
    }

    .newslatter_wrapper__right h3 {
        font-size: 22px;
    }

    .newslatter_wrapper__right p {
        font-size: 16px;
        margin-top: 10px;
    }

    .subscribe_input input {
        padding: 7px;
    }

    .newslatter_wrapper__left img {
        height: 185px;
    }

    .about_content p {
        font-size: 14px;
        line-height: 25px;
    }

    .counter_box {
        height: 90%;
        text-align: center;
    }

    .service_box:hover {
        padding: 1rem;
    }

    .logo img {
        width: 50px;
    }
}

@media(max-width:576px) {
    .mobileNav_content {
        width: 85%;
    }

    .about_img img {
        height: 200px;
    }

    .myNav.sticky {
        position: fixed;
        left: 0;
        background-color: var(--white-color);
        width: 100%;
        z-index: 999;
        top: 0;
        box-shadow: 0 0 4px rgba(0, 0, 0, .4);
        border-bottom: 1px solid #ccc;
    }

    .topNav p {
        font-size: 12px;
    }

    .banner_wrapper {
        /* background-attachment: inherit; */
    }
}