:root {
    --font-family: "Haffer";
    --font-size: 16px;
    --font-weight: 300;
    --font-style: normal;
    --line-height: 1.5;
    --heading-font-family: "Noctis";
    --heading-font-weight: 700;
    --heading-line-height: 1.3;
    --accent-color: #186ADC;
    --background-color: #ffffff;
    --text-primary: #000000;
    --link-color: #004D5C;
    --border-color: #000000;
    --placeholder-color: #000000;
    --error-color: #ff3d0d;
    --el-border-radius: 10px;
}

.about-top {
    position: relative;
}

.at-image {
    display: none;
}

.at-main {
    position: relative;
    width: 75vw;
    margin: 0 auto;
}

.at-main > img {
    animation: circleText 80s linear infinite;
}

.atm-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38.55vw;
    height: 38.55vw;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.at-breadcrumbs {
    position: relative;
    margin: 1rem 0 2rem 0;
}

.about-second-image {
    margin-bottom: 3rem;
}

.abount-info {
    margin: 0 0 -2rem 0;
}

.ai-item {
    margin-bottom: 2rem;
}

.about-image-container {
    display: none;
}

.about-list {
    font-size: 1.5rem;
}

.about-list li {
    position: relative;
}

@media (max-width: 766.98px) {
    .abount-info {
        display: flex;
        flex-wrap: wrap;
    }

    .ai-image {
        order: 1;
    }

    .ai-content {
        order: 2;
    }

    .about-list {
        max-width: 440px;
        margin: 0 auto;
        font-family: var(--heading-font-family), sans-serif;
    }

    .about-list li {
        position: relative;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .about-list li span {
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        transform: translateY(-50%);
        text-align: center;
        padding: 1.5rem;
        font-weight: bold;
        color: var(--background-color);
        z-index: 2;
    }

    .about-list li picture::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .about-list li:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 767px) {
    .about-second-image {
        margin-bottom: 4rem;
    }

    .abount-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 -1rem;
    }

    .ai-item {
        flex-basis: 0;
        flex-grow: 1;
        padding: 0 1rem;
        margin: 0;
    }

    .ai-image {
        max-width: 35rem;
    }

    .ai-content {
        display: flex;
        justify-content: center;
        max-width: 100%;
    }

    .aic-center {
        max-width: 33.5rem;
    }

    .arow {
        display: flex;
    }

    .acol {
        width: 50%;
    }

    .about-list {
        font-size: 2.5vw;
        color: #7F7F7F;
        padding-left: 8.875vw;
    }

    .about-list li {
        position: relative;
        cursor: pointer;
        margin: 0;
        transition: color 0.2s;
    }

    .about-list li::before {
        content: "";
        position: absolute;
        left: -1.875vw;
        top: 50%;
        min-width: auto;
        width: 0.521vw;
        height: 0.521vw;
        transform: translateY(-50%);
        background-color: #DA8000;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .about-list li picture {
        display: none;
    }

    .about-list li:hover {
        color: var(--text-primary);
    }

    .about-list li.active {
        color: var(--text-primary);
    }

    .about-list li.active::before {
        opacity: 1;
    }

    .about-image-container {
        display: block;
        border-radius: 50%;
        overflow: hidden;
    }

    .about-image-container::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.4;
        z-index: 2;
    }

    .aic-counter {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 4.16675vw;
        font-family: var(--heading-font-family), sans-serif;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.5);
        white-space: nowrap;
        z-index: 3;
    }

    .aicc-current {
        font-size: 8.3335vw;
        color: #fff;
    }
}

@media (min-width: 767px) and (min-height: 500px) {
    .about-top-min .at-image {
        height: 100%;
    }

    .at-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        pointer-events: none;
        display: block;
    }

    .at-breadcrumbs {
        margin: 0;
    }

    .at-breadcrumbs .breadcrumbs {
        position: absolute;
        left: 0;
        top: 4.5vw;
    }
}

@media (min-width: 1024px) {
    .about-second-image {
        max-width: 66.15vw;
    }

    .about-second-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .about-second-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .about-second-header .section-heading {
        width: 100%;
        margin-bottom: 0;
    }

    .about-second-header .section-desc {
        width: 100%;
        max-width: 28rem;
    }
}

@media (min-width: 1440px) {
    .about-second-image {
        margin-bottom: 5rem;
    }
}

@media (min-width: 1601px) {
    .about-second-header .section-desc {
        max-width: 32rem;
    }

    .ai-image {
        max-width: 40.75rem;
    }

    .aic-center {
        max-width: 37rem;
    }
}

@media (min-width: 1920px) {
    .about-second-header .section-desc {
        max-width: 34.375rem;
    }

    .at-main {
        width: 1440px;
    }

    .atm-img {
        width: 740px;
        height: 740px;
    }

    .at-breadcrumbs .breadcrumbs {
        top: 5.375rem;
    }

    .about-second-image {
        max-width: 1270px;
    }

    .ai-image {
        max-width: 42.625rem;
    }

    .aic-center {
        max-width: 42.625rem;
    }

    .about-list {
        font-size: 3rem;
        padding-left: 10.625rem;
    }

    .about-list li::before {
        left: -2.25rem;
        width: 0.625rem;
        height: 0.625rem;
    }

    .aic-counter {
        font-size: 5rem;
    }

    .aicc-current {
        font-size: 10rem;
    }
}
