:root {
    --clenq-primary: #c3f842;
    --clenq-black: #172000;
    --clenq-black-rgb: 23, 32, 0;
    --cv-green: #c3f842;
}

/*=====================================================
    ABOUT SECTION - PART 1
    Namespace : cvaboutpro
======================================================*/

.cvaboutpro-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f9fbf4;
    z-index: 1;
}

.cvaboutpro-section:before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(195, 248, 66, .08);
    top: -280px;
    right: -260px;
    z-index: -1;
}

.cvaboutpro-section:after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(23, 32, 0, .03);
    bottom: -240px;
    left: -180px;
    z-index: -1;
}

/*=========================
Container
=========================*/

.cvaboutpro-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

/*=========================
Main Grid
=========================*/

.cvaboutpro-grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    /* align-items: center; */
    gap: 90px;
}

/*=========================
Image Wrapper
=========================*/

.cvaboutpro-images {
    position: relative;
    height: 720px;
}

/*=========================
Common Image
=========================*/

.cvaboutpro-images img {
    width: 100%;
    display: block;
    transition: .7s;
    object-fit: cover;
}

/*=========================
Main Image
=========================*/

.cvaboutpro-main-image {
    position: relative;
    width: 430px;
    height: 600px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);
}

.cvaboutpro-main-image img {
    width: 100%;
    height: 100%;
}

.cvaboutpro-main-image:hover img {
    transform: scale(1.08);
}

/*=========================
Small Images
=========================*/

.cvaboutpro-small-image {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .12);
    background: #fff;
}

.cvaboutpro-small-image img {
    width: 100%;
    height: 100%;
}

.cvaboutpro-small-image:hover img {
    transform: scale(1.1);
}

/*=========================
Top Image
=========================*/

.cvaboutpro-small-top {
    width: 235px;
    height: 210px;
    top: 40px;
    right: 0;
    border: 8px solid #fff;
}

/*=========================
Bottom Image
=========================*/

.cvaboutpro-small-bottom {
    width: 260px;
    height: 240px;
    bottom: 40px;
    right: 30px;
    border: 8px solid #fff;
}

/*=========================
Image Decorative Border
=========================*/

.cvaboutpro-main-image:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 36px;
    pointer-events: none;
    z-index: 2;
}

.cvaboutpro-small-image:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    pointer-events: none;
    z-index: 2;
}

/*=========================
Floating Cards Base
=========================*/

.cvaboutpro-experience-card,
.cvaboutpro-job-card,
.cvaboutpro-rating-card {

    position: absolute;

    background: #fff;

    border-radius: 24px;

    padding: 24px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);

    border: 1px solid rgba(var(--clenq-black-rgb), .08);

    transition: .45s;

    z-index: 5;

}

.cvaboutpro-experience-card:hover,
.cvaboutpro-job-card:hover,
.cvaboutpro-rating-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .18);

}

/*=========================
Decorative Glow
=========================*/

.cvaboutpro-images:before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    background: rgba(195, 248, 66, .18);

    filter: blur(80px);

    top: 40px;

    left: -100px;

    z-index: -1;

}

.cvaboutpro-images:after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(23, 32, 0, .05);

    right: -80px;

    bottom: -60px;

    filter: blur(70px);

    z-index: -1;

}

/*=========================
Image Animation
=========================*/

.cvaboutpro-main-image,
.cvaboutpro-small-image {

    animation: cvaboutproFloat 6s ease-in-out infinite;

}

.cvaboutpro-small-top {

    animation-delay: .8s;

}

.cvaboutpro-small-bottom {

    animation-delay: 1.6s;

}

@keyframes cvaboutproFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

/*=====================================================
    ABOUT SECTION - PART 2
    Namespace : cvaboutpro
======================================================*/

/*=========================================
    EXPERIENCE CARD
=========================================*/

.cvaboutpro-experience-card {

    top: 180px;
    left: -45px;

    width: 190px;

    text-align: center;

    border-left: 6px solid var(--cv-green);

}

.cvaboutpro-experience-card h2 {

    margin: 0;

    font-size: 58px;

    line-height: 1;

    font-weight: 800;

    color: var(--clenq-black);

}

.cvaboutpro-experience-card span {

    display: block;

    margin-top: 12px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .5px;

    color: #61684f;

}

/*=========================================
    JOB CARD
=========================================*/

.cvaboutpro-job-card {

    right: -35px;

    top: 300px;

    width: 235px;

    text-align: left;

    border-top: 5px solid var(--cv-green);

}

.cvaboutpro-job-card h3 {

    margin: 0;

    font-size: 34px;

    font-weight: 800;

    color: var(--clenq-black);

}

.cvaboutpro-job-card p {

    margin: 10px 0 0;

    color: #666;

    font-size: 16px;

    font-weight: 500;

}

/*=========================================
    GOOGLE RATING CARD
=========================================*/

.cvaboutpro-rating-card {

    left: 50px;

    bottom: 10px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    width: 230px;

}

.cvaboutpro-stars {

    color: #ffc107;

    font-size: 22px;

    letter-spacing: 3px;

}

.cvaboutpro-rating-card strong {

    color: var(--clenq-black);

    font-size: 20px;

    font-weight: 700;

}

/*=========================================
    RIGHT CONTENT
=========================================*/

.cvaboutpro-content {

    position: relative;

    z-index: 2;

}

/*=========================================
    SMALL TAG
=========================================*/

.cvaboutpro-tag {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 24px;

    border-radius: 100px;

    background: rgba(195, 248, 66, .16);

    color: var(--clenq-black);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 28px;

}

.cvaboutpro-tag:before {

    content: "";

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--cv-green);

}

/*=========================================
    MAIN TITLE
=========================================*/

.cvaboutpro-title {

    margin: 0 0 28px;

    font-size: 32px;

    line-height: 1.15;

    font-weight: 500;

    color: var(--clenq-black);

    letter-spacing: -1px;

}

.cvaboutpro-title span {

    color: var(--cv-green);

}

/*=========================================
    INTRO TEXT
=========================================*/

.cvaboutpro-text {

    margin: 0 0 24px;

    font-size: 16px;

    line-height: 1.9;

    color: #5d6452;

}

.cvaboutpro-text strong {

    color: var(--clenq-black);

    font-weight: 700;

}

/*=========================================
    FEATURE GRID
=========================================*/

.cvaboutpro-feature-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;

    margin-top: 45px;

}

/*=========================================
    FEATURE CARD
=========================================*/

.cvaboutpro-feature-card {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 10px 14px;

    background: #fff;

    border-radius: 22px;

    border: 1px solid rgba(var(--clenq-black-rgb), .08);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);

    transition: .45s;

    position: relative;

    overflow: hidden;

}

.cvaboutpro-feature-card:before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 5px;

    height: 100%;

    background: var(--cv-green);

    transition: .4s;

}

.cvaboutpro-feature-card:hover {

    transform: translateY(-8px);

    border-color: var(--cv-green);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.cvaboutpro-feature-card:hover:before {

    width: 100%;

    opacity: .07;

}

/*=========================================
    FEATURE ICON
=========================================*/

.cvaboutpro-icon {

    width: 34px;

    height: 34px;
    min-width: 34px;
    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cv-green);

    color: var(--clenq-black);

    font-size: 18px;

    font-weight: 700;

    transition: .4s;

}

.cvaboutpro-feature-card:hover .cvaboutpro-icon {

    transform: rotate(-8deg) scale(1.08);

    background: var(--clenq-black);

    color: var(--cv-green);

}

/*=========================================
    FEATURE CONTENT
=========================================*/

.cvaboutpro-feature-card h4 {

    margin: 0 0 8px;

    font-size: 20px;

    font-weight: 500;

    color: var(--clenq-black);

    line-height: 1.3;

}

.cvaboutpro-feature-card p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: #69715c;

}

.cvaboutpro-feature-card:hover h4 {

    color: var(--clenq-black);

}

.cvaboutpro-feature-card:hover p {

    color: #49513d;

}

/*=====================================================
        ABOUT SECTION - PART 3
        PREMIUM SERVICES GRID
======================================================*/

.cvaboutpro-services-section {

    position: relative;
    padding: 60px 33px;
    /* padding: 120px 0; */

    background: #f9fbf4;

    overflow: hidden;

}

.cvaboutpro-services-section:before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: rgba(195, 248, 66, .08);

    top: -250px;

    left: -220px;

    filter: blur(20px);

}

.cvaboutpro-services-section:after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: rgba(23, 32, 0, .03);

    right: -180px;

    bottom: -180px;

}

/*=============================
        GRID
==============================*/

.cvaboutpro-services-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;

    position: relative;

    z-index: 2;

}

/*=============================
        CARD
==============================*/

.cvaboutpro-service-card {

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    padding: 20px 20px 10px;

    border-radius: 28px;

    text-decoration: none;

    background: #fff;

    overflow: hidden;

    border: 1px solid rgba(var(--clenq-black-rgb), .08);

    box-shadow:

        0 15px 40px rgba(0, 0, 0, .05);

    transition: .45s;

}

/* Left Border */

.cvaboutpro-service-card:before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 6px;

    height: 100%;

    background: var(--cv-green);

    transition: .45s;

}

/* Decorative Circle */

.cvaboutpro-service-card:after {

    content: "";

    position: absolute;

    width: 170px;

    height: 170px;

    border-radius: 50%;

    background: rgba(195, 248, 66, .15);

    right: -80px;

    top: -80px;

    transition: .5s;

}

/*=============================
        HOVER
==============================*/

.cvaboutpro-service-card:hover {

    transform: translateY(-12px);

    border-color: var(--cv-green);

    box-shadow:

        0 30px 70px rgba(0, 0, 0, .13);

}

.cvaboutpro-service-card:hover:before {

    width: 100%;

    opacity: .07;

}

.cvaboutpro-service-card:hover:after {

    transform: scale(1.25);

}

/*=============================
        SHINE EFFECT
==============================*/

.cvaboutpro-service-card span {

    display: none;

}

.cvaboutpro-service-card::selection {

    background: none;

}

.cvaboutpro-service-card::marker {

    display: none;

}

.cvaboutpro-service-card::before {

    z-index: 0;

}

.cvaboutpro-service-card .cvaboutpro-service-content,

.cvaboutpro-service-card .cvaboutpro-service-icon {

    position: relative;

    z-index: 2;

}

/*=============================
        ICON
==============================*/

.cvaboutpro-service-icon {

    width: 58px;

    height: 58px;

    min-width: 58px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cv-green);

    color: var(--clenq-black);

    font-size: 22px;

    transition: .45s;

    box-shadow:

        inset 0 0 0 1px rgba(255, 255, 255, .3);

}

.cvaboutpro-service-card:hover .cvaboutpro-service-icon {

    background: var(--clenq-black);

    color: var(--cv-green);

    transform: rotate(-8deg) scale(1.08);

}

/*=============================
        CONTENT
==============================*/

.cvaboutpro-service-content {

    flex: 1;

}

.cvaboutpro-service-content h4 {

    margin: 0 0 5px;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.3;

    color: var(--clenq-black);

    transition: .35s;

}

.cvaboutpro-service-content p {

    margin: 0;

    font-size: 16px;

    line-height: 1.85;

    color: #62685b;

}

/*=============================
        ARROW
==============================*/

.cvaboutpro-service-content:after {

    content: "→";

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 12px;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: #f4f7ee;

    color: var(--clenq-black);

    font-size: 18px;

    font-weight: 700;

    transition: .45s;

}

.cvaboutpro-service-card:hover .cvaboutpro-service-content:after {

    background: var(--cv-green);

    transform: translateX(6px);

}

/*=============================
        TYPOGRAPHY
==============================*/

.cvaboutpro-service-card:hover h4 {

    color: var(--clenq-black);

}

.cvaboutpro-service-card:hover p {

    color: #434939;

}

/*=============================
        GLASS HIGHLIGHT
==============================*/

.cvaboutpro-service-card .glass {

    display: none;

}

.cvaboutpro-service-card:hover {

    background:

        linear-gradient(180deg,

            rgba(255, 255, 255, 1),

            rgba(250, 255, 240, 1));

}

/*=============================
        ACTIVE STATE
==============================*/

.cvaboutpro-service-card:focus {

    outline: none;

    border-color: var(--cv-green);

}

/*=============================
        ICON ANIMATION
==============================*/

.cvaboutpro-service-icon i {

    transition: .45s;

}

.cvaboutpro-service-card:hover .cvaboutpro-service-icon i {

    transform: scale(1.15);

}

/*=============================
        CARD ANIMATION
==============================*/

.cvaboutpro-service-card {

    animation: cvaboutproCardUp .8s ease both;

}

@keyframes cvaboutproCardUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================================
    CVA SERVICES GRID SECTION
==============================================*/

.cva-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 70px;
}

.cva-service-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    background: #fff;
    border-radius: 28px;
    text-decoration: none;
    overflow: hidden;

    border: 1px solid rgba(var(--clenq-black-rgb), 0.08);

    transition: all .45s ease;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .05);
}

.cva-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(195, 248, 66, .10),
            transparent 55%);
    opacity: 0;
    transition: .45s;
}

.cva-service-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(195, 248, 66, .12);
    transition: .5s;
}

.cva-service-card:hover {
    transform: translateY(-12px);
    border-color: var(--cv-green);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, .12);
}

.cva-service-card:hover::before {
    opacity: 1;
}

.cva-service-card:hover::after {
    transform: scale(1.25);
}

.cva-service-icon {
    width: 78px;
    height: 78px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--cv-green);

    color: var(--clenq-black);

    font-size: 30px;

    transition: .45s;
}

.cva-service-card:hover .cva-service-icon {
    background: var(--clenq-black);
    color: var(--cv-green);
    transform: rotate(-8deg) scale(1.08);
}

.cva-service-content {
    flex: 1;
}

.cva-service-content h4 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--clenq-black);
    transition: .35s;
}

.cva-service-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #67705d;
}

.cva-service-card:hover h4 {
    color: var(--clenq-black);
}

.cva-service-card:hover p {
    color: #41493a;
}

/*==============================================
    RESPONSIVE
==============================================*/

@media (max-width:1200px) {

    .cva-about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .cva-about-images {
        max-width: 700px;
        margin: auto;
    }

    .cva-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:991px) {

    .cva-about-section {
        padding: 90px 0;
    }

    .cva-main-image {
        height: 520px;
    }

    .cva-small-top {
        width: 220px;
        height: 220px;
    }

    .cva-small-bottom {
        width: 220px;
        height: 220px;
    }

    .cva-feature-grid {
        grid-template-columns: 1fr;
    }

    .cva-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

}

@media (max-width:768px) {

    .cva-about-section {
        padding: 80px 0;
    }

    .cva-main-title {
        font-size: 40px;
    }

    .cva-main-image {
        height: 430px;
    }

    .cva-small-image {
        display: none;
    }

    .cva-exp-card {
        left: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .cva-job-card {
        right: 20px;
        top: 20px;
        padding: 18px 22px;
    }

    .cva-rating-card {
        display: none;
    }

    .cva-feature-card {
        padding: 20px;
    }

    .cva-service-card {
        padding: 24px;
        gap: 18px;
    }

    .cva-service-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .cva-service-content h4 {
        font-size: 20px;
    }

}

@media (max-width:576px) {

    .cva-main-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .cva-section-tag {
        font-size: 13px;
        padding: 9px 18px;
    }

    .cva-intro {
        font-size: 16px;
    }

    .cva-main-image {
        height: 360px;
        border-radius: 26px;
    }

    .cva-exp-card h2 {
        font-size: 34px;
    }

    .cva-job-card h3 {
        font-size: 26px;
    }

    .cva-feature-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cva-service-card {
        flex-direction: column;
    }

    .cva-service-icon {
        margin-bottom: 8px;
    }

}

/*=============================
      PREMIUM ABOUT BUTTON
==============================*/

.cv-about-btn-wrap {
    margin-top: 55px;
    display: flex;
    align-items: center;
}

/* Button */

.cv-about-btn {

    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    border: none;
    outline: none;
    cursor: pointer;

    overflow: hidden;
    padding: 9px 16px;

    border-radius: 100px;

    background: var(--clenq-black);

    color: #fff;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;

    transition: .45s;

    box-shadow:
        0 20px 45px rgba(23, 32, 0, .18);

}

/* Green Hover Background */

.cv-about-btn::before {

    content: "";

    position: absolute;

    inset: 0;

    background: var(--cv-green);

    transform: translateX(-101%);

    transition: .45s;

    z-index: 0;

}

.cv-about-btn:hover::before {

    transform: translateX(0);

}

/* Content */

.cv-btn-icon,
.cv-btn-text {

    position: relative;

    z-index: 2;

}

/* Icon Circle */

.cv-btn-icon {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cv-green);

    color: var(--clenq-black);

    font-size: 18px;

    transition: .45s;

    flex-shrink: 0;

}

/* Text */

.cv-btn-text {

    transition: .45s;

}

/* Hover */

.cv-about-btn:hover {

    color: var(--clenq-black);

    transform: translateY(-6px);

    box-shadow:
        0 30px 60px rgba(195, 248, 66, .35);

}

.cv-about-btn:hover .cv-btn-icon {

    background: #fff;

    transform: rotate(-45deg);

}

.cv-about-btn:hover .cv-btn-text {

    letter-spacing: 1px;

}

/* Click */

.cv-about-btn:active {

    transform: translateY(-2px);

}

/* Ripple */

.cv-about-btn::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(255, 255, 255, .12);

    border-radius: 50%;

    right: -120px;
    top: -120px;

    transition: .5s;

}

.cv-about-btn:hover::after {

    transform: scale(1.4);

}

/* Responsive */

@media (max-width:767px) {

    .cv-about-btn {

        padding: 16px 28px;

        font-size: 15px;

        gap: 15px;

    }

    .cv-btn-icon {

        width: 46px;
        height: 46px;

        font-size: 16px;

    }

}

@media (max-width:480px) {

    .cv-about-btn-wrap {

        justify-content: center;

    }

    .cv-about-btn {

        width: 100%;

        justify-content: center;

    }

}


/*=========================================
          WHY CHOOSE PREMIUM SECTION
=========================================*/

.cv-why-section {

    position: relative;

    padding: 120px 0;

    background: #f7f9f3;

    overflow: hidden;

}

.cv-why-section::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background: rgba(195, 248, 66, .12);

    top: -260px;
    right: -240px;

    filter: blur(30px);

}

.cv-why-section::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(23, 32, 0, .04);

    left: -180px;
    bottom: -180px;

}

/*=========================
        CONTAINER
==========================*/

.cv-container {

    width: min(1320px, 92%);

    margin: auto;

    position: relative;

    z-index: 2;

}

/*=========================
      SECTION HEADING
==========================*/

.cv-why-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 80px;

}

.cv-section-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 28px;

    border-radius: 100px;

    background: rgba(195, 248, 66, .18);

    color: var(--clenq-black);

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 26px;

}

.cv-section-title {

    margin: 0;

    font-size: 58px;

    line-height: 1.12;

    color: var(--clenq-black);

    font-weight: 800;

}

.cv-why-heading p {

    margin-top: 24px;

    font-size: 18px;

    line-height: 1.8;

    color: #5f6656;

}

/*=========================
        GRID
==========================*/

.cv-why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

/*=========================
        CARD
==========================*/

.cv-why-card {

    position: relative;

    background: #fff;

    border-radius: 30px;

    padding: 55px 40px;

    overflow: hidden;

    transition: .45s;

    border: 1px solid rgba(23, 32, 0, .08);

    box-shadow:

        0 18px 45px rgba(0, 0, 0, .06);

}

.cv-why-card:hover {

    transform: translateY(-12px);

    border-color: var(--cv-green);

    box-shadow:

        0 30px 65px rgba(0, 0, 0, .14);

}

/*=========================
     TOP BORDER EFFECT
==========================*/

.cv-why-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 6px;

    background: var(--cv-green);

    transform: scaleX(0);

    transition: .45s;

}

.cv-why-card:hover::before {

    transform: scaleX(1);

}

/*=========================
      SHAPES
==========================*/

.cv-card-shape {

    position: absolute;

    pointer-events: none;

    opacity: .12;

}

.cv-card-shape img {

    display: block;

    width: 100%;

}

.cv-card-shape-one {

    width: 110px;

    right: -18px;

    top: -18px;

}

.cv-card-shape-two {

    width: 85px;

    left: -15px;

    bottom: -15px;

}

/*=========================
         ICON
==========================*/

.cv-why-icon {

    width: 90px;

    height: 90px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cv-green);

    color: var(--clenq-black);

    font-size: 42px;

    margin-bottom: 32px;

    transition: .45s;

    box-shadow:

        0 15px 35px rgba(195, 248, 66, .35);

}

.cv-why-card:hover .cv-why-icon {

    background: var(--clenq-black);

    color: var(--cv-green);

    transform: rotate(-10deg) scale(1.08);

}

/*=========================
       CARD TITLE
==========================*/

.cv-why-card h3 {

    margin: 0 0 18px;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 700;

    color: var(--clenq-black);

    transition: .35s;

}

.cv-why-card:hover h3 {

    color: var(--clenq-black);

}

/*=========================
      CARD TEXT
==========================*/

.cv-why-card p {

    margin: 0;

    font-size: 17px;

    line-height: 1.9;

    color: #61685b;

}

/*=========================
      GLOW EFFECT
==========================*/

.cv-why-card::after {

    content: "";

    position: absolute;

    width: 170px;

    height: 170px;

    border-radius: 50%;

    background: rgba(195, 248, 66, .13);

    top: -90px;

    right: -90px;

    transition: .45s;

}

.cv-why-card:hover::after {

    transform: scale(1.35);

}

/*=========================================
        BOTTOM GRID
=========================================*/

.cv-why-bottom-grid {

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 40px;

    margin-top: 90px;

}

/*=========================================
            CARD BASE
=========================================*/

/* .cv-bottom-card {

    position: relative;

    overflow: hidden;

    border-radius: 34px;

    min-height: 560px;

    background: #ddd;

    isolation: isolate;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);

    transition: .5s;

} */



/*=========================================
             IMAGE
=========================================*/

.cv-bottom-image {

    position: absolute;

    inset: 0;

}

.cv-bottom-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1.1s;

}

/* .cv-bottom-card:hover img {

    transform: scale(1.08);

} */

/*=========================================
             DARK OVERLAY
=========================================*/
/* 
.cv-bottom-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(23, 32, 0, .05) 0%,
            rgba(23, 32, 0, .55) 45%,
            rgba(23, 32, 0, .93) 100%);

    z-index: 2;

} */

/*=========================================
        GREEN LIGHT EFFECT
=========================================*/

/* .cv-bottom-card::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(195, 248, 66, .18);

    right: -180px;
    top: -180px;

    filter: blur(20px);

    transition: .6s;

    z-index: 1;

}

.cv-bottom-card:hover::before {

    transform: scale(1.25);

} */

/*=========================================
            SHAPE
=========================================*/

.cv-bottom-shape {

    position: absolute;

    right: 0;

    top: 0;

    z-index: 3;

    opacity: .25;

}

.cv-bottom-shape img {

    display: block;

}

/*=========================================
          LEFT CONTENT
=========================================*/
/* 
.cv-bottom-content {

    position: absolute;

    left: 55px;

    bottom: 55px;

    z-index: 5;

    max-width: 430px;

} */

/* Tag */

.cv-small-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(195, 248, 66, .18);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 25px;

}

/* Heading */

/* .cv-bottom-content h2 {

    margin: 0 0 35px;

    color: #fff;

    font-size: 22px;

    line-height: 1.08;

    font-weight: 800;

} */

/*=========================================
            BUTTON
=========================================*/

.cv-bottom-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border: none;

    cursor: pointer;

    padding: 18px 34px;

    border-radius: 100px;

    background: var(--cv-green);

    color: var(--clenq-black);

    font-size: 16px;

    font-weight: 700;

    transition: .45s;

    box-shadow:
        0 15px 35px rgba(195, 248, 66, .30);

}

.cv-bottom-btn:hover {

    background: #fff;

    transform: translateY(-6px);

    box-shadow:
        0 25px 50px rgba(255, 255, 255, .25);

}

/*=========================================
        RIGHT CONTENT
=========================================*/

.cv-bottom-content-right {

    position: absolute;

    left: 50px;

    right: 50px;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 26px;

    z-index: 5;

}

/* Icon */

.cv-right-icon {

    width: 95px;

    height: 95px;

    flex-shrink: 0;

    border-radius: 28px;

    background: var(--cv-green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    color: var(--clenq-black);

    transition: .45s;

}

.cv-bottom-card:hover .cv-right-icon {

    transform: rotate(-8deg);

    background: #fff;

}

/* Text */

.cv-right-text {

    flex: 1;

}

.cv-right-text h3 {

    margin: 0;

    color: #fff;

    font-size: 36px;

    line-height: 1.35;

    font-weight: 700;

}

/*=========================================
          FLOATING BORDER
=========================================*/

/* .cv-bottom-card::after {

    content: "";

    position: absolute;

    inset: 22px;

    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 24px;

    pointer-events: none;

    z-index: 4;

    transition: .45s;

} */

.cv-bottom-card:hover::after {

    inset: 18px;

    border-color: rgba(195, 248, 66, .45);

}

/*=========================================
        LARGE LAPTOP
=========================================*/

@media (max-width:1400px) {

    .cv-container {

        width: min(1200px, 92%);

    }

    .cv-section-title {

        font-size: 52px;

    }

    .cv-why-card {

        padding: 45px 35px;

    }

    .cv-bottom-content h2 {

        font-size: 48px;

    }

    .cv-right-text h3 {

        font-size: 32px;

    }

}

/*=========================================
        SMALL LAPTOP
=========================================*/

@media (max-width:1200px) {

    .cv-why-grid {

        gap: 28px;

    }

    .cv-why-card {

        padding: 40px 30px;

    }

    .cv-why-icon {

        width: 80px;
        height: 80px;
        font-size: 36px;

    }

    .cv-why-card h3 {

        font-size: 26px;

    }

    .cv-bottom-content {

        left: 40px;
        bottom: 40px;

    }

    .cv-bottom-content-right {

        left: 40px;
        right: 40px;
        bottom: 40px;

    }

    .cv-bottom-content h2 {

        font-size: 42px;

    }

    .cv-right-text h3 {

        font-size: 28px;

    }

}

/*=========================================
            TABLET
=========================================*/

@media (max-width:991px) {

    .cv-why-section {

        padding: 90px 0;

    }

    .cv-section-title {

        font-size: 44px;

    }

    .cv-why-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .cv-why-bottom-grid {

        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 60px;

    }

    .cv-bottom-card {

        min-height: 520px;

    }

    .cv-bottom-content {

        left: 35px;
        bottom: 35px;

    }

    .cv-bottom-content h2 {

        font-size: 40px;

    }

    .cv-bottom-content-right {

        left: 35px;
        right: 35px;
        bottom: 35px;

    }

    .cv-right-icon {

        width: 82px;
        height: 82px;

        font-size: 34px;

    }

    .cv-right-text h3 {

        font-size: 26px;

    }

}

/*=========================================
          LARGE MOBILE
=========================================*/

@media (max-width:767px) {

    .cv-why-section {

        padding: 75px 0;

    }

    .cv-section-tag {

        padding: 10px 20px;

        font-size: 12px;

        letter-spacing: 1px;

    }

    .cv-section-title {

        font-size: 36px;

        line-height: 1.2;

    }

    .cv-why-heading {

        margin-bottom: 50px;

    }

    .cv-why-card {

        padding: 35px 28px;

        border-radius: 24px;

    }

    .cv-why-icon {

        width: 72px;
        height: 72px;

        font-size: 32px;

        margin-bottom: 24px;

    }

    .cv-why-card h3 {

        font-size: 24px;

    }

    .cv-why-card p {

        font-size: 16px;

        line-height: 1.8;

    }

    .cv-bottom-card {

        border-radius: 26px;

        min-height: 460px;

    }

    .cv-bottom-content {

        left: 28px;
        right: 28px;
        bottom: 28px;

    }

    .cv-bottom-content h2 {

        font-size: 34px;

        margin-bottom: 25px;

    }

    .cv-small-tag {

        font-size: 11px;

        padding: 9px 18px;

        margin-bottom: 18px;

    }

    .cv-bottom-btn {

        padding: 16px 28px;

        font-size: 15px;

    }

    .cv-bottom-content-right {

        left: 28px;
        right: 28px;
        bottom: 28px;

        gap: 18px;

    }

    .cv-right-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

        border-radius: 20px;

    }

    .cv-right-text h3 {

        font-size: 22px;

        line-height: 1.45;

    }

}

/*=========================================
            MOBILE
=========================================*/

@media (max-width:575px) {

    .cv-container {

        width: 92%;

    }

    .cv-section-title {

        font-size: 30px;

    }

    .cv-why-card {

        padding: 28px 22px;

    }

    .cv-why-icon {

        width: 65px;
        height: 65px;

        font-size: 28px;

        border-radius: 18px;

    }

    .cv-why-card h3 {

        font-size: 22px;

    }

    .cv-why-card p {

        font-size: 15px;

    }

    .cv-bottom-card {

        min-height: 400px;

        border-radius: 22px;

    }

    .cv-bottom-content {

        left: 22px;
        right: 22px;
        bottom: 22px;

    }

    .cv-bottom-content h2 {

        font-size: 28px;

    }

    .cv-bottom-btn {

        width: 100%;

        justify-content: center;

        padding: 15px;

    }

    .cv-bottom-content-right {

        left: 22px;
        right: 22px;
        bottom: 22px;

        flex-direction: column;

        align-items: flex-start;

        gap: 16px;

    }

    .cv-right-icon {

        width: 62px;
        height: 62px;

        font-size: 24px;

    }

    .cv-right-text h3 {

        font-size: 20px;

    }

    /* 
    .cv-bottom-card::after {

        inset: 15px;

    } */

}

/*=========================================
          EXTRA SMALL
=========================================*/

@media (max-width:380px) {

    .cv-section-title {

        font-size: 26px;

    }

    .cv-why-card {

        padding: 24px 20px;

    }

    .cv-why-icon {

        width: 58px;
        height: 58px;

        font-size: 24px;

    }

    .cv-why-card h3 {

        font-size: 20px;

    }

    .cv-bottom-card {

        min-height: 360px;

    }

    .cv-bottom-content h2 {

        font-size: 24px;

    }

    .cv-right-text h3 {

        font-size: 18px;

    }

    .cv-bottom-btn {

        font-size: 14px;

        padding: 14px 18px;

    }

}


.cv-why-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cv-bottom-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 310px;
}

.cv-bottom-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-bottom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .15));
}

.cv-overlay-gray {
    background: rgba(0, 0, 0, .28);
}

.cv-bottom-content {
    position: absolute;
    left: 50px;
    top: 55px;
    z-index: 5;
    color: #fff;
}

.cv-bottom-content h2 {
    color: #ffffff;
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    margin-bottom: 35px;
}

.cv-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 195px;
    height: 62px;
    background: var(--cv-green);
    color: #172000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: .35s;
}

.cv-bottom-btn:hover {
    background: #fff;
}

.cv-green-strip {
    position: absolute;
    left: 60px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    height: 140px;
    background: var(--cv-green);
    border-radius: 90px;
    display: flex;
    align-items: center;
    padding-left: 130px;
    padding-right: 45px;
    z-index: 5;
}

.cv-circle-icon {
    position: absolute;
    left: -25px;
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dotted #172000;
}

.cv-circle-icon i {
    font-size: 56px;
    color: var(--cv-green);
}

.cv-strip-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cv-strip-content p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

@media(max-width:991px) {

    .cv-why-bottom-grid {
        grid-template-columns: 1fr;
    }

    .cv-bottom-card {
        height: 320px;
    }

    .cv-green-strip {
        left: 25px;
        right: 25px;
        padding-left: 105px;
        height: 120px;
    }

    .cv-circle-icon {
        width: 120px;
        height: 120px;
        left: -18px;
    }

    .cv-circle-icon i {
        font-size: 42px;
    }

    .cv-strip-content h3 {
        font-size: 24px;
    }

    .cv-strip-content p {
        font-size: 16px;
    }

    .cv-bottom-content h2 {
        font-size: 42px;
    }

}

@media(max-width:600px) {

    .cv-bottom-card {
        height: 270px;
    }

    .cv-bottom-content {
        left: 25px;
        top: 30px;
    }

    .cv-bottom-content h2 {
        font-size: 32px;
    }

    .cv-bottom-btn {
        width: 170px;
        height: 55px;
    }

    .cv-green-strip {
        flex-direction: column;
        justify-content: center;
        padding: 70px 20px 20px;
        height: auto;
        border-radius: 40px;
        text-align: center;
    }

    .cv-circle-icon {
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
    }

    .cv-strip-content h3 {
        font-size: 20px;
    }

    .cv-strip-content p {
        font-size: 15px;
    }

}


/*=====================================================
        PREMIUM PROCESS SECTION
======================================================*/

.cvprocess-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 140px;
    z-index: 1;
    background: #3b95ea;
}

.cvprocess-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .18;
    z-index: -3;
}

.cvprocess-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(49, 142, 232, .92),
            rgba(70, 165, 245, .88));
    z-index: -2;
}

.cvprocess-section::after {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .12) 0%,
            transparent 72%);
    top: -350px;
    right: -250px;
    z-index: -1;
}

.cvprocess-container {
    width: min(1320px, 92%);
    margin: auto;
    position: relative;
}

/*=========================
      Floating Shapes
==========================*/

.cvprocess-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cvprocess-shape-1 {
    width: 18px;
    height: 18px;
    left: 7%;
    top: 20%;
    border: 3px solid var(--cv-green);
    animation: floatCircle 6s linear infinite;
}

.cvprocess-shape-2 {
    width: 11px;
    height: 11px;
    right: 8%;
    bottom: 20%;
    background: var(--cv-green);
    animation: floatCircle 8s linear infinite;
}

@keyframes floatCircle {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*=========================
      Heading
==========================*/

.cvprocess-heading {
    text-align: center;
    margin-bottom: 90px;
}

.cvprocess-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 22px;
}

.cvprocess-tag img {
    width: 18px;
}

.cvprocess-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 62px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
}

/*=========================
      Main Grid
==========================*/

.cvprocess-grid {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 90px;

    align-items: start;

}

/*=========================
      Last Card Center
==========================*/

.cvprocess-step-four {

    grid-column: 2;

    margin-top: -20px;

}

/*=========================
      Zig Zag Layout
==========================*/

.cvprocess-step-one {

    margin-top: 70px;

}

.cvprocess-step-two {

    margin-top: 0;

}

.cvprocess-step-three {

    margin-top: 70px;

}

/*=========================
      Card Base
==========================*/

.cvprocess-card {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    transition: .45s;

}

.cvprocess-card:hover {

    transform: translateY(-12px);

}

/*=====================================================
            PROCESS PREMIUM CARDS
======================================================*/

.cvprocess-image-wrap {

    position: relative;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background: #fff;

    padding: 8px;

    z-index: 3;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18);

    transition: .45s;

}

.cvprocess-card:hover .cvprocess-image-wrap {

    transform: translateY(-10px) scale(1.03);

}

.cvprocess-image-wrap img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;

}

/*====================================
        Number Circle
=====================================*/

.cvprocess-number {

    position: absolute;

    left: -8px;
    bottom: 18px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #fff;

    color: var(--clenq-black);

    font-size: 28px;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, .18);

    z-index: 20;

    transition: .4s;

}

.cvprocess-card:hover .cvprocess-number {

    background: var(--cv-green);

    transform: scale(1.08);

}

/*====================================
        Green Box
=====================================*/

.cvprocess-content {

    position: relative;

    width: 180px;

    margin-top: -36px;

    padding:

        58px 22px 28px;

    background: var(--cv-green);

    border-radius:

        0 0 14px 14px;

    text-align: center;

    z-index: 1;

    transition: .45s;

    overflow: hidden;

}

.cvprocess-card:hover .cvprocess-content {

    transform: translateY(-6px);

}

/* Glow */

.cvprocess-content::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(135deg,
            rgba(255, 255, 255, .18),
            transparent);

    opacity: 0;

    transition: .4s;

}

.cvprocess-card:hover .cvprocess-content::before {

    opacity: 1;

}

/*====================================
      Decorative Stars
=====================================*/

.cvprocess-stars {

    position: absolute;

    right: 14px;
    bottom: 12px;

    width: 34px;

    opacity: .95;

}

.cvprocess-stars img {

    width: 100%;

}

/*====================================
         Card Heading
=====================================*/

.cvprocess-content h3 {

    margin: 0;

    color: var(--clenq-black);

    font-size: 31px;

    line-height: 1.25;

    font-weight: 700;

}

/*====================================
          Arrow Images
=====================================*/

.cvprocess-arrow {

    position: absolute;

    right: -62px;

    top: 78px;

    width: 70px;

    z-index: 5;

    animation: processArrow 2.8s ease-in-out infinite;

}

.cvprocess-arrow img {

    width: 100%;

}

.cvprocess-arrow-down {

    top: 165px;

}

.cvprocess-step-three .cvprocess-arrow {

    display: none;

}

@keyframes processArrow {

    0% {

        transform: translateX(0);

    }

    50% {

        transform: translateX(10px);

    }

    100% {

        transform: translateX(0);

    }

}

/*====================================
      Floating Sparkles
=====================================*/

.cvprocess-card::before {

    content: "";

    position: absolute;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #fff;

    right: 18px;
    top: 18px;

    opacity: .65;

}

.cvprocess-card::after {

    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #fff;

    left: 25px;
    top: 60px;

    opacity: .45;

}

/*====================================
          Hover Effects
=====================================*/

.cvprocess-card:hover .cvprocess-content {

    box-shadow:

        0 25px 40px rgba(0, 0, 0, .16);

}

.cvprocess-card:hover .cvprocess-stars {

    transform: rotate(15deg);

    transition: .4s;

}

.cvprocess-card:hover .cvprocess-image-wrap {

    box-shadow:

        0 30px 70px rgba(0, 0, 0, .25);

}


/*=====================================================
            PREMIUM RESPONSIVE
======================================================*/

/* Large Desktop */

@media (max-width:1400px) {

    .cvprocess-container {
        width: min(1200px, 94%);
    }

    .cvprocess-grid {
        gap: 70px;
    }

    .cvprocess-heading h2 {
        font-size: 56px;
    }

}

/*=========================
        Laptop
==========================*/

@media (max-width:1200px) {

    .cvprocess-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 80px 40px;

        justify-items: center;

    }

    .cvprocess-step-one,
    .cvprocess-step-two,
    .cvprocess-step-three,
    .cvprocess-step-four {

        margin-top: 0;
        grid-column: auto;

    }

    .cvprocess-arrow {

        display: none;

    }

    .cvprocess-heading h2 {

        font-size: 52px;

    }

}

/*=========================
        Tablet
==========================*/

@media (max-width:992px) {

    .cvprocess-section {

        padding: 90px 0;

    }

    .cvprocess-heading {

        margin-bottom: 70px;

    }

    .cvprocess-heading h2 {

        font-size: 44px;

        line-height: 1.2;

    }

    .cvprocess-grid {

        grid-template-columns: 1fr 1fr;

        gap: 60px 30px;

    }

    .cvprocess-image-wrap {

        width: 185px;
        height: 185px;

    }

    .cvprocess-content {

        width: 170px;

        padding: 52px 18px 24px;

        margin-top: -30px;

    }

    .cvprocess-content h3 {

        font-size: 24px;

    }

    .cvprocess-number {

        width: 52px;
        height: 52px;

        font-size: 24px;

    }

}

/*=========================
      Mobile Landscape
==========================*/

@media (max-width:768px) {

    .cvprocess-section {

        padding: 80px 0;

    }

    .cvprocess-heading {

        margin-bottom: 60px;

    }

    .cvprocess-tag {

        font-size: 12px;

        gap: 8px;

    }

    .cvprocess-tag img {

        width: 14px;

    }

    .cvprocess-heading h2 {

        font-size: 36px;

    }

    .cvprocess-grid {

        grid-template-columns: 1fr;

        gap: 60px;

        justify-items: center;

    }

    .cvprocess-image-wrap {

        width: 180px;
        height: 180px;

    }

    .cvprocess-content {

        width: 170px;

    }

    .cvprocess-content h3 {

        font-size: 22px;

    }

    .cvprocess-card {

        max-width: 320px;

        margin: auto;

    }

}

/*=========================
        Mobile
==========================*/

@media (max-width:575px) {

    .cvprocess-section {

        padding: 70px 0;

    }

    .cvprocess-container {

        width: 92%;

    }

    .cvprocess-heading {

        margin-bottom: 50px;

    }

    .cvprocess-heading h2 {

        font-size: 30px;

        line-height: 1.25;

    }

    .cvprocess-tag {

        font-size: 11px;

        letter-spacing: 1px;

        flex-wrap: wrap;

        justify-content: center;

    }

    .cvprocess-image-wrap {

        width: 155px;
        height: 155px;

        padding: 6px;

    }

    .cvprocess-number {

        width: 46px;
        height: 46px;

        font-size: 20px;

        left: -4px;
        bottom: 12px;

    }

    .cvprocess-content {

        width: 150px;

        padding: 44px 14px 20px;

        margin-top: -22px;

        border-radius: 0 0 12px 12px;

    }

    .cvprocess-content h3 {

        font-size: 20px;

        line-height: 1.35;

    }

    .cvprocess-stars {

        width: 28px;

        right: 10px;
        bottom: 10px;

    }

}

/*=========================
      Extra Small
==========================*/

@media (max-width:420px) {

    .cvprocess-heading h2 {

        font-size: 26px;

    }

    .cvprocess-image-wrap {

        width: 140px;
        height: 140px;

    }

    .cvprocess-content {

        width: 140px;

        padding: 40px 12px 18px;

    }

    .cvprocess-content h3 {

        font-size: 18px;

    }

    .cvprocess-number {

        width: 42px;
        height: 42px;

        font-size: 18px;

    }

}

/*=====================================================
            FINAL PREMIUM EFFECTS
======================================================*/

.cvprocess-card {

    will-change: transform;

}

.cvprocess-card,
.cvprocess-image-wrap,
.cvprocess-content,
.cvprocess-number {

    transition:

        all .45s cubic-bezier(.2, .8, .2, 1);

}

.cvprocess-card:hover {

    z-index: 10;

}

.cvprocess-card:hover .cvprocess-image-wrap {

    transform:
        translateY(-12px) scale(1.05);

}

.cvprocess-card:hover .cvprocess-content {

    transform: translateY(-8px);

}

.cvprocess-card:hover .cvprocess-number {

    transform: scale(1.12);

}

.cvprocess-card:hover .cvprocess-stars {

    transform: rotate(20deg) scale(1.15);

}

.cvprocess-image-wrap::after {

    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, .35);

    animation: cvProcessSpin 18s linear infinite;

    pointer-events: none;

}

@keyframes cvProcessSpin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/* Soft Glow */

.cvprocess-card:hover .cvprocess-image-wrap {

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .25),
        0 0 40px rgba(195, 248, 66, .35);

}

.cvprocess-card:hover .cvprocess-content {

    box-shadow:

        0 18px 45px rgba(0, 0, 0, .18);

}