/* =========================================
   About Section – MM Stimme Modern
   ========================================= */

#about-us {
    padding: 60px 0 90px;
}

/* === Inner Wrapper === */
#about-us .inner_content {
    background: #000;
    padding: 45px;
    border-radius: var(--radius-lg);
    color: #fff;
}

/* Headline */
#about-us .inner_content .content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

#about-us .inner_content .content h3 span.split {
    color: var(--ci-accent-light);
}

/* Paragraphs */
#about-us .inner_content .content p {
    margin-bottom: 30px;
    position: relative;
    color: #fff;
}

/* Underline highlight */
#about-us .inner_content .content p.txt1:after {
    content: "";
    height: 6px;
    width: 60px;
    background: var(--ci-accent-light);
    border-radius: 9px;
    position: absolute;
    bottom: -15px;
    left: 0;
}

/* =========================================
   Counter Section
   ========================================= */

#about-us .counter {
    margin-top: 30px;
}

#about-us .counter .counter_content {
    text-align: center;
    padding: 0 17px;
}

#about-us .counter .counter_content .num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#about-us .counter .counter_content .num span {
    font-size: 25px;
    font-weight: 700;
}

#about-us .counter .counter_content h5 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
}

/* Divider between counters */
#about-us .counter .c-col {
    position: relative;
}

#about-us .counter .c-col:before {
    content: '';
    height: 30px;
    width: 1px;
    background: #fff;
    position: absolute;
    left: 5px;
    top: 50%;
}

#about-us .counter .c-col:first-child:before {
    content: none;
}

/* =========================================
   Right Image Section
   ========================================= */

#about-us .about_right_img {
    position: relative;
}

/* Main masked image */
#about-us .about_right_img .main_image {
    position: relative;
    height: 450px;
    width: 450px;
    max-width: 100%;
}

#about-us .about_right_img .main_image img {
    height: 100%;
    width: 100%;
    display: block;
    margin-left: 226px;
    z-index: 2;
    position: relative;

    /* Mask */
    -webkit-mask-image: url(assets/images/about/shape1.png);
    mask-image: url(assets/images/about/shape1.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

/* Circular border ring */
#about-us .about_right_img .main_image:after {
    content: "";
    height: 100%;
    width: 100%;
    border: 120px solid var(--ci-accent-light);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Accent shapes */
#about-us .about_right_img:before {
    content: "";
    height: 70px;
    width: 70px;
    background: var(--ci-accent-light);
    position: absolute;
    bottom: -20px;
    right: -15px;
    border-radius: 6% 50% 50% 50%;
}

#about-us .about_right_img:after {
    content: "";
    height: 170px;
    width: 170px;
    background: var(--ci-accent-dark);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50% 50% 4% 50%;
}

/* =========================================
   Overlay Items (icons + labels)
   ========================================= */

#about-us .about_right_img .overlay_items {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top label */
#about-us .about_right_img .overlay_items h4 {
    font-size: 14px;
    font-weight: 600;
    background: var(--ci-primary);
    padding: 4px 15px;
    border-radius: 50px;
    margin: 60px 0 0 30px;
}

/* Icon bubble */
#about-us .about_right_img .overlay_items .icon {
    text-align: center;
    margin: 0 0 30px -35px;
}

#about-us .about_right_img .overlay_items .icon i {
    font-size: 14px;
    background: var(--ci-primary);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
}

/* Bottom label */
#about-us .about_right_img .overlay_items h5 {
    font-size: 14px;
    background: var(--ci-primary);
    border-radius: 50px;
    padding: 0 8px;
    width: max-content;
    line-height: 40px;
    position: relative;
    left: 20%;
}

#about-us .about_right_img .overlay_items h5 i {
    color: var(--ci-accent);
    background: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}
