.flex-grow-1 a:hover {
    color: #FF182C;
}

.container-sandwich, .container-close {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-sandwich #checkbox-menu, .container-close #checkbox-menu {
    position: absolute;
    opacity: 0;
}

.container-sandwich label, .container-close label {
    cursor: pointer;
    position: relative;
    display: block;
    height: 22px;
    width: 30px;
}

.container-sandwich label span, .container-close label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background: #000000;
    transition: 0.25s ease-in-out;
}

.container-sandwich label:hover span {
    background-color: #FF182C;
}

.container-close label:hover span {
    background-color: red;
}

.container-sandwich label span:nth-child(1) {
    top: 0;
}

.container-sandwich label span:nth-child(2) {
    top: 8px;
}

.container-sandwich label span:nth-child(3) {
    top: 16px;
}

.container-sandwich .active span:nth-child(1), .container-close .active span:nth-child(1) {
    transform: rotate(-45deg);
    top: 8px;
}

.container-sandwich .active span:nth-child(2), .container-close .active span:nth-child(2) {
    opacity: 0;
}

.container-sandwich .active span:nth-child(3), .container-close .active span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}