@import url("https://use.typekit.net/gfm7tef.css");

.menu-box {
    position: relative;
    background-color: rgb(14, 28, 40);
    opacity: 0.5;
    width: 102px;
    height: 60px;
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.hamburger {
    cursor: pointer;
}

.hamburger span {
    font-size: 24px;
    font-family: "capitolium-2";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: center;
    padding-left: 14px;
    display: none;
}

.hamburger i {
    font-size: 22px;
    color: white;
}

.nav-offcanvas {
    width: 300px;
    background: rgba(14, 28, 40, 0.997);
    height: 100vh;
    position: fixed;
    overflow-x: auto;
    z-index: 2000;
    padding: 50px 0;
    top: 0;
    left: -300px;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-offcanvas .close {
    position: absolute;
    right: 24px;
    top: 16px;
    outline: 0;
    opacity: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: .3s ease;
}

.nav-offcanvas .close i {
    font-size: 15px;
    color: white;
    text-shadow: none;
}

.nav-offcanvas .close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.nav-offcanvas-menu ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    overflow: hidden;
}

.nav-offcanvas-menu ul li a {
    font-size: 24px;
    font-family: "capitolium-2";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    padding: 10px 40px;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.nav-offcanvas-menu ul li a:hover {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.nav-offcanvas.open {
    left: 0;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    opacity: 0;
}

.offcanvas-overlay.on {
    opacity: 1;
    visibility: visible;
}

nav {
    position: fixed;
    height: 80px;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.nav-contact-box {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 290px;
    margin-right: 68px;
}

.nav-phone-number {
    font-size: 24px;
    font-family: "capitolium-2";
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.2;
}

.nav-phone-number:hover,
.nav-phone-number:active,
.nav-phone-number:focus {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}


/*** MEDIA BREAKPOINTS ***/
@media (min-width: 576px) {
    .nav-contact-box {
        display: flex;
    }

    .menu-box {
        padding: 0;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .menu-box {
        height: 80px;
        width: 250px;
    }

    .hamburger span {
        display: inline;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}
