/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#071528;
    color:#FFF;
    overflow-x:hidden;

}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

/*==================================================
CONTAINER
==================================================*/

.container{

    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 40px;

}


/*==================================================
HEADER
==================================================*/

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    padding: 30px 0;

    background: transparent;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 110px;
    height: auto;
    display: block;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #D8A34D;
    color: #08182E !important;

    padding: 14px 28px;

    border-radius: 999px;

    font-weight: 700;
    font-size: 15px;

    transition: .35s;
}

.btn-header:hover {
    transform: translateY(-2px);
    background: #E0AD4D;
}

.menu-mobile {
    width: 34px;
    height: 28px;

    border: none;
    background: none;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-mobile span {
    width: 100%;
    height: 2px;
    background: #FFF;

    display: block;
}


/*==================================================
HEADER - MOBILE
==================================================*/

@media (max-width: 768px) {

    .header {
        padding: 25px 0;
        background: transparent;
    }

    .logo img {
        width: 110px;
    }

}

/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    min-height:620px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
        radial-gradient(circle at top,#102746 0%,#071528 70%);

}

.hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:url("../images/noise.png");
    opacity:.06;

    pointer-events:none;

}

/* BRG gigante ao fundo */

.hero-bg-title{

    position:absolute;

    right:-40px;
    top:80px;

    font-family:'Cormorant Garamond',serif;

    font-size:360px;

    line-height:.8;

    color:transparent;

    -webkit-text-stroke:1px rgba(255,255,255,.06);

    user-select:none;

}

.hero-content{

    position:relative;
    z-index:5;

    max-width:580px;
    width:100%;

}

.subtitle{

    display:flex;
    align-items:center;
    gap:15px;

    color:#D8A34D;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

    margin-bottom:22px;

}

.subtitle::before{

    content:"";

    width:40px;
    height:2px;

    background:#D8A34D;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    line-height:1.08;

    font-weight:600;

    color:#FFF;

    margin-bottom:18px;

}

.hero h1 span{

    color:#D8A34D;

}

.hero p{

    max-width:500px;

    font-size:17px;

    line-height:1.6;

    color:#d8d8d8;

    margin-bottom:28px;

}

/*==================================================
BOTÃO
==================================================*/

.btn-primary{

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:transparent;

    color:#D8A34D;

    font-weight:700;

    padding:18px 34px;

    border:2px solid #D8A34D;
    border-radius:50px;

    transition:.35s;

}

.btn-primary:hover{

    background:#D8A34D;
    color:#08182E;

    transform:translateY(-4px);

}

.btn-primary svg{

    transition:.3s;
    stroke:currentColor;

}

.btn-primary:hover svg{

    transform:translateX(5px);

}
/*==================================================
NÚMEROS
==================================================*/

.numbers{

    position:relative;

    margin-top:0;

    padding:60px 0 80px;

    background:#071528;

    z-index:20;

}

.numbers .container{

    display:grid;

    grid-template-columns:

    1fr
    auto
    1fr
    auto
    1fr
    auto
    1fr;

    align-items:center;

    background:transparent;

}

.divider{

    width:1px;
    height:70px;

    background:rgba(255,255,255,.15);

}

.number-item{

    text-align:center;

}

.number-item h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    color:#D8A34D;

    margin-bottom:10px;

}

.number-item p{

    color:#FFF;

    font-size:18px;

    font-weight:400;

    opacity:.92;

}

/*==================================================
RESPONSIVO
==================================================*/

@media(max-width:1100px){

.hero h1{

font-size:62px;

}

.hero-bg-title{

font-size:280px;

}

.menu{

display:none;

}

}

@media(max-width:768px){

.container{

padding:0 25px;

}

.hero{

padding-top:150px;
padding-bottom:120px;

}

.hero-content{

width:100%;

}

.hero h1{

font-size:48px;

}

.hero p{

width:100%;
font-size:18px;

}

.hero-bg-title{

display:none;

}

.numbers .container{

grid-template-columns:1fr 1fr;

gap:35px;

}

.divider{

display:none;

}

.number-item h2{

font-size:46px;

}

}

/*==================================================
SOBRE A BRG
==================================================*/

.about{

    background:#ffffff;

    padding:140px 0;

    position:relative;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 560px;

    gap:90px;

    align-items:center;

}

/*==========================
TEXTOS
==========================*/

.section-subtitle{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    color:#D8A34D;

    text-transform:uppercase;

    margin-bottom:28px;

}

.section-subtitle::before{

    content:"";

    width:45px;

    height:2px;

    background:#D8A34D;

}

.about-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    line-height:1.05;

    font-weight:600;

    color:#08182E;

    margin-bottom:35px;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#5d6675;

    margin-bottom:22px;

}

/*==========================
IMAGEM
==========================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:28px;

    display:block;

    object-fit:cover;

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

/* detalhe dourado */

.about-image::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:#D8A34D;

    border-radius:30px;

    top:-28px;

    left:-28px;

    z-index:-1;

}

/*==========================
CARDS
==========================*/

.about-features{

    margin-top:20px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature{

    background:#FFF;

    border-radius:22px;

    padding:35px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    transition:.35s;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.05);

}

.feature:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#F6F7FA;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.feature-icon img{

    width:34px;

}

.feature h4{

    font-size:22px;

    font-weight:700;

    color:#08182E;

    margin-bottom:10px;

}

.feature p{

    font-size:16px;

    line-height:1.8;

    color:#70798B;

}

/*==========================
RESPONSIVO
==========================*/

@media(max-width:1100px){

.about-grid{

grid-template-columns:1fr;

gap:60px;

}

.about-image{

order:-1;

}

.about-content h2{

font-size:48px;

}

.about-features{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.about{

padding:90px 0;

}

.about-content h2{

font-size:38px;

}

.about-content p{

font-size:17px;

}

.feature{

padding:25px;

}

.feature h4{

font-size:20px;

}

}

/*==================================================
GOVERNO
==================================================*/

.government{

    background:#FFF;
    padding:130px 0;

}

.government-grid{

    display:grid;
    grid-template-columns:1.25fr 460px;
    gap:70px;
    align-items:start;

}

/*==========================
TEXTO
==========================*/

.government-content{

    max-width:620px;

}

.government-content h2{

    margin:25px 0 30px;

    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    line-height:1.05;
    font-weight:600;

    color:#08182E;

}

.government-content h2 span{

    color:#D8A34D;

}

.government-content p{

    font-size:18px;
    line-height:1.9;
    color:#616C7D;

    margin-bottom:22px;

}

/*==========================
FOTO
==========================*/

.government-media{

    position:relative;
    width:100%;
    max-width:460px;
    margin-left:auto;

}

.government-media img{

    width:100%;
    height:620px;

    display:block;

    object-fit:cover;

    border-radius:22px;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

/* detalhe dourado */

.government-media::before{

    content:"";

    position:absolute;

    width:150px;
    height:150px;

    background:#D8A34D;

    border-radius:28px;

    top:-25px;
    right:-25px;

    z-index:-1;

}

/*==========================
NOMES
==========================*/

.government-people{

    margin-top:35px;

    display:grid;

    grid-template-columns:1fr auto 1fr;

    align-items:center;

    gap:35px;

}

.people-divider{

    width:1px;
    height:60px;

    background:#DDD;

}

.government-person strong{

    display:block;

    font-size:20px;
    font-weight:700;

    color:#08182E;

    margin-bottom:8px;

}

.government-person span{

    font-size:15px;

    color:#777;

    line-height:1.6;

}

/*==========================
PARCEIROS
==========================*/

.government-partners{

    margin-top:110px;

}

.partners-title{

    position:relative;

    width:fit-content;

    margin:0 auto 55px;

    font-size:15px;
    font-weight:700;

    color:#08182E;

    text-transform:uppercase;
    letter-spacing:2px;

}

.partners-title::before,
.partners-title::after{

    content:"";

    position:absolute;

    top:50%;

    width:90px;
    height:1px;

    background:#D8A34D;

}

.partners-title::before{

    right:100%;
    margin-right:25px;

}

.partners-title::after{

    left:100%;
    margin-left:25px;

}

.partners-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:70px;

    align-items:center;

}

.partners-grid img {
    width:100%;
    max-width:180px;
    margin:auto;
    opacity:1;
    filter:none;
    transition:.35s;
}

.partners-grid img:hover{

    opacity:1;

    filter:none;

    transform:translateY(-4px);

}

/*==========================
RESPONSIVO
==========================*/

@media(max-width:991px){

    .government{

        padding:90px 0;

    }

    .government-grid{

        grid-template-columns:1fr;
        gap:60px;

    }

    .government-content{

        max-width:100%;

    }

    .government-content h2{

        font-size:46px;

    }

    .government-media{

        order:-1;

    }

    .government-people{

        grid-template-columns:1fr;

        gap:20px;

        text-align:center;

    }

    .people-divider{

        display:none;

    }

    .government-partners{

        margin-top:80px;

    }

    .partners-grid{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

    .partners-title::before,
    .partners-title::after{

        display:none;

    }

}

@media(max-width:576px){

    .government-content h2{

        font-size:38px;

    }

    .government-content p{

        font-size:17px;

    }

    .partners-grid{

        grid-template-columns:1fr;

    }

}
/*==================================================
PROJETOS
==================================================*/

.projects{

    background:#F8F6F2;

    padding:110px 0;

}

.projects-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    margin-bottom:60px;

}

.projects-header h2{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    line-height:1.05;

    color:#08182E;

    margin-top:20px;

    max-width:620px;

}

.projects-link{

    color:#C58D2B;

    font-weight:600;

    transition:.3s;

}

.projects-link:hover{

    transform:translateX(6px);

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.project-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:30px;

    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,0));

    color:#FFF;

}

.project-overlay h3{

    font-size:24px;

    margin-bottom:10px;

}

.project-overlay p{

    font-size:15px;

    line-height:1.6;

    opacity:.9;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-card:hover{

    transform:translateY(-8px);

    transition:.35s;

}

@media(max-width:992px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.projects-header{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.projects-header h2{

font-size:40px;

}

.projects-grid{

grid-template-columns:1fr;

}

.project-card img{

height:260px;

}

}

/*==================================================
FINAL
==================================================*/

.bottom-section{

    background:#F8F6F2;

    padding:100px 0;

}

.advantages{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin:50px 0 80px;

}

.advantage{

    display:flex;

    gap:18px;

}

.advantage img{

    width:46px;

}

.advantage h4{

    color:#08182E;

    margin-bottom:10px;

}

.advantage p{

    color:#666;

    line-height:1.7;

}

/*========================*/

.footer-content{

    display:grid;

    grid-template-columns:1fr 1.4fr 1fr;

    gap:40px;

    align-items:center;

}

.testimonial{

    background:#FFF;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 40px rgba(0,0,0,.06);

}

.quote{

    font-size:70px;

    color:#C58D2B;

    font-family:serif;

}

.person{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.person img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.footer-cta{

    background:#08182E;

    color:#FFF;

    border-radius:24px;

    padding:60px;

}

.footer-cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    margin:25px 0;

}

.footer-cta p{

    color:#d9d9d9;

    line-height:1.8;

    margin-bottom:35px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#08182E;

    color:#FFF;

    padding:70px 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:140px;

    margin-bottom:20px;

}

.footer h4{

    color:#D8A34D;

    margin-bottom:25px;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#FFF;

    text-decoration:none;

}

.social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.social a:hover{

    background:#D8A34D;

    color:#08182E;

}

/* ==================================================
   RESPONSIVIDADE MOBILE - CORREÇÃO COMPLETA
   ================================================== */

@media (max-width: 768px) {

    /* -----------------------------------------------
       1. EVITAR EXPANSÃO HORIZONTAL
       ----------------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        max-width: 100%;
    }

    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }


    /* -----------------------------------------------
       2. HEADER
       ----------------------------------------------- */

    .header {
        width: 100%;
        padding: 30px 0;
    }

    .header .container {
        width: 100%;
    }


    /* -----------------------------------------------
       3. HERO
       ----------------------------------------------- */

    .hero {
        width: 100%;
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 44px;
        line-height: 1.05;
        word-wrap: break-word;
    }

    .hero p {
        width: 100%;
        max-width: 100%;
        font-size: 17px;
        line-height: 1.6;
    }

    .hero .btn-primary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        padding: 16px 20px;
    }


    /* -----------------------------------------------
       4. NÚMEROS
       ----------------------------------------------- */

    .numbers {
        width: 100%;
        padding: 60px 0;
    }

    .numbers .container {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 40px 15px;
    }

    .number-item {
        width: 100%;
    }

    .number-item h2 {
        font-size: 46px;
    }

    .number-item p {
        font-size: 16px;
        line-height: 1.4;
    }


    /* -----------------------------------------------
       5. SOBRE
       ----------------------------------------------- */

    .about {
        width: 100%;
        padding: 80px 0;
    }

    .about-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }

    .about-image::before {
        width: 80px;
        height: 80px;
        top: -15px;
        left: -15px;
    }

    .about-features {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        width: 100%;
    }


    /* -----------------------------------------------
       6. GOVERNO
       ----------------------------------------------- */

    .government {
        width: 100%;
        padding: 80px 0;
    }

    .government-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .government-content {
        width: 100%;
        max-width: 100%;
    }

    .government-content h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .government-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .government-media {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .government-media img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }

    .government-media::before {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }

    .government-people {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .partners-grid {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }


    /* -----------------------------------------------
       7. PROJETOS
       ----------------------------------------------- */

    .projects {
        width: 100%;
        padding: 80px 0;
    }

    .projects-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .projects-header h2 {
        width: 100%;
        max-width: 100%;
        font-size: 38px;
        line-height: 1.1;
    }

    .projects-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        width: 100%;
        max-width: 100%;
    }

    .project-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }


    /* -----------------------------------------------
   8. CTA
   ----------------------------------------------- */

.bottom-section {
    width: 100%;
    padding: 70px 0;
}

.footer-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cta {
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
    padding: 50px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-size: 52px;
    line-height: 1.1;
}

.footer-cta p {
    font-size: 17px;
    line-height: 1.7;
}

.footer-cta .btn-primary {
    width: auto;
    justify-content: center;
    text-align: center;
}


/* -----------------------------------------------
   9. FOOTER
   ----------------------------------------------- */

.footer {
    width: 100%;
    padding: 60px 0;
}

.footer-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto;

    align-items: start;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 140px;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
}

.footer-contact {
    width: 320px;
    justify-self: end;
    text-align: left;
    padding-top: 15px;
}

.footer-contact h4 {
    color: #D8A34D;
    margin-bottom: 25px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 17px;
}

.footer-contact a {
    color: #FFF;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: #D8A34D;
}


/* ÍCONE DO WHATSAPP */

.footer-contact a .whatsapp-icon {
    width: 20px !important;
    height: 20px !important;

    min-width: 20px !important;
    max-width: 20px !important;

    min-height: 20px !important;
    max-height: 20px !important;

    object-fit: contain !important;
    display: inline-block !important;
    flex-shrink: 0;
}


/* -----------------------------------------------
   MOBILE
   ----------------------------------------------- */

@media (max-width: 768px) {

    /* CTA */

    .bottom-section {
        width: 100%;
        padding: 60px 0;
    }

    .footer-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-cta {
        width: 100%;
        max-width: 100%;
        padding: 40px 25px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .footer-cta h2 {
        font-size: 42px;
        line-height: 1.08;
    }

    .footer-cta p {
        font-size: 16px;
        line-height: 1.7;
    }

    .footer-cta .btn-primary {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }


    /* FOOTER */

    .footer {
        width: 100%;
        padding: 50px 0;
    }

    .footer-grid {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 20px;
        align-items: start;
    }

    .footer-brand {
        width: 100%;
        max-width: 100%;
    }

    .footer-logo {
        width: 110px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-contact {
        width: 100%;
        justify-self: end;
        text-align: left;
        padding-top: 10px;
    }

    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .footer-contact li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

   .footer-contact a .whatsapp-icon {
    width: 18px !important;
    height: 18px !important;

    min-width: 18px !important;
    max-width: 18px !important;

    min-height: 18px !important;
    max-height: 18px !important;

    object-fit: contain !important;
    display: inline-block !important;
    flex-shrink: 0;
}