@media only screen and (max-width: 1100px) {
    .header {
        display: none !important;
    }

    .hamburger-menu {
        display: block !important;
    }
}

.hamburger-menu {
    display: none;
    width: 100%;
    height: 105px;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
    overflow-x: hidden;
}

.nav-container {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 105px;
    z-index: 99999;
    background-color: #fff;
}

.hamburger-menu .logo {
    position: absolute;
    left: 19px;
    top: 20px;
    font-size: 1.2rem;
    color: #0e2431;
}

.hamburger-menu .logo img {
    width: 260px;
}

.hamburger-menu .menu-items {
    display: flex;
}

.hamburger-menu .menu-items .page {
    height: 93px;
}

.hamburger-menu .menu-items .page > .col-6 a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.hamburger-menu .menu-items .page > .col-6 p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.hamburger-menu .menu-items .page > .col-6 p {
    margin-top: 30px;
    margin-bottom: 10px;
}

.hamburger-menu .menu-items .login {
    height: 115px;
}

.hamburger-menu .menu-items .login .col-6 p {
    text-align: left;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 32px;
}

.hamburger-menu .menu-items .login .col-6:first-child {
    padding-left: 18px;
}

.hamburger-menu .menu-items .login .col-6 img {
    max-width: 41px;
    max-height: 32px;
}

.hamburger-menu .menu-items .login .col-6 a {
    border-radius: 30px;
    padding: 8px 43px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.hamburger-menu .menu-items .login .col-6 a.login-education {
    background-color: #000a55;
    color: #fff;
}

.hamburger-menu .menu-items .login .col-6 a.login-company {
    background-color: #740713;
    color: #fff;
}

.hamburger-menu .menu-items .login .col-6 a.register {
    background-color: #ffffff;
    margin-bottom: 11px;
    color: #000000;
}

.hamburger-menu .menu-items .row-search {
    margin-top: 25px;
}
.hamburger-menu .nav-container .menu-items .row-search form {
    position: relative;
}

.hamburger-menu .nav-container .menu-items input[type="text"] {
    position: relative;
    width: 100%;
    padding: 5px 30px 5px 15px;
    border-radius: 25px;
    background-color: #d0d0d0;
}

.hamburger-menu .nav-container .menu-items .search {
    position: relative;
    width: 204px;
}
.hamburger-menu .nav-container .menu-items .row-search button {
    position: absolute;
    right: 5%;
    top: 20%;
    background-color: #ff000000;
}

.hamburger-menu .nav-container .menu-items .action {
    margin-top: 22px;
}

.hamburger-menu .nav-container .menu-items .action a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    right: 19px;
    top: 25px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    right: 19px;
    top: 35px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.hamburger-menu .menu-items {
    position: absolute;
    top: 105px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.9);
    width: 100vw;
    height: calc(100vh);
    right: -100vw;
    display: flex;
    flex-direction: column;
    transition: right 0.5s ease-in-out;
    text-align: center;
    z-index: 99999;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
    right: 0;
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}
