/* =========================
   GLOBAL STYLE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fc;
    color: #333;
}


.navbar {
    transition: 0.3s;
}


.nav-link {
    color: #003b8f !important;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: 0.3s;
}

/* .nav-link:hover {
    background: #ffe6f0;
    
}  */
/* Underline animation */

.nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 15px;
    bottom: 5px;
    transition: 0.3s;
} 

 .nav-link:hover::after {
    width: 60%;
} 


/* =========================
   NAVBAR RESPONSIVE
========================= */

@media (max-width: 768px) {

    /* Top Navbar */
    .navbar:first-of-type {
        height: auto !important;
        padding: 8px 0;
    }

    .navbar:first-of-type .navbar-nav,
    .navbar:first-of-type .d-flex {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .navbar:first-of-type .nav-item.d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Logo */
    .navbar-brand img:first-child {
        width: 55px !important;
        height: 55px !important;
    }

    .navbar-brand img:last-child {
        width: 180px !important;
        height: auto !important;
    }

    /* Donate + Search */
    .btn1 {
        width: 100%;
        margin-top: 10px;
    }

    .btn1 form {
        flex-direction: column;
        align-items: center;
    }

    .btn1 button {
        width: 180px;
        margin: 0 0 10px 0 !important;
    }

    .btn1 input {
        width: 180px !important;
        margin: 0 !important;
    }

    /* Second Navbar */
    .navbar-light .container-fluid {
        flex-direction: column;
        text-align: center;
    }
}

/* Dropdown */

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


.dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}


.dropdown-item:hover {
    background: #ffe6f0;
    color: #0a3641;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
   
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu,
.dropdown-submenu > .dropdown-menu.show {
    display: block;
}

/* Navbar Responsive */
@media (max-width: 992px) {

    .navbar,
    header {
        height: auto !important;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .nav-item {
        width: auto;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 10px !important;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 5px;
        text-align: center;
    }

    .dropdown-submenu .dropdown-menu {
        position: static !important;
        margin-left: 10px;
    }

}
/* Mobile Screen */
@media (max-width: 576px) {

    .container {
        width: 100%;
        padding: 0 10px;
    }

    header {
        padding: 10px 0 !important;
        margin-bottom: 10px !important;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        width: 100%;
        font-size: 13px;
    }

    .dropdown-menu {
        text-align: center;
    }

}

/* =========================
   GLOBAL RESPONSIVE SAFETY
========================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

.container-fluid {
    max-width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
}

.area-page-content {
    width: min(100%, 1240px);
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px;
    padding-right: 40px;
}

.area-page-content > .row {
    margin-left: 0;
    margin-right: 0;
}

.area-page-content .col-lg-10 {
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    .area-page-content {
        padding-left: clamp(72px, 8vw, 120px);
        padding-right: clamp(72px, 8vw, 120px);
    }
}

@media (max-width: 576px) {
    .area-page-content {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .area-page-content p,
    .area-page-content li,
    .area-page-content h4,
    .area-page-content h5 {
        overflow-wrap: anywhere;
        line-height: 1.65;
    }

    .area-page-content p,
    .area-page-content li {
        font-size: 1rem;
    }

    .area-page-content ul {
        padding-left: 1.5rem;
    }
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
}

.site-brand {
    min-width: 0;
}

.site-brand img:last-child {
    width: min(300px, 55vw) !important;
    height: auto !important;
    object-fit: contain;
}

.site-actions form {
    align-items: center;
}

/* Tablets and smaller laptops */
@media (max-width: 991.98px) {
    .site-brand img:first-child {
        width: 58px !important;
        height: 58px !important;
    }

    .site-brand img:last-child {
        width: min(260px, 48vw) !important;
    }

    .navbar-search-input {
        max-width: 42vw;
    }

    .navbar-search-input:hover,
    .navbar-search-input:focus {
        width: min(300px, 42vw);
    }

    header .nav {
        row-gap: 4px;
    }

}

/* Phones */
@media (max-width: 575.98px) {
    .site-brand {
        width: 100%;
        justify-content: center;
    }

    .site-brand img:first-child {
        width: 48px !important;
        height: 48px !important;
    }

    .site-brand img:last-child {
        width: min(210px, 62vw) !important;
    }

    .site-actions {
        width: 100%;
        margin-top: 8px;
    }

    .site-actions form {
        justify-content: center;
        width: 100%;
    }

    .site-actions .btn {
        margin-right: 8px !important;
    }

    .navbar-search-input,
    .navbar-search-input:hover,
    .navbar-search-input:focus {
        width: min(190px, 52vw);
        max-width: 52vw;
    }

    .nav-pills .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    h1 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    h2 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.7rem);
    }

    .modal-dialog {
        margin: 0.75rem;
    }

    #chatbox {
        right: 10px !important;
        bottom: 88px !important;
        width: calc(100vw - 20px) !important;
        height: min(70vh, 520px) !important;
    }

    #chat-sidebar {
        display: none !important;
    }

    #chat-icon,
    #whatsapp-icon,
    #call-icon {
        right: 14px !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 24px !important;
    }

    #chat-icon {
        bottom: 190px !important;
    }

    #whatsapp-icon {
        bottom: 126px !important;
    }

    #call-icon {
        bottom: 62px !important;
    }

    footer .container.rounded {
        width: calc(100% - 24px) !important;
    }
}

@media (min-width: 768px) {
    .banner > .banner-box {
        min-width: 0;
    }

    .banner > .banner-box span {
        max-width: 100% !important;
        overflow-wrap: anywhere;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .banner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .banner > .banner-box {
        width: 100%;
        margin-left: 0 !important;
    }

    .banner > .banner-box:first-child {
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .banner > .banner-box[style*="margin-left"] {
        margin-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    footer.bd-footer {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .banner {
        height: auto !important;
        min-height: 250px !important;
        padding: 24px 0 !important;
    }

    .banner-box {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }

    .banner-box h1,
    .banner-box h2 {
        font-size: clamp(1.5rem, 8vw, 2.3rem) !important;
        overflow-wrap: anywhere;
    }

    .banner-box span {
        max-width: 100% !important;
    }

    .contact-modal,
    .feedback-modal,
    .modal-content {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .hero,
    .hero-section {
        height: auto !important;
        min-height: 280px !important;
    }

    .photo-gallery .card,
    .gallery .card,
    .row > [class*="col-"] > .card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Homepage fixed-size media */
@media (max-width: 767.98px) {
    .carousel-item img {
        height: min(62vw, 360px) !important;
        min-height: 220px;
    }

    img[src*="homesir"] {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
    }

    .table-responsive table {
        min-width: 680px;
    }
}
/* Donate Button */

.btn {
    border-radius: 30px !important;
    transition: 0.3s;
}


.btn:hover {
    transform: translateY(-3px);
}

.donate-btn:hover {
    background: #003b8f;
    color: white;
}


/* Search Box */

.form-control {
    border-radius: 30px;
    border: 1px solid #ddd;
}


.form-control:focus {
   
    box-shadow: 0 0 10px rgba(230, 0, 92, 0.2);
}

.navbar-search-input {
    width: 100px;
    transition: width 0.25s ease, box-shadow 0.25s ease;
}

.navbar-search-input:hover,
.navbar-search-input:focus {
    width: 340px;
}

@media (max-width: 576px) {
    .navbar-search-input {
        width: min(100px, 30vw);
    }

    .navbar-search-input:hover,
    .navbar-search-input:focus {
        width: min(300px, 75vw);
    }
}


/* =========================
   HERO CAROUSEL
========================= */

.carousel {
    overflow: hidden;
}


.carousel-item {
    transition: transform 0.8s ease-in-out;
}


.carousel-item h2 {
    font-size: 40px;
    animation: slideLeft 1s ease;
}


.carousel-item p {
    color: white;
    animation: slideLeft 1.2s ease;
}


.carousel-item .btn {
    animation: fadeUp 1.5s ease;
}


/* HERO CAROUSEL */

#myCarousel {
    width:100%;
}


.carousel-item {
    position:relative;
}


.carousel-item img {

    width:100%;
    height:550px;
    object-fit:cover;

}
/* Caption */

.carousel-caption {

    position:absolute;

    left:8%;
    bottom:80px;

    text-align:left;

    max-width:500px;

}

.carousel-caption h2 {

    font-size:42px;
    font-weight:700;

}

.carousel-caption p {

    font-size:18px;
    margin-top:15px;

}

.carousel-caption .btn {

    margin-top:20px;

}

/* Tablet */

@media(max-width:992px){

    .carousel-item img{

        height:450px;

    }


    .carousel-caption{

        bottom:50px;
        left:5%;

    }


    .carousel-caption h2{

        font-size:32px;

    }

}

/* Mobile */

@media(max-width:576px){

    .carousel-item img{

        height:350px;

    }


    .carousel-caption{

        bottom:25px;
        left:5%;
        right:5%;

        text-align:center;

    }


    .carousel-caption h2{

        font-size:22px;

    }


    .carousel-caption p{

        font-size:13px;

    }


    .carousel-caption .btn{

        padding:8px 18px;
        font-size:14px;

    }

}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.carousel img {

    height: 500px;
    object-fit: cover;

}

.carousel-control-prev-icon,
.carousel-control-next-icon {

    
    border-radius: 50%;
    padding: 20px;

}

/* =========================
   WHO WE ARE SECTION
========================= */
section .container {

    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

}

section h1 {

    color: #003b8f;
    font-size: 45px;

}

section .btn-primary:hover {

    background: #003b8f !important;

}

/* Who We Are Section Responsive */

@media (max-width: 991px) {

    .container {
        margin: 0 15px;
    }

    .row {
        text-align: center;
    }

    .col-lg-6 img {
        width: 100% !important;
        height: 350px !important;
        margin-left: 0 !important;
    }

    .col-lg-6 h3 {
        font-size: 28px;
    }

    .col-lg-6 p {
        font-size: 15px;
        line-height: 1.7;
        text-align: justify;
    }

}

@media (max-width: 576px) {

    section.py-5 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .container {
        border-radius: 10px !important;
        box-shadow: 3px 4px 8px gray !important;
    }

    .col-lg-6 img {
        height: 280px !important;
        width: 280px !important;
        border-radius: 10px !important;
    }

    .col-lg-6 h3 {
        font-size: 22px;
        margin-top: 20px;
    }

    .col-lg-6 p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .btn {
        font-size: 14px;
    }

}

/* =========================
   PROGRAM CARDS
========================= */
.card {

    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;

}

.card:hover {

    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}

.card img {

    height: 220px;
    object-fit: cover;

}

.card-title {

    color: #003b8f;
    font-weight: 600;

}

.card-text {

    font-size: 15px;
    line-height: 1.6;

}


/* =========================
   OUR IMPACT SECTION
========================= */

.impact-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.impact-section h3 {
    color: #003b8f;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.impact-section p {
    color: #667085;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

/* Impact Cards */

.impact-card {
    background: white;
    width: 100%;
    max-width: 220px;
    height: 130px;

    margin: auto;
    padding: 20px;

    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: 0.3s ease;
    opacity: 1;
}

/* Hover Effect */

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}


/* Number */

.impact-card h2 {
    
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}


/* Title */

.impact-card h6 {
    color: #003b8f;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}
/* Mobile */

@media(max-width:768px){

    .impact-card {
        height: 120px;
        max-width: 170px;
        padding: 15px;
    }

    .impact-card h2 {
        font-size: 32px;
    }

    .impact-section h3 {
        font-size: 26px;
    }

}
 
.partners .border:hover {

    transform: scale(1.05);

}

/* =========================
   PARTNER CARDS
========================= */

.partner-card {
    background: white;
    width: 100%;
    max-width: 220px;
    height: 170px;

    margin: auto;
    padding: 20px;

    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}


.partner-card img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.partner-card p {
    color: #003b8f !important;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* =========================
   FOOTER
========================= */

footer {
    position: relative;
    overflow: visible;
    z-index: 2;
    padding-top: 100px !important;
}

.stay-connected {
    width: 75%;
    min-height: 100px;
    margin-top: -80px;
    background: #fff;
    border: 1px solid #D96C4A;
    box-shadow: 3px 2px #D96C4A;
    padding: 20px;
    position: relative;
    z-index: 5;
}

@media (max-width: 576px) {
    .stay-connected {
        width: 90%;
        margin-top: -45px;
    }
}

footer h5 {

    color: white !important;
    margin-bottom: 20px;

}

footer p {

    color: #98a2b3;
    font-size: 15px;

}

.footer-menu {

    padding: 0;

}

.footer-menu li {

    margin-bottom: 12px;

}

.footer-menu a {

    color: #98a2b3 !important;
    text-decoration: none;
    transition: 0.3s;

}

.footer-menu a:hover {

    color: #D96C4A !important;
    padding-left: 8px;

}

footer p i {
    color: white;
}


footer i {

    color: white;
    transition: 0.3s;

}



footer i:hover {

    color: #D96C4A;
    transform: translateY(-5px);

}
.stay-connected i {
    color: #101828; /* default visible color */
    cursor: pointer;
    transition: 0.3s;
}

.stay-connected i:hover {
    color: #D96C4A;
    transform: translateY(-5px);
}
/* Stay Connected ke social icons */
footer > .container:first-child i {
    color: #101828 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

footer > .container:first-child i:hover {
    color: #D96C4A !important;
    transform: translateY(-5px);
}

/* Social Box */

footer .container.rounded {

    border-radius: 25px !important;
    box-shadow: 0 10px 30px rgba(230, 0, 92, 0.3) !important;

}



/* =========================
   LOADING ANIMATION
========================= */
@keyframes zoomIn {

    from {

        opacity: 0;
        transform: scale(0.8);

    }

    to {

        opacity: 1;
        transform: scale(1);

    }

}


.card,
.story .border {

    animation: zoomIn 0.8s ease;

}

.banner {
    width: 100%;
    min-height: 220px;
    background: #F7F3EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
    padding: 30px 20px;
}

.banner::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0A3641;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    
    z-index: 2;
}

.banner-box {
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner-box h1 {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

/* Desktop specific updates */
@media (min-width: 768px) {
    .banner {
        height: 220px;
        flex-direction: row;
        justify-content: space-between;
        padding-left: 5%;
        padding-right: 5%;
        text-align: left;
    }

    .banner::before {
        width: 55%;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    }

    .banner-box {
        width: 48%;
    }

    .banner-box h1 {
        font-size: 38px;
    }

    .banner > .banner-box {
        min-width: 0;
        overflow: hidden;
    }

    .banner > .banner-box span {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

@media (min-width: 1200px) {
    .banner {
        padding-left: 8%;
        padding-right: 8%;
    }

    .banner::before {
        width: 720px;
    }
}

.breadcrumb-item a {
    color: #000000 !important; 
    text-decoration: none;
}


.breadcrumb-item a:hover {
    color: #003b8f !important;
    text-decoration: underline;
}


.breadcrumb-item.active {
    color: #000000 !important; 
}

/* Final responsive overrides: keep these after page-wide legacy rules. */
footer.bd-footer {
    display: block;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media (max-width: 991.98px) {
    .site-brand img:last-child {
        width: min(260px, 48vw) !important;
        height: auto !important;
    }

}

@media (max-width: 767.98px) {
    .banner {
        height: auto !important;
        min-height: 250px !important;
        padding: 24px 12px !important;
    }

    .banner-box {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }

    .banner-box h1,
    .banner-box h2 {
        font-size: clamp(1.5rem, 8vw, 2.3rem) !important;
        overflow-wrap: anywhere;
    }

    .row > [class*="col-"] > .card,
    .photo-gallery .card,
    .gallery .card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-modal,
    .feedback-modal,
    .modal-content {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .hero,
    .hero-section {
        height: auto !important;
        min-height: 280px !important;
    }
}

@media (max-width: 575.98px) {
    .site-brand {
        width: 100%;
        justify-content: center;
    }

    .site-brand img:first-child {
        width: 48px !important;
        height: 48px !important;
    }

    .site-brand img:last-child {
        width: min(210px, 62vw) !important;
    }

    .site-actions {
        width: 100%;
        margin-top: 8px;
    }

    .site-actions form {
        justify-content: center;
        width: 100%;
    }

    .navbar-search-input,
    .navbar-search-input:hover,
    .navbar-search-input:focus {
        width: min(190px, 52vw) !important;
        max-width: 52vw !important;
    }

    #chatbox {
        right: 10px !important;
        bottom: 88px !important;
        width: calc(100vw - 20px) !important;
        height: min(70vh, 520px) !important;
    }

    #chat-sidebar {
        display: none !important;
    }

    #chat-icon,
    #whatsapp-icon,
    #call-icon {
        right: 14px !important;
        width: 52px !important;
        height: 52px !important;
        font-size: 24px !important;
    }

    #chat-icon { bottom: 190px !important; }
    #whatsapp-icon { bottom: 126px !important; }
    #call-icon { bottom: 62px !important; }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #000000 !important;
}

.btn-danger-custom {
    background-color: #0F4C5C !important;
    border-color: #0F4C5C !important;
    color: #ffffff !important;
}

.btn-danger-custom:hover,
.btn-danger-custom:focus {
    background-color: #D96C4A !important;
    border-color: #D96C4A !important;
    color: #ffffff !important;
}

.tender-link {
    color: #0a3641;
    text-decoration: none;
    font-weight: 500;
}

.tender-link:hover,
.tender-link:focus {
    color: #D96C4A;
    text-decoration: none;
}

.table thead {
    background-color: #0F4C5C;
    color: #F7F3EB;
}

.table thead th {
    border-color: #dee2e6;
}

.table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table tbody tr:hover {
    background-color: #eef5fa;
}

.news-table .tender-link {
    color: #0F4C5C;
}

.banner .breadcrumb-item a {
    color: black !important;
}

.banner .breadcrumb-item a:hover {
    color: black !important;
}

.banner .breadcrumb-item.active {
    color: black !important;
}

.main {
    min-height: 500px;
    width: 100%;
    overflow: visible;
}

.partner-logo {
    width: 100%;
    max-width: 85px;
    height: 45px;
    object-fit: contain;
}

.banner {
            border-bottom: 8px solid #e6005c;
        }

@media (min-width: 768px) {
    .banner > .banner-box[style*="margin-left"] {
        width: 46% !important;
        margin-left: 0 !important;
        padding: 0 2%;
        text-align: center !important;
    }

    .banner > .banner-box[style*="margin-left"] > div {
        justify-content: center !important;
    }

    .banner > .banner-box[style*="margin-left"] span {
        display: block;
        max-width: 100% !important;
        overflow-wrap: anywhere;
        text-align: center !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .banner > .banner-box:first-child {
        width: 40% !important;
    }

    .banner > .banner-box:last-child,
    .banner > .banner-box[style*="margin-left"] {
        width: 46% !important;
    }
}
