* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Apex New';
    src: url('./fonts/ApexNew-Book.otf') format("opentype");
}

@font-face {
    font-family: 'Apex New';
    src: url('./fonts/ApexNew-Medium.otf') format("opentype");
    font-weight: bold;
}

html {
    font-size: 1rem;
    background-color: #fff;
}

body {
    margin: 0px;
    font-family: 'Apex New';
    background-color: #fff;
    min-width: 960px;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@media (min-width: 1008px) {
    .footer_wrapper {
	    max-width: 960px;
	}
}

@media (min-width: 1264px) {
    .footer_wrapper {
	    max-width: 1200px;
	}
}

@media (min-width: 1584px) {
    .footer_wrapper {
	    max-width: 1400px;
	}
}
.footer {
    display: flex;
    align-items: center;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.5), transparent), url(../images/footer.jpg);
	background-repeat: no-repeat;
    background-size: 100% 100%;
	min-height: 300px;
	font-weight: 600;
    font-size: 0.875rem;
}
.footer h1 {
    font-size: 2.25rem;
}
.footer h2 {
    font-size: 1.5rem;
}
.footer_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: inherit;
    justify-content: space-between;
    margin: 0 auto;
}
.footer__contact-details {
    display: flex;
    color: #fff;
    font-family: 'Apex New';
    text-shadow: 4px 4px 3px darken(#fff, 70);
    align-items: center;
}
.footer__contact-details_working-hours > h1 {
    font-weight: 800;
}
.footer__contact-details_working-hours > h2 > span {
    display: inline-block;
    margin: 0.5rem;
}
.footer__contact-details_logo {
    margin-left: auto;
}
.footer__contact-details_logo img {
    max-width: 100px;
}

.footer__footer-details {
    display:flex;
    flex-direction: column;
}
.footer_link-color {
    color: #fff;
}
.footer_link-color:focus,
.footer_link-color:hover {
    color: #fff;
    transform: scale(1.1);
}

.footer_wrapper:before {
    display: table;
    content: " ";
}