.elementor-223 .elementor-element.elementor-element-8235361{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3868c19 */.brands-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.03) 1px,
        transparent 1px
    );
    background-size: 35px 35px;
    opacity: .4;
    pointer-events: none;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.second {
    margin-top: 120px;
}

.subtitle {
    display: inline-block;
    color: #0f4c81;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0c1c33;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.brand-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 35px;
    min-height: 300px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    text-decoration: none;
    color: inherit;

    border: 1px solid rgba(15, 76, 129, 0.08);

    position: relative;
    overflow: hidden;

    transition: all .4s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

/* Shine Effect */

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );

    transition: .8s;
}

/* Arrow */

.brand-card::after {
    content: "→";
    position: absolute;
    top: 22px;
    right: 25px;

    font-size: 22px;
    font-weight: 700;
    color: #0f4c81;

    opacity: 0;
    transform: translateX(-10px);

    transition: .3s ease;
}

.brand-card:hover::before {
    left: 150%;
}

.brand-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.brand-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

/* LOGO */

.brand-card img {
    width: 100%;
    max-width: 300px;
    height: 180px;

    object-fit: contain;
    object-position: center;

    margin-bottom: 20px;

    transition:
        transform .4s ease,
        filter .4s ease;
}

/* Logo Zoom */

.brand-card:hover img {
    transform: scale(1.12);
}

/* Description */

.brand-card span {
    display: block;

    font-size: 20px;
    font-weight: 700;
    color: #0c1c33;

    line-height: 1.4;

    max-width: 90%;
    margin: auto;
}

.small-grid {
    max-width: 1100px;
    margin: auto;
}

/* Tablet */

@media (max-width: 992px) {

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 38px;
    }

    .brand-card img {
        height: 160px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-height: 240px;
        padding: 30px 20px;
    }

    .brand-card img {
        max-width: 220px;
        height: 120px;
    }

    .brand-card span {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 30px;
    }
}/* End custom CSS */