
@font-face {
    font-family: "montserrat-light";
    src: url("../fonts/montserrat-light.ttf");
}

@font-face {
    font-family: "montserrat";
    font-weight: normal;
    src: url("../fonts/montserrat-regular.ttf");
}

@font-face {
    font-family: "montserrat";
    font-weight: 600;
    src: url("../fonts/montserrat-semibold.ttf");
}

@font-face {
    font-family: "montserrat";
    font-weight: bold;
    src: url("../fonts/montserrat-black.ttf");
}

@font-face {
    font-family: "agency";
    src: url("../fonts/agency-bold.ttf");
}

.overlay-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.50);
    display: none;
}

.overlay-menu {
    position: fixed;
    top: 0;
    width: 350px;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    z-index: 1000;
    transition: all 0.5s;
}

.overlay-menu-visible {
    right: 0;
    transition: all 0.5s;
}

.overlay-menu-hidden {
    right: -350px;
    transition: all 0.5s;
}

.overlay-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.overlay-menu-close img {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    cursor: pointer;
    width: 20px;
    height: auto;
    transition: all 0.2s;
}

.overlay-menu-close img:hover {
    opacity: 0.5;
    transition: all 0.2s;
}

.overlay-menu-inner {
    height: 100%;
    border-left: 1px dashed red;
    margin-left: 15px;
    padding: 50px 15px 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay-menu-logo {
    text-align: center;
    margin-left: -15px;
}

.overlay-menu-logo img {
    width: 175px;
}

.overlay-menu-content ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.overlay-menu-content ul li {
    list-style: none;
    margin: 15px 0;
}

.overlay-menu-content ul li a {
    display: inline-block;
    padding: 5px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-family: "montserrat";
    transition: all 0.2s;
}

.overlay-menu-content ul li a:hover {
    opacity: 0.7;
    transition: all 0.2s;
}

.overlay-menu-social {
    text-align: center;
}

.overlay-menu-social ul {
    padding: 0;
    margin: 0;
}

.overlay-menu-social ul li {
    display: inline-block;
}

.overlay-menu-social ul li a {
    display: block;
    padding: 0 10px;
    line-height: 0;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    color: #ff8622;
    margin: 0 1px;
    transition: all 0.2s;
    font-size: 24px;
}

.overlay-menu-social ul li a:hover {
    transition: all 0.2s;
    opacity: 0.7;
}

.overlay-menu-social span {
    color: #ccc;
    font-size: 20px;
    font-weight: 600;
    font-family: "agency";
}

.overlay-menu-social p {
    margin-top: 25px;
    color: #666;
    font-family: "montserrat";
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
