/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Coustard:wght@400;700&family=Open+Sans:wght@400;600&display=swap");
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    color: #777;
    background: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Coustard', sans-serif;
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
}

h1 {
    font-size: 63px;
    line-height: 70px;
    padding: 0;
    margin: 0;
}

h5 {
    font-size: 28px;
    line-height: 35px;
    padding: 0;
    margin: 0;
    color: #b7b7b7;
}

a {
    color: #b7b7b7;
    text-decoration: none;
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
}

#maximage {
    display: none;
    position: fixed !important;
}

.gradient {
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

.show {
    display: block;
}

.hide {
    opacity: 0;
}


/* Set Page Elements */

.content {
    font: sans-serif;
    float: left;
    margin: 40px;
    position: absolute;
    top: 200px;
    max-width: 640px;
    width: calc(100% - 80px);
    z-index: 9999;
    -webkit-font-smoothing: antialiased;
    color: #fff;
}

#logo {
    font-family: 'Coustard', sans-serif;
    font-size: 40px;
    bottom: 40px;
    height: auto;
    left: 40px;
    position: absolute;
    width: 20%;
    z-index: 1000;
    color: #fff;
}

.main-nav {
    position: absolute;
    bottom: 23px;
    left: 225px;
    z-index: 1001;
}

.main-nav ul li {
    list-style: none;
    display: inline;
    padding-right: 10px;
    padding-left: 10px;
    border-left: 1px solid #b7b7b7;
}

.main-nav ul li a.active {
    color: #ffa800;
}

.social-nav {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 1002;
}

.social-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.social-nav ul li {
    list-style: none;
    display: inline-flex;
}

.social-nav ul li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 57, 57, 0.8);
    border-radius: 999px;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-nav ul li a:hover,
.social-nav ul li a:focus-visible {
    background: #ffa800;
    color: #000;
    transform: translateY(-2px);
    text-decoration: none;
}

button.full-screen {
    position: absolute;
    top: 0;
    right: 0;
    width: 31px;
    height: 31px;
    background: url("../images/full-screen-btn.png");
    border: 0;
    cursor: pointer;
    opacity: .7;
}

button.full-screen:hover {
    opacity: 1;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #ffa800;
    outline-offset: 2px;
}

#arrow_left,
#arrow_right {
    bottom: 30px;
    height: 42px;
    position: absolute;
    right: 40px;
    width: 42px;
    z-index: 1000;
}

#arrow_left {
    right: 95px;
}

@media (max-width: 768px) {
    .content {
        top: 120px;
        margin: 20px 10px;
        width: calc(100% - 40px);
        color: #fff;
    }

    #logo {
        top: 80px;
        bottom: auto;
        width: auto;
    }

    .main-nav {
        left: 20px;
        bottom: 15px;
    }

    .social-nav {
        top: 15px;
        left: 20px;
    }

    #arrow_left,
    #arrow_right {
        right: 20px;
        bottom: 20px;
    }
}
