* {
    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-color: #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;
}

.desktop-only {
    display: flex;
}

.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);
}

.flex-al-it-center {
    display: flex;
    align-items: center;
}

.fl-gap-15 {
    gap: 15px;
}

.break-word-all {
    word-break: break-all;
}

.main {
    position: relative;
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-direction: column;
}

.glossy {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 1640px;
    object-fit: cover;
    z-index: 0;
}

.main-header {
    position: absolute;
    top: 0;
    width: calc(100% - 40px);
    height: 100px;
    padding: 0 20px;
    max-width: 1640px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.blur {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 50, 50, 0.1);
    backdrop-filter: blur(10px);
    z-index: -1;
}


.main-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-holder {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1640px;
    height: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

@media (max-width: 768px) {
    .only-mobile {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .glossy {
        content: url("../../img/glossy-mobile.png");
        max-width: 100%;
    }

    .main-header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        justify-content: flex-start;
        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-header-nav.open {
        transform: translateX(0);
    }

    .main-header-nav.open .only-mobile.close {
        position: absolute;
        top: 30px;
        left: 10px;
        z-index: 1;
    }

    .main-holder {
        width: 100%;
    }

    .main-holder .fz-36 {
        font-size: 18px;
    }

    .main-holder .fz-64 {
        font-size: 36px;
    }

    .main-holder .fz-18 {
        font-size: 14px;
    }

    .main-holder img {
        max-height: 35px !important;
    }


}
