nav {
    background-color: var(--primary-blue);
    /* height: var(--nav-height); */
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 50;
}

nav a.logo {
    text-decoration: none;
}

nav.change {
    background-color: rgba(0, 0, 0, 0.9);
    transition: background-color 500ms linear;
}

nav .logo {
    display: inline-block;
    line-height: var(--nav-height);
}

nav #logo-text {
    height: var(--nav-height);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    font-family: "Play", sans-serif;
}

nav .logo .icon {
    height: 20px;
}

nav ul {
    float: right;
    margin-right: 1rem;
    position: relative;
    padding-left: 0;
}

nav ul li {
    display: inline-block;
    line-height: var(--nav-height);
    margin: 0 0.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    padding: 6px 12px;
    border-radius: 3px;
    opacity: 0.5;
}

nav ul button {
    font-size: 16px;
    color: var(--primary-yellow);
    /* background-color: var(--primary-blue); */
    background-color: transparent;
    border: 1px solid var(--primary-yellow);
    line-height: 24px;
    padding: 10px 20px;
    border-radius: 40px;
}

nav ul button:hover {
    color: var(--primary-blue);
    background-color: var(--primary-yellow);
}

nav ul button.active {
    background-color: white;
    color: var(--primary-red);
    border: white;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

nav a.active,
nav a:hover {
    color: #fff;
    opacity: 1;
}

nav .checkbtn {
    font-size: 2rem;
    color: #fff;
    float: right;
    line-height: var(--nav-height);
    margin-right: 2rem;
    margin-top: 1.5rem;
    cursor: pointer;
    display: none;
}

nav #check {
    display: none;
}

.contact-us-menu {
    display: none !important;
}

@media (max-width: 1200px) {
    nav .checkbtn {
        display: block;
    }

    nav ul {
        position: fixed;
        background-color: var(--primary-blue);
        width: 100%;
        height: 100%;
        top: var(--nav-height);
        left: -100%;
        transition: all 0.5s;
        text-align: center;
        z-index: 10;
    }

    nav ul li {
        display: block;
        margin: 2rem 0;
        line-height: 3rem;
    }

    nav ul li button {
        display: none;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    nav ul button {
        font-size: 1.5rem;
        padding: 20px 40px;
    }

    nav a.active,
    nav a:hover {
        background: none;
        opacity: 1;
    }

    nav #check:checked ~ ul {
        left: 0;
    }

    .contact-us-menu {
        display: block !important;
    }
}

/* ================= pop-up ================= */
#pop-up {
    position: absolute;
    top: 3.5rem;
    right: 0.5rem;
    z-index: 20;
}

#pop-up .container {
    width: 350px;
    height: 550px;
    background-color: white;
    border-radius: 10px;
    border-top-right-radius: 0;
    padding: 30px;
    box-shadow: 0px 6px 6px 2px rgba(0, 0, 0, 0.1);
}

#pop-up h3 {
    letter-spacing: -1px;
    margin: 1rem 0;
    font-weight: 600;
}

#pop-up p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
}

#pop-up form input {
    border: none;
    background-color: #eee;
    color: #000;
    margin-bottom: 1rem;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

#pop-up form button {
    border: none;
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    width: 200px;
    display: block;
    margin: auto;
}

#pop-up form button:hover {
    background-color: var(--primary-yellow);
}


p a {
    color:inherit;
    text-decoration: none;
}
#pop-up p a:hover{
    color:inherit;
    border-bottom: 1px solid black;
}