@media (min-width: 1900px) {
    .contact-us-block, .faq-block {
        position: relative;
    }
    .faq__image {
        right: -210px;
    }
}
.block {
   /* margin-bottom: 14rem; */
    margin-top: 5rem;
}
.block__subtitle {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 28px;
    color: #6A6A6A;
    padding: 20px 40px;
    border-radius: 60px;
    border: 1.5px solid #6A6A6A;
    margin-bottom: 40px;
}
.faq__header-mobile {
    display: none;
}
.faq__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 546px;
}
.faq__questions {
    max-width: 1100px;
}
.faq__image {
    width: 562px;
    height: 446px;
    border-radius: 20px 0px 0px 20px;
    background: linear-gradient(90deg, #0760a2 0%, #4495d1 50%, #4394d0 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: absolute;
    right: 0;
}
.faq__questions-container {
    height: auto;
    max-height: unset;
    overflow: hidden;
    margin-bottom: 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.opportunities-list__item, .opportunities-block-list__item, .faq__list-item {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    max-height: 100px;
    height: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
}
.opportunities-list__item-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px;
}
.opportunities-list__item-text {
    font-size: 22px;
    font-weight: 400;
    line-height: 26.4px;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 100%;
    max-height: 0;
    margin-top: 0;
}
.opportunities-list__item-arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.opportunities-list__item.active, .opportunities-block-list__item.active, .faq__list-item.active {
    background: #F3F3F3;
    max-height: 560px;
}
.opportunities-list__item.active .opportunities-list__item-text, .opportunities-block-list__item.active .opportunities-list__item-text, .faq__list-item.active .opportunities-list__item-text, .opportunities-block-list__item.active .opportunities-list__item-img img {
    opacity: 1;
    max-height: 500px;
    margin-top: 20px;
}
.opportunities-list__item.active .opportunities-list__item-arrow, .opportunities-block-list__item.active .opportunities-list__item-arrow, .faq__list-item.active .opportunities-list__item-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}