
.hamb {
    display: block;
    cursor: pointer;
    z-index: 1001;
}

.hamb-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFC249;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 2rem;
    z-index: 1000;
}

.menu {
    flex-direction: column;
    gap: 1rem;
}

.menu li {
    text-align: left;
    font-size: 1.2rem;
}

#side-menu {
	display:none;
}

#side-menu:checked ~ .nav {
    transform: translateX(0);
}

#side-menu:checked + .hamb .hamb-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#side-menu:checked + .hamb .hamb-line:nth-child(2) {
    opacity: 0;
}

#side-menu:checked + .hamb .hamb-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#col1 {
	display:none;
}

#col3 {
	display:none;
}