/* @media */


@media (max-width: 576px) {
    .hidden-sm {
        display: none !important;
    }
}



@media (max-width: 768px) {
    .hidden-md {
        display: none !important;
    }
    
    .container-32 {
        padding: 0px 24px;
    }
    .container-64 {
        padding: 0px 24px;
    }

    header#header {
        padding: 16px 24px;
    }
    #header_logo {
        gap: 8px;
    }
    #header_nav {
        position: absolute;
        z-index: 10000;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        display: flex;
        flex-direction: column;
        align-items:stretch;
        gap: 12px;
        padding: 12px;
        transition: all 250ms;
        background-color: #0F0E0E;
        background-image: url('../assets/img/dot.svg');
        background-attachment: fixed;
        border-top: 1px solid #484747;
        overflow-y: auto;
    }
    #header_nav.open {
        left: 0;
    }
    .header_nav_item {
        background-color: #1E1F23;
        padding: 8px 16px;
        border-radius: 8px;
        color: #FDFDFD;
        transition: all 200ms;
    }
    .header_nav_item:hover, .header_nav_item:active {
        background-color: #1A1A1A;
    }
    .header_nav_item.embeasy {
        padding: 8px 16px;
    }

    #banner {
        flex-direction: column;
        margin-top: 48px;
    }
    #banner_title {
        margin: 16px 0px 32px 0px;
    }
    #banner_call {
        max-width: 100%;
        margin-top: 0;
    }

    .digital {
        margin: 64px 0px;
    }
    .digital_title_xl {
        font-size: 1.8rem;
    }

    .portfolio_title_xl {
        font-size: 2.8rem;
    }
    .portfolio_itemsbox {
        grid-template-columns: 1fr;
    }

    .wrapper {
        flex-direction: column;
        padding: 0px 0px 64px 0px;
    }
    .wrapper_content {
        width: 100%;
        max-width: 100%;
        padding: 0px 24px;
        order: 1;
    }
    .wrapper_media {
        border-radius: 0;
        height: 320px;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.36);
    }
    .wrapper_button {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .hidden-md-min {
        display: none !important;
    }
}



@media (max-width: 992px) {
    .hidden-lg {
        display: none !important;
    }
}



@media (min-width: 992px) {
    .hidden-xl {
        display: none !important;
    }
}