
body {
    font-family: 'Roboto', sans-serif;
    background-color: #E8F0F2;
}

/* MAIN CONTAINER  */
.container{
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.container .card{
    width: 240px;
    max-width: 400px;
    max-height: 440px;
    height: 340px;
    border-radius: 20%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transition: all 0.25s;
}

.container .card img {
    object-fit: cover;
    object-position: top;
}


.container .card:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.container .card img{
    width: 100%;
    height: 220px;
}


.container .card h4, h5{
    margin-top: 10px;
    font-weight: 600;
    color: #39A2DB;
}

.container .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.container .card a {
    font-weight: 500;
    text-decoration: none;
    color: #3498db;
}

@media screen and (min-width:1405px){
    .container .card{
        width: 340px;
        height: 350px;
    }
}

/* FOOTER */

footer{
    width: 100%;
    padding: 10px 0px;
    background-color: #053742;

}

.container__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 0px;
}

.box-footer{
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.box-footer .logo img{
    width: 20vw;
    min-width: 220px;
    max-width: 300px;
    height: auto;
}

.box-footer .terms{
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #000000;
    font-size: 18PX;
}

.box-footer H2{
    margin-bottom: 30px;
    color: #00a7e1;
    font-weight: 700;
}

.box-footer a, .box-footer p{
    margin-bottom: 0;
    margin-top: 10px;
    color: #E8F0F2;
    text-decoration: none;
    font-weight: 600;
}

.box-footer i{
    padding-right: 2px;
}

.box-footer a:hover, .box-footer p:hover{
    color: #39A2DB;
}

.box-footer a .fab,p .fab{
    font-size: 20px;
}

.box-footer .terms .sgrviendo{
    color: #39A2DB;
    margin-top: 0;
}

.box-footer .terms .sgrviendo:hover{
    color: #620097;
}

.box__copyright{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p{
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copyright hr{
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}

@media screen and (max-width:740px) {
    .container .card{
        width: 100%;
        height: 400px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }

    .container .card h4{
        font-size: 27px;
        margin-bottom: 0px;
    }

    .container .card p{
        margin: 0;
    }
}