#top-info {
    transition: all 0.3s ease;
    overflow: hidden;
}
.navbar {
    background: #0e0f10;
    transition: all 0.3s ease;
    -webkit-box-shadow:0px 0px 75px 9px rgba(255,112,46,0.11);
    -moz-box-shadow: 0px 0px 75px 9px rgba(255,112,46,0.11);
    box-shadow: 0px 0px 75px 9px rgba(255,112,46,0.11);
}
body {
    padding-top: 70px; /* adjust to your navbar height */
    overflow-x: hidden;
}
@media (min-width: 992px) {
    body {
        padding-top: 120px; /* adjust to your navbar height */
    }
    .navbar {
        height: 120px;
    }

    .navbar .navbar-brand img {
        transition: all 0.3s ease;
        height: 70px;
    }
    .navbar.shrink {
        height: 60px;
        padding:0;
        margin:0;
    }

    .navbar.shrink .navbar-brand img {
        height: 30px;
    }

    .navbar.shrink #top-info {
        padding: 0 !important;
        height: 0;
        opacity: 0;
    }
}
@media (max-width: 992px) {
    .aos-wrapper {
        overflow-x: hidden;
    }
}
