nav {
    display: flex;
    flex-direction: row;
    height: 7em;
    width: calc(100vw - 1em);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4em 1.5em;
    background: transparent;
    width: 100%;
}

.logo {
    display: flex;
    border-radius: 50%;
    box-shadow: 4px 2px 15px rgba(0,0,0,.5);
    background: transparent;

    & a {
        display: flex;
        padding: 0;
        margin: 0;
        justify-content: center;
        align-items: center;

    }
}

.logo img {
    max-width: 5em;
    align-self: center;
}

.hamburger {
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.drawer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: var(--background-color-hover);
    box-shadow: -5px 0 15px rgba(0, 0, 0, .6);
    z-index: 998;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.drawer.open {
    transform: translateX(0);
}

.drawer div.logo {
    width: 5em;
    box-shadow: 4px 2px 15px rgba(0, 0, 0, .2);
}

.drawer ul {
    list-style: none;
    /* margin-top: 3rem; */
    padding: 0;
}

.drawer ul li {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
    overflow: hidden;
    height: 55px;
    justify-content: center;
    position: relative;

    &:hover h3:first-child {
        top: -25px;
    }

    &:hover h3:last-child {
        top: 26px;
    }

    & p {
        font-family: var(--heading-font);
        margin-top: 40px;
        color: var(--accent-color1);
        font-size: 1.5em;
    }
}

.drawer ul li a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;

    & h3 {
        font-family: var(--heading-font);
        position: absolute;
        margin-top: -10px;
        font-size: 2.25em;
        transition: all ease .3s;

        &:first-child {
            top: 26px;
            color: var(--accent-color2);
        }

        &:last-child {
            top: 75px;
            color: var(--accent-color1);
        }
    }
}

.drawer-cta {
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.drawer-cta .qxCTlb {
    width: 100%;
    position: relative;
    padding: 1em 0;
    border-radius: calc(var(--brad) / 4);
    /* background: transparent !important; */
    background-color: #E8B321 !important;
    border: thin solid #E8B321 !important;
    transition: all ease .3s;
    /* color: #001429 !important; */
    font-family: "Fugaz One", sans-serif;
    font-weight: 800;
    font-size: 1.5em;

    &::after {
        content: 'Book a quick meeting';
        color: #fff !important;
        position: absolute;
        width: 100%;
        height: calc(100% - 24px);
        left: -1px;
        top: -1px;
        padding-top: 24px;
        border-radius: calc(var(--brad) / 4);
        border: thin solid #fff;
        transition: all ease .3s;
        z-index: -1;
        background-color: rgba(255,255,255,.2);
    }

    &:hover {
        background: #E8B321 !important;
        transition: all ease .3s;
        color: rgba(0, 0, 0, 0.5) !important;
    }

    &:hover::after {
        z-index: 1;
        left: -10px;
        top: -6px;
        backdrop-filter: blur(5px);
        transition: all ease .3s;
    }
    
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 996;
    transition: all .3s ease;
    opacity: 0;
    display: block;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    transition: all .3s ease;
    display: block;
    pointer-events: auto;
}

.hamburger {
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: white;
  display: block;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hamburger.is-active .line {
  background-color: #fff; 
}

/* BEGIN FOOTER */

.footer {
    display: flex;
    flex-direction: column;
    padding: 5em 1.5em 1em;

}

.footer .content {
    width: 100%;
    padding: 5em 1.5em 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    position: relative;
    border-radius: var(--brad);
    background-color: transparent;
    border: 1px solid var(--accent-color2);
    inset: -.30em;
}

.footer .content::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: var(--brad);
    border: 3px solid var(--accent-color1);
    z-index: -1;
    pointer-events: none;
}

.footer h2 {
    color: var(--accent-color1);
    text-align: center;
}

.footer .qxCTlb {
    /* width: 300px; */
    position: relative;
    padding: 1em;
    border-radius: calc(var(--brad) / 4);
    /* background: transparent !important; */
    background: #E8B321 !important;
    border: thin solid #E8B321 !important;
    transition: all ease .3s;
    /* color: #001429 !important; */
    font-family: "Fugaz One", sans-serif;
    font-weight: 800;
    font-size: 1.5em;

    &::after {
        content: 'Book a quick meeting';
        color: #fff !important;
        position: absolute;
        width: 100%;
        height: calc(100% - 24px);
        left: -1px;
        top: -1px;
        padding-top: 24px;
        border-radius: calc(var(--brad) / 4);
        border: thin solid #fff;
        transition: all ease .3s;
        z-index: -1;
        background-color: rgba(255,255,255,.2);
    }

    &:hover {
        background: #E8B321 !important;
        transition: all ease .3s;
        color: rgba(0, 0, 0, 0.5) !important;
    }

    &:hover::after {
        z-index: 1;
        left: -10px;
        top: -6px;
        backdrop-filter: blur(5px);
        transition: all ease .3s;
    }
}

.footer .footer-links p {
    font-family: "Mulish", sans-serif;
    display: flex;
    flex-direction: row;
    gap: 4em;
    font-weight: 600;

    & a {
        text-decoration: none;
        position: relative;
    }

    & i {
        position: absolute;
        top: 5px;
        right: -25px;
        transition: all ease .3s;
    }
}

.footer .footer-links p a:hover {
    & i {
        right: -30px;
        transition: all ease .3s;
    }
}

.footer .footer-links {
    margin-left: -15px;
}

.footer .disclaimer {
    display: flex;
    width: 100%;
    padding: 6em 0 0;
    justify-content: center;
    color: var(--accent-color2);
    text-align: center;

    & p {
        line-height: 100%;
    }

    & small {
        font-family: "Mulish", sans-serif;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* BEGIN MOBILE STYLE */

@media screen and (max-width: 920px) {

    .drawer {
        width: 100vw;
        height: 100vh;
    }

    .drawer ul li {
        align-items: center;

        & a {
            justify-content: center;
        }
    }

    /* BEGIN FOOTER */

    .footer .footer-links {
        padding-top: 1em;
    }
    
    .footer .footer-links p {
        flex-direction: column;
        gap: 1.5em;
        justify-content: center;
        align-items: center;
    }

}