* {
    outline: none;
}

button {
    cursor: pointer;
}

p {
    margin: 10px 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

div, ul, p, span, button {
    font-family: 'Artegra Sans Extended', sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    font-family: 'Artegra Sans Extended', sans-serif;
    overflow: hidden;
    overflow-y: auto;
    background: #F03232;
}

@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended ExtraBold'), local('ArtegraSansExExtraBold'),
    url('fonts/ArtegraSansExExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended Bold Italic'), local('ArtegraSansExBoldIt'),
    url('fonts/ArtegraSansExBoldIt.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended ExtraBold Italic'), local('ArtegraSansExEBoldIt'),
    url('fonts/ArtegraSansExEBoldIt.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended Bold'), local('ArtegraSansExBold'),
    url('fonts/ArtegraSansExBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended ExtraLight Italic'), local('ArtegraSansExELightIt'),
    url('fonts/ArtegraSansExELightIt.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}


@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended Italic'), local('ArtegraSansExRegularIt'),
    url('fonts/ArtegraSansExRegularIt.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}


@font-face {
    font-family: 'Artegra Sans Extended';
    src: local('Artegra Sans Extended'), local('ArtegraSansExRegular'),
    url('fonts/ArtegraSansExRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.only-mobile {
    display: none !important;
}

.white-color {
    color: #fff;
}

.white-grey-color {
    color: rgba(255, 255, 255, 0.5);
}

.grey-color {
    color: rgba(20, 20, 20, 0.5);
}

.black-color {
    color: #000;
}

.red-color {
    color: rgba(240, 50, 50, 1);
}

.img-white {
    filter: brightness(0) invert(1);
}


.main {
    position: relative;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: flex;
    justify-content: center;
    padding: 20px;
}

.main-header {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 1640px;
    padding-top: 30px;
    display: flex;
}

.main-holder {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1640px;
    height: 100%;
    display: flex;
    gap: 20px;
}

.main-holder-list {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.main-list-img {
    position: absolute;
    top: calc(50% + 40px);
    transform: translateY(-50%);
    max-height: calc(100% - 220px);
    object-fit: cover;
}

.main-holder-list-footer {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.main-footer {
    position: absolute;
    width: calc(100% - 40px);
    min-height: 90px;
    max-width: 1640px;
    display: flex;
    bottom: 0;
    align-items: center;
    justify-content: space-between;
}

.main-footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .only-mobile {
        display: flex !important;
    }

    .only-mobile.close {
        position: absolute;
        top: 30px;
        left: 10px;
        z-index: 1;
    }

    .main {
        height: auto;
        flex-direction: column;
    }

    .main-holder {
        width: 100%;
        top: 90px;
        flex-direction: column;
    }

    .main-header {
        position: relative;
        top: 60px;
    }

    .main-header .fz-260 {
        font-size: 164px;
    }

    .main-holder-list {
        width: 100%;
    }

    .main-holder-list .fz-48 {
        font-size: 36px;
    }

    .main-holder-list .fz-24 {
        font-size: 14px;
    }

    .main-holder-list-footer {
        flex-direction: column;
    }

    .main-list-img {
        position: relative;
        top: auto;
        margin-top: 30px;
        width: calc(100% + 40px);
        left: 50%;
        transform: translate(-50%, 0);
    }

    .main-footer {
        position: relative;
        width: 100%;
        top: 80px;
        justify-content: center;
    }

    .main-footer .fz-24 {
        font-size: 14px;
    }

    .main-footer-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background: rgba(240, 50, 50, 0.8);
        backdrop-filter: blur(5px);
        padding-top: 100px;
        transform: translateX(-100%);
        transition: 0.3s;
        z-index: 1;
    }

    .main-footer-nav.open {
        transform: translateX(0);
    }

}
