/*=============================
INNER BANNER
=============================*/

.cv-inner-banner {
    position: relative;
    overflow: hidden;
    background: #eef3f7;
    padding: 165px 0 165px;
    margin-top: -45px;
    z-index: 1;
}

.cv-inner-banner-bg {
    position: absolute;
    inset: 0;
    background: #edf3f8;
    z-index: -3;
}

/* Right Gradient */

.cv-inner-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(120, 145, 170, .12) 45%,
            rgba(90, 120, 150, .25) 100%);
    z-index: -2;
}

/* Content */

.cv-inner-content {
    position: relative;
    z-index: 5;
}

.cv-inner-content h1 {
    margin: 0 0 18px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.05;
    color: #26340f;
    letter-spacing: -2px;
}

.cv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cv-breadcrumb li {
    color: #2f351f;
    font-size: 26px;
    font-weight: 500;
}

.cv-breadcrumb li a {
    color: #2f351f;
    text-decoration: none;
    transition: .35s;
}

.cv-breadcrumb li a:hover {
    color: var(--clenq-primary);
}

/* Decorative Circle */

.cv-shape-circle {
    position: absolute;
    right: 27%;
    bottom: 95px;
    animation: floatY 5s infinite ease-in-out;
}

.cv-shape-circle img {
    width: 70px;
}

/* Decorative Stars */

.cv-shape-star {
    position: absolute;
}

.cv-shape-star img {
    width: 155px;
}

.cv-star-one {
    top: 80px;
    right: 25%;
    animation: zoomStar 4s infinite;
}

.cv-star-two {
    top: 145px;
    right: 20%;
    transform: scale(.55);
    opacity: .7;
    animation: zoomStar 5s infinite;
}

/* Animations */

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

}

@keyframes zoomStar {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: .5;
    }

}

/*=============================
Responsive
=============================*/

@media(max-width:1199px) {

    .cv-inner-banner {
        padding: 130px 0;
    }

    .cv-inner-content h1 {
        font-size: 60px;
    }

    .cv-breadcrumb li {
        font-size: 22px;
    }

    .cv-shape-circle {
        right: 12%;
    }

}

@media(max-width:991px) {

    .cv-inner-banner {
        padding: 110px 0;
    }

    .cv-inner-content h1 {
        font-size: 48px;
    }

    .cv-breadcrumb li {
        font-size: 20px;
    }

    .cv-shape-circle,
    .cv-shape-star {
        display: none;
    }

    .cv-inner-gradient {
        width: 60%;
    }

}

@media(max-width:767px) {

    .cv-inner-banner {
        padding: 90px 0;
        text-align: center;
    }

    .cv-inner-content h1 {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .cv-breadcrumb {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cv-breadcrumb li {
        font-size: 16px;
    }

    .cv-inner-gradient {
        width: 100%;
    }

}

/*======================
 Container
=======================*/

.containers {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 15px;
}

/*======================
 Section
=======================*/

.cv-service-details-section {
    padding: 90px 0;
    background: #fff;
}

/*======================
 Grid
=======================*/

.cv-service-wrapper {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/*======================
 Sidebar
=======================*/

.cv-service-sidebar {
    background: #c7ff31;
    border: 1px solid #2d3816;
    border-radius: 14px;
    padding: 30px;
    position: sticky;
    top: 110px;
}

.cv-sidebar-title {
    color: #172000 !important;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;   
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cv-sidebar-title span {
    font-size: 13px;
}

/*======================
 Menu
=======================*/

.cv-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-service-list li {
    margin-bottom: 10px;
}

.cv-service-list li:last-child {
    margin-bottom: 0;
}

.cv-service-list li a {

    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #fff;

    height: 52px;

    padding: 0 18px;

    border-radius: 6px;

    text-decoration: none;

    color: #24300d;

    font-size: 16px;

    font-weight: 600;

    overflow: hidden;

    transition: .35s;
}

.cv-service-list li a::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #ffe600;

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;

}

.cv-service-list li:hover a::before {

    transform: scaleX(1);

}

.cv-service-list li.active a {

    background: #ffe600;

}

.cv-service-list li span,
.cv-service-list li i {

    position: relative;

    z-index: 5;

}

.cv-service-list li i {

    width: 26px;

    height: 26px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    transition: .3s;

}

.cv-service-list li.active i {

    background: #fff;

}

.cv-service-list li:hover i {

    background: #fff;

}

/*======================
 Content
=======================*/

.cv-service-content {

    padding-top: 5px;

}

.cv-service-content h2 {

    font-size: 40px;

    line-height: 1.2;

    font-weight: 500;
font-family: 'Outfit', sans-serif !important;
    color: #172000;

    margin-bottom: 8px;
    /* 
    max-width: 720px; */

}

.cv-service-content p {

    font-size: 16px;
letter-spacing:  .4px;
    line-height: 32px;
    font-family:"Inter", sans-serif !important;
font-weight: 400;
   color: rgba(23, 32, 0, 0.8);

    /* margin-bottom: 30px; */

}

.cv-service-content strong {

    color: #202020;

    font-weight: 700;

}

.cv-service-content a {



    font-weight: 700;

}

.cv-service-content a:hover {

    color: #89b600;

}

/*======================
 Responsive
=======================*/

@media(max-width:991px) {

    .cv-service-wrapper {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .cv-service-sidebar {

        position: relative;

        top: 0;

    }

    .cv-service-content {

        padding: 0;

    }

    .cv-service-content h2 {

        font-size: 34px;

    }

}

@media(max-width:767px) {

    .cv-service-details-section {

        padding: 70px 0;

    }

    .cv-service-sidebar {

        padding: 20px;

    }

    .cv-service-content h2 {

        font-size: 28px;

    }

    .cv-service-content p {

        font-size: 15px;

        line-height: 1.9;

    }

    .cv-service-list li a {

        font-size: 15px;

        height: 48px;

    }

}

@media(max-width:480px) {

    .cv-inner-banner {
        padding: 90px 0 90px;
    }

    .cv-inner-content h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .cv-service-details-section {
        padding: 50px 0;
    }

    .cv-sidebar-title {
        font-size: 15px;
    }

    .cv-service-sidebar {
        padding: 16px;
    }

    .cv-service-list li a {
        font-size: 14px;
        height: 44px;
    }

    .cv-service-content h2 {
        font-size: 22px;
    }

    .cv-service-content p {
        font-size: 14.5px;
    }

    .cv-help-content h3 {
        font-size: 17px;
    }

    .cv-help-phone {
        font-size: 16px;
    }

}

.cv-help-card {
    margin-top: 30px;
    background: #eef5fb;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    overflow: hidden;
}

.cv-help-image {
    padding: 30px 25px 0;
    text-align: center;
}

.cv-help-image img {
    width: 100%;
    max-width: 215px;
    display: block;
    margin: auto;
}

/* .cv-help-content {

    position: relative;

    padding: 110px 25px 35px;

    margin-top: -270px;

    text-align: center;

    background: linear-gradient(180deg,
            rgba(16, 29, 49, 0) 0%,
            #20354d 35%,
            #4d9df2 100%);

} */

.cv-help-content h3 {

    color: #fff;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    margin-bottom: 28px;

}

.cv-help-content h3 span {

    display: block;

    font-size: 17px;

    margin-top: 4px;

}

.cv-help-phone {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    max-width: 190px;

    height: 48px;

    background: #fff;

    border-radius: 4px;

    color: #1e2d41;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    transition: .35s;

}

.cv-help-phone i {

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background: #ffe600;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

}

.cv-help-phone:hover {

    background: #c8ff2d;

    color: #111;

    transform: translateY(-3px);

}

.cv-left-column {

    display: flex;

    flex-direction: column;

}

.cv-left-column {
    position: relative;
}

.cv-left-sticky {
    position: sticky;
    top: 120px;
}

.cv-service-sidebar {
    position: relative;
    top: auto;
}

.cv-help-card {
    margin-top: 30px;
}

/*=========================
    HELP CARD
=========================*/

.cv-help-card {
    margin-top: 30px;
    background: #eef6fd;
    border: 1px solid #3b3b3b;
    border-radius: 12px;
    padding: 28px;
}

.cv-help-banner {

    position: relative;

    overflow: hidden;

    height: 445px;

}

.cv-help-bg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 1;

}

.cv-help-overlay {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 2;

}

.cv-help-content {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 35px;

    z-index: 5;

    text-align: center;

    padding: 0 20px;

}

.cv-help-content h3 {

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.5;

    margin-bottom: 30px;

}

.cv-help-content h3 span {

    display: block;

    margin-top: 4px;

}

.cv-help-phone {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    max-width: 175px;

    height: 46px;

    background: #fff;

    border-radius: 4px;

    color: #222;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    transition: .35s;

}

.cv-help-phone i {

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: #ffe600;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

}

.cv-help-phone:hover {

    background: #c8ff2d;

}

.newfaq {
    font-size: 30px !important;
    line-height: 30px !important;
    font-weight: 600 !important;
    margin-top: 50px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}