.why-choose-section .column-row {
    justify-content: space-between;
    flex-direction: row-reverse;
}
.why-choose-section .left-col {
    width: 50%;
}

.why-choose-section .right-col {
    width: 47%;
}

.why-choose-section .image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-choose-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;
}

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

.why-choose-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;
}

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

.why-choose-section .section-title {
    max-width: 540px;
}

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

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

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

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


.why-choose-section .about-text ul li span {
    display: block;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}
.why-choose-section .about-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    display: block;
    background-color: var(--blue);
    border-radius: 50%;
}

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

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

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

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


@media only screen and (max-width: 991px) {
    .why-choose-section .column-row {
        align-items: flex-start;
    }

.why-choose-section .left-col {
    width: 100%;
    margin-bottom: 30px;
}
.why-choose-section .about-text ul{
    margin-bottom: 0;
}
    .why-choose-section .right-col {
        width: 100%;
    }

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

}