/*==============================================
  Why Choose One
===============================================*/
.why-choose-one {
    position: relative;
    display: block;
    padding: 60px 0 60px;
    z-index: 1;
}

.why-choose-one__left {
    position: relative;
    display: block;
}

.why-choose-one__left .section-title {
    margin-bottom: 30px;
}

.why-choose-one__list-box {
    position: relative;
    display: block;
    margin-top: 32px;
}

.why-choose-one__list {
    position: relative;
    display: block;
}

.why-choose-one__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--fixpro-white);
    box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 22px 20px 25px;
    border-radius: var(--fixpro-bdr-radius);
    border-bottom: 5px solid var(--fixpro-base);
}

.why-choose-one__list li .icon {
    position: relative;
    display: inline-block;
}

.why-choose-one__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--fixpro-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.why-choose-one__list li:hover .icon span {
    transform: scale(0.9);
}

.why-choose-one__list li .content {
    position: relative;
    display: block;
}

.why-choose-one__list li .content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 5px;
}

.why-choose-one__right {
    position: relative;
    display: block;
    /* margin-right: 360px; */
    margin-left: 20px;
    width: 100%;
}

.why-choose-one__img-box {
    position: relative;
    display: block;
}

.why-choose-one__img {
    /* position: relative; */
    display: block;
    overflow: hidden;
    border-radius: var(--fixpro-bdr-radius);
    z-index: 1;
}

.why-choose-one__img::before {
    /* position: absolute; */
    top: 0;
    left: -100%;
    /* display: block; */
    /* content: ''; */
    width: 50%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(var(--fixpro-white-rgb), .7) 0%, rgba(var(--fixpro-white-rgb), .3) 100%); */
    transform: skewX(15deg);
    z-index: 2;
}

.why-choose-one__img:hover::before {
    -webkit-animation: shine 1.9s;
    animation: shine 1.9s;
}

.why-choose-one__img img {
    width: 100%;
    border-radius: var(--fixpro-bdr-radius);
    transition: all 500ms ease;
    object-fit: cover;
    height: 500px;
}

.why-choose-one__img:hover img {
    transform: scaleX(1.05);
}

.why-choose-one__img-2 {
    position: absolute;
    right: -360px;
    bottom: -127px;
    overflow: hidden;
    border-radius: var(--fixpro-bdr-radius);
    z-index: 1;
}

.why-choose-one__img-2::before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.why-choose-one__img-2:hover::before {
    width: 100%;
    opacity: 0;
    transition: all 0.9s linear;
}

.why-choose-one__img-2 img {
    width: auto;
    border-radius: var(--fixpro-bdr-radius);
    transition: all 500ms ease;
}

.why-choose-one__img-2:hover img {
    transform: scaleX(1.05);
}

.why-choose-one__shape-1 {
    position: absolute;
    top: 30px;
    right: -200px;
    bottom: -80px;
    left: 180px;
    border: 10px solid var(--fixpro-base);
    border-radius: 50px;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.why-choose-one__video-link {
    position: absolute;
    top: 225px;
    right: -50px;
    z-index: 2;
}

.why-choose-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    color: var(--fixpro-base);
    background-color: var(--fixpro-white);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.why-choose-one__video-icon:hover {
    background-color: var(--fixpro-base);
    color: var(--fixpro-white);
}

.why-choose-one__video-icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid rgba(var(--fixpro-black-rgb), .30);
    border-radius: 50%;
    z-index: -1;
}

.why-choose-one__video-link .ripple,
.why-choose-one__video-icon .ripple:before,
.why-choose-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--fixpro-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--fixpro-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--fixpro-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--fixpro-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.why-choose-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.why-choose-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}
 