@media screen and (min-width: 1320px) {}

@media screen and (max-width: 992px) {
    /*
    Menu Hamburger
    */
    .header {
        background: url(../img/header-bg.jpg), linear-gradient(181deg, #e1eaef, #2c2f77);
        background-blend-mode: soft-light;
        background-size: cover, auto;
        background-repeat: no-repeat;
        background-position: left, center;
    }
    .header::after {
        opacity: 0;
    }
    .header::before {
        opacity: 0;
    }
    .login-menu {
        position: relative;
        text-align: center;
        margin: .5rem 0;
    }
    .navbar-toggler {
        padding: 4px;
        border: none;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        width: 1.325em;
    }
    .navbar-toggler-text {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
    }
    .navbar-toggler.close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    .navbar-toggler.close .btn-close {
        padding: 1rem;
    }
    .navbar-toggler.close:focus .btn-close {
        background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236d77ed'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    }
    .navbar .container {
        justify-content: center;
    }
    .navbar .collapse:not(.show) {
        display: block;
    }
    .navbar .navbar-collapse {
        position: fixed;
        background: #fff;
        padding: 1rem 1rem;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        top: 0;
        left: -100%;
        transition: 500ms cubic-bezier(0.65, 0.01, 0.75, 0.75);
        overflow: auto;
    }
    .navbar .navbar-collapse.show {
        left: 0;
    }
    .navbar-nav .nav-item:not(:last-of-type) {
        margin-inline-end: 0;
        margin-block-end: 0.25rem;
    }
    .navbar .nav-link {
        font-weight: 600;
        color: var(--bs-gray-600);
    }
    .navbar .nav-link:hover {
        background: none;
    }
    .navbar .dropdown-menu {
        background: none;
    }
    .navbar .dropdown-menu::before {
        display: none;
    }
    .timer {
        margin-top: -30px;
    }
    .timer ul li {
        width: 70px;
    }
    .countdown .box .clock {
        font-size: 1.325rem;
    }
    .countdown .box .time {
        font-size: 10px;
    }
}

@media screen and (max-width: 576px) {
    /* CUSTOM */
    .logo {
        justify-content: center;
        font-size: 1rem;
        margin-block-end: 1rem;
    }
    /* HERO */
    .hero {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .hero .container {
        position: revert;
        inset: 0;
        z-index: 1;
        order: 1;
    }
    .hero .main_info {
        background: linear-gradient(180deg, #e91e63, transparent);
    }
    .hero .main_info::before {
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 75%);
    }
}

@media screen and (max-width: 767px) {
    ul.workshop-list li {
        width: 100%;
    }
    .login-box,
    .registration-box,
    .invoice-box {
        padding: 1rem;
    }
}