/********** Template CSS **********/
:root {
    --primary: #0d1057;
    --secondary: #dd131a;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
    font-family: "Outfit", sans-serif;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
    font-family: "Outfit", sans-serif;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
    font-family: "Outfit", sans-serif;
}

.ft-18 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 30px;
}
.ft-16 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.ft-14 {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 26px;
}
.row {
    margin: 0;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    display: none;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 50px;
    font-family: "poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
    padding: 0;
    position: relative;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    transition: .5s;
    width: 100%;
}

.sticky-top.navbar-light .navbar-brand img {
    /* max-height: 45px; */
}
.navbar-brand {
    width: 13%;
}
.sticky-top.navbar-light .navbar-brand {
    width: 10%;
    transition: 0.5s ease-in-out;
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        /* max-height: 45px; */
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        transition: 0.5s ease-in-out;
        z-index: 9999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffff;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        transition: 0.5s ease-in-out;
        z-index: 9999;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.secBanner {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
    background-size: 100% 13%;
}

@media (max-width: 991.98px) {
    .secBanner {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-item > svg {
    line-height: 40px;
    display: inline-block;
    margin-bottom: 20px;
    height: 50px;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(14%) sepia(81%) saturate(4249%) hue-rotate(349deg) brightness(103%) contrast(102%);
}
.feature-item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 240px;
    left: 380px;
    background: #14355b;
    z-index: -1;
    border-radius: 20%;
    transition: 0.5s ease-in-out;
    opacity: 0;
}
.feature-item:hover:before {
    top: 0;
    left: 0;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
	opacity: 1;
}
.feature-item:hover > svg {
    filter: invert(1) brightness(100);
    transition: 0.5s ease-in-out;
}
.feature-item:hover > h5,
.feature-item:hover > p {
    color: #fff !important;
    transition: 0.5s ease-in-out;
}
.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}
.secCounter {
    padding: 70px 0;
    margin: 100px 0 100px;
}

/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
    min-height: 420px;
    display: flex !important;
    justify-content: center;
}

.service-item:hover {
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    /* background: url(../img/blob-primary.png) center center no-repeat; */
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    /* background: url(../img/blob-secondary.png) center center no-repeat; */
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #14355bb3;
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 13rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
    background-size: 100% 20%;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    margin-top: 30px;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}


/* ===== Custom Css Start Here ======== */

.container-xxl {
    max-width: 100%;
}
.navbar-brand img {
    filter: invert(1) brightness(100);
}
.shadow-sm .navbar-brand img {
    filter: url();
}
.cusBtn {
    background: #dd131a;
    padding: 12px 35px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 0 8px 2px #14355b;
    transition: 0.5s ease-in-out;
}
.cusBtn.no-shadow {
    box-shadow: none !important;
}
.cusBtn:before {
    content: "";
    background: #0d1057;
    width: 0;
    height: 50%;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.5s ease-in-out;
    z-index: -1;
}
.cusBtn:after {
    content: "";
    background: #0d1057;
    width: 0;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s ease-in-out;
    z-index: -1;
}
.cusBtn:hover:after {
    width: 100%;
    left: unset;
    right: 0;
    transition: 0.5s ease-in-out;
}
.cusBtn:hover:before {
    width: 100%;
    right: unset;
    left: 0;
    transition: 0.5s ease-in-out;
}
.cusBtn:hover {
    box-shadow: 0 0 9px 4px rgb(221 19 26 / 30%);
    color: #fff;
}
.navbar-light .navbar-nav .nav-link:before {
    content: "";
    background: var(--secondary) !important;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -4px;
    right: 0;
    transition: 0.5s ease-in-out;
}
.navbar-light .navbar-nav .nav-link:hover:before,
.navbar-light .navbar-nav .nav-link.active:before {
    width: 100%;
    right: unset;
    left: 0;
    transition: 0.5s ease-in-out;
}

.floating_img {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.sticky-top.navbar-light .cusBtn {
    box-shadow: 0 0 20px 6px #fff;
}
.sticky-top.navbar-light .cusBtn:hover {
    box-shadow: 0 0 9px 4px #f37b3652;
}
section.secFeature {
    padding-bottom: 100px;
}
span.prefix {
    font-size: 2.5rem;
    color: #fff;
}
.service-item .service-icon > svg {
    height: 70px;
    fill: #dd131a;
}
.service-item:hover .service-icon > svg {
    fill: #fff;
}
.servicesSlider .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 50%;
}
.servicesSlider .owl-nav  i {
    background: #dd131a;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.5s ease-in-out;
    transform: none;
}
.servicesSlider .owl-nav .owl-prev,
.servicesSlider .owl-nav .owl-next {
    transform: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}
.servicesSlider:hover .owl-nav .owl-prev {
    transition: 0.5s ease-in-out;
    transform: translateX(-90px);
    opacity: 1;
    visibility: visible;
}
.servicesSlider:hover .owl-nav .owl-next {
    transition: 0.5s ease-in-out;
    transform: translateX(90px);
    opacity: 1;
    visibility: visible;
}
.servicesSlider .owl-nav i:hover {
    background: var(--primary);
    transition: 0.5s ease-in-out;
}
.servicesSlider {
    transition: 0.5s ease-in-out;
}
.secServices {
    padding-bottom: 100px;
}
.secFaqs {
    padding: 120px 0 100px;
}
.secFaqs div#accordion .accordion-item {
    background: transparent;
}
.secFaqs div#accordion .accordion-item h2 > button.accordion-button {
    background: transparent;
    font-size: 20px;
    color: #000;
    outline: none;
    box-shadow: none;
}
.secFaqs div#accordion .accordion-item h2 > button.accordion-button:after {
    filter: invert(1) brightness(0);
}
.footer_logo {
    filter: invert(1) brightness(100);
}
.footer_row {
    flex-direction: row; 
    flex-wrap: unset;
    justify-content: space-between;
}
.footer_row .ft-1,
.footer_row .ft-2,
.footer_row .ft-3,
.footer_row .ft-4 {
    flex-shrink: unset;
}
.footer_row .ft-2 {
    padding-left: 90px;
}
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    margin-top: -1px;
    display: none;
    position: absolute;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-menu.show {
    border-radius: 0;
    background: #2b496b;
    border: 3px solid #14355b;
    padding: 0;
    min-width: 250px;
    top: 20px;
}
a.dropdown-item {
    padding: 10px 20px;
    line-height: 22px;
    color: #ffffff;
    /* border-bottom: 1px solid #14355b; */
    transition: 0.5s ease-in-out;
    font-size: 15px;
    text-transform: capitalize;
}
a.dropdown-item:hover {
    background: #0e335c;
    color: #fff;
    transition: 0.5s ease-in-out;
}
body:not(.index) header nav.navbar {
}
body:not(.index) header nav.navbar.sticky-top {
    position: fixed;
    background: #fff;
    width: 100%;
}
.breadcrumb {
    text-align: center;
    display: block;
    padding: 200px 0 140px;
    margin: 0;
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png);
    background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center, center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.breadcrumb > h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 500 !important;
}
ul.cusList {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
ul.cusList > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
ul.cusList > li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    color: #dd131a;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 3px;
}
ul.cusList > li:last-child {
    margin: 0;
}
.secContent {
    padding: 100px 0 0px;
}
.iconBtn > i {
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    font-style: unset;
}
.count_3 {
    column-count: 3;
}
.cusBox {
    background: #F6F4F9;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 25px 15px;
}
.cusBox > p {
    text-align: center;
}
.cusBox:before {
    content: "";
    width: 100%;
    height: 0%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #14355b;
    z-index: -1;
    transition: 0.5s ease-in-out;
    opacity: 0;
}
.cusBox:hover:before {
    top: unset;
    bottom: 0;
    height: 100%;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
	opacity: 1;
}
.cusBox:hover > p,
.cusBox:hover > h3 {
    color: #fff;
}
.secTalk {
    padding: 60px 0;
    margin-top: 50px;
}
.secTalk  h1 {
    margin: 0 !important;
    color: #fff;
    font-weight: 400 !important;
}
.secWork .cusBox {
    padding: 20px;
    font-size: 15px;
}
.secWork .cusBox h3 {
    font-size: 25px;
    text-align: center;
}
.secContent .form-control, .secContent select {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #0000002b !important;
}
.secContact .cusBtn {
    z-index: 1;
}
.stickyCol {
    position: sticky;
    top: 50px;
    height: 100%;
}
.back-to-top {
    background: #dd131a !important;
    color: #fff !important;
    border-color: #dd131a !important;
}


@media screen and (max-width: 1400px) {
    .servicesSlider:hover .owl-nav .owl-next {
        transform: translateX(30px);
    }
    .servicesSlider:hover .owl-nav .owl-prev {
        transform: translateX(-30px);
    }
}


@media screen and (max-width: 1199px) {
    nav.navbar {
        padding: 10px !important;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 16px;
        margin-right: 30px;
    }
    nav.navbar a.cusBtn {
        padding: 12px 25px;
        font-size: 16px;
    }
    .px-lg-5 {
        padding: 0 !important;
    }
    br {
        display: none;
    }
    .ft-18, p, .accordion-body {
        font-size: 14px;
        line-height: 20px;
    }
    h1 {
        font-size: 25px;
    }
    .servicesSlider .owl-nav .owl-prev, .servicesSlider .owl-nav .owl-next {
        transform: none !important;
        opacity: 1;
        visibility: visible;
    }
    .servicesSlider .owl-nav {
        position: unset;
        justify-content: center;
        margin-top: 30px;
        gap: 20PX;
    }
    .fs-5 {
        font-size: 0.9rem !important;
    }
}

@media screen and (max-width: 991px) {
    .navbar-brand img {
        filter: unset;
    }
    nav.navbar {
        padding: 10px !important;
    }
    .navbar-light .navbar-toggler {
        background: #14355b;
        border-radius: 5px;
        padding: 12px;
    }
    .navbar-light .navbar-toggler span.fa.fa-bars {
        color: #fff;
    }
    .navbar-light .navbar-nav .nav-link {
        margin: 0;
    }
    .navbar-collapse {
        background: #14355b;
        padding: 20px;
        border-radius: 5px;
    }
    .navbar-light .navbar-nav .nav-link, .sticky-top.navbar-light .navbar-nav .nav-link {
        color: #fff !important;
        padding: 10px 0;
    }
    .navbar-light .navbar-nav .nav-link:before {
        display: none;
    }
    .navbar-light .navbar-collapse a.cusBtn {
        margin-top: 20px;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu {
        position: unset;
    }
    .dropdown-submenu ul.dropdown-menu {
        width: 95%;
        margin: 10px auto !important;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu a.dropdown-item {
        padding: 8px 10px;
        font-size: 13px;
    }
    .sticky-top.navbar-light .cusBtn {
        box-shadow: none;
    }
    .navbar-brand {
        width: 25%;
    }
	.secBanner .floating_img {
		margin-top: 40px;
		margin-bottom: 40px;
		width: 70%;
	}
	.secCounter .row {
		justify-content: center;
	}
	.footer_row .ft-2 {
		padding-left: 30px;
	}
	.footer {
		background-size: 100%;
		padding-top: 10rem;
	}
	.footer .container {
		max-width: 100%;
		padding: 0 15px;
	}
	.footer .btn.btn-link {
		font-size: 14px;
	}
}


@media screen and (max-width: 768px) {
    .footer_row .ft-2 {
        PADDING-LEFT: 15PX;
    }
    .footer_row {
        display: block;
        column-count: 2;
    }
    .footer_row .ft-1, .footer_row .ft-2, .footer_row .ft-3, .footer_row .ft-4 {
        margin-bottom: 70px;
    }
    .footer {
        background-size: 180% 17%;
    }
    br {
        display: none;
    }
    .fs-5 {
        font-size: 0.9rem !important;
    }
    .secBanner {
        background-size: 110% 11%;
    }
    .floating_img {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .navbar-brand {
        width: 30%;
    }
}



@media screen and (max-width: 767px) {
    .row.footer_row {
        display: block;
    }
    .footer_row .ft-2 {
        padding-left: 15px;
    }
    .footer {
        background-size: 210% 7%;
        padding-top: 8rem;
        margin-top: 0;
    }
    .footer_row .ft-1, .footer_row .ft-2, .footer_row .ft-3, .footer_row .ft-4 {
        margin-bottom: 50px;
    }
    .footer .copyright .col-md-12.text-center.mb-3.mb-md-0 {
        margin: 0 !important;
        line-height: 30px;
    }
    .breadcrumb {
        padding: 70px;
        background-size: 30% 40%;
    }
    .breadcrumb > h1 {
        font-size: 40px;
        margin: 0;
    }
    .container {
        padding: 0;
    }
    .col-lg-6 {
        padding: 10px;
        margin-top: 0;
    }
    .ft-18, p, .accordion-body {
        font-size: 15px;
        line-height: 20px;
    }
    body.about-us .secAbout {
        padding-top: 50px;
    }
    .secContent {
        padding: 50px 0;
    }
    ul.cusList > li {
        font-size: 15px;
    }
    .row.mb-5 {
        margin-bottom: 10px !important;
    }
    .secContent .row.mb-5:nth-child(even) {
        flex-direction: column-reverse;
    }
    .count_3 {
        column-count: 2;
    }
    .stickyCol {
        position: unset;
    }
    .cusBox {
        margin-bottom: 20px;
    }
    h1 {
        font-size: 25px;
    }
    .secTalk {
        padding: 50px 0;
        text-align: center;
    }
    .secTalk .col-lg-4 {
        text-align: center !important;
    }
    .secTalk h1 {
        margin-bottom: 20px !important;
    }
    .secBox .rounded {
        margin-bottom: 20px;
    }
    .iti.iti--allow-dropdown {
        width: 100%;
    }
    .section-title.text-secondary span:first-child,
    .section-title.text-secondary span:last-child,
    .section-title.text-secondary span:first-child::after,
    .section-title.text-secondary span:last-child::after {
        display: none;
    }
    .servicesSlider .owl-nav .owl-prev, .servicesSlider .owl-nav .owl-next {
        transform: none !important;
        opacity: 1;
        visibility: visible;
    }
    .servicesSlider .owl-nav {
        position: unset;
        justify-content: center;
        margin-top: 30px;
        gap: 20PX;
    }
    .secBanner {
        background-size: 100%;
        padding: 50px 0 70px !important;
    }
}


#google_translate_element {
  text-align: right;
  margin: 20px;
}
.goog-te-gadget {
  background-color: #dd131a;
  padding: 11px 15px;
  border-radius: 5px;
  display: inline-block;
  font-size: 0 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.goog-te-combo {
  background: transparent;
  border: 1px solid #cccccc00;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  outline: none;
  margin: 0 !important;
  font-size: 18px !important;
  font-family: 'Poppins' !important;
}
.goog-te-gadget span,
.goog-te-gadget a {
  display: none !important; /* Hide "Powered by Google Translate" */
}
.goog-te-combo option {
    color: #000;
    font-size: 16px;
}
.skiptranslate iframe {
    display: none !important;
}
body {
    top: 0 !important;
}