section.why_choose_area {
    padding: 40px 0 28px;
    position: relative;
    z-index: 1;
    background: url(../images/home-three/service-bg3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.why_choose_area::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
/*    background: #053131E6;*/
    content: "";
    z-index: -1;

}

.why_choose_thumb img {
    width: 100%;
    border-radius: 20px;
}

.why_choose_single_item {
    display: flex;
    gap: 25px;
    padding: 0;
    border-radius: 10px;
    position: relative;
    z-index: 1;
/*    align-items: center;*/
    background: #fff;
    padding: 12px 30px 32px;
    border: 1px solid #0c6e6d;
    transition: .5s;
    margin-bottom: 20px;
}

.why_choose_single_item:hover {
    background: #e53925;
    margin-left: -10px;
}

.choose_icon {
    margin-right: 0;
    flex-shrink: 0;
    position: relative;
}

.choose_content h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    padding-top: 20px;
    color: #002032;
    margin: 0 0 9px;
}

.choose_content p {
    margin: 0;
    color: #0f1d35;
}

.choose_icon {
    background: #e53925;
    color: #fff;
    width: 75px;
    height: 75px;
/*    line-height: 75px;*/
    font-size: 28px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    transition: 0.5s;
}

.why_choose_single_item .round-circle:before {
    position: absolute;
    content: '';
    background: #e53925;
    width: 8px;
    height: 8px;
    left: 10px;
    bottom: 9px;
    border-radius: 50%;
    z-index: 1;
}

.why_choose_single_item .round-circle {
    position: absolute;
    width: 95px;
    height: 95px;
    left: -10px;
    top: -10px;
    border: 2px solid #e53925;
    border-radius: 50%;
    clip-path: polygon(0% 0%, 50% 0%, 50% 100%, 0% 100%, 0 0);
    transition: all 500ms ease;
    animation: service_hexagon 2s infinite linear;
    animation-play-state: paused;
    opacity: 0;
}

.why_choose_single_item:hover .round-circle:before {
    position: absolute;
    content: '';
    background: #e53925;
    width: 8px;
    height: 8px;
    left: 10px;
    bottom: 9px;
    border-radius: 50%
}

.why_choose_single_item:hover .round-circle {
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 1;
}

.why_choose_single_item:hover .round-circle {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0)
}

.why_choose_single_item.active .round-circle {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0)
}

.why_choose_single_item.active .round-circle {
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 1;
}

.why_choose_single_item.active .round-circle {
    opacity: 1;
}

@keyframes service_hexagon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes service_hexagon {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes service_hexagon {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes service_hexagon {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}