	.intro-left,
.intro-left__image,
.intro-left .tp-img-item,
.intro-left .tp-image__media,
.intro-left img{
    height: 100%;
    object-fit: cover;
}

.intro-left__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0000004d;
    border-radius: 20px;
}

.intro-left__image img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.intro-left__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    width: 80%;
    height: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
}

.intro-right__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.box-exp > .tp-feature,
.box-exp > .tp-feature > .row {
    height: 100%;
}

.box-exp > .tp-feature > .row {
    gap: 10px;
}


.intro-right__bottom-list .tp-title {
    margin-bottom: 30px;
}
.intro-right__bottom-list .tp-body ul {
    padding-left: 20px;
}

.intro-right__bottom-list .tp-body ul li {
    list-style: disc;
    margin-bottom: 12px;
}



.why-choose__box {
    padding: 40px;
    border-radius: 20px;
    background-color: #fff;
    transition: all .4s;
}
.why-choose__box .tp-feature__figure {
    position: relative;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f5;
    margin: auto;
    align-items: center;
    margin-bottom: 30px;
}

.why-choose__box .tp-feature__figure::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scale(0);
    transform-origin: center;
    background-color: var(--tp-primary);
    border-radius: 50%;
    transition: all .4s;
}

.why-choose__box img {
    width: 40px;
    height: 40px;
    transition: all .4s;
}

.why-choose__box:hover {
    transform: translateY(-6px);
    transition: all .4s;
}

.why-choose__box:hover img {
    filter: brightness(0) invert(1);
    transition: all .4s;
}

.why-choose__box:hover .tp-feature__figure::before {
    transform: scale(1);
    transition: all .4s;
}



.process-list:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 29px;
    top: 0;
    width: 1px;
    height: 100%;
    border-right: 2px dashed #0000001A;
}
.process-list__number {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background-color: var(--tp-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-list__number p {
    margin-bottom: 0;
}
.process-right {
    position: relative;
    padding: 0 40px 40px 0;
}
.process-right img {
    border-radius: 20px;
}

.process-right__content {
    border: 10px solid #fff;
}

.process-right__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/files_upload/process-quotes-nox-image.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    width: 180px;
    margin-left: auto;
}



.video-intro.active-preview-off::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 10;
}
.video-intro .video-wrapper {
    border-radius: 0;
}

.video-intro video {
    width: 100%;
    object-fit: cover;
    display: block;
}



.member-list img {
    border-radius: 20px;
    object-fit: cover;
    transition: all .6s;
}

.member-list .row {
    gap: 30px;
}

.member-list .tp-feature__figure {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.member-list .tp-feature__figure::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center center;
    width: 200%;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 2;
    transition: 0.8s;
}

.member-list .tp-feature__figure:hover::before {
    height: 250%;
    background-color: transparent;
    transition: all .8s;
}

.member-list .tp-feature__figure:hover img {
    transform: scale(1.06);
    transition: all .6s;
}


.faq-box__client img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.faq-box__client > .tp_module:not(:last-child) img {
    border: 1px solid #fff;
}

.faq-box__client .tp-body {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--tp-primary);
}

.faq-box__client .tp-body p {
    margin-bottom: 0;
}

.faq-list .accordion .accordion-button {
    padding: 22px 20px;
    gap: 15px;
}

.faq-list .accordion .accordion-button:not(.collapsed) {
    background: var(--tp-primary);
    color: #fff;
}

.faq-list .accordion-button::after {
    content: "\2b";
    font-family: fontawesome;
    background-image: none;
    font-weight: 400;
}

.faq-list .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: none;
    color: #fff;
}

@media (max-width: 1200px) {
    .intro-right__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .intro-left__content {
        padding: 30px 0;
    }
    .process-list__number {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
    
    .process-list:not(:last-child)::before {
        left: 24px;
    }
    
    .process-right__content::before {
        width: 90px;
    }
}
