.header {
    width: 100%;
    height: 500px;
    background-image: url(../assets/images/banner01.webp);
    background-size: cover;
    background-position: center 50%;
    display: flex;
    background-repeat: no-repeat;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.highlight {
    color: #3f78e0;
}
a {
    text-decoration: none;
    color: black;
}

.header-title h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    letter-spacing: 0px;
}
.header-links {
    background-color: white;
    padding: 5px 30px;
    border-radius: 50px;
    position: relative;
    display: flex;
    height: auto;
    font-size: 13px;
    letter-spacing: 1.2px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: stretch;
}
.header-links h6 {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    flex-wrap: wrap;
    height: auto;
    line-height: 1.75;
}

@media screen and (min-width: 351px) and (max-width: 500px) {
    .header-links {
        margin-left: 4%;
        margin-right: 4%;
    }
    .header-title h1 {
        font-size: 30px;
        line-height: 1.65;
        margin-top: 45px;
        width: 100%;
    }
}
@media screen and (min-width: 501px) and (max-width: 750px) {
    .header-links {
        margin-left: 4%;
        margin-right: 4%;
    }
    .header-title h1 {
        width: 100%;
        font-size: 35px;
    }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
    .header-links {
        margin-left: 4%;
        margin-right: 4%;
    }
    .header-title h1 {
        width: 100%;
        font-size: 40px;
    }
}
