.main--content-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 5% 3%;
    gap: 5%;
    margin-top: 10dvh;

    @media(max-height: 600px) and (orientation: landscape){
        margin-top: 20dvh;
    }

    @media (min-width: 768px) and (min-height: 600px){
        margin-top: 12dvh;
    }

    @media (min-width: 1000px) {
        margin-top: 17dvh;
    }
}

.page--title{
    color: #a24a16;
    font-family: "Montserrat";
    padding: 5% 5%;
    font-size: 18px;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 3% 1%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 2% 1%;
        font-size: 22px;
    }
}

.agreements--section{
    display: flex;
    justify-content: baseline;
    align-items: baseline;
    flex-direction: column;
    width: 100%;
    height: 40dvh;
    overflow: hidden;
    padding: 0% 0% 5% 0%;

    @media (min-width: 768px) and (min-height: 600px) {
        width: 95%;
    }

    @media (min-width: 1000px){
        width: 85%;
        padding: 0%;
    }
}

.agreements--text{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    color: #4b3d33;
    font-size: 15px;
    font-family: "Montserrat";

    @media (min-width: 768px) and (min-height: 600px) {
        font-size: 18px;
    }

    @media (min-width: 1000px){
        font-size: 20px;
    }
}

.agreements--carrossel{
    display: flex;
    height: 15dvh;
    gap: 1%;
    animation: 20s infinite slide linear;
    overflow: hidden;
}

@keyframes slide{
    0%{transform: translateX(0%);}
    100%{transform: translateX(-49.9%);}
}

.agreements--icon{
    height: 100%;
    width: 200px;
    list-style-type: none;
}

.agreements--icon > img{
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    width: 100%;
    height: 100%;

    @media (min-width: 768px) and (min-height: 600px) {
        width: 90%;
    }
}