/*---HEADER---*/
HEADER {
	display: flex;
	justify-content: space-between;
	background-color: black;
}
DIV.header-logo {
	display; block;
}
DIV.header-logo A IMG {
	width: 150px;
	margin-left: 40px;
}
@media screen and (max-width: 1280px) {
	DIV.header-logo A IMG {
		width: 70px;
		margin-left: 10px;
	}
}
@media screen and (max-width: 800px) {
	DIV.header-logo A IMG {
		width: 70px;
		margin: 0 auto;
	}
}
DIV.header-info {
	width: 100%;
	text-align: center;
}
DIV.header-contacts {
	padding-top: 5px;
}
DIV.header-contact-phone,
DIV.header-contact-address,
DIV.header-contact-email {
	display: inline-block;
	vertical-align: middle;	
}
DIV.header-contact-phone,
DIV.header-contact-email {
	width: 220px;
}
DIV.header-contact-address {
	width: 360px;
}
@media screen and (max-width: 1280px) {
	DIV.header-info {
		text-align: left;
	}
	DIV.header-contact-phone,
	DIV.header-contact-address,
	DIV.header-contact-email {
		display: block;
		width: 360px;
		margin: 0 auto;
	}
}
DIV.header-contact-image {
	width: 40px;
	display: inline-block;
	vertical-align: middle;
}
DIV.header-contact-image IMG {
	width: 30px;
	height: 30px;
	padding: 5px;
}
@media screen and (max-width: 800px) {
	DIV.header-contact-image {
		display: none;
	}
	DIV.header-contact-phone,
	DIV.header-contact-email {
		display: block;
		width: 240px;
		margin: 0 auto;
		padding-left: 15px;
	}
	DIV.header-contact-address {
		display: none;
	}
}
DIV.header-contact-link {
	padding-left: 10px;
	max-width: 310px;
	display: inline-block;
	vertical-align: middle;
}
DIV.header-contact-link A {
	font-size: .8em;
	color: white;
	text-decoration: none;
}
DIV.header-title {
	font-weight: bold;
	font-size: 1.5em;
	color: white;
	text-align: center;
	padding: 10px;
}
DIV.header-link {
	display: block;
	text-align: center;
	padding-bottom: 5px;
}

DIV.header-link A {
	color: white;
}

/*---NAV---*/
NAV {
    width: 100%;
    background-color: black;
}
UL.menu {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}
UL.menu LI {
    position: relative;
    display: inline;
    padding-top: 10px;
    padding-bottom: 10px;
}
UL.menu LI A {
    color: white;
    text-decoration: none;
}
UL.menu LI A:hover {
    text-decoration: underline;
}
@media (max-width: 800px) {
    NAV {
        height: 20px;
    }
    UL.menu {
        display: none;
    }
    UL.menu.active {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    UL.menu LI {
        display: block;
        width: 100%;
        text-align: center;
        background-color: black;
        z-index: 99;
    }
}
#mobile {
    display: none;
}
@media (max-width: 800px) {
    UL.menu.active #mobile {
        display: block;
    }
}
@media (max-width: 800px) {
#mobile {
        display: block;
    }
}


/*---Burger---*/
DIV.burger {
    display: none;
}
@media (max-width: 800px) {
    DIV.burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        margin-right: 10px;
        margin-top: 10px;
    }
    DIV.burger SPAN {
        position: absolute;
        background-color: orange;
        top: 9px;
        width: 100%;
        height: 2px;
        display: block;
        transition: all 0.3s ease 0s;
    }
    DIV.burger:before,
    DIV.burger:after {
        content: '';
        position: absolute;
        left: 0;
        background-color: orange;
        width: 100%;
        height: 2px;
        transition: all 0.3s ease 0s;
    }
    DIV.burger:before {
        top: 0;
    }
    DIV.burger:after {
        bottom: 0;
    }
    DIV.burger.active SPAN {
        transform: scale(0);
    }
    DIV.burger.active:before {
        transform: rotate(45deg);
        top: 9px;
    }
    DIV.burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
}