.about-section .column-row {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.about-section .column-row:not(:has(.total-experience)) {
    margin-bottom: 0px;
}

.about-section .left-col {
    width: 50%;
    position: relative;
}

.about-section .image-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 103.5%;
}

.about-section .image-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #375b974a;
    z-index: 1;
    transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    right: 0;
    bottom: 0;
    margin: auto;
}

.about-section .image-wrapper:hover:before {
    transform: translateX(0%);
}

.about-section .image-wrapper img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0);
    transition: transform 1s ease-out;
}

.about-section.in-view .image-wrapper img {
    transform: scale(1);
}

.about-section .right-col {
    width: 44.167%;
}

.total-experience {
    padding: 20px;
    background-color: var(--blue);
    display: inline-block;
    position: absolute;
    bottom: -43px;
    z-index: 1;
}

.total-experience .h2 {
    margin: 0;
    color: #fff;
}

.about-section .section-title {
    text-align: left;
    max-width: 100%;
    margin-bottom: 0;
}

.about-section .about-text p {
    margin-bottom: 20px;
}

.about-section .about-text ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.about-section .about-text ul li:not(:last-child) {
    margin-bottom: 10px;
}

.about-section .about-text ul li {
    position: relative;
    padding-left: 20px;
}

.about-section .about-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 11px;
    height: 12px;
    display: block;
    background-color: var(--blue);
    border-radius: 50%;
}

.about-section .about-text .btn {
    margin-top: 10px;
}

.about-text h3 {
    font-size: 20px;
    line-height: normal;
}

.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
}

.counter-wrapper .counter-col {
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.counter-wrapper .counter-box {
    padding: 30px 30px 30px 30px;
    border: 1px solid var(--white);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.09);
    text-align: center;
    height: 100%;
}

.counter-box span.icon {
    width: 50px;
    display: block;
    margin: 0 auto 15px;
    height: 50px;
}

.counter-box span.icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter-box span.icon svg path {
    fill: var(--blue);
}

.counter-box span.icon:hover {
    animation: icon-move 0.8s ease-in-out;
}

.counter-wrapper.two-column-box {
    margin-top: 140px;
}

.counter-wrapper.two-column-box .counter-col {
    width: 50%;
}


@keyframes icon-move {
    16.65% {
        transform: translateX(8px)
    }

    33.3% {
        transform: translateX(-6px)
    }

    49.95% {
        transform: translateX(4px)
    }

    66.6% {
        transform: translateX(-2px)
    }

    83.25% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(0)
    }
}

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

    .about-section .about-text p,
    .about-section .about-text ul {
        margin-bottom: 15px;
    }

    .total-experience {
        padding: 10px 15px;
        bottom: -25px;
    }

    .total-experience .h2 {
        margin: 0;
        color: #fff;
        font-size: 20px;
        line-height: normal;
    }

    .counter-wrapper .counter-box {
        padding: 20px;
    }

    span.icon.svg-fill {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .counter-wrapper.two-column-box {
        margin-top: 100px;
    }
}


@media only screen and (max-width: 991px) {
    .about-section .column-row {
        margin-bottom: 40px;
    }

    .about-section .left-col {
        width: 100%;
        margin-bottom: 50px;
    }

    .about-section .right-col {
        width: 100%;
    }

    .about-section .image-wrapper {
        padding-bottom: 80%;
    }

    .counter-wrapper {
        margin-top: 30px;
    }

    .counter-wrapper.two-column-box {
        margin-top: 0;
    }

    .about-text h3 {
        font-size: 18px;
    }

    .counter-wrapper .counter-col {
        width: 50%;
    }

    .about-section .left-col:not(:has(.total-experience)) {
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 767px) {
    .counter-wrapper.two-column-box .counter-col {
        width: 100%;
    }

    .counter-wrapper .counter-col {
        width: 100%;
    }

    .counter-wrapper .counter-col:last-child {
        margin-bottom: 0;
    }
}