.info-block {}

.info-block .about-banner {
    border-radius: 20px;
    background: var(--primary);
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: clamp(1.563rem, 1.159rem + 2.02vw, 3.125rem);
}

.info-block .banner__img {
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: rotate(-5deg); */
    /* max-height: 419px;
    overflow: hidden;
    max-width: 1450px;
    width: 100%; */
}

.info-block .banner__img img {
    transform: rotate(-5deg);
    max-height: 419px;
    height: 100%;
    min-height: 250px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1450px;
    width: 100%;
}

.info-block .info__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.info-block .text__holder {
    max-width: 880px;
    width: 100%;
    background: var(--card);
    border-radius: 20px;
    padding: clamp(1.25rem, 0.605rem + 3.23vw, 3.75rem) clamp(0.938rem, 0.373rem + 2.82vw, 3.125rem);
}

.info-block .info__img {
    position: relative;
    position: sticky;
    top: 150px;
    height: fit-content;
    padding: 30px 0;
    min-width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-block .text__holder strong {
    font-weight: 600;
}

.info-block .info__img .bg {
    position: absolute;
    background: var(--bg);
    border-radius: 10px;
    width: 50%;
    height: 100%;
    max-height: 341px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.info-block .info__img img {
    transform: rotate(-10deg);
    max-height: 350px;
    max-width: 560px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.info-block .text__holder h2 {
    margin-bottom: 35px;
}

.info-block .text__holder h3,
.info-block .text__holder h4 {
    margin-bottom: 30px;
    margin-top: clamp(1.875rem, 1.714rem + 0.81vw, 2.5rem);
}

.info-block .text__holder h5 {
    margin-bottom: 25px;
    margin-top: clamp(1.875rem, 1.714rem + 0.81vw, 2.5rem);
}

.info-block .text__holder h6 {
    margin-bottom: 20px;
    margin-top: clamp(1.875rem, 1.714rem + 0.81vw, 2.5rem);
}

.info-block .text__holder p,
.info-block .text__holder ul li,
.info-block .text__holder ol li {
    font-weight: 400;
    /* font-size: 18px; */
    font-size: clamp(1rem, 0.968rem + 0.16vw, 1.125rem);
    line-height: 130%;
    color: var(--main-text);
}

.info-block .text__holder p {
    margin-bottom: 15px;
}

.info-block .text__holder ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.info-block .text__holder ul li {
    position: relative;
    padding-left: 23px;
}

.info-block .text__holder ul li::before {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    top: 7px;
    border-radius: 50%;
    left: 0;
    background: var(--primary);
}

.info-block .text__holder ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    counter-reset: num;
}

.info-block .text__holder ol li {
    position: relative;
    padding-left: 35px;

}

.info-block .text__holder ol li::before {
    content: counter(num);
    counter-increment: num;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: var(--card);
    background: var(--primary);
    height: 20px;
    width: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-block .text__holder blockquote {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.464rem + 0.81vw, 1.25rem);
    padding: clamp(1.25rem, 1.089rem + 0.81vw, 1.875rem) 0;
    border-top: 1px solid var(--primary);
    margin-top: 15px;
    border-bottom: 1px solid var(--primary);
}

.info-block .text__holder blockquote p {
    margin-bottom: 0;
    font-weight: 400;
    /* font-size: 22px; */
    font-size: clamp(1rem, 0.903rem + 0.48vw, 1.375rem);
    line-height: 130%;
}

.info-block .text__holder blockquote p em {
    margin-left: auto;
    font-style: normal;
    display: block;
    text-align: right;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

@media(max-width:1500px) {
    .info-block .about-banner {
        min-height: fit-content;
        padding: 40px 0;
    }
}

@media(max-width:1000px) {
    .info-block .info__wrapper {
        flex-direction: column-reverse;
    }

    .info-block .info__img {
        position: relative;
        top: 0;
    }

    .info-block .text__holder {
        max-width: 100%;
    }

    .info-block .info__img img {
        max-width: 100%;
        transform: rotate(-5deg);
        max-width: 90vw;
    }

    .info-block .info__img .bg {
        width: 100%;
    }


}

@media(max-width: 600px) {
    .info-block .text__holder ol li {
        padding-left: 30px;
    }

    .info-block .about-banner {
        padding: 20px 0;
        margin-bottom: 0;
    }
}