body {
    overflow-x: hidden;
}

.about-hero__wrapper {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    padding-top: 160px;
}

.about-hero__head {
    display: flex;
    justify-content: space-between;
    max-width: 90%;
    margin-bottom: 80px;
}

.about-hero__title {
    font-size: 64px;
    line-height: 100%;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.about-hero__desc {
    max-width: 700px;
    font-size: 24px;
    line-height: 160%;
    font-weight: 500;
}

.about-hero__desc strong {
    color: #CF141F;
}

.about-hero__image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

/*

Stats

*/

.about-stats__wrapper {
    margin-top: 80px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-items: start;
}

.about-stats__item-title {
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 24px;
}

.about-stats__item-desc {
    color: #00000099;
    font-size: 16px;
    line-height: 160%;
}

/*

Values

*/

.about-values__wrapper {
    margin-top: 84px;
}

.about-values {
    padding-top: 84px;
    border-top: 1px solid #00000026;
}

.about-values__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 160%;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.about-values__title strong {
    color: #CF141F;
}

.about-values__bg {
    font-size: 400px;
    font-family: 'Oswald', sans-serif;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: -13px;
    color: white;
    margin-top: 50px;
    user-select: none;
    text-align: center;
}

.about-values__items {
    width: 665px;
    height: 665px;
    margin: 0 auto;
    margin-top: -250px;
    position: relative;
}

.about-values__item {
    position: absolute;
    width: 380px;
    height: 380px;
    background: white;
    border-radius: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.about-values__item-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    line-height: 130%;
}

.about-values__item:nth-child(1),
.about-values__items-border:nth-child(2) {
    top: 0;
    left: 0;
}

.about-values__item:nth-child(3),
.about-values__items-border:nth-child(4) {
    top: 0;
    right: 0;
}

.about-values__item:nth-child(5),
.about-values__items-border:nth-child(6) {
    bottom: 0;
    left: 0;
}

.about-values__item:nth-child(7),
.about-values__items-border:nth-child(8) {
    bottom: 0;
    right: 0;
}

.about-values__items-border {
    width: 380px;
    height: 380px;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 100%;
    z-index: 5;
}

.about-values__items-center {
    width: 180px;
    height: 180px;
    background: #CF141F;
    box-shadow: 0px 0px 24px 4px #FFFFFFCC inset;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: absolute;
    border-radius: 100%;
    top: 243px;
    left: 243px;
}

.about-values__items-center img {
    filter: brightness(0) invert(1);
}

/*

Timeline

*/

.about-timeline__wrapper {
    background: #1F2634;
    margin-top: 120px;
    padding: 64px 0;
}

.about-timeline_title-wrapper {
    display: flex;
    justify-content: space-between;
}

.about-timeline__title {
    font-size: 64px;
    color: white;
    font-family: 'Oswald', sans-serif;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 500;
}

.about-timeline {
    margin-top: 64px;
    position: relative;
}

.about-timeline::after {
    content: "";
    background: linear-gradient(270deg, #1F2634 0%, rgba(31, 38, 52, 0) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 400px;
    z-index: 1;
    pointer-events: none;
}

.about-timeline .swiper-slide {
    height: auto;
}

.about-timeline__item-year {
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1px;
    color: white;
    transition: all .3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.swiper-slide-active .about-timeline__item-year {
    color: #FF323E;
}

.about-timeline__item-line {
    height: 2px;
    width: 100%;
    background: #FFFFFF33;
    margin: 40px 0;
}

.about-timeline__item-line::after {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background: #1F2634;
    border: 1px solid #4C515D;
    border-radius: 100%;
    transition: all 1s ease-in-out;
    position: absolute;
    left: 0;
    margin-top: -5px;
}

.swiper-slide-active .about-timeline__item-line::after {
    background: #CF141F;
    border-color: #CF141F;
}

.about-timeline__item-title {
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: white;
    width: 80%;
    min-height: 60px;
    margin-bottom: 40px;
}

.about-timeline__item-desc {
    color: #FFFFFFB2;
    line-height: 160%;
    width: 80%;
    font-size: 14px;
}

/*

Activity

*/

.about-activity__wrapper {
    margin-top: 120px;
}

.about-activity {
    display: flex;
    gap: 200px;
    position: relative;
}

.about-activity__left {
    max-width: 300px;
    position: absolute;
}

.about-activity__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    width: 300px !important;
}

.about-activity__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
    padding-left: 400px;
}

.about-activity__item {
    width: calc(50% - 7.5px);
    background: white;
    border-radius: 24px;
    padding: 32px;
}

.about-activity__item-icon {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #CF141F0D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.about-activity__item-title {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.about-activity__item-desc {
    line-height: 160%;
    color: #00000099;
}

/*

Goals

*/

.about-goals__wrapper {
    margin-top: 120px;
}

.about-goals {
    padding-top: 120px;
    border-top: 1px solid #00000026;
    display: flex;
    gap: 130px;
}

.about-goals__image {
    width: 58%;
    object-fit: cover;
    border-radius: 24px;
}

.about-goals__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

.about-goals__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 160%;
}

.about-goals__title strong {
    color: #CF141F;
}

.about-goals__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-goals__item {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 100%;
}

.about-goals__item-icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-goals__item-title {
    color: #000000CC;
    width: 70%;
}

/*

Priority

*/

.about-priority__wrapper {
    margin-top: 120px;
}

.about-priority {
    padding-top: 120px;
    border-top: 1px solid #00000026;
}

.about-priority__title {
    font-size: 24px;
    line-height: 160%;
    font-weight: 500;
    margin-left: 470px;
    max-width: 650px;
    margin-bottom: 60px;
}

.about-priority__title strong {
    color: #CF141F;
}

.about-priority__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: fit-content;
    margin-left: 470px;
}

.about-priority__item {
    padding: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    gap: 400px;
    width: fit-content;
}

.about-priority__item-number {
    color: #CF141F;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}

.about-priority__item-content {
    flex: 1;
    max-width: 550px;
}

.about-priority__item-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 650px;
}

.about-priority__item-desc {
    font-size: 16px;
    color: #00000099;
    max-width: 650px;
    line-height: 160%;
}

/*

Team

*/

.about-team__wrapper {
    margin-top: 120px;
}

.about-team__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 40px;
}

.about-team__items {
    display: flex;
    gap: 15px;
}

.about-team__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.about-team__item-image {
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    background: white;
}

.about-team__item-title {
    line-height: 160%;
    font-weight: 400;
    margin-bottom: 8px;
}

.about-team__item-desc {
    font-size: 12px;
    line-height: 150%;
    color: #00000080;
    max-width: 100%;
}

.about-team__button {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    margin-top: 40px;
}

/*

Partners

*/

.about-partners__wrapper {
    margin-top: 160px;
    background: #FFFFFF99;
    padding: 64px 0;
}


.about-partners__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 40px;
}

.about-partners__items {
    display: flex;
    gap: 15px;
}

.about-partners__item {
    flex: 1;
    border: 1px solid #C6CEDC;
    height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-partners__item img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.about-partners__footer {
    margin-top: 40px;
    max-width: 600px;
    margin-left: 526px;
}

.about-partners__desc {
    color: #000000B2;
    line-height: 150%;
    margin-bottom: 40px;
}

/*

Vacancies

*/

.about-vacancies__wrapper {
    margin-top: 60px;
}

.about-vacancies__head {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-vacancies__head h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
}

.about-vacancies__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-vacancies__prev,
.about-vacancies__next {
    background: white;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.about-vacancies__prev.swiper-button-disabled,
.about-vacancies__next.swiper-button-disabled {
    opacity: 50%;
    pointer-events: none;
}

.about-vacancies__item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    min-height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.about-vacancies__item-title {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

.about-vacancies__item-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-vacancies__item-close {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    line-height: 100%;
}

.about-vacancies__item-close_caption {
    color: #00000066;
}

.about-vacancies__button {
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    width: fit-content;
}

/*

Branches

*/


.about-branches__wrapper {
    margin-top: 84px;
}

.about-branches {
    display: flex;
    padding-top: 100px;
    padding-bottom: 0px;
    border-top: 1px solid #00000026;
    gap: 200px;
}

.about-branches__left {
    max-width: 300px;
}

.about-branches__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
}

.about-branches__tabs {
    flex: 1;
}

.about-branches__tabs-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.about-branches__tabs-controls__btn {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
    color: #00000099;
    font-size: 16px;
    font-weight: 400;
    font-family: "eUkraine", sans-serif;
    cursor: pointer;
    line-height: 100%;
    transition: all .3s ease-in-out;
}

.about-branches__tabs-controls__btn.active, .about-branches__tabs-controls__btn:hover {
    box-shadow: 0px 0px 24px 4px #FFFFFFCC inset;
    background: #CF141F;
    color: white;
}

.about-branches__items {
    display: none;
    flex-direction: column;
    position: relative;
}

.about-branches__items.active {
    display: flex;
}

.about-branches__items.half::after {
    content: "";
    background: linear-gradient(180deg, rgba(232, 236, 243, 0.23) 0%, #EEF1F7 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.about-branches__item {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding: 16px 0;
    transition: all .3s;
    border-radius: 12px;
    position: relative;
    border: 2px solid transparent;
}

.about-branches__item:hover {
    background: #FBFBFC;
    border: 2px solid #3E46551A;
    padding: 16px;
    padding-right: 0;
    cursor: pointer;
    z-index: 2;
}

.about-branches__item::after {
    content: url("data:image/svg+xml,%0A%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.757157 9.24286L8.96098 1.03904M1.27145 0.667549L9.24244 0.757577L9.33247 8.72857' stroke='%23A6A6A6'/%3E%3C/svg%3E%0A");
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    top: 11px;
    background: #3E46551A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    opacity: 0;
    transition: all .3s;
    z-index: 1;
}

.about-branches__item:hover::after {
    opacity: 1;
}


.about-branches__item-info {
    font-size: 14px;
    display: flex;
    gap: 15px;
}

.about-branches__item-phone {
    color: #CF141F;
}

.about-branches__item-address {
    color: #000000B2;
    margin-right: 170px;
}

.about-branches__button {
    position: absolute;
    bottom: 32px;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-branches__button a {
    background: #eef1f7;
}

/*

Files

*/

.about-files__wrapper {
    margin-top: 64px;
    background: #FFFFFF80;
}

.about-files {
    padding: 64px 0;
}

.about-files__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    margin-bottom: 64px;
}

.about-files__items {
    display: flex;
    gap: 15px;
}

.about-files__item {
    padding: 24px;
    border-radius: 12px;
    flex: 1;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .2s;
}
.about-files__item:hover {
    background: #f3f3f3;
}


.about-files__item-icon {
    width: 40px;
    height: 40px;
}

.about-files__item-title {
    font-size: 16px;
    font-weight: 500;
}

.about-files__desc {
    max-width: 600px;
    margin-top: 40px;
    color: #000000B2;
    margin-left: 526px;
    line-height: 150%;
}

@media (max-width: 768px) {
    .about {
        margin-bottom: 120px;
    }
    .about-hero__wrapper {
        padding-top: 120px;
    }
    .about-team__swiper.mobile {
        display: block!important;
    }
    .about-team__items {
        display: none;
    }
    .container {
        overflow: hidden;
    }
    .about-hero__head {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        gap: 32px;
        margin-bottom: 48px;
    }
    .about-stats__wrapper {
        margin-top: 48px;
    }
    .about-values__wrapper {
        margin-top: 54px;
    }
    .about-hero__title {
        font-size: 40px;
    }
    .about-hero__desc {
        font-size: 16px;
    }
    .about-hero__image {
        height: 240px;
    }
    .about-stats {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .about-stats__item {
        display: flex;
        flex-direction: row;
        padding: 0px;
    }
    .about-stats__item-title {
        font-size: 32px;
        width: 50%;
    }
    .about-stats__item-desc {
        width: 100%;
        font-size: 14px;
    }
    .about-values__items {
        width: 100%;
        height: 350px;
        margin: 0 auto;
        position: relative;
    }
    .about-values__bg {
        font-size: 120px;
        display: flex;
        justify-content: center;
        transform: translateY(30px);
        margin-top: 0px;
    }
    .about-values__title {
        font-size: 16px;
    }
    .about-values__item, .about-values__items-border {
        width: 200px;
        height: 200px;
    }
    .about-values__item img {
        width: 40px;
        height: 40px;
    }
    .about-values__item-title {
        font-size: 20px;
    }
    .about-values__items-center {
        width: 96px;
        height: 96px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

    .about-timeline::after {
        display: none;
    }

    .about-timeline_title-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-goals__wrapper {
        margin-top: 80px;
    }
    .about-priority {
        padding-top: 80px;
    }

    .about-branches__items.half::after {
        z-index: 2;
    }

    .about-activity {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .about-activity__title {
        font-size: 24px;
        position: static!important;
        width: 100%!important;
    }
    .about-activity__left {
        max-width: 100%;
        font-size: 24px;
        position: static!important;
    }
    .about-activity__left div {
        height: auto!important;
    }
    .about-activity__items:not(.mobile) {
        display: none;
    }
    .about-activity__items.mobile {
        display: flex!important;
        row-gap: 15px;
        padding: 0px!important
    }
    .about-activity__item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
        padding-top: 20px;
        width: 100%;
    }
    .about-activity__item-wrapper {
        flex: 1;
    }
    .about-activity__item-title {
        font-size: 16px;
        text-align: left;
    }
    .about-activity__item-desc {
        font-size: 14px;
        text-align: left;
    }
    .about-activity__item-icon {
        flex: 0 0 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-activity__item-icon img {
        width: 20px;
        height: 20px;
    }
    .about-goals {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .about-goals__image {
        width: 100%;
        height: 280px;
    }
    .about-goals__title {
        font-size: 16px;
    }
    .about-goals__items {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    .about-goals__item {
        display: flex;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }
    .about-vacancies__item-title {
        font-size: 16px;
    }
    .about-vacancies__item-close_date {
        line-height: 150%;
    }
    .about-goals__item-icon {
        width: 40px;
        height: 40px;
    }
    .about-goals__item-icon img {
        width: 20px;
        height: 20px;
    }
    .about-goals__item-title {
        font-size: 14px;
    }
    .about-priority__title {
        margin: 0px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 16px;
        margin-bottom: 32px;
    }
    .about-partners__wrapper {
        margin-top: 100px;
    }
    .about-priority__items {
        gap: 8px;
        margin: 0px!important;
    }
    .about-priority__item-number {
        font-size: 14px;
    }
    .about-priority__item {
        padding-top: 24px;
        padding-right: 16px;
        padding-bottom: 24px;
        padding-left: 16px;
        gap: 20px;
    }
    .about-priority__item-title {
        font-size: 18px;
    }
    .about-priority__item-desc {
        font-size: 14px;
    }
    .about-team__title {
        font-size: 24px;
    }
    .about-team__item-image {
        margin-bottom: 10px;
        object-position: bottom;
        height: 150px;
        object-fit: cover;
    }
    .about-team__item-title {
        font-size: 16px;
    }
    .about-team__button {
        display: flex;
        justify-content: flex-start;
        min-width: 0px;
        width: fit-content;
        margin: 32px 0px;
    }
    .about-partners__title {
        font-size: 24px;
    }
    .about-partners__items {
        gap: 8px;
    }
    .about-partners__item {
        width: 83px;
        height: 80px;
        border-radius: 16px;
    }
    .about-partners__item img {
        height: 100%;
        width: 80px;
        padding: 10px;
        object-fit: contain;
    }
    .about-partners__footer {
        margin: 0;
        margin-top: 30px;
    }
    .about-partners__button {
        min-width: 0px;
    }
    .about-vacancies__head h2 {
        font-size: 24px;
    }
    .about-vacancies__prev, .about-vacancies__next {
        width: 42px;
        height: 42px;
    }
    .about-vacancies__button {
        min-width: 0px;
        display: flex;
        justify-content: flex-start;
        margin: 0;
        margin-top: 30px;
    }
    .about-branches {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0;
        padding-top: 100px;
        border: none;
        padding-top: 0px;
    }
    .about-files__desc {
        margin: 0px;
        font-size: 14px;
        margin-top: 30px;
    }
    .about-branches__button {
        z-index: 3;
    }
    .about-branches__items::after {
        z-index: 2;
    }
    .about-files__title {
        font-size: 24px;
        text-align: justify;
        margin-bottom: 30px;
    }
    .about-branches__left {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        font-size: 24px;
    }
    .about-branches__items {
        gap: 10px;
    }
    .about-branches__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 15px;
    }
    .about-branches__item-info {
        display: none;
    }
    .about-branches__item {
        background: #FBFBFC;
        border: none;
        padding-top: 16px;
        padding-right: 24px;
        padding-bottom: 16px;
        padding-left: 24px;
        cursor: pointer;
        z-index: 2;
        font-size: 16px;
    }
    .about-branches__item::after {
        opacity: 1!important;
    }
    .about-branches__items::after {
        z-index: 2;
    }
    .about-branches__button {
        z-index: 3;
    }
    .about-files__items {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .about-files__title {
        font-size: 24px;
        text-align: justify;
        margin-bottom: 40px;
    }
    .about-files__item {
        padding: 16px;
        border-radius: 16px;
    }
    .about-files__desc {
        margin: 0px;
        margin-top: 30px;
    }
    .about-files__items {
        display: flex;
        flex-direction: column;
    }
}