body {
    background-image: url("/images/home/bg_4k.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.header-bakcground-yellow {
    position: relative;
}

.header-title {
    color: #004f94;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 60px;
    padding: 140px 0 0 270px;
}

.header-subtitle {
    font-size: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #00ADEE;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin: 40px 0;
    padding: 0 0 0 270px;
}

.steps-container {
    position: relative;
}

.first-step-link-mask {
    display: block;
    transform: rotate(45deg);
    width: 433px;
    height: 242px;
    display: block;
    position: absolute;
    left: -39px;
    top: 60px;
    z-index: 3;
}

.first-step-link-container {
    background: url("/images/home/step1_a.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 406px;
    height: 344px;
    display: block;
}

.first-step-link-container:hover {
    background: url("/images/home/step1_hover.svg");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.second-step-link-container {
    background: url("/images/home/step2_a.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 406px;
    height: 344px;
    display: block;
    position: absolute;
    left: 167px;
    top: -145px;
    z-index: 2;
}

.second-step-link-container:hover {
    background: url("/images/home/step2_hover.svg");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.pad-image {
    width: 240px;
    position: absolute;
    top: -197px;
    left: 386px;
}

.book-image {
    width: 150px;
    position: absolute;
    top: 185px;
    left: 380px;
}

.steps-wrapper {
    position: absolute;
    top: 250px;
    left: 400px;
}

.home-description {
    max-width: 400px;
    color: #00ADEE;
    font-family: 'Roboto', sans-serif;
    margin-left: 50px;
    font-size: 14px;
}

@media (max-width: 992px) {
    body {
        background-size: 1599px;
        background-repeat: no-repeat;
        background-position: top;
    }

    .header-title {
        padding: 0;
        text-align: center;
    }

    .header-subtitle {
        writing-mode: unset;
        text-orientation: unset;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .steps-wrapper {
        position: unset;
    }

    .first-step-link {
        justify-self: right;
    }

    .second-step-link {
        justify-self: right;
    }

    .first-step-link-container {
        width: 305px;
        height: 258px;
    }

    .second-step-link-container {
        position: unset;
        width: 305px;
        height: 258px;
    }

    .home-description {
        margin: 0 auto;
        width: 100%;
        padding: 15px 50px;
    }

    .steps-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 40px 0 40px 60px;
    }

    .pad-image {
        position: unset;
    }

    .book-image {
        position: unset;
    }

    .first-step-link-mask {
        display: none;
    }
}

@media (max-width: 575px) {
    .steps-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pad-image {
        width: 150px;
        position: absolute;
        top: 370px;
        left: 38px;
    }

    .book-image {
        width: 100px;
        position: absolute;
        top: 80px;
        left: 54px;
    }
}