/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

input[type='file'] {
    max-width: 100%;
}


body {
    font-family: 'Oswald', sans-serif;
    color: #FBFBFB;
    font-size: 24px;
    background-color: #000;
}

.container {
    max-width: 1880px;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    margin: 0 auto;
}


@media (max-width: 999px) {
    .container {
        padding: 0 10px;

    }
}

.header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    padding: 38px 0 14px;
    z-index: 10;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    width: 116px;
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__open {
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 101%;
}

@media (max-width: 999px) {
    .header {
        position: relative;
    }
}

.banner {
    position: relative;
    height: calc(100vh - 84px);
}

.banner__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: -110px;
}

.banner__content-bg {
    position: absolute;
    top: 7%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 93%;
    width: 100%;
    z-index: 1;
}

.banner__content-stroke {
    position: absolute;
    top: 7%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 93%;
    z-index: 3;
}

.banner__image {
    position: relative;
    max-width: 626px;
    width: 100%;
    z-index: 2;
}

.banner__image video,
.banner__image img {
    width: 100%;
    height: auto;
}

.banner__text {
    position: relative;
    margin-top: 40px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    text-transform: capitalize;
    z-index: 2;
}

@media (max-width: 999px) {
    .banner {
        height: 100%;
    }

    .banner__content {
        margin-top: 0;
    }

    .banner__text {
        font-size: 32px;
    }
}

.footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 34px 0;
    z-index: 10;
}

.footer__wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}


.footer__title {
    display: flex;
    gap: 15px;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 82%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

@media (max-width: 999px) {
    .footer {
        position: relative;
    }
}