@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Montserrat";

}

a {
    text-decoration: none;
}

:root {
    --primary--: #2477b6;
    --secondary--: #000;
    --white: #ffffff;
}


.navbar a {
    font-size: 17px;
    text-decoration: none;

}

.dropdown-toggle::after {
    transition: transform 0.9s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0px;

}

.dropdown-menu {
    outline: none;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle {
    text-decoration: none;
    color: black;
    border: none;
    background: transparent;
    padding: 8px 12px;
}

.dropdown-toggle:focus,
.dropdown-toggle:active {
    outline: none !important;
    box-shadow: none !important;
}

.header-nav .dropdown-menu li:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 40px;
    width: 0%;
    height: 3px;
    background-color: var(--primary--);
    transform: translateX(-50%);
    -webkit-transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.mybtn_theme {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background: var(--primary--) !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 12px;
    -webkit-perspective: 320px;
    perspective: 320px;
    box-shadow: rgba(195, 10, 10, 0.37) 0px 13px 27px -5px, rgba(195, 10, 10, 0.32) 0px 8px 16px -8px;
}

.mybtn_theme:hover {
    color: #fff;
}

.mybtn_theme_border {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    background: #fff !important;
    border: 1px solid var(--primary--);
    color: #000;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 12px;
    -webkit-perspective: 320px;
    perspective: 320px;
}

.btn.default {
    background-color: #2477b6;
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 16px;
    /* box-shadow: rgba(195, 10, 10, 0.37) 0px 13px 27px -5px, rgba(195, 10, 10, 0.32) 0px 8px 16px -8px;
    /* box-shadow: rgba(195, 10, 10, 0.37) 0px 13px 27px -5px, rgba(195, 10, 10, 0.32) 0px 8px 16px -8px; */
}

.btn.default:hover {
    background-color: #fff;
    color: #2477b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #2477b6;
    box-shadow: rgb(39 119 180 / 44%) 0px 13px 27px -5px, rgb(39 119 180 / 43%) 0px 8px 16px -8px;
}

.btn.default:active {
    transform: translateX(2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.default i {
    transition: transform 0.8s ease;
    padding: 0px 0px 0px 6px;
}

.default:hover i {
    font-size: 20px;
    transform: translateY(-2px)
}

.navbar-nav li {
    text-align: center;
}

.button-1 {
    color: #2477b6 !important;
    background-color: #fff !important;
    border: 1px solid #2477b6 !important;
}

.button-1:hover {
    color: #ffffff !important;
    background-color: #2477b6 !important;
    border: 1px solid transparent !important;
}

.button-1:hover i {
    transform: translateX(7px)
}

.menu {
    background-color: #0260db !important;
}

.header-nav {
    background-color: #ffffffe8;
    position: relative;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.header-nav nav ul li {
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
}

.header-nav nav ul li:hover a {
    color: var(--primary--) !important;
}

.header-nav nav ul li .nav-link {
    color: #000 !important;
    font-size: 16px;
    font-weight: 500;
}

.header-nav nav ul li .dropdown-menu {
    border: 0px;
}

.header-nav nav ul li .dropdown-menu li {
    margin-right: 0px;
    margin-left: 0px;
    padding: 5px 0px;
}

.header-nav nav ul li .dropdown-menu li a:hover {
    background-color: inherit !important;
    color: var(--primary--) !important;
}

.header-nav nav ul li .dropdown-menu li a {
    color: #000 !important;
}

.header-nav nav ul li .dropdown-menu li:before {
    display: none;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #212529;
    text-decoration: none;
    background-color: #e9ecef;
}

.top_bar {
    background: #000;
}

.header-nav nav ul li:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 40px;
    width: 0%;
    height: 3px;
    background-color: var(--primary--);
    transform: translateX(-50%);
    -webkit-transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-nav nav ul li:hover:before {
    width: 100%;
}

.header-nav .navbar-collapse {}

/*hero Section Start */
.hero_section {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    height: 80vh;
    width: 100%;
    background: linear-gradient(0deg, #ffe8ec, transparent);
    padding: 60px 0;
}

.hero_section h1 {
    font-size: 50px;
    color: #fff;
    opacity: 1 !important;
}

.hero_section h2 {
    font-size: 30px;
    color: #fff;
    padding-top: 10px;
}

.divider {
    padding: 0;
    margin: 10px 0;
    width: 100%;
    height: 1px;
    background: #ff0f4b;
}

.hero_section p {
    font-size: 17px;
    font-weight: 500;
    color: #fff;

}

/* .hero_section .inner_content{
/* <!-- about Section Start --> */
.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    z-index: -1;
    margin: 0 auto
}

.anim-icons.full-width {
    max-width: 100%
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}

.shape-1 {
    width: 589px;
    height: 568px;
    top: 0;
    right: 0;
    background-image: url('../img/shape-1.webp');
    z-index: -1;
}

@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.about-section {
    position: relative;
    padding: 80px 0 70px
}

@media(max-width: 991.98px) {
    .about-section {
        padding: 120px 0 90px
    }
}

.about-section .content-column .inner-column {
    padding-left: 20px
}

@media(max-width: 1199.98px) {
    .about-section .content-column .inner-column {
        padding-left: 0
    }
}

.about-section .content-column .inner-column .text2 {
    color: var(--headings-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px
}

@media(max-width: 1399.98px) {
    .about-section .content-column .inner-column .sec-title br {
        display: none
    }
}

.about-section .btn-box {
    margin-top: 40px
}

@media(max-width: 575.98px) {
    .about-section .btn-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }
}

.about-section .image-column {
    position: relative;
    z-index: 1
}

.about-section .image-box {
    position: relative;
    display: inline-block;
    width: 100%
}

.about-section .image-box .image {
    position: relative;

}

.about-section .image-box .image img {
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 3;
    border-radius: 1rem !important;

}

.about-section .image-box .experience {
    position: absolute;
    background-color: var(--primary--);
    color: #ffffff;
    left: -64px;
    bottom: 7px;
    height: 130px;
    width: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    z-index: 3;
}

@media(max-width: 1399.98px) {
    .about-section .image-box .experience {
        left: 20px
    }
}

.about-section .image-box .experience strong {
    color: var(--white);
    font-size: 38px;
    font-weight: 500
}

.about-section .image-box .experience .text {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 10px
}

/* <!-- about Section End --> */

.our-services {
    padding: 60px 0;
    background: #f3f6f9;
    min-width: unset;
}

.semi-title {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.main-title .blue {
    color: var(--primary--);
}

.srv-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.srv-btn:hover {
    color: var(--primary--);
}

.service-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-img {
    overflow: hidden;
    position: relative;
    height: 190px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

.service-text {
    padding: 32px;
    text-align: center;
}

.service-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}



/* Services Section Start */
.service_features {
    padding: 10px 0px;

    font-family: "Montserrat";
}



.feature-Bx {
    box-shadow: 0px 0px 15px rgb(0 0 0 / .05);
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    transition: 0.3s;
}

.feature_text {
    padding: 1rem .5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary--) !important;
    transition: 0.3s;
}

.service_features .col-md-4:nth-of-type(1n + 1) .feature-Bx:hover .feature-icon{
    background-color: rgb(23, 131, 23) !important;
}
.service_features .col-md-4:nth-of-type(2n + 1) .feature-Bx:hover .feature-icon{
    background-color: rgb(224, 37, 37) !important;
}
.service_features .col-md-4:nth-of-type(3n + 1) .feature-Bx:hover .feature-icon{
    background-color: rgb(150, 37, 150) !important;
}

.feature_text {
    padding: 1rem .5rem;
}

.feature_text p {
    margin-bottom: 0px;
    font-size: 1rem;
}

.branch-box .col-lg-3 {
    flex: 1;
}

.feature-Bx:hover {
    transform: translateY(-10px);
}

.feature-Bx:hover .feature-icon {
    background: var(--primary--);
}

.feature-Bx:hover .feature-icon i {
    color: #ffffff !important;
}

.heading span {
    font-weight: bold;
    font-size: 14px;
    display: block;
    color: var(--primary--);
    text-transform: uppercase;
}

.heading h2 {
    font-size: 37px;
    color: #5a5757;
}

/* partners */
.partners {
    padding: 80px 0px;
    background-color: #fff5ee;
}

.partners img {
    padding: 15px;
    background-color: #fff;
    /* box-shadow: 0px 0px 10px #d8d8d8; */
    border: 1px dashed var(--primary--);
    border-radius: 8px;
}

.sec-title .sub-title,
.cta h5 {
    position: relative;
    font-size: 14 !important;
    color: var(--orange);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary--);
    text-transform: uppercase;
}

.sec-title h2 {
    position: relative;
    font-size: 42px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0;
}

/* Foooter */
.top-footer {
    padding: 60px 0px;
    background-color: var(--primary--);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.footer-widget.footer-logo-section {
    color: #000;
}

.footer-logo-section img {
    width: 100px;
    background: #fff;
    padding: 10px;
}

.footer-social a {
    background: #fff;
    padding: 10px;
    color: var(--primary--);
    border-radius: 50%;
    font-size: 14px;
    height: 30px;
    width: 30px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social {
    display: flex;
}


.footer-widget h4 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 21px;
    font-size: 21px;
}

ul.footer-links li {
    font-size: 17px;
    list-style: disc;
    color: #fdfdfd !important;
    margin-bottom: 10px;
    text-align: start;
    padding-left: 0px;
}

ul.footer-links li a {
    color: #fff !important;
    position: relative;
    text-decoration: none;
}

.text_theme {
    color: var(--primary--);
}

ul.footer-links li a:hover {
    color: var(--secondry) !important
}

ul {
    text-align: center;
}

.footer-address p {
    color: #fff;
}

.footer-contact-section i {
    color: #fff !important;
    margin-right: 10px;
    color: var(--secondry);
}

.footer-contact-section a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.footer-contact-section {
    display: flex;
    align-items: flex-start;
}

.footer-contact-section.footer-phone {
    display: block;
}

/*footer css end*/

/*footer_bottom css start*/

.footer_bottom {
    padding: 10px 0px;
    background-color: var(--primary--);
    border-top: 1px solid #f5f5f5;
}

.footer_bottom p {
    margin-bottom: 0px;
    color: #fff;
}

.footer_bottom .designed_by {
    text-align: right;
}

.footer_bottom .designed_by p {
    color: #1370cd;
}

.footer_bottom .designed_by p a {
    color: #1370cd;
}

.partner-carousel .item img {
    max-width: 140px;
}

.tab-pane img {
    width: 100%;
    height: 310px;
}

.tab-pane h2 {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 700;
    color: #3f3d3d;
}

/* cta */
.cta h4 {
    font-size: 35px;
    color: #000;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
}

.video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000077;
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 2;
}

.hero_content h5 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;

}

.inner_content button {


    padding: 10px 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.inner_content p {
    font-size: 1.50rem;
    font-weight: 500;
    /* background: #3a3a3a; */
    padding: 5px 1px;
    border-radius: 3px;
}

/* Breadcrumb area */
.page-title-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
    width: 100%;
    height: 100%;
}

.page-title-section .breadcrumb-title h1 {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 40px;
    position: relative;
    padding-left: 30px;
}

.page-title-section .breadcrumb-title h1:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 5px solid var(--primary--);
}

.page-title-section h6 a {
    color: #fff;
    font-size: 16px;
}

.page-title-section h6 {
    color: #aeb1b3;
    font-size: 16px;
    margin-top: 25px;
}

/* feature section */
.services-features {
    background: #9b132113;
    overflow: hidden;
}

.single-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 12px;
}

.icon-image {
    background: var(--sa-blue);
    padding: 25px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: ease-in 0.3s;
}

.feature-title h3 {
    font-size: 18px;
    font-weight: 600;

}

.single-feature:hover .feature-icon i {
    background: var(--sa-red);
    color: #ffffff !important;
}

.single-feature:hover .feature-icon {
    background: var(--primary--);
    color: #ffffff !important;
}

.features-point {
    padding: 40px 80px;
}

.no-space-section-content .heading {
    padding: 40px;

}

.no-space-section-content {
    background-color: #ffffff;
    display: grid;
    place-content: center;
}

.image-box img {
    border-radius: 2rem;
}

.air-sec {
    background-color: #effafb;
}

.contact-us .card i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    background: var(--primary--);
    color: #fff;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

.sub-title {
    color: var(--primary--);
}

.numbers a {
    text-decoration: none;
    color: #000;

}

.our-mission .feature-Bx {

    min-height: 320px;
}

.our-mission .feature-Bx:hover .feature-icon {

    background-color: transparent !important;
}

.our-mission .feature-Bx h5 {
    font-size: 22px
}

.fixed {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    scroll-behavior: smooth;
    animation: top_up .3s linear;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0.48px 2.41px -0.38px, rgba(0, 0, 0, 0.17) 0px 4px 20px -0.75px;
}


@keyframes top_up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .hero_section h1 {
        font-size: 30px;
    }

    .inner_content p {
        font-size: 20px;
        font-weight: 500;
    }

    .btn.default {
        font-size: 14px;
        padding: 16px 11px;
    }

    .about-section {
        padding: 60px 0 90px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;

    }

    .video {
        height: 100%;
        /* width: 100%; */
        object-fit: cover;
    }

    .video video {
        height: 100%;
        object-fit: cover;
    }

    .partners img {
        padding: 5px;

    }

    .footer-logo-section img {
        width: 190px;
        height: 90px;
        background: #fff;
        padding: 10px;
    }

    .footer-social {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-widget {
        align-items: center;
        display: grid;
        place-content: center;
    }

    .top-footer .col-lg-3 {
        text-align: center;
    }

    .page-title-section .breadcrumb-title h1 {
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #fff;


    }

    .page-title-section {
        padding: 10px 0px;
    }

    .contact-us .card i {
        font-size: 22px;


    }

    .sec-title h2 {
        position: relative;
        font-size: 32px;


    }

    .hero_section {
        height: 100%;
    }

    .navbar-collapse ul a {
        text-align: start;
        width: 100%;
    }

    .navbar-collapse .btn {
        width: 100%;

    }

    .about-section .image-box .experience {

        left: 78%;
        bottom: -4%;
        height: 97px;
        width: 108px;

    }

    .about-section .image-box .experience strong {

        font-size: 30px;
        font-weight: 500;
    }

    .about-section .image-box .experience .text {
        font-size: 16px;

        margin-top: 5px;
    }

    .branch-box .col-lg-3 {
        flex: auto !important;
        /* width: 47% !important; */
    }

}

@media screen and (max-width:576px) {
    .hero_section h1 {
        font-size: 30px;
    }

    .inner_content p {
        font-size: 20px;
        font-weight: 500;
    }

    .btn.default {
        font-size: 14px;
        padding: 16px 11px;
    }

    .about-section {
        padding: 60px 0 90px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;

    }

    .video {
        height: 100%;
        /* width: 100%; */
        object-fit: cover;
    }

    .video video {
        height: 100%;
        object-fit: cover;
    }

    .partners img {
        padding: 5px;

    }

    .footer-logo-section img {
        width: 190px;
        height: 90px;
        background: #fff;
        padding: 10px;
    }

    .footer-social {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-widget {
        align-items: center;
        display: grid;
        place-content: center;
    }

    .top-footer .col-lg-3 {
        text-align: center;
    }

    .page-title-section .breadcrumb-title h1 {
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #fff;


    }

    .page-title-section {
        padding: 10px 0px;
    }

    .contact-us .card i {
        font-size: 22px;


    }

    .branch-box .col-lg-3 {
        flex: auto !important;
        /* width: 47% !important; */
    }

    .sec-title h2 {
        position: relative;
        font-size: 32px;


    }

    .hero_section {
        height: 100%;
    }

    .navbar-collapse ul a {
        text-align: start;
        width: 100%;
    }

    .navbar-collapse .btn {
        width: 100%;

    }

    .heading h2 {
        font-size: 26px;
    }

    .cta h4 {
        font-size: 26px;
        padding-bottom: 6px;
        color: #000;
    }

    .about-section .image-box .experience {

        left: 78%;
        bottom: -4%;
        height: 97px;
        width: 108px;

    }

    .about-section .image-box .experience strong {

        font-size: 30px;
        font-weight: 500;
    }

    .about-section .image-box .experience .text {
        font-size: 16px;

        margin-top: 5px;
    }

    .top-footer .col-lg-4 {
        text-align: center;
    }

    .footer-widget {
        text-align: center;

    }

    .footer-contact-section a {
        margin: auto;
    }

    .copyroght,
    .designed_by p {
        text-align: center;
    }

    .heading h2 {
        font-size: 23px;
        padding-right: 0px !important;
    }

    .branchs-sec .branchs {
        padding-left: 0px !important;
    }

    .our-services {
        padding: 30px 0;
        background: #fff5ee;
        /* min-width: 440px; */
    }

    .about-section .image-box .experience {
        left: 65%;
        bottom: -27%;
        height: 100px;
        width: 108px;
    }
}

.branch {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    padding: 15px 15px;
    text-align: center;
}


.branchs ul li a,
.branchs ul li p {
    display: flex;
    align-items: baseline;
    color: #fff;
    text-decoration: none;
}

.branchs-sec {
    background-color: #303030;
}

.branchs ul li i {
    margin-right: 10px;
    color: var(--primary--);
}

.branchs ul li {
    list-style: none;
    margin-bottom: 7px;
}

.branchs ul li a p {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: start;

}

.branchs ul {
    margin: 0px;
    padding: 0px;
}

.branchs h4 {
    position: relative;
    padding-bottom: 18px;
}

.branchs-sec .branchs {
    padding-left: 20px;
}

.branch-box {
    padding: 40px 0px;
    position: relative;
    z-index: 9;
    border-radius: 8px;
}

.branchs h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.branchs h4:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: '';
    /* background-color: #dddddd; */
    background: linear-gradient(89deg, #fff 1.44%, rgba(255, 255, 255, 0) 99.93%);
}

#pills-home-tab
{
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
}

.nav-pills .nav-link.active{
    color: #2477B6 !important;
    background-color: #fff !important;
    border: 2px dashed #2477B6 !important;
    
}
#pills-profile-tab
{
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
}
#pills-contact-tab
{
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
}

.bullet{
    width: 3% !important;
    height: 3% !important;
}
.new-num:hover {
color: #fff;
    /* padding-left: 32px !important; */
}
.share{
    line-height: 34px;
    word-spacing: 3px;
}
.sharee{
    line-height: 35px;
}
.br{
    border-radius: 2rem;
}

@media screen and (max-width:992px) {
    .video {
        height: 100%;
        /* width: 100%; */
        object-fit: cover;
    }

    .video video {
        height: 100%;
        object-fit: cover;
    }

    .top-footer .col-lg-4 {
        text-align: center;
    }

    .footer-widget {
        text-align: center;

    }

    .footer-contact-section a {
        margin: auto;
    }

    .copyroght,
    .designed_by p {
        text-align: center;
    }

    .heading h2 {

        padding-right: 0px !important;
    }

    .our-services {
        padding: 50px 0;
        background: #fff5ee;
        /* min-width: 440px; */
    }
}

.footer-links {
    padding-left: 20px;
}

.branch-box .col-lg-3 {
    flex: 1;
}