.about-page-history {
    margin: 40px 0;
}

.about-page-history .about-page-title {
    margin-bottom: 40px;
}

.about-page-history-dots {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(82, 122, 114, 0.35) transparent;
}

.about-page-history-dots::-webkit-scrollbar {
    height: 3px;
}

.about-page-history-dots::-webkit-scrollbar-track {
    background: transparent;
}

.about-page-history-dots::-webkit-scrollbar-thumb {
    background: rgba(82, 122, 114, 0.35);
    border-radius: 2px;
}

.about-page-history-dots:before {
    content: '';
    display: block;
    width: var(--track-width, 100%);
    height: 0;
    border-top: 2px dashed rgba(34, 38, 42, 0.3);
    position: absolute;
    left: 0;
    bottom: 9px;
}

.about-page-history-dots:after {
    content: '';
    display: block;
    width: var(--track-width, 100%);
    height: 0;
    border-top: 2px solid #527A72;
    position: absolute;
    left: var(--left, -100%);
    bottom: 9px;
}

.about-page-history-dots_dot {
    cursor: pointer;
    color: #22262A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.about-page-history-dots_dot:after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-color: #FBF7F4;
    border: 1px solid #527A72;
    box-sizing: border-box;
    margin: 10px auto 0;
    position: relative;
    z-index: 10;
}

.about-page-history-dots_dot:first-child:after {
    margin: 10px auto 0 0;
}

.about-page-history-dots_dot:last-child:after {
    margin: 10px 0 0 auto;
}

.about-page-history-dots_dot.active:after,
.about-page-history-dots_dot.solid:after {
    background-color: #527A72;
}

.about-page-history-item {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.about-page-history-item-content,
.about-page-history-item-img {
    width: calc(50% - 20px);
}

.about-page-history-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-page-history-item-content_name {
    color: #527A72;
    font-size: 68px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 14px;
}

.about-page-history-item-content_text {
    color: #22262A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about-page-history-item-content_text p {
    margin: 0;
}

.about-page-history-item-img img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .about-page-history-item {
        flex-direction: column;
        gap: 30px;
    }

    .about-page-history-item-content,
    .about-page-history-item-img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about-page-history-item-content_name {
        font-size: 44px;
    }
}

@media (max-width: 460px) {
    .about-page-history-dots {
        justify-content: flex-start;
        gap: 0;
        padding-bottom: 10px;
    }

    .about-page-history-dots:before,
    .about-page-history-dots:after {
        bottom: 19px;
    }

    .about-page-history-dots_dot {
        flex: 0 0 52px;
        width: 52px;
        text-align: center;
    }

    .about-page-history-dots_dot:first-child:after,
    .about-page-history-dots_dot:last-child:after {
        margin: 10px auto 0;
    }
}
