.why-choose {
    background: rgb(239 246 255);
}
.choose-wrapper {
    border-radius: 40px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    overflow: hidden;
    display: flex;
}
.choose-content {
    width: 50%;
    padding: 70px;
}
.choose-image {
    width: 50%;
    min-height: 400px;
    position: relative;
}
.choose-image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 76 140 / 10%);
}
.choose-content h2 {
    margin-bottom: 28px;
}
.choose-content .highlight-text {
    color: rgb(0 163 224);
}
.choose-list{
    margin: 0;
}
.choose-list li {
    display: flex;
    align-items: start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.375;
    margin: 0 0 15px;
    color: #64748b;
    font-weight: 600;
}
.choose-list li:last-child{
    margin: 0;
}
.choose-image img {
    height: 100%;
    object-fit: cover;
}
.choose-content .cta-button {display: inline-flex;align-items: center;background: #00a3e0;color: #ffffff;font-weight: 600;font-size: 16px;/*line-height: 21px;*/padding: 12px 24px;border-radius: 0.375rem;text-decoration: none;transition: all 0.3s ease;box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);margin: 42px 0 0;}
.choose-content .btn-icon {
    height: 17.5px;
    width: 17.5px;
}
.choose-content .cta-button:hover svg {
    transform: translateX(0.25rem);
}
.choose-content .cta-button:hover {
    background: #0e85c5;
}
.choose-list li:hover .feature-icon img {
    filter: brightness(0) invert(1);
}
.choose-list li:hover .feature-icon {
    background: #00a3e0;
}
.choose-list li:hover {
    color: #0f172a;
}

@media screen and (max-width:767px){
    .choose-wrapper {
        flex-direction: column;
    }
    .choose-content {
        width: 100%;
        padding: 30px;
    }
    .choose-image {
        width: 100%;
    }
    .choose-image img {
        min-height: 400px;
    }
    .choose-content .cta-button{
        margin: 25px 0 0;
        padding: 12px;
        font-size: 14px;
        line-height: normal;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .choose-content {
        padding: 30px;
    }
    .choose-content .cta-button{
        margin: 25px 0 0;
    }
    .choose-list li {
        gap: 10px;
        font-size: 14px;
    }
}