@charset "utf-8";

.seach_menu {
    display: none;
    align-items: center;
}

.seach_menu a {
    display: block;
}

.seach_menu .seach {
    width: 24px;
    height: 24px;
    background-image: url(../images/magnifyingGlass.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 20px;
}

.seach_menu .menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin-bottom: 7px;
}

.seach_menu .menu span:last-child {
    margin-bottom: 0px;
}


@media (max-width: 768px) {
    .red {
        display: block;
        position: absolute;
        right: -120%;
        top: 110px;
        height: calc(100vh - 110px);
        overflow: auto;
    }

    .seach_menu {
        display: flex;
    }

    .menu span {
        transition: transform 0.3s ease;
    }

    .menu span:first-child {
        margin-top: 0;
    }

    .menu.open span:nth-child(1) {
        width: 24px;
        transform: rotate(45deg);
        margin-top: 9px;
    }

    .menu.open span:nth-child(2) {
        width: 24px;
        transform: rotate(-45deg);
        margin-top: -9px;
    }

    .menu.open span:nth-child(3) {
        opacity: 0;
    }

    .red {
        width: 100%;
        top: 110px;
        height: calc(100vh - 110px);
    }

}

@media (max-width: 576px) {
   

    .red {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .seach_menu .seach {
        margin-right: 15px;
    }
}

