body{
	background: url('https://us.123rf.com/450wm/iuphotos/iuphotos2103/iuphotos210322154/166597134-green-abstract-defocused-background-with-hexagon-shape-bokeh-spots.jpg?ver=6');
	background-size: cover;
}

#menu-toggle:checked ~ .menubox {
	visibility: visible;
    left: 0;
}
#menubox {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 20px 0 10px 0;
    list-style: none;
    background-color: #ffffff;
    box-shadow: 1px 0px 6px rgb(0 0 0 / 20%);
}
#menubox li {
    border-bottom: 1px solid #f5f5f5;
}

.menu-item {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
    color: #344353;
    text-decoration: none;
    transition-duration: .25s;
}
.menu-item:hover {
    background-color: #CFD8DC;
}
a:hover, a:focus {
    color: #2a6496;
    text-decoration: underline;
}

.adr {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.adr p {
    font-size: 15px;
    margin-bottom: 0;
    color: grey;
    letter-spacing: 1px;
}
.adr a {
    font-size: 24px;
}
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}
.kont-main {
    margin-left: 15px;
}

.menu-btn {
	position: absolute;
	z-index: 3;
	right: 35px;
	top: 35px;
	cursor: pointer;
	transition: all 0.5s ease-out;
}
 
    /* Styling the hamburger lines */
.menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0 0 5px 0;
    background: black;
	transition: all 0.5s ease-out;
}

/* Adding transform to the X */
.menu-btn.close {
	transform: rotate(180deg);
}

/* Styling the three lines
	to make it an X */
.menu-btn.close .btn-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.close .btn-line:nth-child(2) {
	opacity: 0;
}

.menu-btn.close .btn-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}