﻿
:root {
    --starting-bg: url('/images/HomeImages/IndexImages/StartingSectionImages/get_started_background.png');
    --starting-step-card: linear-gradient(to right, #20338A, #000B3C);
    --starting-horizontal-lane: #6280EB;
    --starting-step-card-shadow: none;
}
#StartingSection {
    background-image: var(--starting-bg);
    background-position: center bottom; /* або center top / center bottom */
    padding-left: 8.125rem !important;
    padding-right: 8.125rem !important;
    height: 960px;
    padding-top: 5rem; /* залишаєш, якщо треба */
}

.starting-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: var(--main-page-text-color);
}

.starting-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 120%;
    color: var(--main-page-text-color);
}

.step-card {
    background: var(--starting-step-card);
    box-shadow: var(--starting-step-card-shadow);
    width: 680px;
    height: 214px;
    border-radius: 10px;
    padding-left: 16px;
    padding-right: 16px;
}
.horizontal-lane {
    height: 1px;
    width: 100%;
    background-color: var(--starting-horizontal-lane);
}
.step-card-color-text {
    font-size: 20px;
    color: #6280EB;
}
.step-card-heading {
    font-family: 'Inter', sans-serif;
    margin-top:32px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--main-page-text-color);
}
.step-card-text {
    font-family: 'Inter', sans-serif;
    margin-top: 16px;
    font-size: 16px;
    line-height: 120%;
    color: var(--main-page-text-color);
}

@media (max-width: 768px){
    #StartingSection {
        background-image: none;
        background-position: center bottom;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        /*height: 960px;*/
        padding-top: 0;
    }

    .step-card {
        background: var(--starting-step-card);
        width: 100%;
        height: 210px;
        border-radius: 10px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .starting-heading {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 120%;
        color: var(--main-page-text-color);
        margin-bottom: 0;
    }

    .starting-subtitle{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 20px;
    }

    .custom-gap-36px{
        row-gap: 16px;
    }

    .step-card-heading {
        font-family: 'Inter', sans-serif;
        margin-top: 20px;
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
        color: var(--main-page-text-color);
    }

    .step-card-text {
        font-family: 'Inter', sans-serif;
        margin-top: 12px;
        font-size: 16px;
        line-height: 120%;
        color: var(--main-page-text-color);
    }
}
