.main-section {
    padding-top: 38px;
    max-width: 720px;
    margin: 0 auto;
}

.left {
    text-align: center;
}

.main-title {
    font-size: 36px;
    margin-bottom: 24px;
}

.main-title-secondary {
    font-weight: 200;
    font-size: 18px;
    margin-bottom: 38px;
    padding: 0 24px;
}

.main-text-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main_text_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;

    width: 100%;
    aspect-ratio: 428 / 239;
    min-height: 239px;
    padding: 0 12px;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    color: #FFF;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main_text_block:first-child {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/main/one.jpg');
}

.main_text_block:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/main/two.jpg');
}

.main_text_block:last-child {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/main/three.jpg');
}

.main_text_block .text, .main_text_block .title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main_text_block .text {
    padding: 0 10px;
}

@media screen and (max-width: 1023px) {
    .main_text_block.mtb0 {
        background-image: url('../img/main/one.jpg');
    }

    .main_text_block.mtb1 {
        background-image: url('../img/main/two.jpg');
    }

    .main_text_block.mtb2 {
        background-image: url('../img/main/three.jpg');
    }

    .mtbOp {
        opacity: 0;
    }
}

.img-list-wrap {
    display: none;
}

@media screen and (min-width: 450px) {
    .main-title {
        font-size: 48px;
    }

    .main-title-secondary {
        font-size: 24px;
        margin-bottom: 8vh;
    }

    .main_text_block {
        gap: 16px;
        padding: 0 32px;
    }
}

@media screen and (min-width: 1024px) {
    body {
        min-height: 98vh;
        display: grid;
        grid-template-rows: 1fr auto;
    }

    main {
        min-height: calc(98vh - 200px);
    }

    .main-section {
        display: flex;
        align-items: flex-start;

        max-width: 1920px;
        padding: 64px 0;
        margin: 0;
    }

    .left {
        max-width: 40vw;
        text-align: left;
        padding: 24px 0;
        margin: 0 auto;
    }

    .main-title {
        margin-bottom: 0.4vh;
        font-size: 36px;
    }

    .main-title-secondary {
        padding: 0;
    }

    .main-text-list {
        gap: 3vh;
        font-size: 24px;
    }

    .main_text_block {
        gap: 0.8vh;
        width: 100%;
        aspect-ratio: 0;
        min-height: 0;
        padding: 0;

        -webkit-user-select: auto;
        -moz-user-select: auto;
        -ms-user-select: auto;
        user-select: auto;
    }

    .main-text-list .main_text_block {
        background-image: none;
    }

    .main_text_block .title, .main_text_block .text {
        color: var(--text-color);
        text-shadow: none;
    }

    .main_text_block .title {
        margin-bottom: 1vh;
    }

    .main_text_block .text {
        padding: 0;
    }
}

@media screen and (min-width: 1230px) {
    .left {
        max-width: 35vw;
        margin:0 0 0 11vw;
    }

    .img-list-wrap {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 12%;

        display: block;
        overflow: hidden;
        width: 35%;
        height: auto;
    }

    .img-list {
        display: flex;
        flex-direction: column;

        animation: scroll 45s linear infinite;
        animation-play-state: paused;
    }

    .img-list:hover {
        animation-play-state: running;
    }

    .img-item {
        margin-bottom: 15px;
    }

    @keyframes scroll {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }

    .main-creator {
        width: 90px;
    }
}

@media screen and (min-width: 1500px) {
    .main-creator {
        width: auto;
    }
}

@media screen and (min-width: 1630px) {
    .left {
        padding: 48px 0;
    }

    .main-title {
        font-size: 48px;
    }

    .main-text-list {
        font-size: 32px;
    }
}
