.about-section .about-wrapper {
    display: flex;
    gap: 43px;
}

.about-section .about-info {
  padding-left: 100px;
}


.about-section .about-image {
    padding-top: 15px;
    min-width: 430px;
}

.about-section .about-container {
    padding-top: 80px;
    padding-bottom: 100px;
}

.about-section .hero-title {
    font-style: normal;
    font-weight: 800;
    font-size: 48px;
    line-height: 59px;
    letter-spacing: 0.02em;
    color: #EE3235;
    max-width: 873px;
    width: 100%;
    margin-bottom: 50px;
    padding-left: 100px;
}

.about-section .icon {
    width: 100%;
    height: 100%;
    max-height: 45px;
    max-width: 49px;
    margin-top: -7px;
}

.about-section .title-wrapper::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    left: -100px;
    top: 50%;
    background: #EE3235;
}
.about-section .title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: 0.02em;
}

.about-section .title-wrapper {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
}

.about-section .subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #EE3235;
    margin-bottom: 27px;
    margin-top: 8px;
}

.about-section .description {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
}

.about-section .description /deep/ p {
    margin-bottom: 18px;
}


.about-section .image {
    max-width: 470px;
}

.about-section .number-wrapper {
    position: relative;
    display: flex;
    padding-left: 70px;
    padding-top: 40px;
    gap: 25px;
}

.about-section .number-wrapper::before {
    content: '';
    position: absolute;
    background: #F6F8FB;
    width: 100VW;
    left: 15%;
    height: 100vh;
    top: -86vh;
    z-index: -1;
}

.about-section .tagline {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-top: 15px;
}

.about-section .number {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    display: block;
    margin-bottom: -68px;
    margin-left: 27px;
    margin-top: 28px;
}

.about-section .two-decimal {
    margin-left: 40px;
}

.about-section .one-decimal {
    margin-left: 45px;
}

.about-section .single-chart {
    width: 115px;
}

.about-section .circle-container {
    position: relative;
}


.about-section .circular-chart {
  display: block;
}

.about-section .circle-bg {
  fill: none;
  stroke: white;
  stroke-width: 5;
}

.about-section .circle {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

.desktop-description {
    display: block;
}

.mobile-description {
    display: none;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.about-section .circular-chart.red .circle {
  stroke: #EE3235;
}

@media only screen and (max-width: 1024px) {

    .about-section .about-container {
        padding-top: 50px;
    }
    .about-section .about-info {
        padding-left: 20px;
    }

    .about-section .image {
        max-width: 100%;
    }

    .about-section .about-image {
        padding-right: 20px;
        max-width: 40%;
    }

    .about-section .hero-title {
        padding-left: 20px;
        width: 90%;
        font-size: 45px;
        line-height: 53px;
        letter-spacing: 0;
    }

    .about-section .number-wrapper {
        padding-left: 0px;
    }
}


@media only screen and (max-width: 768px) {
    .desktop-description {
        display: none;
    }

    .mobile-description {
        display: block;
    } 

    .about-section .number-wrapper {
        display: none;
    }

    .about-section .about-info {
        padding-left: 32px;   
        padding-right: 32px;
        margin-top: 45px;
    }

    .about-section .title-wrapper::before {
        display: none;
    }

    .about-section .about-wrapper {
        flex-direction: column-reverse;
        gap: 0;
    }

    .about-section .about-image {
        padding-right: 0px;
    }

    .about-section .hero-title {
        padding-left: 0;
        margin-bottom: 0;
        font-weight: 800;
        font-size: 27px;
        line-height: 34px;
        letter-spacing: 0.02em;
        padding: 30px;
        width: auto;
        background: #F6F8FB;
    }

    .about-section .about-container {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .about-section .about-image {
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F6F8FB;
        max-width: 100%;
    }

    .about-section .image {
        max-width: unset;
        height: 260px;
        width: 100%;
        object-fit: cover;
    }

    .about-section .image /deep/ img{
        border-radius: 0 !important;
    }

    .about-section .subtitle {
        margin-bottom: 27px;
        font-weight: 600;
        font-size: 15px;
        line-height: 18px;
        letter-spacing: 0;
        margin-top: 12px;
    }

    .about-section .title {
        font-weight: 700;
        font-size: 30px;
        line-height: 35px;
        letter-spacing: 0;
    }

    .about-section .icon {
        max-height: 30px;
        max-width: 33px;
        margin-top: -3px;
    }    

    .about-section .title-wrapper {
        gap: 10px;
    }
}