.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    color: #ffffff;
    background-color: #11142C;

    .logo_wrapper {
        display: flex;
        align-items: center;
    }

    .logo {
        height: 28px;
    }

    .buttons {
        display: flex;
        gap: 8px;
    }

    .button {
        height: 32px;
        padding: 8px;

        color: #ffffff;
        font-size: 12px;
        font-weight: 500;

        border: none;
        border-radius: 8px;
        background-color: #1C214A;

        cursor: pointer;
    }

    .button_primary {
        padding: 8px 28px;
        font-weight: 600;
        background: linear-gradient(92deg, #0E9F6E 3.21%, #08DD95 98.46%);
    }
}

.home_page {
    margin-top: 60px;
    padding: 14px 14px 25px;
    background-color: #080812;
}

.welcome_container {
    margin-bottom: 36px;
    border-radius: 16px;
    background-color: #11142C;
    overflow: hidden;

    .welcome_title {
        text-shadow: 0 7px 7px rgba(0, 0, 0, 0.25);
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #B96400;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: 1px;
        text-transform: uppercase;

        background: linear-gradient(173deg, #FFDBA2 10.07%, #FF9714 64.72%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .welcome_subtitle {
        color: #FFF;
        text-shadow: 0 7px 7px rgba(0, 0, 0, 0.25);
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #B96400;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 0.7px;
        text-transform: uppercase;
    }

    .welcome_content {
        display: grid;
        grid-gap: 16px;
        padding: 16px;
    }

    .image_wrapper {
        position: relative;
    }

    .image_bg {
        position: absolute;
        inset: 0;
    }

    .image_main {
        position: relative;
        z-index: 1;
    }

    .welcome_image {
        width: 100%;
        aspect-ratio: 1;
        min-height: 264px;
        object-fit: cover;
        object-position: center;
    }

    .welcome_text {
        display: grid;
        grid-gap: 24px;
        color: #FFF;

        font-size: 16px;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: 0.6px;
    }


    .laptop_img {
        display: none;
    }
}

.list_container {
    margin-bottom: 16px;
    display: grid;
    grid-gap: 16px;
    padding: 16px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.6px;
    color: #ffffff;

    border-radius: 16px;
    background-color: #11142C;

    .list_item {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .list_image {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
}

.info_container {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background-color: #11142C;

    color: #FFF;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.5px;

    .icon {
        height: 20px;
        width: 20px;
        flex-shrink: 0;
    }
}

@media (min-width: 640px) {
    .welcome_container {
        .welcome_image {
            aspect-ratio: auto;
            max-height: 380px;
            object-position: top;
        }

        .image_wrapper {
            display: flex;
            justify-content: center;
        }

        .image_main {
            max-width: 600px;
        }
    }

}

@media (min-width: 1024px) {
    .header {
        height: 76px;
        padding: 0 20px;

        .logo {
            height: 35px;
        }

        .buttons {
            gap: 12px;
        }

        .button {
            height: 42px;
            font-size: 16px;
            padding: 0 24px;
            transition: 0.25s ease;

            &:hover {
                opacity: 0.7;
            }
        }

    }

    .home_page {
        margin-top: 76px;
        padding: 30px 20px 88px;
    }

    .welcome_container {
        display: flex;
        align-items: center;
        min-height: 450px;
        position: relative;
        margin-bottom: 30px;

        .welcome_content {
            width: 50%;
            grid-gap: 24px;
            align-content: center;
            padding: 16px 32px;
        }

        .image_wrapper {
            display: none;
        }


        .welcome_image {
            aspect-ratio: 1;
            max-height: none;
            object-position: center;

            height: 100%;
            width: auto;
            max-width: 50% !important;
            object-fit: contain;
        }

        .image_bg {
            position: absolute;
            right: 0;
            top: 0;
            left: auto;
            width: 70% !important;
            max-width: none !important;
            object-fit: cover !important;
        }

        .laptop_img {
            display: block;
        }

        .image_main.laptop_img {
            max-width: unset;
            aspect-ratio: auto !important;
            transform: scale(1.2);
        }

        .welcome_title {
            font-size: 48px;
        }

        .welcome_subtitle {
            font-size: 42px;
        }

        .welcome_text {
            font-size: 24px;
        }

    }

    .list_container {
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
        grid-gap: 16px;
        padding: 16px 32px;

        font-size: 20px;

        .list_image {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }
    }

    .info_container {
        padding: 16px 32px;
        gap: 16px;
        align-items: center;
        font-size: 16px;

        .icon {
            height: 26px;
            width: 26px;
        }
    }
}