/* Hero Section */
.about_hero_section_content_title {
    text-align: center;
    padding: 150px 0px;
}

.about_hero_section {
    padding-bottom: 160px;
    margin-top: 100px;
}

.about_hero_section h2 {
    margin-bottom: 70px;
}

/* About Section */
.about_section {
    padding: 180px 0px;
    background-color: #132A3E;
}

.about_section_content h2 {
    max-width: 686px;
    margin: 25px 0px;
}

.about_section_wrapper {
    display: flex;
    gap: 164px;
}

.about_section_content_left,
.about_section_content_right {
    max-width: 686px;
}

.about_section_content_list {
    padding: 30px 0px 40px 0px;
}

.about_section_content_list p {
    margin-bottom: 5px;
}

.about_section_wrapper p {
    color: #FFFFFF;
}

.about_section_image {
    margin-top: 125px;
	text-align: center;
}

/* Hero Content Elements */
.about_hero_section_content_line {
    height: 48px;
    width: 4px;
    background-color: #0B0C13;
}

.about_hero_section_content_dot {
    width: 10px;
    height: 10px;
    background-color: #0B0C13;
    border-radius: 50%;
    margin: 16px 0px;
}

.about_hero_section_content {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    gap: 30px;
    flex-direction: column;
    max-height: 600px;
    overflow-y: auto;
    padding: 30px;
}

.about_hero_section_content::-webkit-scrollbar {
    width: 12px;
}

.about_hero_section_content::-webkit-scrollbar-thumb {
    background-color: #E30613;
    border-radius: 6px;
    border: 2px solid #fff;
}

.about_hero_section_content::-webkit-scrollbar-track {
    background-color: #fff;
}


.about_hero_section_content_dot_line {
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
    align-items: center;
}

.about_hero_section_content_numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    padding-right: 50px;
}

.about_hero_section_content_numbers p {
    margin-bottom: 130px;
}

.about_hero_section_content_numbers p:last-child {
    margin-bottom: 0px;
}

.about_hero_section_content_item {
    display: flex;
}

/* Content Box Styles */
.about_hero_section_content_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.about_hero_section_content_box_item {
    padding: 24px 44px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #0000001A;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.about_hero_section_content_box_item p {
    color: #0B0C13;
    line-height: 100%;
    font-size: 16px;
}

.cta_title h2,
.cta_title p {
    color: #000000;
}

.about_hero_section_content_box_item_number p {
    color: #0B0C13;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 10px;
}


/* Active State Styles */
.about_hero_section_content_item.active .about_hero_section_content_box_item {
    padding: 24px 44px;
    background-color: #D62220;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about_hero_section_content_item.active .about_hero_section_content_dot {
    background-color: #D62220;
}

.about_hero_section_content_item.active .about_hero_section_content_box_item_content p,
.about_hero_section_content_item.active .about_hero_section_content_box_item_number p {
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.about_hero_section_content_item.active .about_hero_section_content_line:first-child {
    background: linear-gradient(180deg, #0B0C13 0%, #E30016 100%);
    transition: all 0.3s ease;
}

.about_hero_section_content_item.active .about_hero_section_content_line:last-child {
    background: linear-gradient(180deg, #E30016 0%, #0B0C13 100%) !important;
    transition: all 0.3s ease;
}

/* Layout Wrappers */
.about_hero_section_content_wrapper {
    display: flex;
}

.about_hero_section_content_image {
    width: 50%;
    padding-left: 160px;
}

/* Media Queries */
@media(max-width: 1440px) {
    .about_hero_section_content_image {
        padding-left: 100px;
    }

    .about_hero_section_content_numbers {
        padding-right: 30px;
    }
}

@media(max-width: 1240px) {
    .about_section {
        padding: 100px 0px;
    }

    .about_section_wrapper {
        gap: 100px;
    }

    .about_hero_section_content_image {
        padding-left: 0px;
    }

    .about_hero_section_content_wrapper {
        flex-direction: column;
    }

    .about_hero_section_content {
        width: 100%;
        margin-bottom: 40px;
    }

    .about_hero_section_content_image,
    .about_hero_section_content_image img {
        width: 100%;
    }

    .about_hero_section_content_box {
        width: 100%;
    }
}

@media(max-width: 991px) {
    .about_section {
        padding: 80px 0px;
    }

    .about_section_wrapper {
        flex-direction: column;
    }

    .about_section_content_left,
    .about_section_content_right {
        max-width: 100%;
    }

    .about_section_content_list p {
        margin-bottom: 20px;
    }

    .about_hero_section .container {
        padding: 0px 32px;
    }
}

@media(max-width: 767px) {
    .about_section .container {
        padding: 0px 16px;
    }

    .about_section {
        padding: 64px 0px;
    }

    .about_section_image {
        margin-top: 35px;
    }

    .about_section_wrapper {
        gap: 18px;
    }

    .cta_title {
        padding: 64px 32px;
        text-align: center;
    }

    .cta_title h2 {
        margin-bottom: 35px;
    }

    .about_section_content h3,
    .about_section_content h2,
    .about_section_wrapper {
        padding: 0px 16px;
    }
}

@media(max-width: 575px) {
    .about_hero_section_content_numbers {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about_hero_section_content_dot {
        margin: 8px 0px;
    }

    .about_hero_section_content_line {
        height: 40px;
    }

    .about_hero_section_content_box_item {
        padding: 16px;
    }

    .about_hero_section_content_box_item_number p {
        font-size: 24px;
    }

    .about_hero_section_content_item.active .about_hero_section_content_box_item {
        padding: 16px;
    }

    .about_hero_section {
        padding-bottom: 80px;
    }

    .about_hero_section_content_title {
        padding-bottom: 130px;
        padding-top: 72px;
    }
    .about_hero_section .container{
        padding: 0px 16px;
    }
}