.text-block {
    padding: 40px 0;
    background: linear-gradient(180deg, #111B47 0%, #61AED8 100%);;
}
.text-block .text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.text-block .text-content .text-wrapper {
    display: flex;
    align-items: start;
    gap: 30px;
    justify-content: space-between;
}

.text-block .text-content .text-wrapper .text-left {
    width: 50%;
}

.text-block .text-content .text-wrapper .text-left .text-left-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
    white-space: normal;
    margin-bottom: 20px;
}

.text-block .text-content .text-wrapper .text-left .text-left-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 135%;
	hyphens: auto;
}

.text-block .text-content .text-wrapper .text-right {
    width: 50%;
/*     max-height: 400px;
    max-width: 500px; */
    object-fit: contain;
    cursor: pointer;
}

.text-block .text-content .text-wrapper .text-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}
.text-block .text-content .text-wrapper .text-right img:hover {
    transition: 0.3s ease;
    filter: brightness(0.8);
}

.text-block .text-content .text-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
    .text-block .text-content .text-wrapper,
    .text-block .text-content .text-wrapper:nth-child(even) {
        flex-direction: column;
    }
    .text-block .text-content .text-wrapper .text-left {
        width: 100%;
    }
    .text-block .text-content .text-wrapper .text-right {
        width: 100%;
        display: flex;
        align-items: center;
        max-width: none;
    }
    
}