@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #0f3357;
    --highlight-color: #2e9333;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Montserrat', sans-serif;
    font-family: "Mulish", sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: "Jost", serif;
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 15px;
}


#fixed_call_btn{
    position: fixed;
    z-index: 9999;
    bottom: 50px;
    left: 20px;
}
.call_btn{
    display: block;
    padding: 12.5px 20px;
    border-radius: 10px;
    border: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}
.call_btn::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    background: var(--highlight-color);
    left: 6px;
    bottom: -6px;
    border-radius: 10px;
    z-index: -9;
}
.call_btn i{
    padding-right: 10px;
}

#top_bar {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: var(--primary-color);
    z-index: 999 !important;
}

.top_phone_mail {
    padding: 0;
    margin: 0;
}

.top_phone_mail li {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 50px;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
    color: var(--secondary-color);
    padding-right: 6px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
}

.top_social {
    padding: 0;
    margin: 0;
}

.top_social li {
    display: inline-block;
    padding-right: 15px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

.top_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.top_phone{
    font-family: "Mulish", sans-serif;
    color: var(--secondary-color) !important;
    font-weight: 500;
    letter-spacing: 0.35px;
}

/* navbar  */

.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    /* background: var(--secondary-color); */
    background: #f8f8f6;
    padding: 0px 0;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.v-center {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
}

.header .item-left {
    flex: 0 0 15%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo_t {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    color: var(--primary-color);
    font-size: 28px;
    padding: 0 5px !important;
}

.logo a img {
    height: 80px;
    padding: 2px 0;
}


#inner_logo {
    height: 60px;
    padding: 5px;
}

.header .item-center {
    flex: 0 0 70%;
    text-align: center;
}

.header .item-right {
    flex: 0 0 15%;
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.header .menu>ul>li {
    display: inline-block;
    line-height: 50px;
    margin: 10px 5px;
}

.header .menu>ul>li>a {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 0 5px;
    letter-spacing: 0px;
    color: var(--text-color) !important;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    /* left: 50%; */
    left: auto;
    /* transform: translateX(-50%); */
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 70%;
    /* width: 100%; */
    max-width: 330px;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 2.5px;
    border-radius: 10px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0 10px;
    text-align: left;
}

.grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
    padding: 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
    padding: 20px 0 !important;
    text-align: center;
}

.list-item ul li a {
    line-height: 23px;
    padding: 5px 8px !important;
    margin: 2.5px 0;
    transition: all 0.3s ease-in;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 300px;
    object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover {
    background: transparent;
    color: var(--highlight-color) !important;
    transition: all 0.3s ease-in;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media(max-width: 991px) {

    .header {
        padding: 0;
    }

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .logo {
        justify-content: space-between;
        padding-left: 10px;
    }

    .header .item-left,
    .header .item-right {
        flex: auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 45px;
        width: 45px;
        margin-right: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 4px;
        background-color: #333333;
        width: 35px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }

    .header .mobile-menu-trigger span:before {
        top: -10px;
    }

    .header .mobile-menu-trigger span:after {
        top: 10px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
        text-align: left;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 60px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding-left: 0 !important;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        margin-top: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        display: grid;
    }

}

/* end navbar  */



/* slider  */

.carousel-control.left {
    background-image: none !important;
}

.carousel-control.right {
    background-image: none !important;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    color: var(--secondary-color);
    opacity: 1;
}

.carousel-control{
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control i{
    color: var(--secondary-color);
    font-size: 32px;
}

.carousel-control {
    opacity: 1;
    width: 5%;
}
.carousel-caption{
    padding: 0 !important;
}

#main_slider {
    width: 100%;
    height: 100%;
    position: absolute;
    /* background: linear-gradient(to right, rgba(5, 37, 95, 0.8) 35%, rgba(0, 0, 0, 0) 100%); */
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); */
    background: rgba(15, 51, 87, 0.65);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
}

#box {
    position: relative;
    transition: all 1s;
    transform: scale(1);
    padding: 0 5%;
    text-align: left;
}

.align_items_center{
    display: flex;
    align-items: center;
}

@keyframes s_heading {
    0% {
        transform: translatey(150px);
        opacity: 0;
    }

    50% {
        transform: translatey(150px);
        opacity: 0;
    }

    100% {
        transform: translatey(0px);
        opacity: 1;
    }
}
@keyframes s_form {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.slider_h {
    font-family: 'Montserrat', sans-serif;
    line-height: inherit;
    font-weight: 800;
    font-size: 50px;
    letter-spacing: 0px;
    color: var(--secondary-color);
    text-transform: uppercase;
    transform: translatey(0px);
    animation-name: s_heading;
    animation-iteration-count: 1;
    transition: all 1s;
    animation-duration: 1.6s;
}

.s_p {
    color: var(--secondary-color);
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: bolder;
    line-height: 32px;
    padding-bottom: 10px !important;
    letter-spacing: 0.15px;
    width: 100%;
    margin: auto !important;
    transform: translatey(0px);
    animation-name: s_heading;
    animation-iteration-count: 1;
    animation-duration: 1.2s;
    transition: all 1s;
}

.slider_btn {
    font-family: 'Montserrat', sans-serif;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 0.35px;
    background: var(--highlight-color);
    font-weight: 600;
    margin-top: 20px !important;
    border-radius: 5px;
    color: var(--secondary-color);
    transform: translatey(0px);
    animation-name: s_heading;
    animation-iteration-count: 1;
    animation-duration: 2s;
    transition: all 0.3s ease-in;
}

.slider_btn:hover {
    transition: all 0.3s ease-in;
    background: var(--highlight-color);
    color: var(--secondary-color);
}

.c_w {
    color: #ffffff !important;
}

.carousel-indicators {
    width: 100%;
    left: 0;
}

.carousel-indicators li {
    width: 9px;
    height: 9px;
    margin: 1px 2.5px;
    border: 1px solid var(--secondary-color);
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
}

#banner_form{
    width: 100%;
    height: auto;
    padding: 30px;
    background: var(--primary-color);
    animation-name: s_form;
    animation-iteration-count: 1;
    animation-duration: 1.4s;
    transition: all 0.3s ease-in;
}
.banner_form_h{
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: inherit;
}
#banner_form label{
    margin-top: 15px;
}
.banner_input{
    margin-top: 5px;
    height: auto;
    border-radius: 5px;
}
.banner_form_btn{
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: var(--highlight-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    display: block;
    margin: auto;
    margin-top: 15px;
}   

/* slider  */


.heading{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    color: var(--primary-color);
}
.heading span{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    color: var(--highlight-color);
}
.subheading{
    font-family: "Mulish", sans-serif;
    font-weight: bolder;
    padding-top: 10px !important;
    font-size: 17px;
    letter-spacing: 0.35px;
}
.c_w{
    color: var(--secondary-color);
}

.paragraph{
    font-family: "Mulish", sans-serif;
    padding-top: 10px !important;
    font-size: 16px;
    letter-spacing: 0.15px;
    line-height: 33px;
    font-weight: 500;
}

.services{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--primary-color);
}

.tabs {
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
}

.tab_box {
    width: 100%;
    background: var(--secondary-color);
    padding: 20px 10px;
    border-radius: 0;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    align-items: center;
    transition: all 0.3s ease;
}

.tab_box:hover {
    background-color: var(--highlight-color);
    transition: all 0.3s ease;
    color: var(--secondary-color);
    cursor: pointer;
}

.tab_box:hover .tb_lh {
    color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab_box.active {
    background-color: var(--highlight-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.tab_box.active .tb_lh {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.tb_lh {
    font-family: "Mulish", sans-serif;
    color: var(--text-color);
    font-size: 17px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: -0.15px;
    display: contents;
}

.tab-content {
    padding: 20px 0px;
}
.tab-content i{
    color: var(--highlight-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    margin-top: 15px;
    animation: fade 1.5s;
    -webkit-animation: fade 1.5s;
}

.swer_btn{
    font-family: 'Montserrat', sans-serif;
    background: var(--highlight-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 500;
    border-radius: 10px;
}
.swer_btn i{
    color: var(--secondary-color);
}


/* how works section  */

.how_works{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(15, 51, 87, 0.85);
}

.hw_box{
    width: 100%;
    height: auto;
    padding: 40px 25px;
    background: var(--primary-color);
    margin-top: 40px;
    text-align: center;
}
.hw_box i{
    width: 66px;
    height: 66px;
    background: var(--highlight-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    font-size: 26px;
}
.hw_box span{
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 25px;
    height: 25px;
    border-radius: 50px;
    padding: 5px;
    position: relative;
    left: 30px;
    top: 5px;
    font-family: "Mulish", sans-serif;
    font-weight: bolder;
}


/* how works section  */


.why_us{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(15, 51, 87, 1);
}
.why_us i{
    color: var(--highlight-color);
}

.why_box{
    width: 100%;
    height: auto;
    padding: 40px 25px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}
.why_btn{
    font-family: 'Montserrat', sans-serif;
    background: var(--highlight-color);
    border: none;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 40px;
}


/* areas we serve  */

.areas{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(15, 51, 87, 0.85);
}

.area_box{
    margin-top: 40px;
    height: auto;
    width: 100%;
    background: var(--primary-color);
    padding: 25px;
    padding-bottom: 35px;
    border-radius: 10px;
}
.area_box i{
    color: var(--highlight-color);
}
.area_box p{
    font-weight: 700;
    letter-spacing: 0.35px;
}

.areas_box{
    margin-top: 40px;
    background: var(--primary-color);
    padding: 25px;
    text-align: center;
    border-radius: 10px;
}
.ab_h{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    color: var(--secondary-color);
    font-size: 21px;
    letter-spacing: 0.35px;
    padding-top: 20px !important;
}
.areas_box img{
    border-radius: 10px;
}

/* areas we serve  */


/* faqs section  */


.faqs{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(15, 51, 87, 1);
}


.faq_h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: 0.15px;
    color: var(--primary-color);
}

.panel-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.15px;
    color: var(--primary-color);
}

.panel-default {
    border: none;
    background: none;
}

.panel-default>.panel-heading {
    background: var(--secondary-color);
}

#faq .panel .panel-heading a .panel-title span {
    float: right;
    width: 25px;
}

#faq .panel .panel-heading a .panel-title span:after {
    content: "\2014";
    color: var(--highlight-color);
    font-size: 20px;
    color: var(--heaing-color) !important;
}

#faq .panel .panel-heading a.collapsed .panel-title span:after {
    content: "+";
}

#faq .panel {
    margin-bottom: 25px !important;
}

#faq .panel-heading {
    padding: 16px 20px;
    border-radius: 25px;
}

#faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
    padding: 15px 15px;
    font-family: "Mulish", sans-serif;
    line-height: 30px;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.15px;
    color: var(--secondary-color);
    background: none;
    border-top: none !important;
}

/* faqs section  */


.benefits{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(15, 51, 87, 0.85);
}
.benefits i{
    color: var(--highlight-color);
}
.benefits_box{
    width: 100%;
    height: auto;
    padding: 40px;
    background: var(--primary-color);
    border: 2.5px solid var(--highlight-color);
    border-radius: 15px;
}
.benefits_box img{
    border-radius: 15px;
    margin-top: 40px;
}


/* footer section  */

.footer{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(15, 51, 87, 1);    
}

.footer_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer_btns button{
    padding: 15px 35px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.footer_btn{
    background: var(--highlight-color);
    border: 2px solid var(--highlight-color);
    color: var(--secondary-color);
}
.footer_btn_contact{
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.main_footer{
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: rgba(15, 51, 87, 1);    
}

.footer_li{
    padding: 0;
    margin: 0;
}
.footer_li li{
    list-style: none;
    color: var(--secondary-color);
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    letter-spacing: 0.15px;
    line-height: 28px;
    padding-top: 12px;
}
.footer_li li i{
    color: var(--highlight-color);
}

.footer_social {
    padding: 0;
    margin: 0;
    margin-top: 25px !important;
}

.footer_social li {
    display: inline-block;
    padding-right: 15px;
    font-size: 18px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

.footer_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.contact_social {
    padding: 0;
    margin: 0;
    margin-top: 20px !important;
}

.contact_social li {
    display: inline-block;
    padding-right: 15px;
    font-size: 18px;
    color: var(--highlight-color);
    transition: all 0.3s ease-in;
}

.contact_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.copyrights{
    width: 100%;
    height: auto;
    padding: 25px;
    background: var(--highlight-color);
    border-radius: 15px;
    margin-top: 50px;
}

.copy_p{
    font-family: "Mulish", sans-serif;
    text-align: center;
    color: var(--secondary-color);
    font-size: 16px;
    letter-spacing: 0.15px;
    font-weight: 500;    
}

/* footer section  */


.desktop_d_none{
    display: none;
}


.bredcum{
    width: 100%;
    height: auto;
    padding: 120px 0;
    background: url(../../images/bredcum.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.bredcum_h{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: inherit;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.inner_pages{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);    
}

.abt_p{
    font-family: "Mulish", sans-serif;
    padding-top: 10px !important;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 30px;
    font-weight: 500;
}

.abt_inner_box{
    width: 100%;
    height: auto;
    padding: 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    margin-top: 40px;
}
.abt_inner_box img{
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.space_bottom{
    padding-bottom: 80px;
}

.abt_m_box{
    width: 100%;
    height: auto;
    padding:  25px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.0);
    border-radius: 10px;
    margin-top: 40px;
}
.abt_m_box img{
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact_inner_box{
    width: 100%;
    height: auto;
    padding: 60px 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    margin-top: 40px;
    background: rgba(15, 51, 87, 1);   
}
.c_form{
    margin-bottom: 15px;
    height: auto;
    padding: 12px;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 16px;
}
.c_form::placeholder{
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 16px;
}
.contact_btn{
    font-family: 'Montserrat', sans-serif;
    background: var(--highlight-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-top: 20px;
    font-weight: 500;
}

.contact_address_box{
    padding-top: 80px;
    text-align: center;
}
.contact_sh{
    font-family: "Mulish", sans-serif;
    font-weight: bolder;
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 15px;
    text-transform: uppercase;
    padding-bottom: 5px !important;
}
.contact_h{
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: inherit;
}
.contact_p{
    font-family: "Mulish", sans-serif;
    font-weight: bolder;
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 0.65px;
    padding-top: 5px !important;
}

#map{
    border-radius: 15px;
}

.location_box{
    width: 100%;
    height: auto;
    padding:  25px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-top: 40px;
    background: var(--primary-color);
    text-align: center;
}

.location_box i{
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary-color);
}

.location_inner_box{
    width: 100%;
    height: auto;
    padding: 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    margin-top: 40px;
}

.services_li{
    padding: 0;
    margin: 0;
}
.services_li li{
    list-style: none;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    line-height: 28px;
    font-size: 16px;
    padding-top: 8px;
}

