.container {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #F1F0ED;
    color: #000D44;

    background-size: cover; 
    background-repeat: no-repeat; 
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5vw 0 5vw;
}

.home_options_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.home_options {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 200px;
    margin: 20px;

    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 30px;
}

.home_options a {
    border-radius: 8px;
}

#show_methods_info {
    display: none;
}

#methods_info_parent {
    position: relative;
}

#methods_info {
    /* display: block !important; */
}

.methods_info {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.hidden {
    display: none;
}

.home_description {
    max-width: 800px;
    position: relative;
}

@media (min-width: 1100px) {
    #methods_info {
        display: block !important;
    }
}


@media (min-width: 661px) and (max-width: 1100px) {
    #methods_info {
        display: block !important;
    }
}

@media (max-width: 660px) {
    .container {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
        color: #000D44;
    
        background-size: cover; 
        background-repeat: no-repeat; 
        padding: 0vh 5vh 0vh 5vh;
        
    }
    
    .title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .home_options_container {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .home_options {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 150px;
        margin: 10px;
    
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        font-size: 24px;
    }

    #show_methods_info {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    #methods_info {
        position: absolute;
        top: -100px;
        transition: top 0.5s ease-in-out;
    }

    #methods_info.mostrar {
        top: 0;
        transition: top 0.5s ease-in-out;
        animation: aparecer 0.5s ease-in-out;
    }
      
    .desktop_methods_info {
        padding: 3vh 6vh 3vh 6vh;
        background-color: rgb(255, 255, 255);
        border-radius: 8px;
    }
    
    @keyframes aparecer {
        0% {
          top: -100px;
        }
        100% {
          top: 0;
        }
    }
      
}

