@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&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 2vh;
}
body{
    background-color: #F0F2F5;
    overflow-x: hidden;
    text-align: center;
    color: #0259a1;
}
header{
    background-color: white;
    display: flex;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.navbar .hr-1{
    width: 100vw;
    height: 4px;
    background-color: #2151CC;
}
.navbar #logo{
    padding: 0.6rem;
}
#banner{
    position: fixed;
    width: 100%;
    height: 30%;
    background-color: #D9E2EB;
}
.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 27vw;
}
.content .list-menu{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: auto;
    height: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
h2{
    margin: 2rem;
    letter-spacing: .1rem;
    font-weight: 600;
}
.btn-group{
    display: flex;
    flex-direction: column;
}
.btn{
    font-weight: 600;
    font-weight: 600;
    color: white;
    border: none;
    padding: 1vh;
    margin: 0 2rem .2rem 2rem;
    transition: 0.5s;
    border-radius: 4px;
    opacity: 0.8;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.btn:hover{
    cursor: pointer;
    filter: brightness(0.9);
    transform: scale(0.99);
}
.btn:focus{
    border: none;
}

.btn-pex{
    background-color: #DF6E32;
}

.btn-seap{
    background-color: #808080;
}

.btn-cecampe{
    background-color: #E8BC42;
}

.btn-uab{
    background-color: #49A79C;
}

.btn-progep{
    background-color: #2486c5;
}

.btn-classes{
    background-color: #3D6FB8;
}

.btn-cofen{
    background-color: #0C97B0;
}

a{
    text-decoration: none;
    color: inherit;
    margin-top: -0.2rem;
}

#voltar{
    font-size: 1.5vh;
    padding: 2rem;
    font-weight: 400;
}
#voltar:hover{
    text-decoration: underline;
}
footer{
    position: fixed;
    bottom: 0;
}
footer .hr-2{
    width: 100vw;
    height: 1px;
    background-color: lightgray;
}
.rodapé{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 22px;
}
p{
    text-align: center;
    font-size: 1.5vh;
    color: black;
    opacity: 0.8;
    font-weight: 300;
}
@media (max-width: 1280px)
{
    .content{
        width: 35vw;
    }

    img{
        width: 64px;
    }

}
@media (max-width: 1023px)
{
    .content{
        width: 60vw;
    }

    img{
        width: 68px;
    }
}
@media (max-width: 767px)
{
    .content{
        width: 85vw;
    }
    img{
        width: 62px;
    }


}
@media (max-width: 480)
{
    .content{
        width: 90vw;
    }

    img{
        width: 42px;
    }
}
