.about-section {
    overflow: hidden;
}

.about-section.grey {
    background-color: var(--light-gray);
}

.about-section.blue {
    background: linear-gradient(180deg, #091A3B 0%, #1B376E 100%);
}

.about-section .section-header {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}

.about-section .section-header-left {
    max-width: 72.6%;
    width: 72.6%;
    padding-left: 15px;
    padding-right: 15px;
}

.about-section .section-header-right {
    max-width: 27.4%;
    width: 27.4%;
    padding-left: 15px;
    padding-right: 15px;
}

.about-section .section-header h2 {
    color: var(--dark-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 -15px -80px -15px;
}

.about-item {
    position: relative;
    padding-left: 26px;
    margin: 0 15px 80px 15px;
}

.about-item .line-animate {
    width: 1px;
    height: 0%;
    background: var(--mid-blue);
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: top;
    display: block;
}

.about-item .line-animate::before,
.about-item .line-animate::after {
    content: "";
    position: absolute;
    left: -2px;
    width: 6px;
    height: 1px;
    background: var(--mid-blue);
}

.about-item .line-animate::before {
    top: 0;
}

.about-item .line-animate::after {
    bottom: 0;
}

.about-item.aos-animate .line-animate {
    height: 100%;
    transition: height .9s cubic-bezier(.165, .84, .44, 1) .3s;
}

.about-number h2 {
    color: var(--dark-blue);
}

.about-section .section-header h2:only-child {
    margin: 0;
}

.about-section.blue * {
    color: var(--white) !important;
}

.section-header-right-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.about-section.blue .btn {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--dark-blue) !important;
}

.about-section.blue .btn:focus,
.about-section.blue .btn:hover {
    border: 2px solid var(--light-gray);
    background-color: var(--light-gray) !important;
}

.about-number h2 {
    margin-bottom: 0;
}

.about-item .about-number h2 {
    line-height: 1;
    margin-bottom: 13px;
}

@media (min-width: 768px) {
    .about-grid.two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1199px) {
    .about-number h2 {
        font-family: var(--funnel-display);
        font-size: 60px;
        font-weight: 500;
        line-height: 84px;
    }
}

@media (max-width: 991px) {

    .about-section .section-header-left,
    .about-section .section-header-right {
        max-width: 100%;
        width: 100%;
    }

    .about-section .section-header-right-wrapper {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .about-grid {
        margin-bottom: -40px;
    }

    .about-item {
        margin-bottom: 40px;
        padding-left: 22px;
    }

    .about-section .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .about-section .section-header {
        margin-bottom: 30px;
    }

    .about-section.blue .section-header {
        margin-bottom: 10px;
    }

    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0 0 -30px 0;
    }

    .about-item {
        margin: 0 0 30px 0;
    }

    .about-number h2 {
        font-size: 40px;
        font-weight: 500;
        line-height: 56px;
        margin-bottom: 5px;
    }
}

@media (max-width: 574px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .about-section .btn {
        width: 100%;
    }
}