.site-header {
    background: #ccb7aa !important;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: none !important;
    display:flex;
    justify-content: center;
    align-items: center;
}

.burger {
    position: fixed;
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #ccb7aa;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
     border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.burger:hover {
    background: none;
}

.burger:active {
    background: none;
}

.burger:focus {
    background: none;
}

.burger span {
    display: block;
    width: 30px;
    height: 4px;
    background: #000;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.4s;
}

.burger span:nth-child(2) {
    width: 20px;
    margin-right:12px;
    margin-left:auto;
}

.burger.open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
    background: white;
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
    background: white;
}

.overlay {
    position: fixed;
    top: 0;
    right: -150%;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,1);
    opacity:0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: right 0.5s ease;
}

.overlay.open {
    right: 0;
}

.overlay-menu li {
    margin: 20px 0;
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-bottom: dotted 1px white;
}

.overlay.open .overlay-menu li {
    transform: translateX(0);
    opacity: 1;
}

.overlay-inner {
    text-align: center;
}

.overlay-logo img {
    width: 210px;
    margin-top:10px;
}

.main_logo_header {
    background: #ccb7aa !important;
}

.main_logo_header img {
    width: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    color:white;
}

.overlay-menu li {
    margin: 20px 0;
}

.overlay-menu a {
    color: white;
    font-size: 25px;
    text-decoration: none;
}

.overlay-menu a:hover {
    color: #ccb7aa;
}
