@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=SUSE:wght@100..800&display=swap');
/* Poppins e SUSE */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
    /* overflow-x: hidden; */
}

main{
    margin: 9rem 0 0 0;
}

.hero{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.hero-desc{
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    max-width: 37vw;
}

.title{
    font-size: 35px;
    font-family: SUSE;
    font-weight: 500;
}
    
.hero-img img{
    width: 50vw;
}

.routes{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.midtitle{
    font-size: 48px;
    font-family: SUSE;
    margin: 3rem;
    text-align: center;
}

.grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-bottom: 3rem;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 430px;
    height: 340px;
    margin: 3rem;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, .2);
    border-radius: 18px;
}

.subdesc{
    font-size: 18px;
    text-align: center;
    margin: 1rem;
    margin-bottom: 1rem;
}

.subtitle{
    font-size: 24px;
    font-weight: bold;
    margin: .5rem;
    text-align: center;
}

footer{
    background-color: #D3D3D3;
    align-items: center;
    justify-content: center;
}

.flex{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.fontes{
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: black;
}

a:hover{
    color: white;
}

.flex img{
    width:15vw;
    height: auto;
}

.fontestitle{
    font-family: SUSE;
    font-weight: bold;
    font-size: 3rem;
}