/* Global */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined");

/* Header */
.header-container{
    padding: 1.5rem;
    border-bottom: 2px solid rgba(83, 86, 90, 0.25);
}
header img{
    max-width: 200px;
}
.form-heading {
 font-size: 30px;
}

/* Footer */
footer {
    background-color: #343639;
    color: #f5f5f5;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: revert;
    margin: revert;
}

.footer-section h3 {
    color: #f5f5f5;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-container {
    text-align: center;
    padding: 1rem;
}

.social-links a {
    text-decoration: none;
    margin-right: 5px;
    margin-left: 5px;
}

.social-links img {
    width: 2.5rem;
}

.footer-links {
    margin-top: 30px;
}

.footer-links ul {
    padding: 0;
}

.footer-links li {
    font-size: 1rem;
    list-style-type: none;
    text-decoration: none;
    margin: 1rem 1.5rem;
}

.footer-links a {
    color: #f5f5f5;
}

.footer-links a:hover {
    color: #00b5e2;
}

/* PLv2 Style */
.header {
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: start;
    border-bottom: 0.125rem solid var(--separators);
}

.header__logo {
    width: 9.375rem;
    height: auto;
}
@media (min-width: 850px) {
    .footer-container{
        text-align: center;
        padding: 3rem 8rem 3rem 8rem;
    }
    .footer-links li{
        display: inline-block;
        margin-right: 30px;
        margin-left: 30px;
    }
}
@media (min-width: 1200px){
   
}