.nexum-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.3s ease;
}

.nexum-offcanvas{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    overflow-y:auto;
    transition:0.5s ease;
    z-index:99999;
    box-sizing:border-box;
    color:#fff;
}

.nexum-offcanvas.active{
    right:0;
}

.nexum-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:9998;
}

.nexum-overlay.active{
    opacity:1;
    visibility:visible;
}

.nexum-close{
    position:absolute;
    top:30px;
    right:30px;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#000;
    border-radius:50%;
    cursor:pointer;
    font-size:34px;
    line-height:1;
}

.nexum-logo{
    margin-bottom:60px;
}

.nexum-logo img{
    max-width:180px;
    width:100%;
}

.nexum-logo-heading{
    font-size:42px;
    font-weight:500;
    margin:0 0 60px;
    line-height:1.1;
    font-family: "Merriweather", sans-serif !important;
}

.nexum-content h2{
    font-size:35px;
    line-height:1.1;
    margin:0 0 25px;
    font-family: "Merriweather", sans-serif !important;
}

.nexum-content p{
    font-size:16px;
    line-height:1.8;
    margin:0;
    font-family: '42 Dotsans', sans-serif;
}

.nexum-divider{
    height:1px;
    background:#FFFFFF33;
    margin:35px 0;
}

.nexum-info h4,
.nexum-social h4{
    font-size:25px;
    margin:0 0 25px;
    font-family: "Merriweather", sans-serif !important;
}

.nexum-info-content{
    font-size:16px;
    line-height:1.7;
    font-family: '42 Dotsans', sans-serif;
}

.nexum-social-icons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:20px;
}

.nexum-social-icons a{
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s ease;
}

.nexum-social-icons svg{
    height:25px;
    width:25px;
}

@media(max-width:767px){

    .nexum-offcanvas{
        width:100% !important;
    }

    .nexum-content h2{
        font-size:40px;
    }

    .nexum-content p{
        font-size:17px;
    }

    .nexum-info h4,
    .nexum-social h4{
        font-size:28px;
    }

}