* {
margin: 0;
padding: 0;
}.header {
display: flex;
justify-content: space-around;
align-items: center;
position: relative;
a {
bottom: -4px;
position: relative;
}
}
.header-logo {
display: flex;
img {
width: auto;
height: 75px;
}
} 
.main-menu {
display: inline;
}
.nav-menu {
list-style: none;
justify-content: center;
display: none;
> li {
margin: 5px 10px;
}
> li > a {
text-decoration: none;
font-family: 'Raleway', sans-serif;
font-size: 16px;
text-transform: uppercase; font-weight: 500;
display: inline-block;
position: relative;
}
> li > a::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
> li > a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
}
@media (min-width: 850px) {
.nav-menu {
display: inline-flex;
}
}button {
background: transparent;
border: none;
width: 30px;
height: 30px;
outline: 0;
} .toggle {
display: block;
}
@media (min-width: 850px) {
.toggle {
display: none;
}
}
.toggle span {
width: 100%;
height: 2px;
display: block;
position: relative;
}
.toggle span:before,
.toggle span:after {
content: '';
position: absolute;
left: 0;
width: 100%;
height: 100%;
} .toggle span:before {
top: -8px;
}
.toggle span:after {
top: 8px;
} .sidebarclose.show {
width: 100vw;
height: 100vh;
position: fixed;
z-index: 99;
opacity: 0.1;
background: #000;
}
.toggle span.toggle {
display: none;
}
.toggle span.toggle:before {
display: none;
}
.toggle span.toggle:after {
display: none;
} .sidebar {
background: #000;
width: 75%;
position: fixed;
top: 0;
left: -75%;
height: 100%;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
padding-top: 90px;
transition: all 0.3s ease-out;
z-index: 100;
}
.sidebar ul {
list-style: none;
display: block;
}
.sidebar ul li {
display:block;
}
.sidebar ul li a {
padding: 8px 15px;
font-size: 16px;
color: #fff;
}
.sidebarshow {
left: 0;
}.footer {
background: #0a0a0a;
}
.footer-container {
display: flex;
width: 1100px;
margin: auto;
padding: 50px 0;
}
@media screen and (max-width: 1100px) {
.footer-container {
width: 100%;
}
}
@media screen and (max-width: 765px) {
.footer-container {
flex-direction: column;
}
}
.footer-col {
flex: 1;
}
@media screen and (max-width: 1100px) {
.footer-col{
padding: 0 32px;
}
}
@media screen and (max-width: 765px) {
.footer-col{
margin-bottom: 30px;
}
}
.footer-about {
color: #fff;
text-decoration: none;
font-family: 'Raleway', sans-serif;
font-size: 20px;
text-transform: uppercase;
font-weight: 500;
display: inline-block;
position: relative;
}
.footer-signature {
margin-top: 20px;
color: #ffffff;
font-family: "Kristi", Sans-serif;
font-size: 30px;
}
.footer-navigation {
li {
margin: 0 0 10px 0;
a {
color: #fff;
}
}
.nav-menu {
display: block;
}
}
.footer-social {
background: #8224e3;
display: inline-flex;
justify-content: center;
align-items: center;
width: 25px;
height: 25px;
border-radius: 3px;
img {
width: 15px;
height: 15px;
}
}
.footer-social:hover {
background: #6a1ccf;
}.bottom {
background: #0a0a0a;
padding: 30px 0;
}
.bottom-container {
width: 1100px;
color: #fff;
display: flex;
margin: auto;
justify-content: space-between;
font-family: 'Raleway', sans-serif;
font-size: 14px;
}
@media screen and (max-width: 1100px) {
.bottom-container {
width: 100%;
flex-direction: column;
}
}
.bottom-col {
width: 25%;
}
@media screen and (max-width: 1100px) {
.bottom-col {
padding: 0 32px;
margin-bottom: 8px;
}
}