@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
    margin: 0;
    padding: 0;
}
.header-container {
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #2157c4;
    color: #fff;
    position: relative;
    z-index: 998;
}
.header-container .name {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
}
.header-container .name > p > a {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    margin-left: 20px;
}
.header-container .links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    padding-right: 20px;
}
.header-container .links li {
    margin: 0 1rem;
}
.header-container .links a:visited {
    color: white;
}
.header-container .contact {
    color: white;
    padding: 10px 20px;
    background-color: #e8984e;
    text-decoration: none;
    margin-right: 55px;
}
.header-container a {
    color: white;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}
.header-container .burger {
    display: none;
}
.burger {
    width: 30px;
}
@media only screen and (max-width: 800px) {
    .header-container .links,
    .header-container .contact > a {
        display: none;
    }
}
.overlay.active {
    display: block;
}
.overlay {
    display: none;
}
@media only screen and (max-width: 800px) {
    .overlay .close-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        cursor: pointer;
    }
}
body.lock-scroll {
    overflow: hidden;
}
@media only screen and (max-width: 800px) {
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(33, 87, 196);
        z-index: 999;
    }
    .header-container .contact {
        margin-right: 10px;
        cursor: pointer;
        background: none;
    }
}
@media only screen and (max-width: 800px) {
    .header-container .burger {
        display: block;
    }
}
.overlay {
    display: none;
}
@media only screen and (max-width: 800px) {
    .overlay.active .mobile-name {
        text-align: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
        font-family: "Playfair Display", serif;
        margin-top: 35%;
    }
    .overlay.active .mobile-name > p > a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-family: "Playfair Display", serif;
        margin-left: 20px;
    }
    .header-container .mobile-links a:visited {
        color: white;
    }
    .overlay.active .mobile-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        margin-top: 35%;
        height: auto;
    }
    .overlay.active .mobile-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    .overlay.active .mobile-links a {
        font-size: 1.25rem;
        font-family: "Montserrat", sans-serif;
        text-decoration: none;
        color: #fff;
    }
    .overlay.active .mobile-links a:hover {
        color: #e8984e;
    }
    .overlay.active .mobile-contact a:hover {
        color: white;
    }
    .overlay.active .mobile {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
        background-color: #e8984e;
        padding: 10px 20px;
        border-radius: 5px;
    }
    .overlay.active .mobile-contact {
        margin-top: auto;
        padding: 10px 20px;
        border-radius: 5px;
        text-align: center;
        border: 1px solid #e8984e;
    }
    .overlay.active .mobile-contact > a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        text-align: center;
    }
}
@media only screen and (max-width: 813px) and (min-width: 800px) {
    .header-container a {
        font-size: 13px;
    }
}
