@media only screen and (min-width: 320px) and (max-width: 480px) {}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 991px) {
    .navbar {
        width: 100%;
    }
    .offcanvas-header {
        display: block;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 100%;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        border-left: 2px solid #1D998E;
        background-color: rgb(255, 255, 255);
        transition: visibility 1s ease-in-out;
    }
    .navbar-nav {
        position: fixed;
        top: 70px;
    }
    .navbar-collapse.show {
        visibility: visible;
        transform: translateX(-100%);
        width: 250px;
    }
    .btn-close {
        background-color: transparent;
        border-color: transparent;
        color: #000000;
        font-size: 22px;
    }
    .nav-link {
        display: block;
        width: 100%;
        border: 2px solid #1D998E;
        border-radius: 20px;
        padding: 0.2rem 1rem !important;
        line-height: 30px;
    }
    .navbar-light .navbar-nav .nav-link {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 900px) {}