:root {
    --PrimaryColor: #9A5126;
    --SecondColor: #269999;
    --ThirdColor: #808080;
    --FourthColor: #6C87AE;
    --FifthColor: #282828;
    --WhiteColor: #FAF6F0;
}

@media screen and (max-width: 1300px) {

    section{
        display: none;
    }

    aside{
        display: none;
    }

    .menu-header {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav {
        margin: 0 auto;
    }

    header nav {
        margin: 0 auto;
        width: 80%;
    }

    nav ul {
        display: none;
    }

    section {
        display: none;
    }

    .background-header {
        display: flex;
        text-align: center;
        margin: 0 auto;
        width: 100%;

    }



    .header-container {
        margin: 0 auto;
        width: 80%;
    }

    .header-content {
        width: 100%;
    }

    #btn-mobile {

        display: flex;

        padding: .5rem 1rem;

        cursor: pointer;

        border: none;

        background: none;

        color: #FFF;

        gap: .5rem;

    }


    #burger {

        border-top: 4px solid var(--PrimaryColor);
        width: 28px;

    }



    #burger::after,
    #burger::before {

        content: '';

        display: block;

        width: 28px;

        height: 2px;

        background-color: var(--PrimaryColor);

        margin-top: 5px;

        transition: .3s;

        position: relative;

    }



    #navmobile.active #burger {

        border-top-color: transparent;

    }



    #navmobile.active #burger::before {

        transform: rotate(135deg);

    }



    #navmobile.active #burger::after {

        transform: rotate(-135deg);

        top: -7px;

    }

    .menu aside{
        display: block;
    }

    .btn-default-mobile{
        width: 100%;
        color: #FFF !important;
    }


    #menu {
        border-top: 2px solid #9A5126;
        border-bottom: 2px solid #9A5126;

        display: block;

        position: absolute;

        width: 100%;

        top: 80px;

        right: 0;

        height: 0;

        z-index: 1000;

        visibility: hidden;

        transition: .5s;

        overflow-y: hidden;

    }



    #navmobile.active #menu {
        height: auto;
        visibility: visible;
        overflow-y: auto;
        background-color: #FFF;
    }

    #menu a {
        border-radius: 0;
        display: flex;
        justify-content: center;
        color: var(--FifthColor);
        padding: 2rem 0;
        font-size: 18px;
    }

    #menu a:hover {
        background-color: var(--PrimaryColor);
        color: #FFF;
    }

    .hero-container{
        width: 90%;
        flex-direction: column-reverse;
        margin: 0 auto;
        padding: 0;

    }

    .right-hero img{
        width: 380px;
        margin-left: -15px;
    }

    .left-hero, .right-hero{
        height: auto;
        margin: 52px auto;
        width: 90%;
    }

    .left-hero h1{
        text-align: center;
        font-size: 42px;
    }

    .left-hero h5{
        width: 100%;
        text-align: center;
    }

    .dashboard-container{
        width: 90%;
        flex-direction: column;
    }

    .right-dashboard{
        text-align: center;
    }

    .left-dashboard, .right-dashboard, .right-dashboard h2, .right-dashboard h4{
        width: 100%;
        height: auto;
    }
    .right-dashboard li{
        width: auto;
    }

    .left-dashboard img{
        display: block;
        width: 100%;
        margin-left: -12px;
    }

    .right-dashboard ul{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plataform-content{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        width: 75%;
        text-align: center;
        justify-content: center;
    }

    .plataform-elements{
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .plataform-container{
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .divisor-crisalida-container{
        width: 60%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .divisor-crisalida-container img{
        margin: 52px 0;
    }

    .crisalida-how-us{
        width: 90%;
        flex-direction: column-reverse;
    }

    .left-howus, .right-howus{
        width: 90%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .left-howus h2{
        margin-top: 32px;
    }

    .right-howus img{
        width: 250px;
    }

    .title {
        width: 70%;
        margin-bottom: -80px;
    }

    .how-us-content{
        flex-wrap: wrap;
        width: 90%;
    }

    .left-how-us{
        width: 90%;
    }

    .right-how-us img{
        width: 100%;
    }

    .title-items{
        width: 70%;
    }

    .item-content {
        grid-template-columns: repeat(1, 5fr);
    }

    .partnes-content h1{
        font-size: 27.55px;
    }

    .partnes-img{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partnes-img a:nth-child(2){
        margin-bottom: 120px;
        margin-top: 50px;
    }

    footer {
        padding: 90px 0;
    }

    .footer-content{
        width: 100%;
        flex-direction: column;
    }

    .left-footer{
        width: 90%;
    }

    .contat-footer li{
        font-size: 18px;
    }

    .copyright-content{
        flex-direction: column;
    }

    .right-copy{
        margin-top: 30px;
    }
}

@media screen and (min-width: 1301px) {
    .menu-icon {
        display: none;
    }

    .menu {
        display: block;
    }

    #btn-mobile {
        display: none;
    }
}