html,
body {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    line-height: 28.8px;
    font-weight: 400;
    font-style: normal;
    color: #FFF;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
	margin-bottom: 60px;
}

.brands-header__title {
    font-family: "Helvetica", sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 96px;
    margin: 0;
}

.brands-header__menu {
    display: flex;
    gap: 16px;
    height: 100%;
}

.button {
    min-width: unset;

}

.brands-header__button {
    border-radius: 12px;
    min-width: unset;
    border: 1px solid #6C6C6C;
    margin-right: 16px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    line-height: 28.8px;
    text-transform: none;
}

.brands-header__button:last-child {
    margin-right: 0px;
}

.button--rainbow span {
    border-radius: 12px;
    padding: 8px 16px;
    text-align: center;
    color: #C4C4C4;
    min-width: unset;
}


.button--rainbow::before {
    border-radius: 12px;
    opacity: 0;
}

/* .button--rainbow:hover:before {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  } */

.button--rainbow:hover:after {
    border-radius: 12px;
    opacity: 1;
}


.button--rainbow.active:before {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.wrap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* max-width: 553px; */
    /* max-height: 454px; */
    width: 100%;
    height: 100%;
    border-radius: 14px;

    max-width: 100%;
    max-height: 700px;
    /* Increase as needed */
    margin-bottom: 32px;
    height: auto;
    /* angle: 0 deg; */
    /* opacity: 1; */

}

.wrap-img img {
    flex-shrink: 0;
    min-width: 100% !important;
    ;
    min-height: 100% !important;
    ;
    pointer-events: none;
}

.content-container {
    max-width: 100%;
    /* Or your preferred width */
    width: 100%;
    margin-left: 0;
    /* Remove left margin */
    padding: 0 8px;
}

.brands-wrapper {
    position: relative;
}

.big-card.card {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.29s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.big-card.card.active {
    position: unset;
    margin-top: 0;
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.4s;
    pointer-events: all;
}

.card,
.big-card.card {
    display: flex;
    flex-direction: column;
    /* Stack children vertically */
    width: 100%;
}

.card__icon {
    margin-bottom: 24px;
    max-height: 52px;
    overflow: hidden;
}

.card__icon img {
    max-width: 100%;
    max-height: 100%;
}

.card__desc-table-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
    width: 100%;
}

.card__description,
.card__table {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
    height: 100%;
    box-sizing: border-box;
}

.card__table tr {
    text-align: left;
    vertical-align: top;
}

.card__table tr:last-child {
    margin-bottom: 0;
}

.card__table th {
    font-weight: 400;
}

.card__table td {
    padding-bottom: 8px;
    padding-left: 20px;
}

.geo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.slider {
    margin-bottom: 160px;
}

@media only screen and (max-width: 992px) {
    .brands-header__title {
        font-size: 56px;
    }

    .title {
        font-size: 56px;
        line-height: 1;
    }

    .brands-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
        margin-bottom: 40px;
    }

    .brands-wrapper {
        margin-bottom: 120px;
    }

    .container {
        padding: 0 24px !important;
    }

    .big-card {
        padding: 8px;
        flex-direction: column;
    }

    .big-card .border {
        left: -2px;
        top: -2px;
        right: -2px;
        bottom: -2px;
    }

    .content-container {
        margin-left: 0;
        padding: 0 8px;
    }

    .wrap-img {
        max-width: 100%;
        margin-bottom: 24px;
        max-height: 252px;
    }

    .big-card .button--white {
        width: 100%;
        margin-bottom: 4px;
    }

    .slider {
        margin-bottom: 120px;
    }

    .card__desc-table-row {
        flex-direction: column;
        gap: 16px;
    }

    .card__table td {
        padding-bottom: 8px;
        padding-left: 0;
    }    
}