/* #region list-with-text-heading-image */
.list-with-text-heading-image .list-with-text-heading-image__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    padding: 0 20px 20px 20px;
}
.list-with-text-heading-image .list-with-text-heading-image__wrapper {
    background-color: #FFF;
    box-shadow: 11px 7px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.list-with-text-heading-image .list-with-text-heading-image__item {
    text-align: center;
    max-width: 120px;
}
.list-with-text-heading-image .list-with-text-heading-image__item-heading {
    font-weight: 700;
    margin-top: 8px;
    font-size: 18px;
}
.list-with-text-heading-image .list-with-text-heading-image__item-text {
    font-size: 16px;
}
.list-with-text-heading-image .list-with-text-heading-image__upper {
    text-align: center;
}

.list-with-text-heading-image .list-with-text-heading-image__title {
    font-size: 26px;
    color: #FFF;
    margin: 0;
    text-transform: uppercase;
    font-style: italic;
}
.list-with-text-heading-image .list-with-text-heading-image__subtitle {
    font-size: 22px;
    color: #FFF;
    font-style: italic;
    margin: 0;
    font-weight: 400;
    margin-bottom: 10px;
}

.list-with-text-heading-image .list-with-text-heading-image__text {
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto;
    padding: 30px 20px;
}
.list-with-text-heading-image .list-with-text-heading-image__head {
    padding: 20px;
    background-color: var(--primary-color);
}

@media(max-width: 560px) {
    .list-with-text-heading-image .list-with-text-heading-image__title {
        font-size: 22px;
    }
    .list-with-text-heading-image .list-with-text-heading-image__subtitle {
        font-size: 18px;
    }
    .list-with-text-heading-image .list-with-text-heading-image__head {
        padding: 10px;
    }
    .list-with-text-heading-image .list-with-text-heading-image__item img{
        max-width: 72px;
    }
    .list-with-text-heading-image .list-with-text-heading-image__text {
        font-size: 16px;
    }
}
/* #endregion list-with-text-heading-image */

/* #region list-with-big-image */
.list-with-big-image .list-with-big-image__wrapper {
    display: flex;
    gap: 30px;
}
.list-with-big-image .list-with-big-image__left {
    border-radius: 10px;
    overflow: hidden;
    width: 50%;
}
.list-with-big-image .list-with-big-image__left img {
    width: 100%;
}
.list-with-big-image .list-with-big-image__left-head {
    background-color: var(--primary-color);
    padding: 20px 30px;
}
.list-with-big-image .list-with-big-image__left-title {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 26px;
    font-style: italic;
}
.list-with-big-image .list-with-big-image__left-subtitle {
    color: #FFF;
    font-weight: 400;
    margin: 0;
    font-size: 16px;
}
.list-with-big-image .list-with-big-image__heading-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
}
.list-with-big-image .list-with-big-image__heading {
    text-align: center;
    margin-bottom: 30px;
    display: none;
}
.list-with-big-image .list-with-big-image__heading-subtitle {
    color: var(--primary-color);
    margin: 0;
    font-size: 14px;
}
.list-with-big-image .list-with-big-image__right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}
.list-with-big-image .list-with-big-image__right-item {
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    background-color: #FFF;
    justify-content: space-between;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    gap: 10px;
    align-items: center;
    display: flex;
}

.list-with-big-image .list-with-big-image__right-item--diffrent-style {
    background-color: #E17435;
    border-color: white;
    color: white;
}
.list-with-big-image .list-with-big-image__right-item >div {
  display: flex;;
}
.list-with-big-image .list-with-big-image__right-item-arrow::before {
    font-family: 'FontAwesome';
    content: '▶';
    color: var(--primary-color);
    padding-right: 8px;
}
.list-with-big-image .list-with-big-image__right-item--diffrent-style .list-with-big-image__right-item-arrow::before {
    color: white;
}
.list-with-big-image .list-with-big-image__right-item-text {
    color: inherit;
    font-weight: inherit;
}
.list-with-big-image .list-with-big-image__right-item-text:hover {
    color: var(--primary-color);
    cursor: pointer;
    user-select: none;
}
@media(max-width: 1200px) {
    .list-with-big-image .list-with-big-image__left-head {
        padding: 10px 15px;
    }
}
@media(max-width: 768px) {
    .list-with-big-image .list-with-big-image__left {
        display: none;
    }
    .list-with-big-image .list-with-big-image__right {
        width: 100%;
    }
    .list-with-big-image .list-with-big-image__right-item {
        font-size: 16px;
        font-weight: 700;
    }
    .list-with-big-image .list-with-big-image__heading {
        display: block;
    }
}
/* #endregion  list-with-big-image */

/* #region events-shedule */
.events-shedule .events-shedule__wrapper {
    display: flex;
    gap: 30px;
}
.events-shedule .events-shedule__image-block {
    display: flex;
    flex-direction: column;
    box-shadow: 11px 7px 14px 0px rgba(0, 0, 0, 0.15);
}
.events-shedule .events-shedule__items {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.events-shedule .events-shedule__item {
    background-color: #FFF;
    border-radius: 10px;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 11px 7px 14px 0px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.events-shedule .events-shedule__item:nth-child(1) {
    grid-column: span 2;
}
.events-shedule .events-shedule__item:nth-child(2) {
    grid-column: span 2;
}
.events-shedule .events-shedule__image-block img {
    width: 100%;
    max-width: 450px;
    object-fit: cover;
    object-position: center center;
}
.events-shedule .events-shedule__image-block div {
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 26px;
    color: #FFF;
    background-color: var(--primary-color);
    height: 100%;
    font-weight: 700;
    font-style: italic
}
.events-shedule .events-shedule__image-block {
    border-radius: 10px;
    overflow: hidden;
}
.events-shedule .events-shedule__schedule-link {
    color: inherit;
    font-style: italic;
    text-decoration: underline;
    font-size: 16px;
}
.events-shedule .events-shedule__schedule-date {
    font-size: 16px;
}
.events-shedule .events-shedule__schedule-title {
    font-size: 18px;
    font-weight: 700;
}

@media(max-width: 768px) {
    .events-shedule .events-shedule__wrapper {
        flex-direction: column !important;
    }
    .events-shedule .events-shedule__image-block {
        width: 100%;
    }
    .events-shedule .events-shedule__schedule-link {
        font-size: 16px;
    }
    .events-shedule .events-shedule__schedule-date {
        font-size: 16px;
    }
    .events-shedule .events-shedule__schedule-title {
        font-size: 16px;
    }
    .events-shedule .events-shedule__image-block img {
        max-width: unset;
        max-height: 300px;
    }
}
/* #endregion events-shedule */

/* #region news */
.news .news__items {
    display: grid;
    background-color: #FFF;
    box-shadow: 11px 7px 14px 0px rgba(0, 0, 0, 0.15);
    padding: 15px;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 4px;
    grid-template-columns: repeat(3, 1fr);
}
.news .news__item {
    padding: 10px 15px;
}
.news .news__title {
    font-size: 18px;
}
.news .news__text {
    font-size: 16px;
}
.news .news__link a {
    font-size: 16px;
    text-decoration: underline;
    color: inherit;
    text-align: right;
    margin-top: 16px;
    display: inline-block;
}
.news .news__link {
    text-align: right;
}
@media(max-width: 768px) {
    .news .news__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media(max-width: 560px) {
    .news .news__items {
        grid-template-columns: 1fr;
    }
    .news .news__title {
        font-size: 16px;
    }
    .news .news__text {
        font-size: 14px;
    }
}
/* #endregion news */

/* #region list-with-image */
.list-with-image .list-with-image__title {
    font-size: 22px;
    text-align: center;
}
.list-with-image .list-with-image__wrapper {
    padding: 15px;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 11px 7px 14px 0px rgba(0, 0, 0, 0.15);
}
.list-with-image .list-with-image__item {
    display: flex;
    padding: 10px 30px;
    align-items: center;
    background-color: var(--primary-color);
    justify-content: space-between;
    margin-bottom: 1px;
    overflow: hidden;
}
.list-with-image .list-with-image__item:last-child {
    margin-bottom: 0;
}
.list-with-image .list-with-image__text {
    font-size: 26px;
    color: #FFF;
    margin-right: 20px;
    font-weight: 700;
}

.list-with-image .list-with-image__image-wrapper {
    position: relative;
}
.list-with-image .list-with-image__items {
    border-radius: 4px;
    overflow: hidden;
}
.list-with-image .list-with-image__first-color {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    scale: 1.25;
    z-index: 4;
}
.list-with-image .list-with-image__second-color {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    scale: 1.6;
    z-index: 3;
}
.list-with-image .list-with-image__third-color {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    scale: 2.25;
    z-index: 2;
}
.list-with-image .list-with-image__image {
    position: relative;
    z-index: 5;
    max-width: 80px;
    max-height: 80px;
}
@media(max-width: 768px) {
    .list-with-image .list-with-image__text {
        font-size: 22px;
    }
    .list-with-image .list-with-image__item {
        padding: 10px 20px;
    }
}
/* #endregion list-with-image */

/* #region faq-v2*/
.faq-v2 .faq-v2__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-v2 .faq-v2__item {
    background-color: #FFF;
    border: 1px solid var(--primary-color);
}
.faq-v2 .faq-v2__item .accordion-button {
    background-color: unset;
    color: inherit;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 18px;
    border: none;
    box-shadow: none;
}
.faq-v2 .faq-v2__item .accordion-button:focus {
    box-shadow: none;
}
.faq-v2 .faq-v2__item .accordion-body {
    font-size: 18px;
    margin-left: 25px;
    padding-top: 0;
}
.faq-v2 .faq-v2__item .accordion-button::after {
    margin: 0;
    margin-right: 10px;
    content: '▶';
    font-family: 'FontAwesome';
    background-image: none;
    color: var(--primary-color);
    width: fit-content;
    height: fit-content;
}
.faq-v2 .faq-v2__item .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}
@media(max-width: 768px) {
    .faq-v2 .faq-v2__item .accordion-button {
        padding: 10px 20px;
    }
}
/* #endregion faq-v2 */



