:root {
    --primary: #0066ff;

    --bg-dark: #111111;
    --bg-block: #222;

    --text-white: #ffffff;
    --text-gray: #9ca3af;

    --border-radius: 12px;
    --transition: all 0.3s ease;

    --slot-card-min-width: 250px;
    --slot-card-height: 200px;
    --slot-card-gap: 24px;
    font-family: 'Mulish-regular', sans-serif;
}

@font-face {
    font-family: 'Mulish-regular';
    src: url(./font_text/Mulish-Regular.woff2);
}

@font-face {
    font-family: 'Mulish-bold';
    src: url(./font_text/Mulish-Bold.woff2);
}

* {
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    line-height: 110%;
    padding-bottom: 16px;
    font-family: 'Mulish-bold', sans-serif;
    font-size: 40px;
    padding-bottom: 16px;
    font-weight: 900;
}

h2 {
    line-height: 140%;
    padding-bottom: 16px;
    font-family: 'Mulish-bold', sans-serif;
    font-size: 32px;
    font-weight: 900;
}

h3 {
    padding-bottom: 16px;
    font-family: 'Mulish-bold', sans-serif;
    font-size: 22px;
    font-weight: 900;
}

h4 {
    font-family: 'Mulish-bold', sans-serif;
    font-size: 16px;
    font-weight: 900;
}

p {
    color: var(--text-gray);
    font-family: 'Mulish-regular', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    justify-content: center;
    display: flex;
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    margin: 0px;
    padding: 0px;
    z-index: 1000;
}

.header img {
    max-width: 300px;
    transition: all 0.3s ease;
}

.header img:hover {
    scale: 105%;
    transition: all 0.3s ease;
}

.hero {
    background-color: var(--bg-dark);
    padding: 0px 24px 0px 24px;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px auto 0px auto;
}

.block {
    display: flex;
    background-color: var(--bg-block);
    margin-bottom: 16px;
    margin-top: 16px;
    padding: 24px;
    border-radius: 16px;
    gap: 32px
}

.textright {
    text-align: start;
    width: 50%;
    min-height: 100%;
    margin: auto 0px auto 0px;

}

.textleft {
    text-align: end;
    width: 50%;
    min-height: 100%;
    margin: auto 0px auto 0px;

}

.textcenter {
    text-align: center;
}

.textinblock {
    text-align: start;
    min-height: 100%;
    margin: 0px 24px 24px 24px;
    padding: 24px;
    border-radius: 16px;
    text-align: start;
    background-color: #333;
}

.image {
    display: block;
    background-size: cover;
    background-position: center;
    width: 50%;
    aspect-ratio: 1/0.6;
    border-radius: 16px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 800px) {
    .block {
        display: flex;
        flex-direction: column;
        margin-bottom: 8px;
        margin-top: 8px;
        padding: 16px;
    }

    .header img {
        max-width: 200px;
    }


    .hero {
        padding: 0px 16px 0px 16px;
    }

    .textright {
        width: 100%;
        text-align: center;
    }

    .textleft {
        width: 100%;
        text-align: center;
    }

    .textcenter {
        width: 100%;
        text-align: center;
    }

    .textinblock {
        margin: 0px 16px 16px 16px;
        padding: 16px;
    }

    .image {
        width: 100%;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 15px;
    }
}