.index {
    height: 100vh;
    display: flex;
}

.index__block {
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 0 60px;
    flex-direction: column;
    overflow: hidden;
    color: #333;
    text-decoration: none;
    transition: width 0.225s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: width;
    position: relative;
}

.index__block:hover {
    width: 80%;
}

.index__block--markup {
    background: #FFD257;
}

.index__block--elements {
    background: #6772E5;
    color: #fff;
    text-align: right;
}

.index__name {
    position: absolute;
    top: 60px;
    font-size: 60px;
    font-weight: bold;
}

.index__block--markup .index__name {
    left: 50vw;
    transform: translateX(-50%);
}

.index__block--elements .index__name {
    right: 50vw;
    transform: translateX(50%);
}

.index__title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

.index__description {
    font-size: 20px;
    line-height: 32px;
}

.index__button {
    margin-top: 40px;
}

@media only screen and (max-width: 1500px) {
    .index__name {
        font-size: 40px;
        line-height: 40px;
    }

    .index__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .index__description {
        font-size: 16px;
        line-height: 20px;
    }

    .index__button {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 1250px) {
    .index__name {
        font-size: 32px;
        line-height: 32px;
    }

    .index__title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .index__description {
        font-size: 14px;
        line-height: 20px;
    }

    .index__button {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 1120px) {
    .index {
        flex-direction: column;
    }

    .index__block {
        width: 100%;
        height: 50%;
        box-sizing: border-box;
        text-align: center;
        padding: 0 40px;
    }

    .index__block:hover {
        width: 100%;
    }

    .index__block--elements .index__name {
        display: none;
    }

    .index__name {
        font-size: 24px;
        line-height: 24px;
        top: 20px;
        left: 20px !important;
        transform: none !important;
    }

    .index__title {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 20px;
    }

    .index__description {
        font-size: 14px;
        line-height: 20px;
    }

    .index__button {
        margin-top: 20px;
    }
}

