main {
    margin-top: 100px;
}

.toast-container {
    position: fixed;
    bottom: 40px;
    left: 3%;
    z-index: 1000;
}

#toast-form {
    background-color: var(--rr-body-primary);
    border: 3px solid var(--rr-theme-primary);
    width: fit-content;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: .5rem 1rem;
    animation: fadeIn .5s ease-in-out;
}

#toast-form h6 {
    text-align: start;
    width: 100%;
}

#toast-form p {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: black;
}

.banner-slider {
    height: fit-content;
    width: 100%;
    overflow: hidden;
}

.banner-slider-mobile {
    height: fit-content;
    width: 100%;
    display: none;
}

.img-t-banner {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.tns-controls {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.brand__item {
    width: 150%;
    transition: 0.15s ease-in-out;
}

.brand__item:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.hide {
    animation: fadeOut 0.5s ease-in-out forwards;
}

.footer-content {
    width: 100%; 
    display: flex;
    justify-content: space-around;
    align-items: center; 
    gap: 200px;
}

.captcha-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 800px) {
    main {
        margin-top: 130px;
    }

    .banner-slider {
        height: 0;
        width: 0;
        display: none;
    }
    .banner-slider-mobile {
        display: block;
    }  

    .brand__item {
        width: 100%;
        transition: 0.15s ease-in-out;
    }

    .footer-content {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    main {
        margin-top: 65px;
    }

    #toast-form h6 {
        font-size: 1.1rem;
    }
    
    #toast-form p {
        font-size: .8rem;
    }

    .toast-container {
        left: 0%;
    }
    
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}