.section-tiles {
    display: flex;
    padding: 144px 105px 96px 105px;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    align-self: stretch;
}

.tiles-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tiles-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.tiles-header-badge {
    width: fit-content;
    display: flex;
    flex-direction: row;
    padding: 7px 18px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 58px;
    border: 1px solid #E6E7EA;
    background: var(--color-white);
    box-shadow: 0 8px 23px -10px rgba(212, 212, 212, 0.30), 0 8px 24px -8px rgba(173, 173, 173, 0.20), 0 -4px 0 0 #F3F3F4 inset;
}

.tiles-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -2.56px;
}

.tiles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
}

.tiles-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.tiles-row.reverse {
    flex-direction: row-reverse;
}

.tile {
    flex: 0 50% 0;
    width: 50%;
}

/*.tiles-row:not(.reverse) .tile-content {*/
/*    margin-left: auto;*/
/*    max-width: 520px;*/
/*}*/

/*.tiles-row.reverse .tile-content {*/
/*    margin-right: auto;*/
/*    max-width: 520px;*/
/*}*/

.tile-image-wrapper {
    border-radius: 24px;
    background: var(--color-white);
}

.tile-content-type {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
    height: auto;
    /*width: 495px;*/
}

.tile-image-type {
    display: flex;
    align-items: center;
}

.tile-image {
    width: 100%;
    height: auto;
    display: block;
    padding: 8px;
    border-radius: 12px;
    border-color: #E6E7EA;
    box-shadow:
            0 8px 30px -10px rgba(177,186,226,.21),
            0 8px 24px -8px rgba(173,173,173,.20),
            0 0 0 0 #F3F3F4 inset;
}

.tile-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius:24px;
}

.tile-content {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
}

.tile-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -2.56px;
}

.tile-text,
.tiles-header-description {
    color: var(--Dark-Shade-blue-200);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    width: 100%;
}

@media (max-width: 1200px) {
    .section-tiles {
        padding: 60px 100px;
    }
    .tiles-wrapper {
        display: flex;
        flex-direction: column;
    }
    .tile-title {
        font-size: 28px;
    }


    .tiles-row,
    .tiles-row.reverse {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .tiles-row:not(.reverse) .tile-content {
        margin-left: unset;
    }
    .tile {
        width: 100%;
    }
    .tile-image-type {
        justify-content: center;
    }
}

@media (max-width:900px) {
    .tiles-wrapper {
        gap: 30px;
    }
    /*.tiles-row,*/
    /*.tiles-row.reverse {*/
    /*    flex-direction: column-reverse;*/
    /*    gap: 30px;*/
    /*}*/
    /*.tiles-row:not(.reverse) .tile-content {*/
    /*    margin-left: unset;*/
    /*}*/
    /*.tile {*/
    /*    width: 100%;*/
    /*}*/
    /*.tile-image-type {*/
    /*    justify-content: center;*/
    /*}*/
    .tiles-title {
        font-size: 32px;
        line-height: 40px;
    }
    .tile-text,
    .tiles-header-description {
        font-size: 16px;
        line-height: 24px;
    }

    .tiles-header-row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 620px) {
    .section-tiles {
        padding: 48px 16px;
    }
    .tiles-wrapper {
        display: flex;
        flex-direction: column;
    }
    .tiles-title {
        font-size: 24px;
    }
    .tile-content-type {
        width: 100%;
        padding: 0;
    }
    .tile-image {
        width: 100%;
    }
}
