:root {
    --black: #000;
    --white: #fff;
    --dark-gray: #2e3036;
    --light-gray: #d5d8df;
    --link: #4517a6;
}

html {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

html:before {
    display: none !important;
}

@font-face {
    font-family: 'GothamNarrow-Medium';
    src: url('../fonts/GothamNarrow-Medium.eot');
    src: url('../fonts/GothamNarrow-Medium.eot') format('embedded-opentype'),
        url('../fonts/GothamNarrow-Medium.woff2') format('woff2'),
        url('../fonts/GothamNarrow-Medium.woff') format('woff'),
        url('../fonts/GothamNarrow-Medium.ttf') format('truetype'),
        url('../fonts/GothamNarrow-Medium.svg#GothamNarrow-Medium') format('svg');
}

body {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-family: 'GothamNarrow-Medium';
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 1;
    color: var(--white);
    background-color: var(--black);
    background-image: url(../img/bg.jpg);
    background-position: top center;
    background-size: auto 2600px;
    background-repeat: no-repeat;
    padding-top: 60px;
    scroll-behavior: smooth;
}

.container {
    overflow-x: hidden;
}

.languages {
    background-color: var(--black);
}

.languages a {
    display: inline-block;
    list-style: none;
    font-size: 17px;
    color: var(--white);
    text-decoration: none;
    margin-left: 10px;
    padding: 7px 8px;
}

.languages a:hover {
    background-color: var(--dark-gray);
}

.languages a img {
    width: 28px;
    height: 28px;
    display: inline-block;
    margin-right: 10px;
}

.main-text {
    padding: 50px 15px;
    position: relative;
}

.main-text img {
    max-width: 100%;
}

.main-text .btn {
    position: absolute;
    background-color: var(--white);
    text-transform: uppercase;
    font-size: 24px;
    border-radius: 0;
    bottom: 80px;
    right: 90px;
    padding: 10px 70px 9px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.main-text .btn:hover {
    background-color: var(--light-gray)
}

.images {
    margin-bottom: 50px;
}

.images .img {
    /* aspect-ratio: auto 1 / 1; */
    max-width: 360px;
    max-height: 360px;
    padding: 30px;
    position: relative;
}

.images .img-wrapper img {
    /* animation: 60s ease-in-out 0s infinite alternate move-img; */
}

@keyframes move-img {
    from {
        transform: translatex(-35px);
    }

    to {
        transform: translatex(-115px);
    }
}

.images .img .decor-1, .decor-img-1,
.images .img .decor-2, .decor-img-2,
.images .img .decor-3, .decor-img-3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    mix-blend-mode: screen;
    background-size: cover;
    /* z-index: 1; */
}

.images .img .decor-1 {
    background-image: url(../img/img-decor-1.png);
    animation: 60s linear 0s infinite running rotate;
}

.images .img .decor-2 {
    background-image: url(../img/img-decor-2.png);
    animation: 30s linear 0s infinite running rotate;
}

.images .img .decor-3 {
    background-image: url(../img/img-decor-3.png);
    animation: 130s linear 0s infinite running rotate;
}

.decor-img-1 {
    transform: rotate(120deg);
}

.decor-img-2 {
    transform: rotate(-222deg);
}

.decor-img-3 {
    transform: rotate(-222deg);
}

.video-player {
    position: relative;
    cursor: pointer;
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.images .img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100%;
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.8);
}

.images .img img {
    height: 100%
}

#video1 {
    display: block;
}

.video-player .preview {
    opacity: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.video-player .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player .preview svg {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-block .text {
    margin-bottom: 50px;
}

.video-block .text p {
    text-align: justify;
}

.video-block .text .btn {
    background-color: trasparent;
    border: 2px solid var(--white);
    border-radius: 0;
    color: var(--white);
    text-transform: uppercase;
    padding: 6px 20px;
    margin: 10px 0;
    display: inline-block;
}

.video-block .text .btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.quote {
    text-align: center;
    font-size: 27px;
    margin: 50px 0
}

.social a img {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 0 4px 50px;
    transition: opacity 0.2s;
}

.social a:hover img {
    opacity: 0.7;
}

.footer a {
    color: var(--white) !important;
}

@media (min-width: 1200px) {
    .video-block .text {
        padding-right: 50px;
    }
}

@media (max-width: 1199px) {
    .main-text {
        padding-bottom: 180px;
    }

    .main-text .btn {
        bottom: 80px;
        right: auto;
    }

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

@media (max-width: 991px) {
    .images {
        padding-top: 120px;
    }

    .images .img {
        margin-top: -120px;
    }
}

@media (max-width: 767px) {
    body {
        background-size: auto 2000px;
    }
}

@media (max-width: 520px) {
    body {
        background-size: auto 1600px;
    }
}
