.tile-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 10px auto;
}

.tile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
}

.tile-row .main-title, .tile-row .main-title .subtitle {
    font-size: 30px;
}

.tile-row .main-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 90px 0 65px 0;
    padding-left: 115px;
    text-align: left;
}

.tile-text-inner {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 115px;
}

.tile-text-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0;
}

.tile-image {
    width: 70%;
    box-sizing: border-box;
}

.tile-image img {
    width: 100%;
}

.tile-row:nth-of-type(2n) .tile-text {
    order: 2;
}

.tile-row:nth-of-type(2n) .tile-image {
    order: 1;
}

/* --- big tile --- */

.tile-row.big-tile {
    display: block;
    position: relative;
    max-width: 2560px;
    aspect-ratio: 1 / 0.512;
}

.big-tile .tile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.big-tile .tile-text {
    position: absolute;
    bottom: 60px;
    right: calc(50% - 960px);
    z-index: 1;
}

.big-tile .tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media screen and (max-width: 1920px) {
    .big-tile .tile-text {
        right: 0;
    }
}

@media screen and (max-width: 1720px) {
    .tile-row .main-title {
        margin: 20px 0 40px 0;
    }

    .tile-row .main-title {
        padding-left: 80px;
    }

    .tile-text-inner {
        padding: 20px 80px;
    }

    .tile-text-button {
        padding: 25px 0;
    }
}

@media screen and (max-width: 1380px) {
    .tile-row .main-title, .tile-row .main-title .subtitle {
        font-size: 22px;
    }

    .tile-row .main-title {
        padding-left: 30px;
    }

    .tile-text-inner {
        padding: 20px 30px;
    }
}

@media screen and (max-width: 1200px) {
    .tile-row {
        flex-wrap: wrap;
    }

    .tile-text {
        width: 100%;
        text-align: center;
    }

    .tile-row .main-title {
        padding: 0 30px;
        margin: 20px 0;
        text-align: center;
        justify-content: center;
    }

    .tile-image {
        width: 100%;
    }

    .tile-text, .tile-row:nth-of-type(2n) .tile-text {
        order: 2;
    }

    .tile-image, .tile-row:nth-of-type(2n) .tile-image {
        order: 1;
    }

    .big-tile .tile-text {
        width: 30%;
        min-width: 300px;
        bottom: 0;
    }
}

@media screen and (max-width: 920px) {
    .tile-row.big-tile {
        display: flex;
        position: static;
        aspect-ratio: auto;
    }

    .big-tile .tile-image {
        position: static;
        height: auto;
    }

    .big-tile .tile-text {
        position: static;
        width: 100%;
    }

    .big-tile .tile-image img {
        height: auto;
        object-fit: contain;
    }
}
