* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans/OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald/static/Oswald-Regular.ttf');
}

body {
    background-image: url('../images/20210627_132903_25050958005234.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    box-shadow: inset 0 0 0 2000px rgb(255 255 255 / 80%);
    margin: 0;
}



h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
}

a {
    color: white;
    text-decoration: none;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 99;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: headerAnimation 0.2s linear forwards;
}


@keyframes headerAnimation {
    0% {
        opacity: 0.9;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%, 0);
    }
}

header .logo {
    color: #171981;
    text-shadow: -.5px 0 white, 0 .5px white, .5px 0 white, 0 -.5px white;
}

header .menu-toggle {
    position: relative;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 11;
}
header .menu-toggle div {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all .3s ease;
}
header .menu-toggle div:nth-child(1) {
    top: 0;
}
header .menu-toggle div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
header .menu-toggle div:nth-child(3) {
    bottom: 0;
}
header .menu-toggle.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-9px, 7px);
}
header .menu-toggle.active div:nth-child(2) {
    opacity: 0;
    transform: rotate(-90deg) translate(-50%);
}
header .menu-toggle.active div:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

header .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 105vh;
    background-color: rgba(0, 0, 0, .9);
    opacity: 0;
    transform: translateX(100%);
    transition: all .3s ease;
    z-index: 10;
}
header .menu.active {
    opacity: 1;
    transform: translateX(0);
}


header .nav {
    position: absolute;
    top: 20%;
    left: 10%;
}
header .nav li {

    font-size: 2rem;
    margin: 1rem 0;
    list-style: none;
}
header .nav li.disabled {
    opacity: .3;
    pointer-events: none;
}
header .dropdown {
    position: relative;
}
header .dropdown-btn {
    cursor: pointer;
}
header .dropdown-list {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background-color: rgb(0, 0, 0, .8);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
header .dropdown-list.active {
    opacity: 1;
    pointer-events: auto;
}
header .dropdown-list li {
    margin: .5rem 0;
}
header .dropdown-list li::after {
    display: none;
}

.content {
    max-width: 1600px;
    margin: 2rem auto 5rem;
    padding: 0 1rem;
}



footer {
    color: white;
    background-color: black;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

footer p {
    font-size: 1rem;
    word-break: break-all;
}

footer .social {
    display: flex;
    align-items: center;
}

footer .social a {
    margin: 0 1rem;
}
footer .social i {
    font-size: 1.5rem;
}


@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
    }

    header .logo h1 {
        font-size: 1.5rem;
    }

    header .menu {
        width: 100vw;
    }

    header .nav {
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        text-align: center;
    }
    .content {
        margin: 1rem 1rem 3rem;
        padding: 0;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    footer .social {
        margin: 1rem 0;
    }
    footer .social a {
        margin: 0 .5rem;
    }

}