/* =========================== ADS =========================== */
.ads {
    width: 100%;
    height: 100%;
}

.ads .ads_logo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 5rem;
    flex-wrap: wrap;
}

.ads .ads_logo .adds {
    color: var(--ColorText);
    display: flex;
    letter-spacing: 1px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.ads .ads_logo .adds h1 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .7;
}

.ads .ads_logo .adds span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .ads .ads_logo {
        width: 100%;
        height: 100%;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 0px 20px;
    }

    .ads .ads_logo .adds {
        width: 100%;
    }
}