@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Roboto:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;700&family=Open+Sans&family=Roboto:wght@500&display=swap');

.container{
    width: 100%;
    background-color: #f0f1f2;
}

.content{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 200px;
    padding-bottom: 100px;
}

.text-card{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 20px 100px 20px 0px;
    margin-left: 30px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.title-card{
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    width: fit-content;
}

.description-card{
    width: fit-content;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: justify;
}

.card-content{
    border: 1px solid black;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 20px;
    background-color: white;
    transition: box-shadow 0.3s ease;
}
.card-content:hover{
    box-shadow: 0 0 10px black;
    transition: 0.2s;
}

.img-card{
    width: 500px;
    height: auto;
    border-radius: 20px;
}

.img-card-responsive{
    display: none;
}

.button-card:link, .button-card:active, .button-card:visited, .button-card:focus{
    color: white;
}

.button-card{
    width: 260px;
    height: 48px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    transition: 0.3s ease;
    background-color: #1736b1;
}

@media screen and (max-width:1600px){
    .card-content{
        width: 80%;
    }
}


@media screen and (max-width:1350px){

    .content{
        padding-top: 150px;
    }

    .card-content{
        width: 80%;
    }

    .text-card{
        width: 80%;
    }
}

@media screen and (max-width:1300px){
    .card-content{
        width: 90%;
    }
}

@media screen and (max-width:1100px){

    .img-card{
        display: none;
    }

    .img-card-responsive{
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        border-radius: 10px;

    }

    .card-content{
        width: 80%;
    }

    .text-card{
        margin: 0;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

}

@media screen and (max-width:1000px){
    .card-content{
        width: 100%;
    }

    .text-card{
        width: 90%;
    }
}

@media screen and (max-width:600px){
    .title-card{
        font-size: 1.5rem;
    }

    .description-card{
        font-size: 1.2rem;
    }

    .content{
        padding-top: 100px;
    }

    .card-content{
        border: 0;
    }

    .text-card{
        width: 100%;
    }

}