@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.gallery-preview-modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #2d2d2da6;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-preview-modal__close-btn {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 44px;
    height: 44px;
    background: #222;
    border-radius: 4px;
    border: solid 1px #555;
    cursor: pointer;
}

.gallery-preview-modal__close-btn::after {
    content: "x";
    color: #fff;
    font-size: 32px;
    display: flex;
    justify-content: center;
}

.gallery-preview-modal img {
    width: 80%;
    height: auto;
    border-radius: 6px;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-preview img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-thumbnails {
    display: flex;
    overflow-x: scroll;
    gap: 8px;
    padding-bottom: 4px;
}

.gallery-thumbnails img {
    width: 100px;
    cursor: pointer;
    opacity: 0.9;
    border-radius: 4px;
    border: solid 1px #000;
}

.gallery-thumbnails img:hover {
    opacity: 1;
}

.gallery-scroll::-webkit-scrollbar {
    width: 5px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background-color: #1f3354;
    border-radius: 8px;
    box-shadow: inset 0 0 0 3px transparent;
    border: solid 1px #555;
    opacity: 0.9;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #333;
    border-radius: 8px;
    width: 6px;
}

input {
    background: #222;
    border-radius: 12px;
    border: solid 1px #000;
    font-size: 18px;
    padding: 8px 12px;
    color: #fff;
    font-size: 22px;
}

.button {
    padding: 16px 24px;
    background: linear-gradient(#e00e0e, #b30000);
    border: solid 1px #000;
    border-radius: 12px;
    color: #fff !important;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.button:hover {
    border: solid 1px #000;
}

a {
    text-decoration: none;
    color: #dcdcdc;
}

a:hover {
    text-decoration: underline;
}

hr {
    border-color: #4e4e4e;
}

li {
    list-style-type: none;
    display: inline-block;
}

html,
body {
    height: 100%;
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #161616
}

strong {
    color: #edd351;
}

.clearfix {
    clear: both;
}

.wrapper {
    width: 1160px;
    margin: 0 auto;
}

.content {
    box-shadow: 0 0 2px black;
}

.content__title {
    text-align: center;
    margin-bottom: 20px;
}

.content__title a {
    color: #fff;
}

.flex {
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
    column-gap: 16px;
}

.newsletter input {
    width: 100%;
    max-width: 380px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 100%;
}

.newsletter button {
    position: relative;
    left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
    height: 100%;
}

.newsletter button:hover {
    border-left: none;
}

.newsletter__head {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    text-align: center;
}

.newsletter__body {
    justify-content: center;
    display: flex;
    height: 60px;
}

.newsletter__footer {
    margin-top: 24px;
    justify-content: center;
    display: flex;
}

.content__inner {
    padding: 30px 20px;
}

.content__inner--dark {
    background-image: linear-gradient(#161616, #1a1a1a);
}

.content__inner--light {
    background-image: linear-gradient(#1f1f1f, #1f1f1f);
}

.content__inner--white {
    background: #fff;
    color: #111;
}

.content__inner--white a {
    color: #000;
    font-weight: 600;
}

.scroll-view {
    padding: 6px;
    overflow: auto;
    max-height: 600px;
}

.scroll-view p {
    margin-bottom: 20px;
}

.scroll-view h2 {
    font-size: 18px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.scroll-view ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}

.container {
    z-index: 999;
    width: 1160px;
    margin: 0 auto;
    color: white;
}

.header-space {
    height: 60px;
    width: 100%;
}

nav {
    background-image: linear-gradient(#1b1b1b, #1d1d1d);
    border-bottom: solid 1px black;
    box-shadow: 0 0 8px black;
    padding: 4px 8px;
    display: flex;
    gap: 8px;
}

nav li {
    background-image: linear-gradient(#222, #111);
    border: solid 1px #111;
    padding: 12px 24px;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
}

nav li small {
    font-size: 11px;
    color: gray;
}

nav li a {
    color: #edd351;
}

.header {
    color: white;
    font-size: 0;
    height: 75px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-image: linear-gradient(#161616, #131313);
    box-shadow: 0 0 14px black;
}

.header__logo {
    position: relative;
    margin-top: -75px;
}

.header__flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
}

.header__socials {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__socials:last-child {
    justify-self: end;
}

.common-inner {
    background: #333;
    padding: 15px 10px;
}

.header__socials img {
    border: solid 1px #000;
    width: 44px;
    border-radius: 100%;
}

.header__socials img:hover {
    opacity: 1;
    border: solid 2px gold;
}

.text-center {
    text-align: center;
}

.footer {
    max-width: 1160px;
    border-top: solid 1px black;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 0 8px black;
    background-image: linear-gradient(#161616, #131313);
    margin: 0 auto 60px;
}

.footer__menu {
    margin-top: 10px;
}

.footer__item::after {
    color: white;
    content: " | ";
}

.footer__item:last-child::after {
    content: "";
}

.playerWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
}

@media (max-width: 1160px) {
    .wrapper {
        width: calc(100% - 10px);
    }

    .footer {
        max-width: 100%;
        width: calc(100% - 10px);
        text-align: center;
    }

    .container {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .button {
        padding: 16px;
        font-size: 16px;
    }
    
    .flex {
        flex-direction: column;
    }

    .content__title {
        margin-bottom: 15px;
    }

    .content__inner {
        padding: 10px;
    }

    .content__inner {
        text-align: center;
    }

    .header {
        height: inherit;
        margin-top: 5px;
    }

    .footer {
        padding: 10px 5px;
        height: auto;
    }

    .header__logo {
        margin-top: inherit;
    }

    .header__logo img {
        height: 100px;
        margin-top: -35px;
    }

    .header-space {
        height: 15px;
    }
}