* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    /* --clenq-font-two: 'Outfit', sans-serif; */
}

:root {
    --clenq-primary: #c3f842;
    --clenq-primary-rgb: 195, 248, 66;
    --clenq-black2: #172000;
    --clenq-black: #172000;
    --clenq-black-rgb: 23, 32, 0;
    --cv-green: #c3f842;
}

body {
    background: #fff;
}

.container {
    width: 92%;
    margin: auto;
}

/* TOP */

.top-header {
    background: #fff;
    padding: 25px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-right: 40px;
}

.info-box:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 1px;
    background: #ddd;
}

.info-box:last-child:after {
    display: none;
}

.icon {
    width: 50px;
    height: 55px;
    border-radius: 5px;
    background: #172000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c3f842;
    font-size: 30px;
}

.text span {
    font-size: 16px;
    color: #172000cc;
}

.text h4 {
    color: #172000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-top: 4px;
}

.social {
    display: flex;
    gap: 10px;
}

.social a {
    width: 50px;
    height: 55px;
    background: #f1f8e2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #222;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.social a:hover {
    background: #b8ff2c;
}

/* NAVBAR */

.navbar {
    /* background: #ffffff; */
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    background: rgb(23 32 0);
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

.left-content {
    background: #f6f7f2;

    padding: 22px 90px 17px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    clip-path: polygon(0 0, 100% 0, 83% 100%, 0 100%);
}

.left-content p {
    font-size: 28px;
    font-weight: 600;
    color: #222;
}

.quote-btn {
    padding: 4px 25px;
    background: #b7ff28;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #172000;
    color: #ffffff;
}

.menu {
    display: flex;
    list-style: none;
    gap: 38px;
    margin-left: 25px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}

.menu a:hover {
    color: #b8ff28;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* ===========================
   DROPDOWN
=========================== */

.menu li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    /* top: 100%; */
    top: 37px;
    left: 0;
    width: 250px;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #ececec;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 20px 22px;
    color: #444;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    background: #fff;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #fff203;
    color: #172000;
    padding-left: 30px;
}

.dropdown>a i {
    margin-left: 6px;
    font-size: 12px;
}

/* MOBILE */

@media (max-width: 1200px) {
    .header-right {
        gap: 20px;
    }

    .menu {
        gap: 20px;
    }

    .left-content p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .top-header .container {
        flex-direction: column;
        gap: 30px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-container {
        flex-direction: row;
    }

    .left-content {
        width: 100%;
        justify-content: center;
        clip-path: none;
        padding: 20px;
    }

    .menu-toggle {
        display: block;
        padding: 20px;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #162100;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu a {
        display: block;
        padding: 18px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: #1f2b00;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #fff;
        background: #243100;
        padding-left: 40px;
        font-size: 15px;
    }

    .dropdown-menu li a:hover {
        background: #2e4000;
        color: #b7ff28;
    }
}

@media (max-width: 600px) {
    .logo img {
        height: 65px;
    }

    .info-box {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .info-box:after {
        display: none;
    }

    .header-right {
        flex-direction: column;
    }

    .left-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .left-content p {
        font-size: 18px;
    }

    .quote-btn {
        width: 200px;
        text-align: center;
    }

    .social {
        margin-top: 10px;
    }
}

/* Show by default */
.left-content p {
    display: block;
    font-size: 18px;
}

/* Hide below 1500px */
@media (max-width: 1499px) {
    .left-content p {
        display: none;
    }
}

.left-content p {
    display: none;
}

@media (min-width: 1500px) {
    .left-content p {
        display: block;
    }
}

/*=========================================
STICKY HEADER
=========================================*/
/*=================================================
            STICKY HEADER
==================================================*/

header {
    position: relative;
    width: 100%;
    z-index: 99999;
}

/* Smooth animation */
header,
.top-header,
.navbar,
.nav-container,
.logo img,
.left-content,
.menu {
    transition: all .35s ease !important;
}

/*=========================================
TOP HEADER
=========================================*/

.top-header {
    height: 150px;
    overflow: hidden;
    transition: all .45s ease;
}

/*=========================================
NORMAL NAVBAR
=========================================*/

.navbar {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all .35s ease;
}

.nav-container {
    height: 80px;
    background: #172000;
    display: flex;
    align-items: center;
}

/*=========================================
WHEN STICKY
=========================================*/

header.sticky .top-header {
    height: 0 !important;
    padding: 0 !important;
    opacity: 0;
    overflow: hidden;
}

header.sticky .navbar {

    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;

    background: #172000 !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);

    animation: stickySlide .45s ease forwards;

    z-index: 99999;
}

header.sticky .nav-container {

    height: 92px !important;

    width: 92%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent !important;
}

/*=========================================
LOGO
=========================================*/
/* Hide sticky logo normally */
.sticky-logo {
    display: none;
}

.sticky-logo img {
    height: 58px;
}

/* Show only on sticky */
header.sticky .sticky-logo {
    display: block;
}

header.sticky .top-header {
    display: none;
}

.logo img {
    height: 100px;
    transition: .35s;
}

header.sticky .logo img {
    height: 58px !important;
}

/*=========================================
LEFT CONTENT
=========================================*/

header.sticky .left-content {
    display: none !important;
}

/*=========================================
MENU
=========================================*/

.menu {

    display: flex;
    align-items: center;

    gap: 38px;

    margin-left: 0px;

    transition: .35s;
}

header.sticky .menu {

    margin-left: 0 !important;

    margin-right: 0;

    /* gap: 35px; */

    align-items: center;
}

header.sticky .menu li a {

    line-height: 74px !important;

    padding: 0 !important;

    font-size: 17px;
}

header.sticky .dropdown-menu li a {
    /* display: block !important;
    padding: 10px 22px !important;
    height: 40px !important;
    line-height: 30px !important;
    color: #444 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    background: #fff !important;
    transition: all .35s ease !important; */
    position: relative;
    font-size: 15px !important;
    line-height: 38px !important;
    color: #444 !important;
    border-bottom: 1px solid rgba(var(--clenq-black-rgb), 0.1);
    font-weight: 400;

    display: flex;
    padding: 10px 20px 10px !important;
    -webkit-transition: 500ms;
    transition: 500ms;
}

header.sticky .dropdown-menu li a:hover {
    background: #fff203 !important;
    color: #172000 !important;
    padding-left: 30px !important;
}

header.sticky .dropdown>a i {
    margin-left: 6px;
    font-size: 12px;
}

/*=========================================
DROPDOWN
=========================================*/

header.sticky .dropdown-menu {
    top: 74px !important;
}

/*=========================================
ANIMATION
=========================================*/

@keyframes stickySlide {

    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*=========================================
PREVENT PAGE JUMP
=========================================*/

body.sticky-padding {
    padding-top: 74px;
}

/*=========================================
MOBILE
=========================================*/

@media(max-width:991px) {

    .top-header {
        height: auto;
    }

    header.sticky .top-header {
        display: none;
    }

    header.sticky .nav-container {

        width: 100%;

        height: 70px !important;
    }

    header.sticky .menu {

        margin-left: 0 !important;
    }

    header.sticky .menu li a {

        line-height: normal !important;
        padding: 18px !important;
    }
}




/*==================================================
MOBILE HEADER
==================================================*/

@media (max-width:991px) {

    .top-header {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        background: #172000;
    }

    .nav-container {
        width: 100%;
        height: 70px;
        padding: 0 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #172000;
    }

    .left-content {
        display: none;
    }

    .sticky-logo {
        display: block;
    }

    .sticky-logo img {
        height: 46px;
    }

    /* .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    } */

    .menu {

        position: fixed;

        top: 70px;

        right: -100%;

        width: 290px;

        height: calc(100vh - 70px);

        background: #172000;

        display: flex;

        flex-direction: column;

        margin: 0;

        padding: 25px 0;

        overflow-y: auto;

        transition: .4s;

        z-index: 9999;
    }

    .menu.active {
        right: 0;
    }

    .menu li {
        width: 100%;
        /* border-bottom: 1px solid rgba(255, 255, 255, .08); */
    }

    .menu li a {
        display: block;
        color: #fff;
        padding: 16px 22px;
        font-size: 15px;
        line-height: normal;
    }

    .dropdown-menu {

        position: static;

        width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        background: #223000;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {

        color: #fff;

        padding: 14px 35px;

        background: #223000;
    }

    .dropdown-menu li a:hover {
        background: #b7ff28;
        color: #172000;
    }
}


@media (max-width:991px) {

    .top-header {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        background: #172000;
    }

    .nav-container {
        width: 100%;
        height: 82px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #172000;
    }

    .left-content {
        display: none;
    }

    .sticky-logo {
        display: block;
    }

    .sticky-logo img {
        height: 50px;
    }

    /* .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        color: #fff;
        font-size: 26px;
        cursor: pointer;
        z-index: 10002;
    } */

    .menu {

        position: fixed;

        top: 0;

        left: -100%;

        width: 300px;

        height: 100vh;

        background: #172000;

        display: flex;

        flex-direction: column;

        margin: 0;

        padding: 90px 0 30px;

        transition: .45s;

        overflow-y: auto;

        z-index: 10001;
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        width: 100%;
        /* border-bottom: 1px solid rgba(255, 255, 255, .08); */
    }

    .menu li a {

        display: block;

        color: #fff;

        padding: 16px 25px;

        font-size: 15px;

        text-decoration: none;
    }

    .menu li a:hover {
        color: #d7ff37;
    }

    .dropdown-menu {

        position: static;

        width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        background: #213100;

        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {

        color: #fff;

        padding-left: 45px;

        background: #213100;
    }

    .mobile-contact {
        border: none;
        margin-top: 15px;
        padding: 0 20px;
    }

    .mobile-book,
    .mobile-call {

        display: flex !important;

        align-items: center;

        gap: 15px;

        color: #fff !important;

        font-weight: 600;
    }

    .mobile-book i,
    .mobile-call i {

        width: 34px;

        height: 34px;

        border-radius: 50%;

        background: #d7ff37;

        color: #172000;

        display: flex;

        justify-content: center;

        align-items: center;

        font-size: 15px;
    }

    .mobile-social {

        display: flex;

        gap: 18px;

        padding: 25px 25px 0;

        border: none;
    }

    .mobile-social a {

        color: #fff;

        font-size: 16px;
    }

    .mobile-social a:hover {
        color: #d7ff37;
    }

    body.menu-open {
        overflow: hidden;
    }
}






























/*=====================================================
 HERO SLIDER
=====================================================*/

.main-slider-three {
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    background: #111;
}

.main-slider-three__inner {
    position: relative;
}

.main-slider-carousel {
    position: relative;
}

.main-slider-three__single {
    position: relative;
    height: 860px;
    overflow: hidden;
}

/*=========================
BACKGROUND
=========================*/

.main-slider-three .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    transform: scale(1);
    transition: transform 7s linear;
    z-index: 1;
}

.main-slider-three .active .image-layer {
    transform: scale(1.08);
}

/* Dark Overlay */

.main-slider-three .image-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
}

/*=========================
BOTTOM SHAPE
=========================*/

.main-slider-three .shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;

    opacity: 0;
    transform: translateX(150px);

    transition: 1.2s;
}

.main-slider-three .active .shape2 {
    opacity: 1;
    transform: translateX(0);
}

.main-slider-three .shape2 img {
    width: 100%;
    display: block;
}

/*=========================
CONTAINER
=========================*/

.main-slider-three .container {
    position: relative;
    height: 860px;
    display: flex;
    align-items: center;
    z-index: 10;
}

/*=========================
CONTENT
=========================*/

.main-slider-three__content {
    width: 700px;
}

/*=========================
TAG
=========================*/

.main-slider-three__content .tagline {

    display: inline-flex;
    align-items: center;

    position: relative;

    margin-bottom: 30px;

    opacity: 0;

    transform: translateY(-60px);

    transition: 1s;
}

.main-slider-three.active .tagline,
.main-slider-three .active .tagline {

    opacity: 1;

    transform: translateY(0);
}

.main-slider-three__content .shape1 {

    position: absolute;

    right: -45px;

    top: -18px;
}

.main-slider-three__content .shape1 img {

    width: 45px;
}

.main-slider-three__content .tagline p {

    color: #c3ff2d;

    font-size: 18px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

/*=========================
TITLE
=========================*/

.main-slider-three__content .title {

    opacity: 0;

    transform: translateX(80px);

    transition: 1s;
}

.main-slider-three.active .title,
.main-slider-three .active .title {

    opacity: 1;

    transform: translateX(0);
}

.main-slider-three__content h1 {

    color: #fff;

    font-size: 78px;

    line-height: 1.08;

    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 45px;
}

/*=========================
BUTTON
=========================*/

.btn-box {

    opacity: 0;

    transform: translateY(60px);

    transition: 1.2s;
}

.main-slider-three.active .btn-box,
.main-slider-three .active .btn-box {

    opacity: 1;

    transform: translateY(0);
}

.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 20px 45px;

    border-radius: 50px;

    background: #c3ff2d;

    color: #111;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;
}

.hero-btn:hover {

    background: #fff;

    color: #111;
}

/*=========================
OWL NAV
=========================*/

.main-slider-three .owl-nav {

    position: absolute;

    top: 50%;

    left: 46%;

    transform: translate(-50%, -50%);

    width: 100%;

    max-width: 1320px;

    display: flex;

    justify-content: flex-end;

    flex-direction: column;

    align-items: flex-end;

    z-index: 20;

    pointer-events: none;
}

.main-slider-three .owl-nav button {

    width: 70px;

    height: 70px;

    margin: 12px 0 !important;

    border: none !important;

    border-radius: 28px !important;

    background: rgba(255, 255, 255, .18) !important;

    color: #fff !important;

    font-size: 24px !important;

    transition: .35s;

    pointer-events: auto;
}

.main-slider-three .owl-nav button:hover {

    background: #c3ff2d !important;

    color: #111 !important;
}

.main-slider-three .owl-nav span {

    line-height: 70px;
}

/*=========================
DOTS
=========================*/

.main-slider-three .owl-dots {

    display: none;
}

/*=========================
SMOOTH
=========================*/

.main-slider-carousel .owl-item {

    overflow: hidden;
}

/*=========================
TEXT SHADOW
=========================*/

.main-slider-three h1 {

    text-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.main-slider-three .tagline p {

    text-shadow: 0 3px 10px rgba(0, 0, 0, .30);
}

.owl-item {
    opacity: 0;
}

.owl-item.active {
    opacity: 1;
}

.owl-animated-in {
    animation-duration: 1.2s;
}

.owl-animated-out {
    animation-duration: 1.2s;
}

.main-slider-three .owl-item.active .image-layer {

    animation: sliderZoom 8s linear forwards;

}

@keyframes sliderZoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.08);

    }

}

.main-slider-three__content>* {

    opacity: 0;

}

.owl-item.active .tagline {

    animation: fadeDown 1s .5s forwards;

}

.owl-item.active .title {

    animation: fadeRight 1s .9s forwards;

}

.owl-item.active .btn-box {

    animation: fadeUp 1s 1.4s forwards;

}

.owl-item.active .shape2 {

    animation: shapeMove 1.2s .8s forwards;

}

@keyframes fadeDown {

    from {

        opacity: 0;

        transform: translateY(-60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes fadeRight {

    from {

        opacity: 0;

        transform: translateX(80px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(70px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes shapeMove {

    from {

        opacity: 0;

        transform: translateX(180px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

/*==================================================
1700px
==================================================*/

@media only screen and (max-width:1700px) {

    .main-slider-three__content {
        max-width: 650px;
    }

    .main-slider-three__content h1 {
        font-size: 72px;
    }

    .main-slider-three .shape2 {
        width: 34%;
    }

}

/*==================================================
1500px
==================================================*/

@media only screen and (max-width:1500px) {

    .main-slider-three__single {
        height: 760px;
    }

    .main-slider-three .container {
        height: 760px;
    }

    .main-slider-three__content h1 {
        font-size: 64px;
    }

    .main-slider-three__content {
        max-width: 600px;
    }

    .main-slider-three .shape2 {
        width: 36%;
    }

    .main-slider-three .owl-nav {

        right: 30px;
    }

}

/*==================================================
1200px
==================================================*/

@media only screen and (max-width:1199px) {

    .main-slider-three__single {
        height: 700px;
    }

    .main-slider-three .container {
        height: 700px;
    }

    .main-slider-three__content {

        width: 100%;

        max-width: 560px;
    }

    .main-slider-three__content h1 {

        font-size: 55px;

        line-height: 1.15;
    }

    .main-slider-three .shape2 {

        width: 42%;
    }

    .main-slider-three .owl-nav {

        right: 20px;
    }

    .main-slider-three .owl-nav button {

        width: 60px;

        height: 60px;

        line-height: 60px;

        font-size: 18px !important;
    }

    .hero-btn {

        padding: 18px 35px;
    }

}

/*==================================================
992px
==================================================*/

@media only screen and (max-width:991px) {

    .main-slider-three__single {

        height: 650px;
    }

    .main-slider-three .container {

        height: 650px;
    }

    .main-slider-three__content {

        max-width: 100%;

        text-align: center;
    }

    .main-slider-three__content .tagline {

        justify-content: center;
    }

    .main-slider-three__content h1 {

        font-size: 46px;
    }

    .main-slider-three .shape2 {

        width: 45%;

        opacity: .45;
    }

    .main-slider-three .owl-nav {

        display: none;
    }

}

/*==================================================
768px
==================================================*/

@media only screen and (max-width:767px) {

    .main-slider-three__single {

        height: 600px;
    }

    .main-slider-three .container {

        height: 600px;

        justify-content: center;
    }

    .main-slider-three__content {

        text-align: center;

        padding: 0 15px;
    }

    .main-slider-three__content .tagline {

        margin-bottom: 20px;
    }

    .main-slider-three__content .tagline p {

        font-size: 15px;
    }

    .main-slider-three__content h1 {

        font-size: 38px;

        line-height: 1.2;
    }

    .hero-btn {

        padding: 16px 30px;

        font-size: 15px;
    }

    .main-slider-three .shape2 {

        width: 55%;

        opacity: .25;
    }

}

/*==================================================
575px
==================================================*/

@media only screen and (max-width:575px) {

    .main-slider-three__single {

        height: 540px;
    }

    .main-slider-three .container {

        height: 540px;
    }

    .main-slider-three__content h1 {

        font-size: 30px;

        line-height: 1.3;
    }

    .main-slider-three__content .tagline p {

        font-size: 14px;
    }

    .hero-btn {

        padding: 15px 28px;

        font-size: 14px;
    }

    .main-slider-three .shape2 {

        width: 65%;

        opacity: .18;
    }

}

/*==================================================
420px
==================================================*/

@media only screen and (max-width:420px) {

    .main-slider-three__single {

        height: 500px;
    }

    .main-slider-three .container {

        height: 500px;
    }

    .main-slider-three__content {

        padding: 0 10px;
    }

    .main-slider-three__content h1 {

        font-size: 26px;
    }

    .main-slider-three__content .tagline {

        margin-bottom: 15px;
    }

    .main-slider-three__content .tagline p {

        font-size: 13px;
    }

    .hero-btn {

        width: 100%;

        max-width: 220px;

        justify-content: center;
    }

    .main-slider-three .shape2 {

        width: 75%;
    }

}

/*==========================================
Hero Buttons
==========================================*/

.btn-box {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

/* Common Button */

.hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 38px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all .4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/*=========================
Get Quote Button
=========================*/

.quote-btn {
    background: #c3ff2d !important;
    color: #131216;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    border: 2px solid #c3ff2d !important;
    box-shadow: 0 12px 30px rgba(195, 255, 45, .35) !important;
}

.quote-btn:hover {
    background: #172000 !important;
    color: #ffffff !important;
    border-color: #172000 !important;
    transform: translateY(-5px) !important;
}

/*=========================
Call Button
=========================*/

.call-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    backdrop-filter: blur(10px) !important;
    gap: 10px !important;
}

.call-btn i {
    font-size: 16px !important;
}

.call-btn:hover {
    background: #ffffff !important;
    color: #172000 !important;
    border-color: #ffffff !important;
    transform: translateY(-5px) !important;
}

/*=========================
Button Shine Effect
=========================*/

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
    transition: .7s;
    z-index: -1;
}

.hero-btn:hover::before {
    left: 120%;
}

/*=========================
Responsive
=========================*/

@media(max-width:768px) {

    .btn-box {
        justify-content: center !important;
    }

    .hero-btn {
        width: 220px !important;
    }

}

@media(max-width:480px) {

    .hero-btn {
        width: 100% !important;
    }

}

.main-slider-three__content .shape1 {
    position: absolute !important;
    top: -18px !important;
    right: -75px !important;
    z-index: 5 !important;
}

.main-slider-three__content .shape1 img {
    width: 55px !important;
    height: auto !important;
    display: block !important;
    animation: rotateShape 10s linear infinite;
}

@keyframes rotateShape {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

/* Right Bottom Shape */

.shape2 {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 50% !important;
    z-index: 2 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.shape2 img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    /* Transparency */
    opacity: .45 !important;
    margin-bottom: -30px !important;
    /* Blend with background */
    mix-blend-mode: screen !important;

    /* Slight green glow */
    filter: brightness(1.15) saturate(1.2) !important;

    animation: shapeFloat 6s ease-in-out infinite !important;
}

@keyframes shapeFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}



/*==========================
CTA STRIP
==========================*/

.cta-strip {
    background: #fff;
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEFT */

.cta-left {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.cta-icon {

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: #c8ff2f;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #172000;

    flex-shrink: 0;
}

.cta-icon img {

    width: 52px;
}

/* TEXT */

.cta-contents {

    position: relative;
}

.cta-contents h2 {

    font-size: 29px;

    line-height: 1.25;

    color: #111;

    font-weight: 500;

    max-width: 620px;
}

/* floating circles */

.dot {

    position: absolute;

    border-radius: 50%;

    border: 2px solid #d7ff37;
}

.dot1 {

    width: 28px;
    height: 28px;

    top: 18px;
    right: 110px;
}

.dot2 {

    width: 10px;
    height: 10px;

    background: #d7ff37;
    border: none;

    top: -10px;
    left: -55px;
}

/* RIGHT */

.cta-right {

    width: 390px;

    height: 150px;

    position: relative;

    border-radius: 10px;

    overflow: hidden;

    flex-shrink: 0;
}

.cta-right img {

    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: grayscale(100%);
}

.cta-right::before {

    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, .35);
}

/* BUTTON */

.cta-btn {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 205px;
    height: 54px;

    border-radius: 28px;

    background: var(--clenq-primary);
    border: 1px solid var(--clenq-black);

    display: flex;
    justify-content: center;
    align-items: center;
    color: #172000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 60px;
    font-family: var(--clenq-font);


}

.cta-btn:hover {

    background: #172000;

    color: #fff;
}

.cta-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #C7FF2A;
    border: 2px solid #172000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 58px;
    height: 58px;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .cta-wrapper {

        flex-direction: column;

        text-align: center;
    }

    .cta-left {

        flex-direction: column;

        gap: 20px;
    }

    .cta-contents h2 {

        font-size: 24px;
    }

    .cta-right {

        width: 100%;
        max-width: 420px;
    }
}

@media(max-width:576px) {

    .cta-strip {

        padding: 30px 0;
    }

    .cta-icon {

        width: 80px;
        height: 80px;
    }

    .cta-icon img {

        width: 40px;
    }

    .cta-contents h2 {

        font-size: 20px;
        line-height: 1.4;
    }

    .cta-right {

        height: 135px;
    }

    .cta-btn {

        width: 180px;
        height: 48px;
        font-size: 17px;
    }
}


/*==================================================
GOOGLE FONT & RESET
==================================================*/

/*==================================================
SECTION
==================================================*/

.about-company {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* Soft Background Glow */

.about-company::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle,
            rgba(201, 255, 0, .10),
            transparent 70%);
    left: -250px;
    top: -180px;
    z-index: 0;
}

.about-company::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(201, 255, 0, .08),
            transparent 70%);
    right: -220px;
    bottom: -250px;
    z-index: 0;
}

/*==================================================
HEADING
==================================================*/

.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
    z-index: 2;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #202020;
    text-transform: uppercase;
}

.sub-title i {
    color: #000;
    font-size: 10px;
}

.section-title h2 {
    margin-top: 18px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    color: #141414;
    letter-spacing: -.8px;
}

/*==================================================
MAIN WRAPPER
==================================================*/

.about-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.about-left {
    flex: 0 0 50%;
    position: relative;
}

.about-right {
    flex: 0 0 50%;
}

/*==================================================
LEFT IMAGE AREA
==================================================*/

.image-wrapper {
    position: relative;
    width: 100%;
    min-height: 760px;
}

/* Large Image */

.main-image {
    width: 560px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);
}

.main-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

/*==================================================
GREEN DECORATIVE BARS
==================================================*/

.green-bars {
    position: absolute;
    top: 70px;
    right: -38px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dark-bar {
    width: 22px;
    height: 85px;
    background: #202b00;
}

.light-bar {
    width: 22px;
    height: 210px;
    background: #c3f842;
}

/*==================================================
SMALL IMAGE
==================================================*/

.small-image {
    position: absolute;
    width: 360px;
    right: -40px;
    bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .15);
    z-index: 3;
}

.small-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/*==================================================
IMAGE HOVER EFFECT
==================================================*/

.main-image,
.small-image {
    transition: .45s;
}

.main-image:hover {
    transform: translateY(-10px);
}

.small-image:hover {
    transform: translateY(-8px);
}

.main-image img,
.small-image img {
    transition: .5s;
}

.main-image:hover img,
.small-image:hover img {
    transform: scale(1.05);
}

/*==================================================
LEFT SIDE DECORATIVE SHADOW
==================================================*/

.image-wrapper::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle,
            rgba(200, 255, 20, .20),
            transparent 75%);
    left: -140px;
    bottom: -120px;
    z-index: -1;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle,
            rgba(0, 0, 0, .05),
            transparent 75%);
    right: -100px;
    top: -80px;
    z-index: -1;
}

/*==================================================
RIGHT CONTENT
==================================================*/

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-description {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 560px;
}

/*==================================================
SERVICE CARD
==================================================*/

.service-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #fff;
    border: 2px solid #222;
    border-radius: 18px;
    padding: 38px 34px;
    margin-bottom: 28px;
    transition: all .35s ease;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    border-color: #c3f842;
}

/* Hover Accent */

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #c3f842;
    opacity: .08;
    transition: .45s;
}

.service-card:hover::before {
    width: 100%;
}

/*==================================================
ICON
==================================================*/

.service-icon {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #eef4d9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-icon::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1c2206;
}

.service-icon img {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/*==================================================
CARD CONTENT
==================================================*/

.service-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 34px;
    color: #111;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-content p {
    font-size: 19px;
    color: #555;
    line-height: 1.9;
    font-weight: 400;
}

/*==================================================
FLOATING STARS
==================================================*/

.floating-stars {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
}

.floating-stars span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: #d8ff45;
    transform: rotate(45deg);
}

.floating-stars span:nth-child(1) {
    top: 0;
    right: 0;
}

.floating-stars span:nth-child(2) {
    bottom: 6px;
    left: 10px;
    width: 5px;
    height: 5px;
}

/*==================================================
REVIEW BADGE
==================================================*/

.review-wrapper {
    position: absolute;
    left: -10px;
    bottom: 70px;
    display: flex;
    align-items: center;
    z-index: 20;
}

/* Circle */

.rating-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    border: 10px solid #c3f842;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.rating-circle .star {
    color: #ff9900;
    font-size: 24px;
    margin-bottom: 3px;
}

.rating-circle h3 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

/*==================================================
REVIEW BOX
==================================================*/

.review-box {
    position: relative;
    margin-left: -12px;
    width: 420px;
}

.review-top {
    background: #c3f842;
    color: #111;
    padding: 10px 35px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.review-bottom {
    background: #1b1b08;
    color: #fff;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 500;
}

/* Right Slant */

.review-slant {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 54px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 30px solid #1b1b08;
}

.review-slant::after {
    content: "";
    position: absolute;
    left: -18px;
    top: -44px;
    width: 10px;
    height: 60px;
    background: #fff;
    transform: rotate(28deg);
}

/*==================================================
CHECK LIST
==================================================*/

.check-list {
    margin-top: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.check-item i {
    font-size: 28px;
    color: #172000;
}

.check-item span {
    font-size: 16px;
    color: #172000;
    font-weight: 500;
}

/*==================================================
HOVER EFFECTS
==================================================*/

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.05);
    transition: .35s;
}

.service-card:hover .service-content h3 {
    color: #000;
}

.service-card:hover .floating-stars span {
    animation: starFloat 1.2s infinite alternate;
}

@keyframes starFloat {

    from {
        transform: translateY(0) rotate(45deg);
    }

    to {
        transform: translateY(-6px) rotate(45deg);
    }

}

.check-item:hover {
    transform: translateX(8px);
    transition: .3s;
}

.check-item:hover i {
    color: #c3f842;
}

.review-wrapper:hover {
    transform: translateY(-5px);
    transition: .35s;
}

/*=========================================================
RESPONSIVE CSS
PART 2C
=========================================================*/

/*=============================
Large Desktop
=============================*/

@media (max-width:1400px) {

    /* .container {
        max-width: 1200px;
    } */

    .section-title h2 {
        font-size: 58px;
    }

    .about-wrapper {
        gap: 50px;
    }

    .main-image {
        width: 500px;
    }

    .main-image img {
        height: 580px;
    }

    .small-image {
        width: 320px;
        right: -20px;
    }

    .small-image img {
        height: 300px;
    }

    .review-box {
        width: 360px;
    }

    .service-content h3 {
        font-size: 30px;
    }

    .service-content p {
        font-size: 18px;
    }

}


/*=============================
Laptop
=============================*/

@media (max-width:1200px) {

    .about-company {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 50px;
    }

    .about-wrapper {
        gap: 40px;
    }

    .main-image {
        width: 430px;
    }

    .main-image img {
        height: 520px;
    }

    .small-image {
        width: 280px;
        bottom: 40px;
    }

    .small-image img {
        height: 260px;
    }

    .review-wrapper {
        transform: scale(.88);
        transform-origin: left center;
    }

    .about-description {
        font-size: 18px;
    }

    .service-card {
        padding: 28px;
    }

    .service-icon {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .service-icon::before {
        width: 62px;
        height: 62px;
    }

    .service-icon img {
        width: 36px;
        height: 36px;
    }

    .service-content h3 {
        font-size: 28px;
    }

    .service-content p {
        font-size: 17px;
    }

    .check-item span {
        font-size: 18px;
    }

}


/*=============================
Tablet Landscape
=============================*/

@media (max-width:992px) {

    .about-company {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .about-wrapper {

        flex-direction: column;

        align-items: center;

    }

    .about-left,
    .about-right {
        width: 100%;
        flex: 100%;
    }

    .image-wrapper {

        min-height: auto;

        display: flex;

        justify-content: center;

        padding-bottom: 240px;

    }

    .main-image {
        width: 100%;
        max-width: 620px;
    }

    .main-image img {
        height: 620px;
    }

    .small-image {

        width: 330px;

        right: 20px;

        bottom: 20px;

    }

    .review-wrapper {

        left: 20px;

        bottom: 90px;

    }

    .about-right {

        margin-top: 70px;

    }

    .about-description {

        max-width: 100%;

    }

    .service-content h3 {

        font-size: 30px;

    }

}


/*=============================
Tablet Portrait
=============================*/

@media (max-width:768px) {

    .about-company {

        padding: 60px 0;

    }

    .container {

        padding: 0 18px;

    }

    .sub-title {

        font-size: 13px;

    }

    .section-title {

        margin-bottom: 45px;

    }

    .section-title h2 {

        font-size: 36px;

        line-height: 1.2;

    }

    .image-wrapper {

        padding-bottom: 200px;

    }

    .main-image img {

        height: 500px;

    }

    .small-image {

        width: 250px;

        border-width: 6px;

    }

    .small-image img {

        height: 220px;

    }

    .review-wrapper {

        transform: scale(.78);

        left: 0;

        bottom: 65px;

    }

    .about-right {

        margin-top: 40px;

    }

    .about-description {

        font-size: 17px;

        margin-bottom: 25px;

    }

    .service-card {

        gap: 18px;

        padding: 22px;

    }

    .service-icon {

        width: 70px;

        min-width: 70px;

        height: 70px;

    }

    .service-icon::before {

        width: 54px;

        height: 54px;

    }

    .service-icon img {

        width: 30px;

        height: 30px;

    }

    .service-content h3 {

        font-size: 24px;

    }

    .service-content p {

        font-size: 16px;

        line-height: 1.7;

    }

    .check-item {

        margin-bottom: 16px;

    }

    .check-item span {

        font-size: 17px;

    }

    .check-item i {

        font-size: 24px;

    }

}


/*=============================
Large Mobile
=============================*/

@media (max-width:576px) {

    .about-company {

        padding: 50px 0;

    }

    .section-title h2 {

        font-size: 30px;

    }

    .image-wrapper {

        padding-bottom: 170px;

    }

    .main-image {

        border-radius: 14px;

    }

    .main-image img {

        height: 360px;

    }

    .green-bars {

        display: none;

    }

    .small-image {

        width: 180px;

        right: 10px;

        bottom: 20px;

    }

    .small-image img {

        height: 160px;

    }

    .review-wrapper {

        transform: scale(.60);

        left: -25px;

        bottom: 30px;

    }

    .about-right {

        margin-top: 20px;

    }

    .service-card {

        flex-direction: column;

        align-items: flex-start;

    }

    .service-icon {

        margin-bottom: 10px;

    }

    .service-content h3 {

        font-size: 22px;

    }

    .service-content p {

        font-size: 15px;

    }

    .check-item {

        align-items: flex-start;

    }

    .check-item span {

        font-size: 16px;

    }

}


/*=============================
Small Mobile
=============================*/

@media (max-width:420px) {

    .container {

        padding: 0 15px;

    }

    .section-title {

        margin-bottom: 35px;

    }

    .section-title h2 {

        font-size: 26px;

    }

    .sub-title {

        font-size: 11px;

        gap: 6px;

    }

    .main-image img {

        height: 300px;

    }

    .small-image {

        width: 150px;

        bottom: 15px;

        right: 5px;

    }

    .small-image img {

        height: 130px;

    }

    .review-wrapper {

        transform: scale(.48);

        left: -45px;

        bottom: 10px;

    }

    .about-description {

        font-size: 15px;

    }

    .service-card {

        padding: 18px;

        border-radius: 14px;

    }

    .service-icon {

        width: 60px;

        min-width: 60px;

        height: 60px;

    }

    .service-icon::before {

        width: 45px;

        height: 45px;

    }

    .service-icon img {

        width: 24px;

        height: 24px;

    }

    .service-content h3 {

        font-size: 20px;

    }

    .service-content p {

        font-size: 14px;

    }

    .check-item {

        gap: 10px;

    }

    .check-item i {

        font-size: 20px;

    }

    .check-item span {

        font-size: 14px;

    }

    .review-box {

        width: 250px;

    }

    .review-top {

        font-size: 10px;

        padding: 8px 18px;

    }

    .review-bottom {

        font-size: 12px;

        padding: 10px 18px;

    }

    .rating-circle {

        width: 75px;

        height: 75px;

        border-width: 6px;

    }

    .rating-circle h3 {

        font-size: 26px;

    }

    .rating-circle .star {

        font-size: 16px;

    }

}


/*=============================
Extra Small Devices
=============================*/

@media (max-width:360px) {

    .section-title h2 {

        font-size: 22px;

    }

    .main-image img {

        height: 260px;

    }

    .small-image {

        width: 130px;

    }

    .small-image img {

        height: 110px;

    }

    .service-content h3 {

        font-size: 18px;

    }

    .service-content p {

        font-size: 13px;

    }

    .check-item span {

        font-size: 13px;

    }

    .review-wrapper {

        display: none;

    }

}


/*==================================================
RESET
==================================================*/



.about-v3 {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.about-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

/*==================================================
TITLE
==================================================*/

.about-title {
    text-align: center;
    margin-bottom: 90px;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subtitle .line {
    width: 50px;
    height: 2px;
    background: #b5d900;
}

.subtitle i {
    font-size: 11px;
    color: #111;
}

.about-title h2 {
    margin-top: 20px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    color: #141414;
}

/*==================================================
GRID
==================================================*/

.about-row {
    display: grid;
    grid-template-columns: 41% 48%;
    align-items: center;
    gap: 70px;
}

/*==================================================
LEFT SIDE
==================================================*/

.about-images {
    position: relative;
    min-height: 760px;
}

/* large image */

.image-large {
    width: 560px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.image-large img {
    height: 650px;
    object-fit: cover;
}

/* small image */

.image-small {
    position: absolute;
    right: -40px;
    bottom: 40px;
    width: 360px;
    border: 8px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    z-index: 3;
}

.image-small img {
    height: 320px;
    object-fit: cover;
}

/*==================================================
GREEN STRIP
==================================================*/

.green-strip {
    position: absolute;
    right: -30px;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1;
}

.green-strip .dark {
    width: 22px;
    height: 90px;
    background: #20280a;
}

.green-strip .light {
    width: 22px;
    height: 171px;
    background: #c3f842;
}

/*==================================================
REVIEW BADGE
==================================================*/

.google-review {
    position: absolute;
    left: -20px;
    bottom: 95px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.review-circle {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #fff;
    border: 14px solid #c3f842 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 2;
}

.review-circle i {
    color: #ff9800;
    font-size: 20px;
    margin-bottom: 4px;
}

.review-circle h3 {
    font-size: 38px;
    line-height: 1;
}

.review-content {
    margin-left: -12px;
    width: 410px;
}

.review-top {
    background: #c3f842;
    padding: 10px 32px;
    font-size: 14px;
    max-width: 375px;
    font-weight: 700;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    content: "";
    z-index: -1;
    text-transform: uppercase;
}


.review-bottom {
    background: rgb(23 32 0) !important;
    color: #fff;
    padding: 18px 32px;
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
    content: "";
    z-index: -1;
    font-size: 18px;
}

.review-arrow {
    position: absolute !important;
    right: 4px !important;
    top: 66% !important;
    /* left: 545px; */
    transform: translateY(-52%) skew(-38deg) !important;
    width: 12px !important;
    height: 44% !important;
    background: #fff !important;
}

/*==================================================
RIGHT CONTENT
==================================================*/

.about-content {
    position: relative;
    z-index: 2;
}

.about-intro {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: #172000;
    font-weight: 500;
    margin-bottom: 38px;
    max-width: 620px;
}

/*==================================================
SERVICE CARD
==================================================*/

.service-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 34px;
    margin-bottom: 28px;
    background: #fff;
    border: 2px solid #181818;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

/* left accent like screenshot */

.service-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #c3f842;
    transform: scaleY(0);
    transform-origin: top;
    transition: .35s;
}

.service-box:hover::before {
    transform: scaleY(1);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .10);
    border-color: #c3f842;
}

/*==================================================
ICON
==================================================*/

.icon-box {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #e2e9d0;
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.icon-box::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #172000;
}

.icon-box.iconss {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #e2e9d0;
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.icon-box.iconss::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #aaf81e !important;
}


.icon-box img {
    width: 80px;
    height: 70px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: .35s;
}

.service-box:hover .icon-box img {
    transform: scale(1.12) rotate(deg);
}

/*==================================================
CONTENT
==================================================*/

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    line-height: 34px;
    color: #172000;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-info p {
    font-size: 18px;
    line-height: 1.9;
    color: #5b5b5b;
}

/*==================================================
FLOATING STAR
==================================================*/

.shape-star {
    position: absolute;
    right: 24px;
    top: 22px;
    width: 40px;
    height: 40px;
}

.shape-star span {
    position: absolute;
    background: #d5ff3a;
    transform: rotate(45deg);
}

.shape-star span:first-child {
    width: 10px;
    height: 10px;
    right: 0;
    top: 0;
}

.shape-star span:last-child {
    width: 6px;
    height: 6px;
    left: 8px;
    bottom: 8px;
}

/*==================================================
CHECKLIST
==================================================*/

.about-checklist {
    margin-top: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5e2;
    border: 1px solid #172000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.check-icon i {
    color: #172000;
    font-size: 15px;
}

.check-item span {
    font-size: 16px;
    color: #172000;
    font-weight: 500;
    /* line-height: 1.5; */
}

/*==================================================
HOVER EFFECTS
==================================================*/

.check-item {
    transition: .3s;
}

.check-item:hover {
    transform: translateX(8px);
}

.check-item:hover .check-icon {
    background: #c3f842;
}

.check-item:hover .check-icon i {
    color: #000;
}

/*==================================================
IMAGE EFFECTS
==================================================*/

.image-large,
.image-small {
    transition: .45s ease;
}

.image-large:hover {
    transform: translateY(-10px);
}

.image-small:hover {
    transform: translateY(-8px);
}

.image-large img,
.image-small img {
    transition: .6s ease;
}

.image-large:hover img,
.image-small:hover img {
    transform: scale(1.05);
}

/*==================================================
GOOGLE REVIEW FLOAT
==================================================*/

.google-review {
    animation: reviewFloat 4s ease-in-out infinite;
}

@keyframes reviewFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}

/*==================================================
STAR ANIMATION
==================================================*/

.service-box:hover .shape-star span {

    animation: starPulse .8s alternate infinite;

}

@keyframes starPulse {

    from {
        transform: rotate(45deg) scale(1);
    }

    to {
        transform: rotate(45deg) scale(1.35);
    }

}

/*==================================================
RESPONSIVE
==================================================*/

/*************** 1600px ***************/

@media (max-width:1600px) {

    .about-container {
        max-width: 1280px;
    }

    .about-title h2 {
        font-size: 60px;
    }

    .image-large {
        width: 530px;
    }

    .image-large img {
        height: 620px;
    }

    .image-small {
        width: 340px;
    }

    .image-small img {
        height: 300px;
    }

    .google-review {
        left: -10px;
    }

}


/*************** 1400px ***************/

@media (max-width:1400px) {

    .about-row {
        gap: 90px;
    }

    .about-title h2 {
        font-size: 56px;
    }

    .image-large {
        width: 500px;
    }

    .image-large img {
        height: 580px;
    }

    .image-small {
        width: 310px;
        right: -36px;
    }

    .review-content {
        width: 360px;
    }

    .service-info h3 {
        font-size: 30px;
    }

    .service-info p {
        font-size: 17px;
    }

}


/*************** 1200px ***************/

@media (max-width:1200px) {

    .about-v3 {
        padding: 90px 0;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-images {
        max-width: 650px;
        margin: auto;
    }

    .about-content {
        max-width: 720px;
        margin: auto;
    }

    .image-large {
        width: 100%;
    }

    .image-large img {
        height: 650px;
    }

    .image-small {
        right: 0;
    }

    .green-strip {
        right: -20px;
    }

    .about-title {
        margin-bottom: 70px;
    }

}


/*************** 991px ***************/

@media (max-width:991px) {

    .about-title h2 {
        font-size: 46px;
    }

    .about-intro {
        font-size: 19px;
    }

    .service-box {
        padding: 28px;
    }

    .service-info h3 {
        font-size: 26px;
    }

    .service-info p {
        font-size: 16px;
    }

    .check-item span {
        font-size: 18px;
    }

    .image-large img {
        height: 540px;
    }

    .image-small {
        width: 260px;
    }

    .image-small img {
        height: 240px;
    }

    .google-review {

        transform: scale(.82);

        transform-origin: left bottom;

    }

}


/*************** 768px ***************/

@media (max-width:768px) {

    .about-v3 {

        padding: 70px 0;

    }

    .about-title {

        margin-bottom: 50px;

    }

    .about-title h2 {

        font-size: 38px;

    }

    .subtitle {

        font-size: 13px;

    }

    .about-images {

        min-height: auto;

        padding-bottom: 190px;

    }

    .image-large img {

        height: 470px;

    }

    .image-small {

        width: 230px;

        bottom: 20px;

    }

    .image-small img {

        height: 200px;

    }

    .google-review {

        transform: scale(.72);

        left: 0;

        bottom: 40px;

    }

    .service-box {

        flex-direction: column;

        gap: 18px;

    }

    .icon-box {

        width: 75px;

        min-width: 75px;

        height: 75px;

    }

    .icon-box::before {

        width: 58px;

        height: 58px;

    }

    .service-info h3 {

        font-size: 24px;

    }

    .about-intro {

        margin-bottom: 25px;

    }

}


/*************** 576px ***************/

@media (max-width:576px) {

    .about-container {

        padding: 0 18px;

    }

    .about-title h2 {

        font-size: 30px;

        line-height: 1.2;

    }

    .subtitle {

        gap: 8px;

    }

    .subtitle .line {

        width: 30px;

    }

    .image-large {

        border-radius: 12px;

    }

    .image-large img {

        height: 360px;

    }

    .image-small {

        width: 170px;

        border-width: 5px;

    }

    .image-small img {

        height: 150px;

    }

    .green-strip {

        display: none;

    }

    .google-review {

        left: -20px;

        transform: scale(.58);

    }

    .review-content {

        width: 280px;

    }

    .review-top {

        font-size: 10px;

        padding: 10px 18px;

    }

    .review-bottom {

        font-size: 13px;

        padding: 12px 18px;

    }

    .review-circle {

        width: 82px;

        height: 82px;

    }

    .review-circle h3 {

        font-size: 28px;

    }

    .about-intro {

        font-size: 16px;

    }

    .service-box {

        padding: 22px;

    }

    .service-info h3 {

        font-size: 22px;

    }

    .service-info p {

        font-size: 15px;

    }

    .check-item {

        gap: 12px;

    }

    .check-item span {

        font-size: 16px;

    }

}


/*************** 420px ***************/

@media (max-width:420px) {

    .about-title h2 {

        font-size: 26px;

    }

    .image-large img {

        height: 300px;

    }

    .image-small {

        width: 140px;

    }

    .image-small img {

        height: 120px;

    }

    .google-review {

        display: none;

    }

    .service-box {

        border-radius: 14px;

        padding: 18px;

    }

    .icon-box {

        width: 65px;

        height: 65px;

        min-width: 65px;

    }

    .icon-box::before {

        width: 48px;

        height: 48px;

    }

    .icon-box img {

        width: 28px;

        height: 28px;

    }

    .service-info h3 {

        font-size: 20px;

    }

    .service-info p {

        font-size: 14px;

    }

    .check-item span {

        font-size: 15px;

    }

}


/*==============================
Google Font
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==============================
Reset
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/*==============================
Section
==============================*/

.cleaning-section {
    width: 100%;
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.container {
    width: 95%;
    /* max-width: 1280px; */
    margin: auto;
}


/*==============================
Wrapper
==============================*/

.cleaning-wrapper {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 55px;
}


/*==============================
LEFT SIDE
==============================*/

.cleaning-left {
    position: relative;
    min-height: 690px;
}


/*==============================
Main Image
==============================*/

.main-image {
    width: 100%;
    max-width: 610px;
    border-radius: 6px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
}


/*==============================
Decorative Bars
==============================*/

.design-bars {
    position: absolute;
    top: 30px;
    right: -28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-dark {
    width: 18px;
    height: 55px;
    background: #243100;
}

.bar-green {
    width: 18px;
    height: 100px;
    background: #d4ff2d;
}


/*==============================
Floating Image
==============================*/

.floating-image {
    position: absolute;
    right: 25px;
    bottom: 18px;
    width: 275px;
    border: 6px solid #fff;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    z-index: 5;
}

.floating-image img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}


/*==============================
Review Box
==============================*/

.review-box {

    position: absolute;

    left: -28px;

    bottom: 42px;

    display: flex;

    align-items: center;

    z-index: 20;

}


/*==============================
Circle
==============================*/

.review-circle {
    width: 125px;
    height: 125px;

    background: #fff;

    border-radius: 50%;

    border: 8px solid #a6ff00;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

    position: relative;

    z-index: 2;

}

.review-circle .star {

    font-size: 28px;

    color: #ff9800;

    line-height: 1;

}

.review-circle h2 {

    font-size: 34px;

    color: #3d5b1a;

    font-weight: 700;

    margin-top: 2px;

}


/*==============================
Review Content
==============================*/

.review-content {

    width: 420px;

    margin-left: -27px;

    overflow: hidden;

    border-radius: 0 0 0 0;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

}

.review-content .verified {

    background: #b8ff18;

    color: #233000;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .2px;

    text-transform: uppercase;

    padding: 10px 26px 10px 48px;

}

.review-content .trusted {

    background: #1b2600;

    color: #fff;

    font-size: 17px;

    padding: 16px 48px;

    position: relative;

    font-weight: 500;

}


/*==============================
White Arrow
==============================*/

.review-arrow {
    position: absolute;
    right: -67px;
    top: 50%;
    /* left: 545px; */
    transform: translateY(-50%) skew(-25deg);
    width: 15px;
    height: 48%;
    background: #fff;
}

/*=========================================
RIGHT SIDE
=========================================*/

.cleaning-right {
    width: 100%;
}

.section-title {
    font-size: 40px;
    line-height: 1.35;
    font-weight: 700;
    color: #243100;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}


/*=========================================
SERVICE CARD
=========================================*/

.service-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 28px;

    padding: 28px 30px;

    margin-bottom: 22px;

    background: #fff;

    border: 1.5px solid #8d8d8d;

    border-radius: 12px;

    transition: .35s ease;

}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);

}


/*=========================================
ICON AREA
=========================================*/

.service-icon {

    flex-shrink: 0;

}

.icon-circle {

    width: 92px;

    height: 92px;

    border-radius: 50%;

    background: #dce8bc;

    display: flex;

    justify-content: center;

    align-items: center;

}


/* Dark Circle */

.icon-circle::before {

    content: "";

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: #182300;

    position: absolute;

}


/*=========================================
SVG ICON
=========================================*/

.icon-circle {

    position: relative;

}

.icon-circle svg {

    position: relative;

    z-index: 5;

    width: 40px;

    height: 40px;

    fill: none;

    stroke: #c4ff19;

    stroke-width: 2.6;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/*=========================================
CONTENT
=========================================*/

.service-content {

    flex: 1;

}

.service-content h3 {

    font-size: 32px;

    color: #243100;

    margin-bottom: 14px;

    font-weight: 700;

    line-height: 1.2;

}

.service-content p {

    font-size: 18px;

    color: #666;

    line-height: 1.95;

    font-weight: 400;

}


/*=========================================
CARD BORDER ANIMATION
=========================================*/

.service-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 4px;

    background: #cfff2d;

    border-radius: 0 0 12px 12px;

    transition: .45s;

}

.service-card:hover::after {

    width: 100%;

}


/*=========================================
CARD HOVER
=========================================*/

.service-card:hover {

    border-color: #cfff2d;

}

.service-card:hover h3 {

    color: #1f3300;

}

.service-card:hover .icon-circle {

    transform: rotate(8deg);

    transition: .4s;

}

.service-card:hover svg {

    transform: scale(1.08);

    transition: .4s;

}


/*==============================
Section Background Images
==============================*/
/* .about-v3 .shape2 {
    position: absolute;
    left: 0;
    bottom: -18px;
    opacity: 0.3;
    z-index: -1;
}


.about-v3 .shape3 {
    position: absolute;
    top: 29px;
    right: 0;
    opacity: 0.3;
    z-index: -1;
} */
/*==============================
Section
==============================*/
.about-v3 {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* Keep all content above the shapes */
.about-v3 .about-container {
    position: relative !important;
    z-index: 2 !important;
}

/*==============================
Bottom Left Shape
==============================*/
.about-v3 .shape2 {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    opacity: 0.25 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.about-v3 .shape2 img {
    display: block !important;
    width: 220px !important;
    height: auto !important;
}

/*==============================
Top Right Shape
==============================*/
.about-v3 .shape3 {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    opacity: 0.25 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.about-v3 .shape3 img {
    display: block !important;
    width: 240px !important;
    height: auto !important;
}

/*==============================
Responsive
==============================*/
@media (max-width: 991px) {

    .about-v3 .shape2 img {
        width: 170px !important;
    }

    .about-v3 .shape3 img {
        width: 180px !important;
    }

}

@media (max-width: 767px) {

    .about-v3 .shape2 img {
        width: 120px !important;
    }

    .about-v3 .shape3 img {
        width: 130px !important;
    }

}


.shape-star {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}


.blink-star {
    animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.blink-star {
    width: 50px !important;
    animation: fadeBlink 3s ease-in-out infinite !important;
}

@keyframes fadeBlink {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}





/*==========================================
    WHY CHOOSE US SECTION
==========================================*/
.why-choose-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f8f8f8;
    z-index: 1;
}

/* Left Side Carpet Image */
.why-choose-section::before {
    content: "";
    position: absolute;
    top: 133px;
    left: -477px;
    width: 100%;
    height: 100%;
    background: url(../images/slider-v3-img3.jpg) no-repeat left center;
    background-size: cover;
    z-index: -2;
}

.sec-title {
    position: relative;
    display: block;
    margin-top: -11px;
    padding-bottom: 62px;
}

.sec-title__tagline {
    position: relative;
    display: inline-block;
    margin-bottom: 13px;
}

.sec-title__tagline p {
    color: var(--clenq-black2);
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
}

.sec-title__tagline p .left-shape {
    position: relative;
    display: inline-block;
    padding-right: 3px;
    top: -1px;
}

.sec-title__tagline p .right-shape {
    position: relative;
    display: inline-block;
    padding-left: 3px;
    top: -1px;
}

.sec-title__title {
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
}


/* White Overlay */
.why-choose-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    z-index: -1;
}

/* .why-choose-section {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
    background: url("../images/slider-v3-img3.jpg") center center/cover no-repeat;
} */

/* .why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(1px);
} */

.why-choose-section .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: auto;
}

/*==========================================
    SECTION TITLE
==========================================*/

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title .sub-title {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #202020;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;
    color: #18200b;
    margin: 0;
}

/*==========================================
    GRID
==========================================*/

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/*==========================================
    CARD
==========================================*/

.why-card {
    background: rgba(255, 255, 255, .88);
    min-height: 200px;
    border-radius: 10px;
    padding: 30px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

/* diagonal pattern */

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, .30) 0px,
            rgba(255, 255, 255, .30) 12px,
            rgba(240, 240, 240, .55) 12px,
            rgba(240, 240, 240, .55) 24px);
    opacity: .45;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

/*==========================================
    ICON
==========================================*/

.icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--clenq-black);
    border-radius: 50%;
    border: 1px solid var(--clenq-black2);
    margin: 0 auto 21px;
    z-index: 5;
}

a {
    color: var(--clenq-black);
    transition: .4s !important;
    -webkit-transition: all .4s ease-in-out !important;
}

/* .icon-box img {
    width: 28px;
} */

/*==========================================
    CARD CONTENT
==========================================*/

.why-card h2 {
    font-size: 24px;
    font-weight: 500;

    margin-bottom: 12px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #17200b;
    margin: 0;
}

/*==========================================
    CTA CARD
==========================================*/

.cta-card {
    grid-column: 2 / span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 200px;
    border-radius: 0;
    overflow: hidden;
    padding: 40px;
    background: linear-gradient(90deg,
            #313f09 0%,
            #202020 50%,
            #4b4b4b 100%);
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, .06),
            transparent 45%);
}

.cta-content {
    position: relative;
    z-index: 5;
    width: 42%;
}

.cta-content h2 {
    color: #ffffff !important;
    font-size: 30px;
    line-height: 45px;
    font-weight: 400;
}


.read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 60px;
    background: #c3f842;
    color: #172000;
    margin-top: 30px;
    border: 1px solid var(--clenq-black);
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: .35s;
}

.read-btn:hover {
    background: #fff;
    color: #111;
}

/* .car-image {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 54%;
    z-index: 2;
} */
.car-image {
    position: absolute;
    right: 4px;
    bottom: -44px;
    width: 95%;
    z-index: 2;
}

.car-image img {
    width: 100%;
    display: block;
}

/*==========================================
    FINISHING EFFECTS
==========================================*/

/* Smooth transition */
.why-card,
.cta-card,
.read-btn,
.icon-box,
.car-image img {
    transition: all .35s ease;
}

/* Icon Hover */
.why-card:hover .icon-box {
    transform: rotate(360deg) scale(1.08);
}

/* Car Animation */
.car-image img {
    animation: carFloat 4s ease-in-out infinite;
}

@keyframes carFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CTA Button Hover */
.read-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
}

/* Card Hover */
.why-card:hover {
    background: #ffffff;
}

/* Card Border Animation */

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: .4s;
    pointer-events: none;
}

.why-card:hover::after {
    border: 1px solid #172000;
}

/*==========================================
    LARGE DESKTOP
==========================================*/

@media (max-width:1400px) {

    .section-title h2 {
        font-size: 50px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clenq-black);
    margin: 0;
    font-family: var(--clenq-font-two) !important;
}

/*==========================================
    DESKTOP
==========================================*/

@media (max-width:1200px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-grid {
        gap: 18px;
    }

    .section-title h2 {
        font-size: 46px;
    }

    .why-card {
        padding: 28px 22px;
    }

    .cta-card {
        padding: 35px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

}

/*==========================================
    TABLET
==========================================*/

@media (max-width:991px) {

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .cta-card {

        grid-column: 1 / span 2;

        min-height: 260px;

        padding: 35px;

    }

    .cta-content {

        width: 50%;

    }

    .cta-content h2 {

        font-size: 32px;

    }

    .car-image {

        width: 48%;

        right: -15px;

    }

}

/*==========================================
    MOBILE
==========================================*/

@media (max-width:767px) {

    .why-choose-section {

        padding: 70px 0;

    }

    .section-title h2 {

        font-size: 32px;

        line-height: 1.2;

    }

    .section-title .sub-title {

        font-size: 10px;

        letter-spacing: 2px;

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .why-card {

        min-height: auto;

        padding: 35px 25px;

    }

    .cta-card {

        grid-column: auto;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        min-height: auto;

        padding: 35px 25px 260px;

    }

    .cta-content {

        width: 100%;

    }

    .cta-content h2 {

        font-size: 30px;

        margin-bottom: 25px;

    }

    .car-image {

        width: 100%;

        right: 0;

        bottom: 0;

        text-align: center;

    }

    .car-image img {

        width: 92%;

        margin: auto;

    }

}

/*==========================================
    SMALL MOBILE
==========================================*/

@media (max-width:575px) {

    .why-choose-section {

        padding: 60px 15px;

    }

    .section-title {

        margin-bottom: 30px;

    }

    .section-title h2 {

        font-size: 28px;

    }

    .why-card {

        padding: 28px 20px;

    }

    .icon-box {

        width: 56px;

        height: 56px;

    }

    .icon-box img {

        width: 26px;

    }

    .why-card h2 {

        font-size: 20px;

    }

    .why-card p {

        font-size: 14px;

        line-height: 1.8;

    }

    .cta-content h2 {

        font-size: 26px;

    }

    .read-btn {

        width: 140px;

        height: 46px;

        font-size: 13px;

    }

}

/*==========================================
    EXTRA SMALL
==========================================*/

@media (max-width:420px) {

    .section-title h2 {

        font-size: 24px;

    }

    .cta-card {

        padding-bottom: 220px;

    }

    .cta-content h2 {

        font-size: 22px;

    }

}

/*==========================================
    IMAGE QUALITY
==========================================*/

img {

    max-width: 100%;

    height: auto;

    display: block;

}

/*==========================================
    BETTER FONT RENDERING
==========================================*/

body {

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}

/*==========================================
    OPTIONAL FADE ANIMATION
==========================================*/

.why-card {

    animation: fadeUp .8s ease both;

}

.why-card:nth-child(2) {

    animation-delay: .1s;

}

.why-card:nth-child(3) {

    animation-delay: .2s;

}

.why-card:nth-child(4) {

    animation-delay: .3s;

}

.cta-card {

    animation: fadeUp .8s ease .4s both;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(35px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.read-btn {
    position: relative;
    overflow: hidden;
}

.read-btn::before {

    content: "";

    position: absolute;

    left: var(--x);

    top: var(--y);

    width: 0;

    height: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);

    transform: translate(-50%, -50%);

    transition: .45s;

}

.read-btn:hover::before {

    width: 300px;

    height: 300px;

}

/*=========================================
    PROCESS ONE
=========================================*/

.process-one {
    position: relative;
    padding: 110px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.process-one .auto-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 12px;
}

/*=========================================
    TOP
=========================================*/

.process-one--three__top {
    margin-bottom: 55px;
}

.process-one--three__top-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/*=========================================
    TITLE
=========================================*/

.sec-title {
    margin: 0;
}

.sec-title__tagline {
    margin-bottom: 14px;
}

.sec-title__tagline p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #232812;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.left-shape,
.right-shape {
    display: flex;
    align-items: center;
}

.left-shape img,
.right-shape img {
    width: 12px;
}

.sec-title__title {
    margin: 0;
    color: #1d220d;
    font-size: 62px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.5px;
}

/*=========================================
    BUTTON
=========================================*/

.btn-box {
    flex-shrink: 0;
}

.thm-btn.style2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 195px;
    height: 66px;
    border-radius: 40px;
    background: #C8FF33;
    border: 2px solid #202020;
    color: #202020;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: .35s;
}

.thm-btn.style2:hover {
    background: #202020;
    color: #fff;
}

/*=========================================
    ROW
=========================================*/

.process-one__inner .row {
    row-gap: 28px;
}

/*=========================================
    CARD
=========================================*/

.process-one__single {
    position: relative;
    background: #F3F2EB;
    border-radius: 12px;
    padding: 34px 20px 38px;
    overflow: hidden;
    text-align: center;
    transition: .4s;
    min-height: 290px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

/* diagonal pattern */

.process-one__single::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            transparent 48%,
            rgba(255, 255, 255, .35) 49%,
            rgba(255, 255, 255, .35) 51%,
            transparent 52%);
    pointer-events: none;
}

.process-one__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

/*=========================================
    STAR IMAGE
=========================================*/

.shape3 {
    position: absolute;
    left: 24px;
    top: 22px;
    z-index: 5;
}

.shape3 img {
    width: 38px;
    display: block;
}

/*=========================================
    IMAGE
=========================================*/

.process-one__single-img {
    position: relative;
    width: 165px;
    margin: 8px auto 28px;
}

.process-one__single-img .inner {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    margin: auto;
}

.process-one__single-img .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=========================================
    NUMBER
=========================================*/

.count-box {
    position: absolute;
    width: 58px;
    height: 58px;
    background: #C8FF33;
    border-radius: 50%;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: #1e1e1e;
}

/*=========================================
    CONTENT
=========================================*/

.process-one__single-content h2 {
    margin: 0;
}

.process-one__single-content h2 a {
    color: #1f240f;
    text-decoration: none;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.process-one__single-content h2 a:hover {
    color: #7aa700;
}

/*=========================================
    HOVER
=========================================*/

.process-one__single:hover .inner img {
    transform: scale(1.08);
}

.process-one__single .inner img {
    transition: .5s;
}

.process-one__single:hover .count-box {
    transform: translateX(-50%) scale(1.08);
}

.count-box {
    transition: .35s;
}

.process-one__single:hover .shape3 img {
    transform: rotate(15deg);
}

.shape3 img {
    transition: .4s;
}

/*==========================================
    LARGE DESKTOP
==========================================*/

@media only screen and (max-width:1400px) {

    .sec-title__title {
        font-size: 56px;
    }

    .process-one__single-content h2 a {
        font-size: 32px;
    }

}

/*==========================================
    DESKTOP
==========================================*/

@media only screen and (max-width:1199px) {

    .process-one {
        padding: 90px 0;
    }

    .process-one--three__top-inner {
        gap: 30px;
    }

    .sec-title__title {
        font-size: 48px;
    }

    .thm-btn.style2 {
        width: 180px;
        height: 60px;
    }

    .process-one__single {

        min-height: 280px;

    }

    .process-one__single-img {

        width: 150px;

    }

    .process-one__single-img .inner {

        width: 150px;
        height: 150px;

    }

}

/*==========================================
    TABLET
==========================================*/

@media only screen and (max-width:991px) {

    .process-one {

        padding: 80px 0;

    }

    .process-one--three__top-inner {

        display: block;
        text-align: center;

    }

    .btn-box {

        margin-top: 35px;

    }

    .sec-title__tagline p {

        justify-content: center;

    }

    .sec-title__title {

        font-size: 42px;

    }

    .process-one__single {

        min-height: 270px;

    }

}

/*==========================================
    MOBILE
==========================================*/

@media only screen and (max-width:767px) {

    .process-one {

        padding: 70px 0;

    }

    .sec-title__title {

        font-size: 34px;
        line-height: 1.2;

    }

    .sec-title__tagline p {

        font-size: 12px;

    }

    .thm-btn.style2 {

        width: 170px;
        height: 56px;
        font-size: 15px;

    }

    .process-one__single {

        min-height: auto;
        padding: 30px 20px 35px;

    }

    .process-one__single-img {

        width: 135px;

    }

    .process-one__single-img .inner {

        width: 135px;
        height: 135px;

    }

    .count-box {

        width: 54px;
        height: 54px;
        font-size: 22px;

    }

    .process-one__single-content h2 a {

        font-size: 28px;

    }

}

/*==========================================
    SMALL MOBILE
==========================================*/

@media only screen and (max-width:575px) {

    .process-one {

        padding: 60px 0;

    }

    .sec-title__title {

        font-size: 28px;

    }

    .process-one__single {

        border-radius: 10px;

    }

    .shape3 {

        left: 18px;
        top: 18px;

    }

    .shape3 img {

        width: 30px;

    }

    .process-one__single-img {

        width: 120px;

    }

    .process-one__single-img .inner {

        width: 120px;
        height: 120px;
        border-width: 5px;

    }

    .count-box {

        width: 50px;
        height: 50px;
        font-size: 20px;

    }

    .process-one__single-content h2 a {

        font-size: 24px;

    }

}

/*==========================================
    PREMIUM HOVER
==========================================*/

.process-one__single {

    transition: all .45s ease;

}

.process-one__single:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);

}

.process-one__single:hover .inner img {

    transform: scale(1.1);

}

.process-one__single .inner img {

    transition: .6s ease;

}

.process-one__single:hover .count-box {

    transform: translateX(-50%) scale(1.1);

}

.count-box {

    transition: .35s;

}

.process-one__single:hover .shape3 {

    animation: starRotate .8s linear;

}

@keyframes starRotate {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}

/*==========================================
    BUTTON HOVER
==========================================*/

.thm-btn.style2 {

    position: relative;
    overflow: hidden;

}

.thm-btn.style2::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .25);

    transform: skewX(-25deg);

    transition: .6s;

}

.thm-btn.style2:hover::before {

    left: 120%;

}

/*==========================================
    CARD FADE
==========================================*/

.process-one__single {

    animation: fadeUp .8s ease both;

}

.process-one__single:nth-child(2) {

    animation-delay: .15s;

}

.process-one__single:nth-child(3) {

    animation-delay: .30s;

}

.process-one__single:nth-child(4) {

    animation-delay: .45s;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==========================================
    IMAGE QUALITY
==========================================*/

.process-one img {

    display: block;
    max-width: 100%;
    height: auto;

}

.process-one * {

    box-sizing: border-box;

}


/*=========================================
PROCESS SECTION
=========================================*/

.cv-process-section {
    position: relative;
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

.cv-process-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 70px;
}

.cv-process-title {
    max-width: 720px;
}

.cv-process-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--cv-text);
    margin-bottom: 18px;
}

.cv-process-tag img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.cv-process-title h2 {
    font-size: 52px;
    line-height: 1em;
    font-weight: 600;
    max-width: 800px;
    color: var(--clenq-black);

}

.cv-process-title h2 span {
    display: block;
}

.cv-process-btn-wrap {
    flex-shrink: 0;
    padding-top: 8px;
}

.cv-process-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    height: 68px;
    padding: 0 40px;
    background: var(--cv-green);
    color: #111;
    border-radius: 100px;
    border: 2px solid var(--cv-text);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .35s ease;
}

.cv-process-btn:hover {
    background: var(--cv-blue);
    color: #fff;
    transform: translateY(-5px);
}


/*=========================================
GRID
=========================================*/

.cv-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/*=========================================
CARD
=========================================*/

.cv-process-card {
    position: relative;
    background: #f4f3eb;
    border-radius: 24px;
    padding: 38px 30px 35px;
    text-align: center;
    overflow: hidden;
    transition: .4s ease;
    z-index: 1;
}

.cv-process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 0%,
            transparent 52%,
            rgba(255, 255, 255, .55) 52%,
            rgba(255, 255, 255, .55) 100%);
    z-index: -1;
}

.cv-process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}


/*=========================================
TOP STAR
=========================================*/

.cv-card-stars {
    position: absolute;
    left: 5px;
    top: -4px;
}

.cv-card-stars img {
    width: 42px;
    height: auto;
}


/*=========================================
IMAGE
=========================================*/

.cv-process-image {
    position: relative;
    width: 175px;
    height: 175px;
    margin: 18px auto 40px;
}

.cv-process-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #fff;
    object-fit: cover;
    transition: .45s ease;
}

.cv-process-card:hover .cv-process-image img {
    transform: scale(1.08);
}


/*=========================================
NUMBER
=========================================*/

.cv-process-number {
    position: absolute;
    right: 8px;
    bottom: -6px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--cv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: #111;
    transition: .35s ease;
}

.cv-process-card:hover .cv-process-number {
    transform: rotate(360deg);
}


/*=========================================
CONTENT
=========================================*/

.cv-process-content h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--cv-text);
    margin-bottom: 18px;
}

.cv-process-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cv-muted);
    margin: 0;
}


/*=========================================
HOVER
=========================================*/

.cv-process-card:hover h3 {
    color: var(--cv-blue);
}

.cv-process-card,
.cv-process-card h3,
.cv-process-card p,
.cv-process-image img,
.cv-process-number,
.cv-process-btn {
    transition: all .35s ease;
}

/*=========================================
RESPONSIVE
=========================================*/

/*==============================
Laptop
==============================*/
@media (max-width:1400px) {

    .cv-process-section {
        padding: 100px 0;
    }

    .cv-process-title h2 {
        font-size: 52px;
    }

    .cv-process-grid {
        gap: 24px;
    }

    .cv-process-card {
        padding: 35px 24px 30px;
    }

    .cv-process-image {
        width: 165px;
        height: 165px;
    }

    .cv-process-content h3 {
        font-size: 30px;
    }

}


/*==============================
Tablet Landscape
==============================*/
@media (max-width:1199px) {

    .cv-process-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        margin-bottom: 55px;
    }

    .cv-process-title {
        max-width: 100%;
    }

    .cv-process-title h2 {
        font-size: 48px;
    }

    .cv-process-btn-wrap {
        padding-top: 0;
    }

    .cv-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cv-process-card {
        padding: 35px 28px;
    }

}


/*==============================
Tablet
==============================*/
@media (max-width:991px) {

    .cv-process-section {
        padding: 80px 0;
    }

    .cv-process-heading {
        margin-bottom: 45px;
    }

    .cv-process-title h2 {
        font-size: 42px;
        line-height: 1.15;
    }

    .cv-process-tag {
        font-size: 14px;
    }

    .cv-process-btn {
        min-width: 190px;
        height: 60px;
        font-size: 15px;
    }

    .cv-process-card {
        border-radius: 20px;
    }

    .cv-process-image {
        width: 155px;
        height: 155px;
    }

    .cv-process-number {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .cv-process-content h3 {
        font-size: 28px;
    }

    .cv-process-content p {
        font-size: 16px;
        line-height: 1.7;
    }

}


/*==============================
Mobile
==============================*/
@media (max-width:767px) {

    .cv-process-section {
        padding: 70px 0;
    }

    .cv-process-heading {
        text-align: center;
        align-items: center;
        gap: 28px;
    }

    .cv-process-title {
        width: 100%;
    }

    .cv-process-title h2 {
        font-size: 34px;
    }

    .cv-process-title h2 span {
        display: inline;
    }

    .cv-process-tag {
        justify-content: center;
        font-size: 13px;
        gap: 8px;
    }

    .cv-process-tag img {
        width: 14px;
    }

    .cv-process-btn {
        width: 100%;
        max-width: 240px;
        margin: auto;
    }

    .cv-process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cv-process-card {
        max-width: 420px;
        margin: auto;
        padding: 35px 25px;
    }

    .cv-card-stars {
        left: 22px;
        top: 22px;
    }

    .cv-card-stars img {
        width: 36px;
    }

    .cv-process-image {
        width: 160px;
        height: 160px;
    }

    .cv-process-content h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

}


/*==============================
Small Mobile
==============================*/
@media (max-width:575px) {

    .cv-process-section {
        padding: 60px 0;
    }

    .cv-process-title h2 {
        font-size: 30px;
    }

    .cv-process-tag {
        font-size: 12px;
        letter-spacing: .06em;
    }

    .cv-process-btn {
        height: 56px;
        font-size: 14px;
    }

    .cv-process-card {
        padding: 30px 20px;
    }

    .cv-process-image {
        width: 145px;
        height: 145px;
        margin: 15px auto 35px;
    }

    .cv-process-image img {
        border-width: 5px;
    }

    .cv-process-number {
        width: 54px;
        height: 54px;
        font-size: 22px;
        right: 5px;
        bottom: -5px;
    }

    .cv-process-content h3 {
        font-size: 24px;
    }

    .cv-process-content p {
        font-size: 15px;
        line-height: 1.8;
    }

}


/*==============================
Extra Small
==============================*/
@media (max-width:420px) {

    .cv-process-title h2 {
        font-size: 27px;
    }

    .cv-process-card {
        padding: 28px 18px;
    }

    .cv-process-image {
        width: 135px;
        height: 135px;
    }

    .cv-process-content h3 {
        font-size: 22px;
    }

}

/*=========================================
PROCESS PREMIUM EFFECTS
=========================================*/

.cv-process-card {
    position: relative;
    isolation: isolate;
}

.cv-process-card::after {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(110deg,
            transparent 0%,
            rgba(255, 255, 255, .35) 50%,
            transparent 100%);
    transition: 1s;
    z-index: 2;
    pointer-events: none;
}

.cv-process-card:hover::after {
    left: 160%;
}

/* Image Ring */

.cv-process-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 2px dashed rgba(72, 111, 31, .25);
    border-radius: 50%;
    animation: cvRotate 18s linear infinite;
}

.cv-process-card:hover .cv-process-image::before {
    border-color: var(--cv-green);
}

/* Floating Image */

.cv-process-image {
    animation: cvFloat 4s ease-in-out infinite;
}

/* Number */

.cv-process-number {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* Button */

.cv-process-btn {
    overflow: hidden;
    position: relative;
}

.cv-process-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--cv-blue);
    transition: .4s;
    z-index: -1;
}

.cv-process-btn:hover::before {
    width: 100%;
}

.cv-process-btn:hover {
    color: #fff;
}

/* Card Hover */

.cv-process-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08),
        0 40px 80px rgba(0, 0, 0, .06);

}

.cv-process-card:hover .cv-process-content h3 {
    letter-spacing: .5px;
}

/* Image Zoom */

.cv-process-card:hover .cv-process-image img {
    transform: scale(1.08) rotate(2deg);
}

/*=========================================
KEYFRAMES
=========================================*/

@keyframes cvFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes cvRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/*=========================================
FINAL PREMIUM POLISH
=========================================*/

/* Card Background Texture */

.cv-process-card {
    background:
        radial-gradient(circle at top right,
            rgba(255, 255, 255, .65) 0%,
            rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, #f4f3eb 0%, #ece8dd 100%);
}

/* Decorative Shape */

.cv-process-card .cv-shape {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    z-index: 0;
}

.cv-process-card .cv-shape-two {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    z-index: 0;
}

/* Content Above Shapes */

.cv-process-image,
.cv-process-content,
.cv-card-stars {
    position: relative;
    z-index: 5;
}

/* Better Image Shadow */

.cv-process-image img {

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .12),
        0 5px 10px rgba(0, 0, 0, .08);

}

/* Number Badge */

.cv-process-number {

    border: 4px solid #fff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .15);

}

/* Heading */

.cv-process-content h3 {

    transition: .35s;

}

.cv-process-card:hover h3 {

    transform: translateY(-3px);

}

/* Paragraph */

.cv-process-content p {

    max-width: 240px;
    margin: auto;

}

/* Card Border */

.cv-process-card {

    border: 1px solid rgba(0, 0, 0, .04);

}

/* Card Hover Border */

.cv-process-card:hover {

    border-color: rgba(72, 111, 31, .25);

}

/* Button */

.cv-process-btn {

    box-shadow:
        0 10px 25px rgba(72, 111, 31, .18);

}

/* Button Hover */

.cv-process-btn:hover {

    box-shadow:
        0 18px 45px rgba(29, 86, 196, .30);

}

/* Image Ring */

.cv-process-image::after {

    content: "";

    position: absolute;

    inset: -22px;

    border-radius: 50%;

    border: 1px dashed rgba(0, 0, 0, .08);

    animation: cvRotateReverse 25s linear infinite;

}

/* Card Hover Image */

.cv-process-card:hover .cv-process-image {

    transform: translateY(-8px);

}

/* Smooth Transition */

.cv-process-card *,
.cv-process-card::before,
.cv-process-card::after {

    transition: .35s ease;

}

/* Reverse Rotation */

@keyframes cvRotateReverse {

    from {

        transform: rotate(360deg);

    }

    to {

        transform: rotate(0deg);

    }

}

.cv-process-content h2 a {
    font-size: 22px !important;
    line-height: 34px !important;
    font-family: Outfit, sans-serif;
    font-weight: 600 !important;
}

.cv-process-content h2 a {
    color: var(--clenq-black) !important;
    font-family: Outfit, sans-serif;
}

.cv-process-content h2 a {
    font-family: Outfit', sans-serif;

}

.cvs-service-grid-section {
    padding: 100px 0;
    background: #f3f3f3;
}

.cvs-service-grid-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.cvs-service-grid-heading {
    text-align: center;
    margin-bottom: 70px;
}

.cvs-service-grid-heading span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cvs-service-grid-heading h2 {
    font-size: 62px;
    font-weight: 800;
    color: #141b03;
    line-height: 1.1;
    margin: 0;
}

.cvs-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.cvs-service-card {
    position: relative;
}

.cvs-service-image {
    height: 350px;
    overflow: hidden;
}

.cvs-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.cvs-service-card:hover img {
    transform: scale(1.08);
}

.cvs-service-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.cvs-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

/* Dark transparent overlay */
.cvs-service-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 32, 0, .45);
    opacity: 0;
    transition: all .7s ease;
    z-index: 1;
}

/* Blur / Glass effect */
.cvs-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, .03);
    opacity: 0;
    transition: all .7s ease;
    z-index: 2;
    pointer-events: none;
}

/* Hover Effects */
.cvs-service-card:hover .cvs-service-image img {
    transform: scale(1.12);
}

.cvs-service-card:hover .cvs-service-image::before {
    opacity: 1;
}

.cvs-service-card:hover .cvs-service-image::after {
    opacity: 1;
}

.cvs-service-content {

    position: absolute;
    left: 0px;
    right: 16px;
    bottom: 30px;

    background: #f6f2e4;
    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 20px 20px 20px;

    overflow: hidden;
}

.cvs-ribbon {

    position: absolute;
    left: 0;
    top: 0;

    width: 110px;
    height: 90px;

    background: #c9ff2b;

    clip-path: polygon(0 0, 100% 0, 68% 52%, 0 100%);
}

.cvs-ribbon:after {

    content: "";

    position: absolute;
    right: 0;
    top: 0;

    width: 0;
    height: 0;

    border-left: 16px solid transparent;
    border-top: 16px solid rgba(0, 0, 0, .18);
}

.cvs-text {
    position: relative;
    z-index: 2;
}

.cvs-text span {

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 700;

    color: #1b1b1b;
    margin-bottom: 8px;
}

.cvs-text span:before {

    content: "";

    width: 28px;
    height: 2px;
    background: #141b03;
}

.cvs-text h3 {

    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #172000;
    line-height: 1.15;
}

.cvs-arrow {

    width: 62px;
    height: 62px;

    background: #192400;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    text-decoration: none;

    transition: .35s;

    flex-shrink: 0;

    position: relative;
    z-index: 2;
}

.cvs-arrow:hover {
    background: #c3f842;
    color: #111;
}

@media(max-width:1200px) {

    .cvs-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cvs-service-grid-heading h2 {
        font-size: 48px;
    }

}

@media(max-width:768px) {

    .cvs-service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cvs-service-image {
        height: 300px;
    }

    .cvs-service-grid-heading {
        margin-bottom: 50px;
    }

    .cvs-service-grid-heading h2 {
        font-size: 36px;
    }

    .cvs-service-content {
        left: 12px;
        right: 12px;
        bottom: 18px;
        padding: 18px;
    }

    .cvs-text h3 {
        font-size: 28px;
    }

    .cvs-arrow {
        width: 56px;
        height: 56px;
    }
}



.projects-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 785px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--clenq-black2);
    border-radius: 3px;
    line-height: 0;
    padding-left: 35px;
    margin-top: 35px;
}

.projects-one__bottom .text-box {
    position: relative;
    display: block;
}

.projects-one__bottom .text-box p {
    color: var(--clenq-black2);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.projects-one__bottom .btn-boxs {
    position: relative;
    display: block;
}

.projects-one__bottom .btn-boxs a {
    position: relative !important;
    display: inline-block !important;
    color: #172000 !important;
    font-size: 16px !important;
    line-height: 60px !important;
    font-weight: 500 !important;
    text-transform: capitalize;
    border-radius: 3px;
    border: 1px solid var(--clenq-black2);
    border-top: none;
    border-bottom: none;
    border-right: none;
    padding: 0px 25px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.projects-one__bottom .btn-boxs a:hover {
    background: #c3f842;
    /* color: #ffffff !important; */
}


.cvs-more-services {
    display: none;
}

.cvs-more-services.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 28px;
}

.cvs-load-more {
    text-align: center;
    margin-top: 40px;
}

/* Hidden Services */
#moreServices {
    display: none !important;
}

/* Show Services */
#moreServices.show-services {
    display: grid !important;
}

.cvs-load-more button {
    background: #172000;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: .35s;
}

.cvs-load-more button:hover {
    background: #c3f842;
    color: #111;
}

@media(max-width:1200px) {

    .cvs-more-services.active {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .cvs-more-services.active {
        grid-template-columns: 1fr;
    }

}


.cvs-more-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transform: translateY(-40px) scale(.98);

    transition:
        max-height .8s ease,
        opacity .6s ease,
        transform .6s ease;

    pointer-events: none;
}

.cvs-more-services.active {

    max-height: 5000px;
    /* Enough height */

    opacity: 1;

    transform: translateY(0) scale(1);

    margin-top: 28px;

    pointer-events: auto;
}

@media(max-width:1200px) {

    .cvs-more-services {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .cvs-more-services {
        grid-template-columns: 1fr;
    }

}

.cvs-more-services .cvs-service-card {

    opacity: 0;

    transform: translateY(40px);

    transition: .6s ease;

}

.cvs-more-services.active .cvs-service-card {

    opacity: 1;

    transform: translateY(0);

}

/* Stagger Animation */

.cvs-more-services.active .cvs-service-card:nth-child(1) {
    transition-delay: .05s;
}

.cvs-more-services.active .cvs-service-card:nth-child(2) {
    transition-delay: .10s;
}

.cvs-more-services.active .cvs-service-card:nth-child(3) {
    transition-delay: .15s;
}

.cvs-more-services.active .cvs-service-card:nth-child(4) {
    transition-delay: .20s;
}

.cvs-more-services.active .cvs-service-card:nth-child(5) {
    transition-delay: .25s;
}

.cvs-more-services.active .cvs-service-card:nth-child(6) {
    transition-delay: .30s;
}

.cvs-more-services.active .cvs-service-card:nth-child(7) {
    transition-delay: .35s;
}

.cvs-more-services.active .cvs-service-card:nth-child(8) {
    transition-delay: .40s;
}

.cvs-more-services.active .cvs-service-card:nth-child(9) {
    transition-delay: .45s;
}

.cvs-more-services.active .cvs-service-card:nth-child(10) {
    transition-delay: .50s;
}

.cvs-more-services.active .cvs-service-card:nth-child(11) {
    transition-delay: .55s;
}

.cvs-more-services.active .cvs-service-card:nth-child(12) {
    transition-delay: .60s;
}

.cvs-more-services.active .cvs-service-card:nth-child(13) {
    transition-delay: .65s;
}

.cvs-more-services.active .cvs-service-card:nth-child(14) {
    transition-delay: .70s;
}

/*==========================================
 GOOGLE REVIEW SECTION
==========================================*/

.cvs-google-review-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.cvs-google-review-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/*==========================
TOP AREA
==========================*/

.cvs-google-review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 70px;
}

.cvs-google-review-title {
    flex: 1;
}

.cvs-google-review-title h3 {
    margin: 0;
    color: #172000;
    font-size: 60px;
    margin-top: 13px;
    line-height: 1em;
    font-weight: 600;


}

.cvs-google-review-title .gg {
    color: var(--clenq-black2);
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
}

.cvs-google-review-title span {
    display: inline-block;
    margin-bottom: 0px;
}

.cvs-google-review-content {
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
}

.cvs-google-review-content p {

    position: relative;
    display: block;
    max-width: 555px;
    width: 100%;
    background: #f8f8f8;
    padding: 30px 30px 30px;
    padding-right: 25px;
    color: #172000cc;
    font-size: 16px;
    line-height: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/*==========================
BOTTOM
==========================*/

.cvs-google-review-wrapper {
    display: flex;
    align-items: center;
    gap: 45px;
}

/*==========================
LEFT RATING
==========================*/

.cvs-google-review-rating {
    width: 250px;
    flex-shrink: 0;
    text-align: center;
}

.cvs-google-review-rating h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
    font-family: "Outfit", sans-serif;
}




.cvs-google-review-rating img {
    width: 160px;
    /* padding: 23px; */
    height: 30px;
    margin-left: 39px;
    margin-top: 9px;
}

.cvs-google-review-stars {
    /* margin: 18px 0; */
    color: #ffb400;
    font-size: 35px;
    letter-spacing: 5px;
}

.cvs-google-review-rating p {
    margin: 0;
    font-size: 22px;
    color: #222;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
}

.cvs-google-review-rating strong {
    font-weight: 700;
}

.cvs-google-review-rating img {
    width: 135px;
    margin-top: 18px;
}

/*==========================
SLIDER
==========================*/

.cvs-google-review-slider {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.cvs-google-review-track {
    display: flex;
    gap: 18px;
    transition: transform .7s ease;
    will-change: transform;
}

/*==========================
CARD
==========================*/

.cvs-google-review-card {
    flex: 0 0 calc(33.333% - 12px);
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    padding: 22px;
    min-height: 265px;
    transition: .35s;
}

.cvs-google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

/*==========================
CARD HEADER
==========================*/

.cvs-google-review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.cvs-google-review-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cvs-google-review-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.cvs-google-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1d8ae8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
}

.cvs-google-avatar.dark {
    background: #5b6671;
}

.cvs-google-avatar.green {
    background: #2ea85b;
}

.cvs-google-review-user h4 {
    margin: 0;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    font-family: "Trustindex Poppins" !important;
}

.cvs-google-review-user span {
    display: block;
    margin-top: 3px;
    color: #8b8b8b;
    font-size: 13px;
}

.google-icon {
    width: 28px;
}

/*==========================
STARS
==========================*/

.cvs-google-review-stars-card {
    color: #fbbc04;
    font-size: 24px;
    margin-bottom: 16px;
}

.cvs-google-review-stars-card .verify {
    color: #1a73e8;
    font-size: 18px;
    margin-left: 8px;
}

/*==========================
TEXT
==========================*/



@charset "UTF-8";

@font-face {
    font-family: "Trustindex Poppins";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/devanagari-italic.woff2") format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-ext-italic.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-italic.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/devanagari-italic-600.woff2") format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-ext-italic-600.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-italic-600.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/devanagari.woff2") format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/devanagari-600.woff2") format("woff2");
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-ext-600.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: "Trustindex Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("https://cdn.trustindex.io/assets/fonts/poppins/latin-600.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

.ti-amp-iframe-body {
    background: #ffffff
}

.ti-widget.ti-goog {
    width: 100%;
    display: block;
    overflow: hidden;
    text-align: left;
    direction: ltr;
    box-sizing: border-box;
    font-family: unset;
    font-weight: 400
}

.ti-widget.ti-goog font {
    pointer-events: none
}

.ti-widget.ti-goog script {
    display: none !important
}

.ti-widget.ti-goog img {
    box-shadow: unset !important
}

.ti-widget.ti-goog *,
.ti-widget.ti-goog *:after {
    box-sizing: border-box
}

.ti-widget.ti-goog *:before,
.ti-widget.ti-goog *:after {
    -webkit-box-ordinal-group: 1 !important;
    content: unset
}

.ti-widget.ti-goog:before {
    display: none !important
}

.ti-widget.ti-goog img {
    padding: 0 !important;
    margin: 0 !important;
    min-width: initial !important;
    max-width: initial !important;
    border: 0 !important;
    border-radius: 0 !important
}

.ti-widget.ti-goog a {
    text-decoration: underline !important;
    color: inherit
}

.ti-widget.ti-goog a.ti-header {
    text-decoration: none !important
}

.ti-widget.ti-goog a[href="#"]:not(.ti-show-original-text),
.ti-widget.ti-goog a:not([href]):not(.ti-show-original-text) {
    text-decoration: none !important;
    pointer-events: none
}

.ti-widget.ti-goog .ti-widget-container,
.ti-widget.ti-goog .ti-widget-container * {
    font-family: "Trustindex Poppins";
    font-size: 14px;
    line-height: 1.4em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* box-sizing:border-box; */
    row-gap: unset !important;
    column-gap: unset !important
}

.ti-widget.ti-goog strong,
.ti-widget.ti-goog strong * {
    font-weight: 600
}

.ti-widget.ti-goog .ti-tooltip,
.ti-widget.ti-goog .ti-verified-tooltip {
    color: white !important;
    background-color: black !important;
    text-align: left;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px !important;
    font-weight: 400;
    display: inline-block !important;
    position: absolute;
    top: -5px;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    width: max-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.33);
    --ti-border-arrow-color: black;
    margin: unset;
    bottom: unset;
    left: unset;
    right: calc(100% + 10px);
    margin-right: 30px
}

.ti-widget.ti-goog .ti-tooltip:before,
.ti-widget.ti-goog .ti-verified-tooltip:before {
    width: 0;
    height: 0;
    border-style: solid;
    content: "" !important;
    position: absolute;
    top: 50%;
    margin-top: -7px
}

.ti-widget.ti-goog .ti-tooltip:before,
.ti-widget.ti-goog .ti-verified-tooltip:before {
    left: unset;
    right: -7px;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent var(--ti-border-arrow-color)
}

.ti-widget.ti-goog .ti-with-tooltip,
.ti-widget.ti-goog .ti-verified-review {
    position: relative;
    font-size: inherit
}

.ti-widget.ti-goog .ti-with-tooltip:hover .ti-tooltip,
.ti-widget.ti-goog .ti-with-tooltip:hover .ti-verified-tooltip,
.ti-widget.ti-goog .ti-verified-review:hover .ti-tooltip,
.ti-widget.ti-goog .ti-verified-review:hover .ti-verified-tooltip {
    opacity: 1;
    margin: 0;
    visibility: visible
}

.ti-widget.ti-goog .ti-verified-tooltip {
    margin: unset;
    right: unset;
    left: calc(100% + 10px);
    margin-left: 30px
}

.ti-widget.ti-goog .ti-verified-tooltip:before {
    right: unset;
    left: -7px;
    border-width: 7px 7px 7px 0;
    border-color: transparent var(--ti-border-arrow-color) transparent transparent
}

.ti-widget.ti-goog .ti-verified-platform .ti-verified-tooltip {
    width: 175px;
    max-width: 250px;
    white-space: normal;
    line-height: 1.4 !important;
    top: -10px
}

.ti-widget.ti-goog .ti-verified-platform .ti-verified-tooltip:before {
    top: 18px
}

.ti-widget.ti-goog .ti-date .ti-tooltip {
    margin: unset;
    top: unset;
    right: unset;
    left: calc(50% + 20px);
    transform: translateX(-50%);
    margin-bottom: 30px;
    bottom: calc(100% + 10px)
}

.ti-widget.ti-goog .ti-date .ti-tooltip:before {
    top: unset;
    right: unset;
    margin: unset;
    left: 50%;
    margin-left: -25px;
    bottom: -7px;
    border-width: 7px 7px 0 7px;
    border-color: var(--ti-border-arrow-color) transparent transparent transparent
}

.ti-widget.ti-goog[data-set-id^="dark-"] .ti-tooltip,
.ti-widget.ti-goog[data-set-id^="dark-"] .ti-verified-tooltip,
.ti-widget.ti-goog[data-set-id="light-contrast"] .ti-tooltip,
.ti-widget.ti-goog[data-set-id="light-contrast"] .ti-verified-tooltip {
    color: black !important;
    background-color: white !important;
    --ti-border-arrow-color: white
}

.ti-widget.ti-goog .ti-widget-container {
    display: block;
    color: #000000;
    margin-bottom: 15px
}

.ti-widget.ti-goog .ti-widget-container .ti-name {
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    padding-right: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000000;
}

.ti-widget.ti-goog .ti-widget-container .ti-name a {
    text-decoration: none !important;
    font-size: inherit
}

.ti-widget.ti-goog .ti-widget-container .ti-name a:hover {
    text-decoration: underline !important
}

.ti-widget.ti-goog .ti-widget-container .ti-date {
    color: #8a8a8a;
    font-size: 13px
}

.ti-widget.ti-goog .ti-widget-container .ti-date .ti-tooltip {
    bottom: calc(100% + 8px)
}

.ti-widget.ti-goog .ti-profile-img {
    margin: 0 15px 0 0 !important
}

.ti-widget.ti-goog .ti-profile-img img {
    width: 40px !important;
    height: 40px !important;
    display: block;
    border-radius: 30px !important;
    object-fit: cover;
    object-position: top
}

.ti-widget.ti-goog .ti-profile-img .ti-profile-img-sprite {
    display: inline-block;
    float: left;
    background: white;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 30px
}

.ti-widget.ti-goog .ti-profile-details {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0
}

.ti-widget.ti-goog .ti-stars {
    margin-top: 3px;
    white-space: nowrap;
    display: block
}

.ti-widget.ti-goog .ti-star {
    width: 17px !important;
    height: 17px !important;
    margin-right: 1px !important;
    vertical-align: unset;
    display: inline-block !important
}

.ti-widget.ti-goog img.ti-star {
    background: none !important
}

.ti-widget.ti-goog .ti-footer {
    margin-top: 15px;
    padding-top: 0px;
    text-align: center;
    line-height: 1.45em
}

.ti-widget.ti-goog .ti-footer .ti-name {
    color: #000000;
    font-size: 15px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ti-widget.ti-goog .ti-footer .ti-stars {
    margin-bottom: 3px;
    margin-top: 0px;
    line-height: 0
}

.ti-widget.ti-goog .ti-footer .ti-profile-details {
    padding-top: 4px
}

.ti-widget.ti-goog .ti-footer .ti-inner {
    padding-bottom: 10px
}

.ti-widget.ti-goog .ti-fade-container {
    grid-row: 1;
    grid-column: 1;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    flex-direction: inherit;
    text-align: inherit;
    display: none;
    opacity: 0;
    transition: opacity 1s
}

.ti-widget.ti-goog .ti-fade-container:nth-child(1) {
    display: flex;
    opacity: 1
}

.ti-widget.ti-goog .ti-header-grid,
.ti-widget.ti-goog .ti-footer-grid {
    display: grid
}

.ti-widget.ti-goog .ti-footer-filter-text {
    font-size: 15px !important;
    color: #000000;
    margin-bottom: 0 !important;
    padding: 0 15px;
    text-align: left;
    margin: 15px 0
}

.ti-widget.ti-goog .ti-footer-filter-text:empty {
    margin: 0 !important
}

.ti-widget.ti-goog .ti-disclaimer {
    visibility: hidden;
    opacity: 0;
    padding: 12px 24px;
    position: absolute;
    bottom: 100%;
    width: 100%;
    min-width: 220px;
    max-width: 585px;
    background: white;
    border: 1px solid black;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    text-align: left;
    z-index: 2147483647;
    color: #000000 !important;
    transition: all 0.3s;
    transition-delay: 0.35s;
    white-space: normal !important;
    right: unset;
    left: 50%;
    transform: translateX(-50%)
}

.ti-widget.ti-goog .ti-disclaimer:before,
.ti-widget.ti-goog .ti-disclaimer:after {
    left: 0;
    right: 0
}

.ti-widget.ti-goog .ti-disclaimer a {
    font-size: inherit
}

.ti-widget.ti-goog .ti-disclaimer:hover {
    visibility: visible;
    opacity: 1
}

.ti-widget.ti-goog:not([data-layout-category*="top-rated-badge"]) .ti-disclaimer:before,
.ti-widget.ti-goog:not([data-layout-category*="top-rated-badge"]) .ti-disclaimer:after {
    position: absolute;
    content: "";
    bottom: -18px;
    margin: 0 auto;
    width: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid black;
    border-top: 0;
    transform: rotate(45deg)
}

.ti-widget.ti-goog:not([data-layout-category*="top-rated-badge"]) .ti-disclaimer:after {
    bottom: -16px;
    margin-right: 1px;
    border-bottom-color: white
}

.ti-widget.ti-goog[data-layout-category*="top-rated-badge"] .ti-disclaimer:after {
    position: absolute;
    content: "";
    bottom: -10px;
    margin: 0 auto;
    width: 0;
    border: 10px solid transparent;
    border-bottom-width: 0;
    border-top-color: #000
}

.ti-widget.ti-goog[data-layout-category*="top-rated-badge"] .ti-disclaimer.ti-bottom {
    bottom: unset;
    margin-bottom: unset;
    top: 100%;
    margin-top: 15px
}

.ti-widget.ti-goog[data-layout-category*="top-rated-badge"] .ti-disclaimer.ti-bottom:after {
    bottom: unset;
    top: -10px;
    border: 10px solid transparent;
    border-top-width: 0;
    border-bottom-color: #000
}

.ti-widget.ti-goog .ti-verified-by {
    display: inline-block
}

.ti-widget.ti-goog .ti-verified-by .ti-info-icon {
    display: inline-block;
    background-size: contain;
    width: 13px;
    height: 13px;
    position: relative;
    top: 2px;
    -webkit-mask-image: url("https://cdn.trustindex.io/assets/icon/ti-info-light.svg");
    mask-image: url("https://cdn.trustindex.io/assets/icon/ti-info-light.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #000000
}

.ti-widget.ti-goog .ti-verified-by-row {
    display: block;
    text-align: right;
    margin-bottom: 0 !important;
    font-size: 12px;
    color: #000000;
    margin: 12px 28px
}

.ti-widget.ti-goog .ti-verified-by-row>.ti-inner {
    display: inline-block;
    position: relative;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px
}

.ti-widget.ti-goog .ti-verified-by-row .ti-info-icon {
    -webkit-mask-image: url("https://cdn.trustindex.io/assets/icon/ti-info-regular.svg");
    mask-image: url("https://cdn.trustindex.io/assets/icon/ti-info-regular.svg")
}

.ti-widget.ti-goog .ti-verified-by-row .ti-trustindex-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: unset;
    position: relative;
    top: 2px;
    background-image: url("https://cdn.trustindex.io/assets/platform/Trustindex/icon.svg");
    margin-left: 4px;
    margin-right: 3px
}

.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer {
    width: 320px !important;
    left: unset;
    transform: unset;
    right: -7px
}

.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:after,
.ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:before {
    left: unset;
    right: 15px
}

.ti-widget.ti-goog .ti-verified-by-row[data-style="1"]>.ti-inner {
    background-color: #157351;
    color: white
}

.ti-widget.ti-goog .ti-verified-by-row[data-style="1"] .ti-info-icon {
    background-color: white !important
}

.ti-widget.ti-goog .ti-verified-by-row[data-style="2"]>.ti-inner {
    background-color: #D6F3E6;
    color: black
}

.ti-widget.ti-goog .ti-verified-by-row[data-style="2"] .ti-info-icon {
    background-color: black !important
}

.ti-widget.ti-goog .ti-verified-by:hover+.ti-disclaimer,
.ti-widget.ti-goog .ti-verified-by .ti-inner:hover .ti-disclaimer {
    visibility: visible;
    transition-delay: 0.1ms;
    opacity: 1
}

.ti-widget.ti-goog .ti-footer-filter-text+.ti-verified-by-row {
    margin-top: -20px !important
}

.ti-widget.ti-goog .ti-footer+.ti-verified-by-row {
    text-align: center
}

.ti-widget.ti-goog .ti-footer+.ti-verified-by-row .ti-disclaimer {
    right: unset !important;
    left: 50% !important;
    transform: translateX(-50%) !important
}

.ti-widget.ti-goog .ti-footer+.ti-verified-by-row .ti-disclaimer:before,
.ti-widget.ti-goog .ti-footer+.ti-verified-by-row .ti-disclaimer:after {
    left: 0 !important;
    right: 0 !important
}

.ti-widget.ti-goog .ti-footer+.ti-verified-by-row .ti-disclaimer:after {
    margin-right: auto !important;
    right: 2px !important
}

@media (max-width: 479px) {
    .ti-widget.ti-goog .ti-verified-by-row {
        text-align: center !important
    }

    .ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer {
        right: unset;
        left: 50%;
        transform: translateX(-50%)
    }

    .ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:before,
    .ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:after {
        left: 0;
        right: 0
    }

    .ti-widget.ti-goog .ti-verified-by-row .ti-disclaimer:after {
        margin-right: auto;
        right: 2px
    }

    .ti-widget.ti-goog .ti-footer-filter-text+.ti-verified-by-row {
        margin-top: 12px !important
    }
}

@media (max-width: 479px) {
    .ti-widget.ti-goog .ti-footer-filter-text {
        text-align: center !important
    }
}

@media (min-width: 1024px) {
    .ti-widget.ti-goog .ti-footer-filter-text {
        margin: 12px 28px
    }
}

.ti-widget.ti-goog .star-lg .ti-star {
    width: 30px !important;
    height: 30px !important
}

.ti-widget.ti-goog .ti-d-none {
    display: none !important
}

.ti-widget.ti-goog .ti-rating-text,
.ti-widget.ti-goog .ti-rating-text strong:not(.ti-rating-large),
.ti-widget.ti-goog .ti-rating-text strong a,
.ti-widget.ti-goog .ti-rating-text strong span,
.ti-widget.ti-goog .ti-rating-text span strong,
.ti-widget.ti-goog .ti-rating-text span,
.ti-widget.ti-goog .ti-footer,
.ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large),
.ti-widget.ti-goog .ti-footer span,
.ti-widget.ti-goog .ti-footer strong a {
    font-size: 15px;
    color: #000000
}

.ti-widget.ti-goog .ti-large-logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0 !important
}

.ti-widget.ti-goog .ti-large-logo .ti-v-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
    text-align: center;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.ti-widget.ti-goog .ti-large-logo img {
    margin: auto !important;
    display: block !important;
    position: relative;
    /* width:150px !important; */
    /* height:32px !important; */
    object-fit: unset !important
}

.ti-widget.ti-goog .nowrap {
    white-space: nowrap;
    display: inline-block;
    margin: 0 2px
}

.ti-widget.ti-goog .nowrap:first-of-type {
    margin-left: 0
}

.ti-widget.ti-goog .nowrap:last-of-type {
    margin-right: 0
}

.ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner>.ti-stars,
.ti-widget.ti-goog .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars {
    margin-bottom: 11px;
    margin-top: 11px;
    text-align: left
}

.ti-widget.ti-goog .ti-reviews-container-wrapper {
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    direction: ltr;
    margin: 0 -8px;
    padding-top: 5px
}

.ti-disable-animation.ti-widget.ti-goog .ti-reviews-container-wrapper {
    padding-top: 0 !important
}

@media (min-width: 1024px) {
    .ti-widget.ti-goog .ti-reviews-container-wrapper {
        margin: 0 8px !important
    }
}

.ti-widget.ti-goog .ti-col-1 .ti-review-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.ti-widget.ti-goog .ti-widget-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    -ms-flex-wrap: nowrap;
    -ms-flex-align: center
}

.ti-widget.ti-goog .ti-col-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ti-widget.ti-goog .ti-col-1 .ti-reviews-container,
.ti-widget.ti-goog .ti-col-1 .ti-footer {
    margin-top: 0px;
    padding-right: 0px;
    margin-bottom: 30px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.ti-widget.ti-goog .ti-col-2 .ti-footer,
.ti-widget.ti-goog .ti-col-2 .ti-reviews-container {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.ti-widget.ti-goog .ti-col-2 .ti-review-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.ti-widget.ti-goog .ti-col-3 .ti-footer {
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%
}

.ti-widget.ti-goog .ti-col-3 .ti-reviews-container {
    -ms-flex: 0 0 66.666%;
    flex: 0 0 66.666%;
    max-width: 66.666%
}

.ti-widget.ti-goog .ti-col-3 .ti-review-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.ti-widget.ti-goog .ti-col-4 .ti-footer {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.ti-widget.ti-goog .ti-col-4 .ti-reviews-container {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.ti-widget.ti-goog .ti-col-4 .ti-review-item {
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%
}

.ti-widget.ti-goog .ti-col-5 .ti-footer {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.ti-widget.ti-goog .ti-col-5 .ti-reviews-container {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%
}

.ti-widget.ti-goog .ti-col-5 .ti-review-item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.ti-widget.ti-goog .ti-col-6 .ti-footer {
    -ms-flex: 0 0 16.666%;
    flex: 0 0 16.666%;
    max-width: 16.666%
}

.ti-widget.ti-goog .ti-col-6 .ti-reviews-container {
    -ms-flex: 0 0 83.333%;
    flex: 0 0 83.333%;
    max-width: 83.333%
}

.ti-widget.ti-goog .ti-col-6 .ti-review-item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.ti-widget.ti-goog .ti-col-7 .ti-footer {
    -ms-flex: 0 0 14.286%;
    flex: 0 0 14.286%;
    max-width: 14.286%
}

.ti-widget.ti-goog .ti-col-7 .ti-reviews-container {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.ti-widget.ti-goog .ti-col-7 .ti-review-item {
    -ms-flex: 0 0 16.666%;
    flex: 0 0 16.666%;
    max-width: 16.666%
}

.ti-widget.ti-goog .ti-col-8 .ti-footer {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%
}

.ti-widget.ti-goog .ti-col-8 .ti-reviews-container {
    -ms-flex: 0 0 85.714%;
    flex: 0 0 85.714%;
    max-width: 85.714%
}

.ti-widget.ti-goog .ti-col-8 .ti-review-item {
    -ms-flex: 0 0 14.286%;
    flex: 0 0 14.286%;
    max-width: 14.286%
}

.ti-widget.ti-goog .ti-col-9 .ti-footer {
    -ms-flex: 0 0 11.111%;
    flex: 0 0 11.111%;
    max-width: 11.111%
}

.ti-widget.ti-goog .ti-col-9 .ti-reviews-container {
    -ms-flex: 0 0 88.889%;
    flex: 0 0 88.889%;
    max-width: 88.889%
}

.ti-widget.ti-goog .ti-col-9 .ti-review-item {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%
}

.ti-widget.ti-goog .ti-col-10 .ti-footer {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%
}

.ti-widget.ti-goog .ti-col-10 .ti-reviews-container {
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%
}

.ti-widget.ti-goog .ti-col-10 .ti-review-item {
    -ms-flex: 0 0 11.111%;
    flex: 0 0 11.111%;
    max-width: 11.111%
}

.ti-widget.ti-goog .ti-reviews-container {
    position: relative;
    display: block;
    touch-action: pan-y
}

.ti-widget.ti-goog .ti-read-more {
    display: block;
    padding: 8px 0 0;
    text-align: left;
    position: relative
}

.ti-widget.ti-goog .ti-read-more span {
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    font-size: 13.5px;
    color: #000000;
    opacity: 0.5;
    text-decoration: none !important;
    transition: color 300ms ease-out;
    cursor: pointer
}

.ti-widget.ti-goog .ti-read-more span:hover {
    opacity: 1;
    text-decoration: underline !important
}

.ti-widget.ti-goog .ti-read-more:after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% + 3px);
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-image: url(https://cdn.trustindex.io/assets/icon/ti-quote.svg);
    -webkit-mask-image: url(https://cdn.trustindex.io/assets/icon/ti-quote.svg);
    background: #d9d9d9;
    display: none
}

.ti-widget.ti-goog .ti-review-item {
    padding: 0 8px;
    transition: transform 300ms ease-out
}

.ti-widget.ti-goog .ti-review-item .ti-inner {
    border-radius: 4px
}

.ti-widget.ti-goog .ti-review-item>.ti-inner {
    border-style: solid !important;
    border-color: #d9d9d9 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin: 0 !important;
    display: block !important;
    position: relative;
    background-color: #ffffff;
    background-image: none
}

.ti-widget.ti-goog .ti-review-item .ti-polarity-icon {
    position: relative;
    text-indent: 3px;
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
    vertical-align: unset
}

.ti-widget.ti-goog .ti-review-item .ti-recommendation {
    display: inline-block;
    height: 15px;
    line-height: 15px
}

.ti-widget.ti-goog .ti-review-item .ti-recommendation .ti-recommendation-icon {
    position: relative;
    margin: 0 5px !important;
    margin-bottom: -3px !important;
    text-indent: 3px;
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
    vertical-align: unset
}

.ti-widget.ti-goog .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child {
    margin-left: 0 !important
}

.ti-widget.ti-goog .ti-review-item .ti-recommendation .ti-recommendation-title {
    font-weight: 600;
    font-size: 13px !important;
    opacity: 0.8;
    position: relative;
    top: -1px
}

.ti-widget.ti-goog .ti-review-item .ti-recommendation+.ti-dummy-stars {
    display: none
}

.ti-widget.ti-goog .ti-review-item .ti-stars {
    height: 17px;
    line-height: 17px
}

.ti-widget.ti-goog .ti-review-item .ti-review-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-left: 12px;
    margin-bottom: 4px;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.ti-widget.ti-goog .ti-review-item .ti-review-image img {
    position: absolute;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: inherit !important;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none
}

.ti-widget.ti-goog .ti-review-item .ti-review-image .ti-more-image-count {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    transform: scale(0.85);
    z-index: 2
}

.ti-widget.ti-goog .ti-review-item .ti-review-image:hover img {
    transform: scale(1.1)
}

.ti-widget.ti-goog .ti-review-item .ti-review-image:hover.ti-has-more-image .ti-more-image-count {
    opacity: 1;
    transform: scale(1)
}

.ti-widget.ti-goog .ti-review-item .ti-review-image-container {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -4px;
    margin-top: 15px;
    max-height: 100px;
    transition: all 500ms ease-in-out
}

.ti-widget.ti-goog .ti-review-item .ti-review-image-container .ti-review-image {
    float: unset !important;
    margin: 0 !important;
    width: 25%;
    height: unset;
    flex: 0 0 auto;
    padding: 0 4px
}

.ti-widget.ti-goog .ti-review-item .ti-review-image-container .ti-review-image .ti-review-image-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none
}

.ti-widget.ti-goog .ti-review-item .ti-review-image-container .ti-review-image.ti-has-more-image .ti-more-image-count {
    opacity: 1;
    transform: scale(1)
}

.ti-widget.ti-goog .ti-review-item.ti-hidden-review .ti-review-image-container {
    max-height: 0;
    margin-top: 0;
    transition-delay: 500ms
}

.ti-widget.ti-goog .ti-review-content {
    -webkit-box-orient: vertical;
    line-height: 21.75px;
    height: 87px;
    font-size: 15px;
    text-align: left;
    transition: height 0.5s;
    word-wrap: break-word;
    word-break: break-word;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden !important;
    padding-right: 0
}

.ti-widget.ti-goog .ti-review-content .ti-review-image {
    float: right
}

.ti-text-align-right.ti-widget.ti-goog .ti-review-content .ti-review-image {
    float: left;
    margin-left: unset;
    margin-right: 12px
}

.ti-ios-fallback.ti-widget.ti-goog .ti-review-content {
    display: block
}

.ti-widget.ti-goog .ti-review-content .ti-show-original-text {
    font-size: inherit !important
}

.ti-review-text-mode-scroll.ti-widget.ti-goog .ti-review-content {
    -webkit-line-clamp: inherit;
    overflow: auto !important;
    overflow-x: hidden !important;
    padding-right: 10px
}

.ti-text-align-right.ti-widget.ti-goog .ti-review-content {
    text-align: right !important
}

.ti-text-align-center.ti-widget.ti-goog .ti-review-content {
    text-align: center !important
}

.ti-text-align-justify.ti-widget.ti-goog .ti-review-content {
    text-align: justify !important
}

.ti-widget.ti-goog .ti-review-content .ti-stars {
    margin-bottom: 5px
}

.ti-widget.ti-goog .ti-review-content strong {
    font-size: inherit;
    color: inherit;
    font-weight: normal !important
}

.ti-widget.ti-goog .ti-review-content .ti-reply-by-owner-title {
    font-weight: 600 !important
}

.ti-widget.ti-goog .ti-review-content .ti-reply-by-owner-title:before {
    content: "↪ "
}

.ti-widget.ti-goog .ti-review-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative
}

.ti-widget.ti-goog .ti-highlight {
    padding: 1px 2px;
    margin: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    background-color: transparent !important;
    background-image: linear-gradient(#fbe049, #fbe049);
    background-size: 100% 19px;
    background-position: bottom;
    background-repeat: no-repeat;
    color: #000 !important;
    font-size: inherit !important
}

@media (min-width: 480px) {
    .ti-widget.ti-goog .ti-review-item:hover {
        -webkit-transform: translate(0, -5px);
        -ms-transform: translate(0, -5px);
        transform: translate(0, -5px)
    }
}

.ti-widget.ti-goog .ti-ai-summary-item {
    color: #000000
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content {
    -webkit-line-clamp: 5;
    margin-top: 16.25px;
    height: 110.75px !important
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    font-size: inherit;
    pointer-events: none
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list li {
    list-style: inherit;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
    font-size: inherit
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list li:last-child {
    margin-bottom: 0
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-review-content .ti-summary-list li:before {
    display: block;
    content: "";
    width: 10px;
    height: 5px;
    border-left: solid 2px #000000;
    border-bottom: solid 2px #000000;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 7.5px
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img {
    margin-right: 13px !important
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) {
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #ffffff
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img):not(:first-child) {
    margin-left: -12px !important
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-details .ti-name {
    padding-right: 0
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-details .ti-date {
    overflow: hidden;
    text-overflow: ellipsis
}

.ti-widget.ti-goog .ti-ai-summary-item>.ti-inner {
    background-color: #ffffff !important;
    background-image: none
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) {
    border-color: #ffffff
}

.ti-widget.ti-goog .ti-ai-summary-item .ti-name,
.ti-widget.ti-goog .ti-ai-summary-item .ti-date,
.ti-widget.ti-goog .ti-ai-summary-item .ti-read-more span {
    color: #000000
}

.ti-widget.ti-goog .ti-ten-rating-score {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    margin-left: 7px;
    height: 100%;
    line-height: 17px;
    vertical-align: top
}

.ti-widget.ti-goog .ti-platform-icon {
    width: 20px !important;
    height: 20px !important;
    position: absolute;
    top: 0;
    right: 0
}

.ti-widget.ti-goog.ti-custom-stars [class*="source-"] .ti-star.e,
.ti-widget.ti-goog.ti-custom-stars [class*="source-"] .ti-star.f {
    background-image: none
}

.ti-widget.ti-goog.ti-custom-stars .ti-star {
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-image: url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg);
    -webkit-mask-image: url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg)
}

.ti-widget.ti-goog.ti-custom-stars .ti-star:not(.e):not(.h) {
    background: #f6bb06
}

.ti-widget.ti-goog.ti-custom-stars .ti-star.h {
    background: #f6bb06;
    background: -webkit-linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important;
    background: linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important
}

.ti-widget.ti-goog.ti-custom-stars .ti-star.e {
    background: #ccc !important
}

.ti-widget.ti-goog[data-language="ar"] .ti-name,
.ti-widget.ti-goog[data-language="ar"] .ti-date,
.ti-widget.ti-goog[data-language="ar"] .ti-profile-details .ti-text,
.ti-widget.ti-goog[data-language="ar"] .ti-review-content,
.ti-widget.ti-goog[data-language="ar"] .ti-review-text,
.ti-widget.ti-goog[data-language="ar"] .ti-read-more,
.ti-widget.ti-goog[data-language="ar"] .ti-footer,
.ti-widget.ti-goog[data-language="ar"] .ti-rating-text,
.ti-widget.ti-goog[data-language="ar"] .ti-footer-filter-text,
.ti-widget.ti-goog[data-language="ar"] .ti-header-write-btn,
.ti-widget.ti-goog[data-language="ar"] .ti-widget-header .ti-tab-item[data-source="all"] .ti-item-label,
.ti-widget.ti-goog[data-language="ar"] .ti-header-rating-text,
.ti-widget.ti-goog[data-language="ar"] .ti-rating-name,
.ti-widget.ti-goog[data-language="ar"] .ti-header .ti-text,
.ti-widget.ti-goog[data-language="ar"] .ti-load-more-reviews-button,
.ti-widget.ti-goog[data-language="he"] .ti-name,
.ti-widget.ti-goog[data-language="he"] .ti-date,
.ti-widget.ti-goog[data-language="he"] .ti-profile-details .ti-text,
.ti-widget.ti-goog[data-language="he"] .ti-review-content,
.ti-widget.ti-goog[data-language="he"] .ti-review-text,
.ti-widget.ti-goog[data-language="he"] .ti-read-more,
.ti-widget.ti-goog[data-language="he"] .ti-footer,
.ti-widget.ti-goog[data-language="he"] .ti-rating-text,
.ti-widget.ti-goog[data-language="he"] .ti-footer-filter-text,
.ti-widget.ti-goog[data-language="he"] .ti-header-write-btn,
.ti-widget.ti-goog[data-language="he"] .ti-widget-header .ti-tab-item[data-source="all"] .ti-item-label,
.ti-widget.ti-goog[data-language="he"] .ti-header-rating-text,
.ti-widget.ti-goog[data-language="he"] .ti-rating-name,
.ti-widget.ti-goog[data-language="he"] .ti-header .ti-text,
.ti-widget.ti-goog[data-language="he"] .ti-load-more-reviews-button,
.ti-widget.ti-goog[data-language="fa"] .ti-name,
.ti-widget.ti-goog[data-language="fa"] .ti-date,
.ti-widget.ti-goog[data-language="fa"] .ti-profile-details .ti-text,
.ti-widget.ti-goog[data-language="fa"] .ti-review-content,
.ti-widget.ti-goog[data-language="fa"] .ti-review-text,
.ti-widget.ti-goog[data-language="fa"] .ti-read-more,
.ti-widget.ti-goog[data-language="fa"] .ti-footer,
.ti-widget.ti-goog[data-language="fa"] .ti-rating-text,
.ti-widget.ti-goog[data-language="fa"] .ti-footer-filter-text,
.ti-widget.ti-goog[data-language="fa"] .ti-header-write-btn,
.ti-widget.ti-goog[data-language="fa"] .ti-widget-header .ti-tab-item[data-source="all"] .ti-item-label,
.ti-widget.ti-goog[data-language="fa"] .ti-header-rating-text,
.ti-widget.ti-goog[data-language="fa"] .ti-rating-name,
.ti-widget.ti-goog[data-language="fa"] .ti-header .ti-text,
.ti-widget.ti-goog[data-language="fa"] .ti-load-more-reviews-button {
    direction: rtl
}

.ti-widget.ti-goog[data-language="ar"] .ti-stars,
.ti-widget.ti-goog[data-language="ar"] .ti-footer .ti-row,
.ti-widget.ti-goog[data-language="he"] .ti-stars,
.ti-widget.ti-goog[data-language="he"] .ti-footer .ti-row,
.ti-widget.ti-goog[data-language="fa"] .ti-stars,
.ti-widget.ti-goog[data-language="fa"] .ti-footer .ti-row {
    direction: ltr
}

.ti-widget.ti-goog[data-language="ar"] .ti-date .ti-tooltip,
.ti-widget.ti-goog[data-language="he"] .ti-date .ti-tooltip,
.ti-widget.ti-goog[data-language="fa"] .ti-date .ti-tooltip {
    right: unset
}

.ti-widget.ti-goog .ti-verified-review {
    display: inline-block;
    background: url("https://cdn.trustindex.io/assets/icon/ti-verified.svg");
    background-size: contain;
    width: 15px;
    height: 15px;
    margin: 0 !important;
    margin-left: 7px !important;
    position: relative;
    z-index: 2
}

.ti-widget.ti-goog .ti-verified-review:only-child {
    margin-left: 0 !important
}

.ti-widget.ti-goog .ti-verified-review.ti-color-green {
    background: url("https://cdn.trustindex.io/assets/icon/ti-verified-green.svg")
}

.ti-widget.ti-goog .ti-verified-review.ti-color-black {
    background: url("https://cdn.trustindex.io/assets/icon/ti-verified-black.svg")
}

.ti-widget.ti-goog .ti-recommendation+.ti-verified-review {
    top: 2px
}

.ti-widget.ti-goog .ti-ten-rating-score+.ti-verified-review {
    top: -1px
}

.ti-widget.ti-goog.ti-disable-nav .ti-controls {
    display: none !important
}

.ti-widget.ti-goog.ti-disable-nav .ti-footer-filter-text {
    margin: 15px 0
}

.ti-widget.ti-goog.ti-disable-nav .ti-widget-header {
    margin-left: 13px !important;
    margin-right: 13px !important
}

.ti-widget.ti-goog.ti-disable-nav .ti-reviews-container-wrapper {
    margin: 0 !important
}

.ti-widget.ti-goog.ti-review-text-mode-scroll .ti-read-more,
.ti-widget.ti-goog.ti-review-text-mode-truncated .ti-read-more {
    display: none !important
}

.ti-widget.ti-goog.ti-disable-font .ti-widget-container,
.ti-widget.ti-goog.ti-disable-font .ti-widget-container *,
.ti-widget.ti-goog.ti-disable-font .ti-enable-widget {
    font-family: inherit !important
}

.ti-widget.ti-goog.ti-disable-animation .ti-review-item:hover,
.ti-widget.ti-goog.ti-disable-animation .ti-header:hover,
.ti-widget.ti-goog.ti-disable-animation .ti-footer:hover {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
}

.ti-widget.ti-goog.ti-disable-animation .ti-widget-container {
    margin-top: 5px
}

.ti-widget.ti-goog.ti-text-align-right .ti-reviews-container-wrapper .ti-inner>.ti-stars,
.ti-widget.ti-goog.ti-text-align-right .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars,
.ti-widget.ti-goog.ti-text-align-right .ti-reviews-container-wrapper .ti-read-more {
    text-align: right !important
}

.ti-widget.ti-goog.ti-text-align-center .ti-reviews-container-wrapper .ti-inner>.ti-stars,
.ti-widget.ti-goog.ti-text-align-center .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars,
.ti-widget.ti-goog.ti-text-align-center .ti-reviews-container-wrapper .ti-read-more {
    text-align: center !important
}

.ti-widget.ti-goog.ti-text-align-justify .ti-reviews-container-wrapper .ti-inner>.ti-stars,
.ti-widget.ti-goog.ti-text-align-justify .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars,
.ti-widget.ti-goog.ti-text-align-justify .ti-reviews-container-wrapper .ti-read-more {
    text-align: justify !important
}

.ti-widget.ti-goog.ti-text-align-right .ti-review-header {
    flex-direction: row-reverse
}

.ti-widget.ti-goog.ti-text-align-right .ti-review-header .ti-platform-icon {
    right: unset;
    left: 0
}

.ti-widget.ti-goog.ti-text-align-right .ti-review-header .ti-profile-img {
    margin: 0 0 0 15px !important
}

.ti-widget.ti-goog.ti-text-align-right .ti-review-header .ti-profile-details {
    text-align: right
}

.ti-widget.ti-goog.ti-text-align-right .ti-review-header .ti-profile-details .ti-name {
    padding-right: 0;
    padding-left: 25px
}

.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text,
.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text strong:not(.ti-rating-large),
.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text strong a,
.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text strong span,
.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text span strong,
.ti-widget.ti-goog.ti-show-rating-text .ti-rating-text span,
.ti-widget.ti-goog.ti-show-rating-text .ti-footer,
.ti-widget.ti-goog.ti-show-rating-text .ti-footer strong:not(.ti-rating-large),
.ti-widget.ti-goog.ti-show-rating-text .ti-footer span,
.ti-widget.ti-goog.ti-show-rating-text .ti-footer strong a {
    font-size: 14px !important
}

.ti-widget.ti-goog.ti-text-align-right .ti-verified-tooltip,
.ti-widget.ti-goog.ti-content-align-right .ti-verified-tooltip {
    margin: unset;
    bottom: unset;
    left: unset;
    right: calc(100% + 10px);
    margin-right: 30px
}

.ti-widget.ti-goog.ti-text-align-right .ti-verified-tooltip:before,
.ti-widget.ti-goog.ti-content-align-right .ti-verified-tooltip:before {
    left: unset;
    right: -7px;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent var(--ti-border-arrow-color)
}

.ti-widget.ti-goog.ti-text-align-right .ti-platform-icon .ti-tooltip,
.ti-widget.ti-goog.ti-content-align-left .ti-platform-icon .ti-tooltip {
    margin: unset;
    right: unset;
    left: calc(100% + 10px);
    margin-left: 30px
}

.ti-widget.ti-goog.ti-text-align-right .ti-platform-icon .ti-tooltip:before,
.ti-widget.ti-goog.ti-content-align-left .ti-platform-icon .ti-tooltip:before {
    right: unset;
    left: -7px;
    border-width: 7px 7px 7px 0;
    border-color: transparent var(--ti-border-arrow-color) transparent transparent
}

.ti-widget.ti-goog ::-webkit-scrollbar {
    width: 4px;
    border-radius: 3px
}

.ti-widget.ti-goog ::-webkit-scrollbar-track {
    background: rgba(85, 85, 85, 0.1)
}

.ti-widget.ti-goog ::-webkit-scrollbar-thumb {
    background: rgba(85, 85, 85, 0.6)
}

.ti-widget.ti-goog ::-webkit-scrollbar-thumb:hover {
    background: #555
}

.ti-enable-widget {
    display: none !important
}

.ti-widget .source-Trustpilot .ti-large-logo,
.ti-lightbox .source-Trustpilot .ti-large-logo {
    display: none !important
}

.ti-widget .source-Trustpilot.ti-tab-item:before,
.ti-widget .source-Trustpilot.ti-write-btn-dropdown-item:before,
.ti-widget .source-Trustpilot .ti-review-header:after,
.ti-widget .source-Trustpilot .ti-inner:after,
.ti-widget .source-Trustpilot .ti-review-content:after,
.ti-widget .source-Trustpilot .ti-platform-icon:after,
.ti-widget .source-Trustpilot .ti-icon,
.ti-widget .source-Trustpilot .ti-platform,
.ti-widget .source-Trustpilot .ti-inner .col-left,
.ti-widget .source-Trustpilot .ti-enable-widget:before,
.ti-widget .source-Trustpilot .ti-platform-icon,
.ti-lightbox .source-Trustpilot.ti-tab-item:before,
.ti-lightbox .source-Trustpilot.ti-write-btn-dropdown-item:before,
.ti-lightbox .source-Trustpilot .ti-review-header:after,
.ti-lightbox .source-Trustpilot .ti-inner:after,
.ti-lightbox .source-Trustpilot .ti-review-content:after,
.ti-lightbox .source-Trustpilot .ti-platform-icon:after,
.ti-lightbox .source-Trustpilot .ti-icon,
.ti-lightbox .source-Trustpilot .ti-platform,
.ti-lightbox .source-Trustpilot .ti-inner .col-left,
.ti-lightbox .source-Trustpilot .ti-enable-widget:before,
.ti-lightbox .source-Trustpilot .ti-platform-icon {
    display: none !important
}

.ti-widget .source-Trustpilot .ti-enable-widget,
.ti-lightbox .source-Trustpilot .ti-enable-widget {
    padding-left: 8px !important
}

.ti-widget .source-Trustpilot .ti-enable-widget:before,
.ti-lightbox .source-Trustpilot .ti-enable-widget:before {
    display: none !important
}

.ti-widget .source-Trustpilot.disable-widget,
.ti-lightbox .source-Trustpilot.disable-widget {
    top: 4px !important;
    right: 4px !important
}

.ti-widget .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-platform-icon,
.ti-lightbox .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-platform-icon {
    display: none !important
}

.ti-widget .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-item-label,
.ti-lightbox .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-item-label {
    margin-right: 0 !important
}

.ti-widget .ti-enable-widget .ti-platform-icon[alt="Trustpilot"],
.ti-widget .source-all .ti-platform-icon[alt="Trustpilot"],
.ti-widget .source-Trustindex .ti-platform-icon[alt="Trustpilot"],
.ti-lightbox .ti-enable-widget .ti-platform-icon[alt="Trustpilot"],
.ti-lightbox .source-all .ti-platform-icon[alt="Trustpilot"],
.ti-lightbox .source-Trustindex .ti-platform-icon[alt="Trustpilot"] {
    display: none !important
}

.ti-widget .source-Amazon.ti-tab-item:before,
.ti-widget .source-Amazon.ti-write-btn-dropdown-item:before,
.ti-widget .source-Amazon .ti-review-header:after,
.ti-widget .source-Amazon .ti-inner:after,
.ti-widget .source-Amazon .ti-review-content:after,
.ti-widget .source-Amazon .ti-platform-icon:after,
.ti-widget .source-Amazon .ti-icon,
.ti-widget .source-Amazon .ti-platform,
.ti-widget .source-Amazon .ti-inner .col-left,
.ti-widget .source-Amazon .ti-enable-widget:before,
.ti-widget .source-Amazon .ti-platform-icon,
.ti-lightbox .source-Amazon.ti-tab-item:before,
.ti-lightbox .source-Amazon.ti-write-btn-dropdown-item:before,
.ti-lightbox .source-Amazon .ti-review-header:after,
.ti-lightbox .source-Amazon .ti-inner:after,
.ti-lightbox .source-Amazon .ti-review-content:after,
.ti-lightbox .source-Amazon .ti-platform-icon:after,
.ti-lightbox .source-Amazon .ti-icon,
.ti-lightbox .source-Amazon .ti-platform,
.ti-lightbox .source-Amazon .ti-inner .col-left,
.ti-lightbox .source-Amazon .ti-enable-widget:before,
.ti-lightbox .source-Amazon .ti-platform-icon {
    display: none !important
}

.ti-widget .source-Amazon .ti-enable-widget,
.ti-lightbox .source-Amazon .ti-enable-widget {
    padding-left: 8px !important
}

.ti-widget .source-Amazon .ti-enable-widget:before,
.ti-lightbox .source-Amazon .ti-enable-widget:before {
    display: none !important
}

.ti-widget .source-Amazon.disable-widget,
.ti-lightbox .source-Amazon.disable-widget {
    top: 4px !important;
    right: 4px !important
}

.ti-widget .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-platform-icon,
.ti-lightbox .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-platform-icon {
    display: none !important
}

.ti-widget .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-item-label,
.ti-lightbox .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-item-label {
    margin-right: 0 !important
}

.ti-widget .ti-enable-widget .ti-platform-icon[alt="Amazon"],
.ti-widget .source-all .ti-platform-icon[alt="Amazon"],
.ti-widget .source-Trustindex .ti-platform-icon[alt="Amazon"],
.ti-lightbox .ti-enable-widget .ti-platform-icon[alt="Amazon"],
.ti-lightbox .source-all .ti-platform-icon[alt="Amazon"],
.ti-lightbox .source-Trustindex .ti-platform-icon[alt="Amazon"] {
    display: none !important
}

.ti-widget .source-Reco.ti-tab-item:before,
.ti-widget .source-Reco.ti-write-btn-dropdown-item:before,
.ti-widget .source-Reco .ti-review-header:after,
.ti-widget .source-Reco .ti-inner:after,
.ti-widget .source-Reco .ti-review-content:after,
.ti-widget .source-Reco .ti-platform-icon:after,
.ti-widget .source-Reco .ti-icon,
.ti-widget .source-Reco .ti-platform,
.ti-widget .source-Reco .ti-inner .col-left,
.ti-widget .source-Reco .ti-enable-widget:before,
.ti-widget .source-Reco .ti-platform-icon,
.ti-lightbox .source-Reco.ti-tab-item:before,
.ti-lightbox .source-Reco.ti-write-btn-dropdown-item:before,
.ti-lightbox .source-Reco .ti-review-header:after,
.ti-lightbox .source-Reco .ti-inner:after,
.ti-lightbox .source-Reco .ti-review-content:after,
.ti-lightbox .source-Reco .ti-platform-icon:after,
.ti-lightbox .source-Reco .ti-icon,
.ti-lightbox .source-Reco .ti-platform,
.ti-lightbox .source-Reco .ti-inner .col-left,
.ti-lightbox .source-Reco .ti-enable-widget:before,
.ti-lightbox .source-Reco .ti-platform-icon {
    display: none !important
}

.ti-widget .source-Reco .ti-enable-widget,
.ti-lightbox .source-Reco .ti-enable-widget {
    padding-left: 8px !important
}

.ti-widget .source-Reco .ti-enable-widget:before,
.ti-lightbox .source-Reco .ti-enable-widget:before {
    display: none !important
}

.ti-widget .source-Reco.disable-widget,
.ti-lightbox .source-Reco.disable-widget {
    top: 4px !important;
    right: 4px !important
}

.ti-widget .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-platform-icon,
.ti-lightbox .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-platform-icon {
    display: none !important
}

.ti-widget .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-item-label,
.ti-lightbox .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-item-label {
    margin-right: 0 !important
}

.ti-widget .ti-enable-widget .ti-platform-icon[alt="Reco"],
.ti-widget .source-all .ti-platform-icon[alt="Reco"],
.ti-widget .source-Trustindex .ti-platform-icon[alt="Reco"],
.ti-lightbox .ti-enable-widget .ti-platform-icon[alt="Reco"],
.ti-lightbox .source-all .ti-platform-icon[alt="Reco"],
.ti-lightbox .source-Trustindex .ti-platform-icon[alt="Reco"] {
    display: none !important
}

.ti-widget.ti-goog {
    overflow: visible !important
}

.ti-widget.ti-goog .ti-review-item>.ti-inner,
.ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
    border-top-width: 1px !important;
    border-bottom-width: 1px !important;
    border-left-width: 1px !important;
    border-right-width: 1px !important;
    background-color: white !important;
    backdrop-filter: blur(0px)
}

.ti-image-loading,
.ti-review-item .ti-review-image {
    background-image: url("https://cdn.trustindex.io/assets/img/loading_dots.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px
}

.ti-image-loading.ti-image-loading img,
.ti-review-item .ti-review-image.ti-image-loading img {
    opacity: 0 !important
}

.ti-widget-lightbox {
    text-align: left !important;
    z-index: 2147483645;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    transition: all 300ms ease-out;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    color: #333;
    align-items: center !important;
    justify-content: center;
    flex-wrap: wrap;
    user-select: none;
    opacity: 0;
    box-sizing: content-box
}

.ti-widget-lightbox * {
    box-sizing: inherit
}

.ti-widget-lightbox img {
    padding: 0 !important;
    margin: 0 !important;
    min-width: initial !important;
    max-width: initial !important;
    background: unset !important
}

.ti-widget-lightbox .ti-widget-lightbox-inner {
    max-height: calc(100vh - 160px);
    height: 100%;
    max-width: 1200px;
    width: 95%
}

@media (max-width: 1160px) {
    .ti-widget-lightbox .ti-widget-lightbox-inner {
        max-height: 100%;
        height: 100%;
        width: 100%
    }
}

.ti-widget-lightbox.ti-widget-lightbox-appeared {
    opacity: 1
}

.ti-widget-lightbox .ti-widget-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

@media (max-width: 1160px) and (orientation:landscape) {
    .ti-widget-lightbox .ti-widget-lightbox-close {
        right: 315px
    }
}

@media (max-width: 1160px) {
    .ti-widget-lightbox .ti-widget-lightbox-close {
        background-color: rgba(0, 0, 0, 0.5)
    }
}

.ti-widget-lightbox .ti-widget-lightbox-close:active,
.ti-widget-lightbox .ti-widget-lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2)
}

.ti-widget-lightbox .ti-widget-lightbox-close:before,
.ti-widget-lightbox .ti-widget-lightbox-close:after {
    width: 60%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    content: "";
    transform: rotate(45deg)
}

.ti-widget-lightbox .ti-widget-lightbox-close:after {
    transform: rotate(-45deg)
}

.ti-widget-lightbox .ti-widget-card,
.ti-widget-lightbox .ti-widget-lightbox-review-container {
    overflow: hidden;
    border-radius: 4px;
    height: 100%;
    border: none;
    position: relative
}

@media (max-width: 1160px) {

    .ti-widget-lightbox .ti-widget-card,
    .ti-widget-lightbox .ti-widget-lightbox-review-container {
        border-radius: 0
    }
}

.ti-widget-lightbox .ti-card-body,
.ti-widget-lightbox .ti-review-item {
    background-color: #fff;
    position: relative;
    height: 400px;
    flex-direction: row;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    color: #000000;
    height: 100%
}

@media (max-width: 1160px) {

    .ti-widget-lightbox .ti-card-body,
    .ti-widget-lightbox .ti-review-item {
        border-radius: 0
    }
}

@media (max-width: 767px) and (orientation:portrait) {

    .ti-widget-lightbox .ti-card-body,
    .ti-widget-lightbox .ti-review-item {
        flex-direction: column;
        width: 100%;
        height: 100%;
        border-radius: 0
    }
}

.ti-widget-lightbox .ti-card-body .ti-card-media,
.ti-widget-lightbox .ti-review-item .ti-card-media {
    flex: 1 1 auto;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    position: relative;
    background-color: #000000;
    overflow: hidden;
    padding-bottom: 0px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px
}

@media (max-width: 767px) and (orientation:portrait) {

    .ti-widget-lightbox .ti-card-body .ti-card-media,
    .ti-widget-lightbox .ti-review-item .ti-card-media {
        flex: 0 0 60%;
        width: 100%;
        border-radius: 0
    }
}

.ti-widget-lightbox .ti-card-body .ti-card-media img,
.ti-widget-lightbox .ti-review-item .ti-card-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    position: absolute;
    display: block;
    border-radius: inherit !important;
    opacity: 1;
    transition: opacity 300ms ease-in-out
}

.ti-widget-lightbox .ti-card-body .ti-card-media .ti-nav-arrow,
.ti-widget-lightbox .ti-review-item .ti-card-media .ti-nav-arrow {
    max-width: 100%;
    margin-left: 0px;
    left: inherit;
    top: 50%;
    margin-top: -10px;
    visibility: visible;
    opacity: 1
}

.ti-widget-lightbox .ti-card-body .ti-review-content,
.ti-widget-lightbox .ti-review-item .ti-review-content {
    flex: 0 0 auto;
    height: 100%;
    width: 300px;
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #000000
}

@media (max-width: 767px) and (orientation:portrait) {

    .ti-widget-lightbox .ti-card-body .ti-review-content,
    .ti-widget-lightbox .ti-review-item .ti-review-content {
        flex: 0 0 40%;
        width: 100%
    }
}

.ti-widget-lightbox .ti-card-body .ti-review-header,
.ti-widget-lightbox .ti-review-item .ti-review-header {
    position: relative;
    z-index: unset;
    padding: 20px;
    display: flex;
    align-items: center;
    color: #000
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-platform-icon,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-platform-icon {
    width: 20px !important;
    height: 20px !important;
    position: absolute;
    right: 16px;
    top: 16px
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-img,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-img {
    margin: 0;
    margin-right: 10px
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-img img,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-img img {
    width: 40px !important;
    height: 40px !important;
    display: block;
    border-radius: 30px !important;
    object-fit: cover;
    object-position: top
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-img .ti-profile-img-sprite,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-img .ti-profile-img-sprite {
    display: inline-block;
    float: left;
    background: white;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 30px
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-details,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-details {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-details .ti-name,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-details .ti-name {
    font-weight: 600;
    font-size: inherit;
    overflow: hidden;
    padding-right: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000000;
    margin-bottom: 2px
}

.ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-details .ti-date,
.ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-details .ti-date {
    color: #888;
    font-size: 12px
}

.ti-widget-lightbox .ti-card-body .ti-stars,
.ti-widget-lightbox .ti-review-item .ti-stars {
    margin: 0 20px;
    white-space: nowrap;
    display: block;
    line-height: 0
}

.ti-widget-lightbox .ti-card-body .ti-stars .ti-star,
.ti-widget-lightbox .ti-review-item .ti-stars .ti-star {
    width: 17px !important;
    height: 17px !important;
    display: inline-block;
    margin-right: 1px !important;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: unset
}

.ti-widget-lightbox .ti-card-body .ti-stars .ti-star:before,
.ti-widget-lightbox .ti-card-body .ti-stars .ti-star:after,
.ti-widget-lightbox .ti-review-item .ti-stars .ti-star:before,
.ti-widget-lightbox .ti-review-item .ti-stars .ti-star:after {
    content: none !important
}

.ti-widget-lightbox .ti-card-body .ti-stars .ti-ten-rating-score,
.ti-widget-lightbox .ti-review-item .ti-stars .ti-ten-rating-score {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    margin-left: 7px;
    height: 100%;
    line-height: 17px;
    vertical-align: top
}

.ti-widget-lightbox .ti-card-body .ti-stars .ti-verified-review .ti-verified-tooltip,
.ti-widget-lightbox .ti-review-item .ti-stars .ti-verified-review .ti-verified-tooltip {
    max-width: 150px !important
}

.ti-widget-lightbox .ti-card-body .ti-polarity-icon,
.ti-widget-lightbox .ti-review-item .ti-polarity-icon {
    position: relative;
    text-indent: 3px;
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
    vertical-align: unset
}

.ti-widget-lightbox .ti-card-body .ti-recommendation,
.ti-widget-lightbox .ti-review-item .ti-recommendation {
    display: inline-block;
    height: 15px;
    line-height: 15px
}

.ti-widget-lightbox .ti-card-body .ti-recommendation .ti-recommendation-icon,
.ti-widget-lightbox .ti-review-item .ti-recommendation .ti-recommendation-icon {
    position: relative;
    margin: 0 5px !important;
    margin-bottom: -3px !important;
    text-indent: 3px;
    display: inline-block;
    width: 15px !important;
    height: 15px !important;
    vertical-align: unset
}

.ti-widget-lightbox .ti-card-body .ti-recommendation .ti-recommendation-icon:first-child,
.ti-widget-lightbox .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child {
    margin-left: 0 !important
}

.ti-widget-lightbox .ti-card-body .ti-recommendation .ti-recommendation-title,
.ti-widget-lightbox .ti-review-item .ti-recommendation .ti-recommendation-title {
    font-weight: 600;
    font-size: 13px !important;
    opacity: 0.8;
    position: relative;
    top: -1px
}

.ti-widget-lightbox .ti-card-body .ti-recommendation+.ti-dummy-stars,
.ti-widget-lightbox .ti-review-item .ti-recommendation+.ti-dummy-stars {
    display: none
}

.ti-widget-lightbox .ti-card-body .ti-review-text,
.ti-widget-lightbox .ti-review-item .ti-review-text {
    flex: 0 1 100%;
    font-size: inherit;
    padding: 20px;
    padding-top: 0;
    margin-top: 10px;
    display: block;
    overflow-x: hidden;
    overflow: auto;
    color: #000000
}

.ti-widget-lightbox .ti-card-body .ti-review-text .ti-show-original-text,
.ti-widget-lightbox .ti-review-item .ti-review-text .ti-show-original-text {
    color: inherit !important;
    text-decoration: underline !important
}

.ti-widget-lightbox .ti-card-body .ti-review-text .ti-reply-by-owner-title,
.ti-widget-lightbox .ti-review-item .ti-review-text .ti-reply-by-owner-title {
    font-weight: 600 !important
}

.ti-widget-lightbox .ti-card-body .ti-review-text .ti-reply-by-owner-title:before,
.ti-widget-lightbox .ti-review-item .ti-review-text .ti-reply-by-owner-title:before {
    content: "↪ "
}

.ti-widget-lightbox .ti-nav-arrow {
    position: absolute;
    height: 0px;
    top: 50%;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    width: 100%;
    transition: all 0.2s ease-in-out
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev,
.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next {
    display: flex;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    cursor: pointer
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:hover,
.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:hover {
    background-color: white
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:active,
.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:active {
    transform: scale(0.95);
    background-color: white
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:before,
.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:before {
    width: 25%;
    height: 25%;
    display: block;
    content: "";
    transform-origin: center center;
    margin: auto;
    position: relative;
    border-top: solid 3px #000;
    border-left: solid 3px #000;
    box-sizing: content-box
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next {
    margin-left: auto;
    margin-right: 15px
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-next:before {
    transform: rotate(135deg);
    left: -5%
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev {
    margin-left: 15px
}

.ti-widget-lightbox .ti-nav-arrow .ti-arrow-prev:before {
    transform: rotate(-45deg);
    left: 5%
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-inner {
    max-height: unset;
    max-width: unset;
    width: 100%;
    touch-action: pan-x pan-y
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-review-container {
    display: block;
    overflow-y: scroll;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    height: 100%
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-review-container::-webkit-scrollbar {
    display: none
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-review-container .ti-widget-lightbox-review-container-inner {
    display: block;
    max-width: 520px;
    margin: 0 auto;
    padding: 16px
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item {
    display: block;
    height: unset;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px !important;
    scroll-margin-top: 12px
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item:last-child {
    margin-bottom: 0
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-header {
    padding-bottom: 10px
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-header .ti-platform-icon {
    right: 20px;
    top: 20px
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-header .ti-name {
    margin-bottom: 0 !important
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media {
    display: block;
    border-radius: 0;
    height: unset;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-images {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    overflow: hidden
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-image {
    width: 100%;
    flex: 0 0 auto;
    position: relative
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-image img {
    width: unset !important;
    height: unset !important;
    position: unset;
    margin: 0 auto !important
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-hidden {
    display: none
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails {
    display: block;
    width: calc(100% - 30px);
    padding: 15px;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5)
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails::-webkit-scrollbar {
    display: none
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnails-inner {
    display: flex;
    justify-content: center;
    margin: 0 -5px
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin: 0 5px;
    position: relative;
    cursor: pointer
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail img {
    max-width: unset !important;
    max-height: unset !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail:hover img {
    opacity: 1
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail.ti-active {
    pointer-events: none
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail.ti-active img {
    opacity: 1
}

@media (max-width: 767px) {

    .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-arrow-next,
    .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-arrow-prev {
        display: none
    }
}

.ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-text {
    margin-top: 0;
    padding-top: 10px;
    line-height: 1.5
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom-swipe {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    display: none;
    width: 0;
    height: 0
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom-swipe span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(var(--scale)) rotate(45deg);
    display: inline-flex;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
    transform-origin: center;
    border-top: solid 2px #ffffff;
    border-left: solid 2px #ffffff
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom {
    position: fixed;
    bottom: 20px;
    margin: 0 auto;
    padding: 6px 16px;
    padding-right: 38px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    z-index: 888;
    border-radius: 50px;
    cursor: pointer;
    display: none;
    font-size: 16px;
    box-shadow: 2px 10px 20px 0px rgba(0, 0, 0, 0.29);
    backdrop-filter: blur(7px)
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom:focus,
.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom:active {
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.29)
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom span {
    display: inline-block;
    position: absolute;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    right: 14px;
    width: 16px;
    height: 16px;
    pointer-events: none
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom span:before,
.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom span:after {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    content: "";
    transform: rotate(45deg)
}

.ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom span:after {
    transform: rotate(-45deg)
}

@media (max-width: 767px) and (orientation:portrait) {
    .ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-close {
        display: none
    }

    .ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-mobile-close-bottom {
        display: inline-block
    }

    .ti-widget-lightbox.ti-long-scroll .ti-widget-lightbox-inner {
        backdrop-filter: unset
    }
}

.ti-widget-lightbox .ti-verified-review {
    display: inline-block;
    background: url("https://cdn.trustindex.io/assets/icon/ti-verified.svg");
    background-size: contain;
    width: 15px;
    height: 15px;
    margin: 0 !important;
    margin-left: 7px !important;
    position: relative;
    z-index: 2
}

.ti-widget-lightbox .ti-verified-review:only-child {
    margin-left: 0 !important
}

.ti-widget-lightbox .ti-verified-review.ti-color-green {
    background: url("https://cdn.trustindex.io/assets/icon/ti-verified-green.svg")
}

.ti-widget-lightbox .ti-verified-review.ti-color-black {
    background: url("https://cdn.trustindex.io/assets/icon/ti-verified-black.svg")
}

.ti-widget-lightbox .ti-recommendation+.ti-verified-review {
    top: 2px
}

.ti-widget-lightbox .ti-ten-rating-score+.ti-verified-review {
    top: -1px
}

.ti-widget-lightbox .ti-tooltip,
.ti-widget-lightbox .ti-verified-tooltip {
    color: white !important;
    background-color: black !important;
    text-align: left;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px !important;
    font-weight: 400;
    display: inline-block !important;
    position: absolute;
    top: -5px;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    width: max-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.33);
    --ti-border-arrow-color: black;
    margin: unset;
    bottom: unset;
    left: unset;
    right: calc(100% + 10px);
    margin-right: 30px
}

.ti-widget-lightbox .ti-tooltip:before,
.ti-widget-lightbox .ti-verified-tooltip:before {
    width: 0;
    height: 0;
    border-style: solid;
    content: "" !important;
    position: absolute;
    top: 50%;
    margin-top: -7px
}

.ti-widget-lightbox .ti-tooltip:before,
.ti-widget-lightbox .ti-verified-tooltip:before {
    left: unset;
    right: -7px;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent var(--ti-border-arrow-color)
}

.ti-widget-lightbox .ti-with-tooltip,
.ti-widget-lightbox .ti-verified-review {
    position: relative;
    font-size: inherit
}

.ti-widget-lightbox .ti-with-tooltip:hover .ti-tooltip,
.ti-widget-lightbox .ti-with-tooltip:hover .ti-verified-tooltip,
.ti-widget-lightbox .ti-verified-review:hover .ti-tooltip,
.ti-widget-lightbox .ti-verified-review:hover .ti-verified-tooltip {
    opacity: 1;
    margin: 0;
    visibility: visible
}

.ti-widget-lightbox .ti-verified-tooltip {
    margin: unset;
    right: unset;
    left: calc(100% + 10px);
    margin-left: 30px
}

.ti-widget-lightbox .ti-verified-tooltip:before {
    right: unset;
    left: -7px;
    border-width: 7px 7px 7px 0;
    border-color: transparent var(--ti-border-arrow-color) transparent transparent
}

.ti-widget-lightbox .ti-verified-platform .ti-verified-tooltip {
    width: 175px;
    max-width: 250px;
    white-space: normal;
    line-height: 1.4 !important;
    top: -10px
}

.ti-widget-lightbox .ti-verified-platform .ti-verified-tooltip:before {
    top: 18px
}

.ti-widget-lightbox .ti-date .ti-tooltip {
    margin: unset;
    top: unset;
    right: unset;
    left: calc(50% + 20px);
    transform: translateX(-50%);
    margin-bottom: 30px;
    bottom: calc(100% + 10px)
}

.ti-widget-lightbox .ti-date .ti-tooltip:before {
    top: unset;
    right: unset;
    margin: unset;
    left: 50%;
    margin-left: -25px;
    bottom: -7px;
    border-width: 7px 7px 0 7px;
    border-color: var(--ti-border-arrow-color) transparent transparent transparent
}

.ti-widget-lightbox[data-set-id^="dark-"] .ti-tooltip,
.ti-widget-lightbox[data-set-id^="dark-"] .ti-verified-tooltip,
.ti-widget-lightbox[data-set-id="light-contrast"] .ti-tooltip,
.ti-widget-lightbox[data-set-id="light-contrast"] .ti-verified-tooltip {
    color: black !important;
    background-color: white !important;
    --ti-border-arrow-color: white
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'].ti-custom-stars [class*="source-"] .ti-star.e,
.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'].ti-custom-stars [class*="source-"] .ti-star.f {
    background-image: none
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'].ti-custom-stars .ti-star {
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-image: url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg);
    -webkit-mask-image: url(https://cdn.trustindex.io/assets/platform/Trustindex/star/s.svg)
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'].ti-custom-stars .ti-star:not(.e):not(.h) {
    background: #f6bb06
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'].ti-custom-stars .ti-star.h {
    background: #f6bb06;
    background: -webkit-linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important;
    background: linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'].ti-custom-stars .ti-star.e {
    background: #ccc !important
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item {
    color: #000000
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-review-content {
    -webkit-line-clamp: 5;
    margin-top: 16.25px;
    height: 110.75px !important
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-review-content .ti-summary-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    font-size: inherit;
    pointer-events: none
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-review-content .ti-summary-list li {
    list-style: inherit;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
    font-size: inherit
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-review-content .ti-summary-list li:last-child {
    margin-bottom: 0
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-review-content .ti-summary-list li:before {
    display: block;
    content: "";
    width: 10px;
    height: 5px;
    border-left: solid 2px #000000;
    border-bottom: solid 2px #000000;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 7.5px
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-profile-img {
    margin-right: 13px !important
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) {
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #ffffff
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img):not(:first-child) {
    margin-left: -12px !important
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-profile-details .ti-name {
    padding-right: 0
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-profile-details .ti-date {
    overflow: hidden;
    text-overflow: ellipsis
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item>.ti-inner {
    background-color: #ffffff !important;
    background-image: none
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) {
    border-color: #ffffff
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-name,
.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-date,
.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-read-more span {
    color: #000000
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-lightbox-review-header {
    padding-bottom: 0 !important
}

.ti-widget-lightbox[data-layout-id='5'][data-set-id='ligth-border'] .ti-ai-summary-item .ti-review-content {
    margin: unset;
    -webkit-line-clamp: unset;
    width: unset !important;
    height: unset !important
}

.ti-widget.ti-goog .ti-review-content {
    height: 87px !important;
}

.ti-widget.ti-goog .ti-reviews-container-wrapper {
    padding-bottom: 1px
}

.ti-widget.ti-goog .ti-widget-container {
    max-width: 100%
}

.ti-widget.ti-goog .ti-widget-container:not(.ti-col-1) .ti-footer {
    flex: 0 0 245px !important;
    max-width: 245px !important;
    margin-left: 20px;
    margin-right: 20px
}

.ti-widget.ti-goog .ti-widget-container:not(.ti-col-1) .ti-reviews-container {
    flex: 0 0 calc(100% - 285px) !important;
    max-width: calc(100% - 285px) !important
}

.ti-widget.ti-goog .ti-rating-text strong.ti-rating {
    font-size: 24px !important;
    display: block;
    margin-bottom: 6px
}

.ti-widget.ti-goog .ti-large-logo {
    margin-top: 8px
}

.ti-widget.ti-goog .ti-large-logo img {
    max-width: 120px !important;
    top: 0px;
}

.ti-widget.ti-goog .ti-rating-text .nowrap {
    margin-bottom: 3px
}

.ti-widget.ti-goog .ti-footer-filter-text {
    text-align: right
}

.ti-widget.ti-goog .ti-controls {
    display: none;
    margin-top: -12px;
    width: 100%;
    position: absolute;
    height: 0px;
    z-index: 1;
    top: 50%
}

.ti-widget.ti-goog .ti-controls .ti-next,
.ti-widget.ti-goog .ti-controls .ti-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    opacity: 1;
    transition: all 200ms ease-out;
    background-color: #ffffff;
    outline-style: solid;
    outline-width: 1px;
    outline-color: #d9d9d9;
    border-radius: 15px
}

.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before {
    transition: all 200ms ease-out;
    content: "";
    display: block;
    position: absolute;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-color: #5E5E5E;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%
}

.ti-widget.ti-goog .ti-controls .ti-next:hover,
.ti-widget.ti-goog .ti-controls .ti-next:focus,
.ti-widget.ti-goog .ti-controls .ti-prev:hover,
.ti-widget.ti-goog .ti-controls .ti-prev:focus {
    cursor: pointer;
    background-color: #4d4d4d !important;
    outline-color: #272727 !important;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.05)
}

.ti-widget.ti-goog .ti-controls .ti-next:hover:before,
.ti-widget.ti-goog .ti-controls .ti-next:focus:before,
.ti-widget.ti-goog .ti-controls .ti-prev:hover:before,
.ti-widget.ti-goog .ti-controls .ti-prev:focus:before {
    border-color: #fff !important
}

.ti-widget.ti-goog .ti-controls .ti-next {
    right: 1px
}

.ti-widget.ti-goog .ti-controls .ti-next:before {
    transform: translate(-70%, -50%) rotate(-135deg)
}

.ti-widget.ti-goog .ti-controls .ti-prev {
    left: 1px
}

.ti-widget.ti-goog .ti-controls .ti-prev:before {
    transform: translate(-30%, -50%) rotate(45deg)
}

@media (min-width: 1024px) {
    .ti-widget.ti-goog .ti-controls {
        display: block
    }
}

@media (max-width: 479px) {
    .ti-widget.ti-goog .ti-controls {
        top: calc(50% - 19px)
    }
}

.ti-widget.ti-goog .ti-controls-line {
    display: none;
    margin: 20px auto;
    width: 150px;
    height: 3px;
    border-radius: 3px;
    background: rgba(94, 94, 94, 0.35);
    position: relative;
    overflow: hidden
}

.ti-widget.ti-goog .ti-controls-line .dot {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 25px;
    padding-left: 4px;
    padding-right: 4px;
    height: 100%;
    border-radius: 3px;
    background: #5E5E5E;
    transition: width 0.2s, left 0.2s
}

@media (max-width: 479px) {
    .ti-widget.ti-goog .ti-controls-line {
        display: block !important
    }
}

.ti-widget.ti-goog .ti-footer {
    margin-top: 0
}

.ti-widget.ti-goog .ti-footer .ti-stars {
    margin-bottom: 5px
}

.ti-widget.ti-goog .ti-fade-container:nth-child(1) {
    display: block
}

.ti-widget.ti-goog .ti-fade-container[style*="display: flex"] {
    display: block !important
}

.ti-widget.ti-goog .ti-large-logo {
    margin-top: 5px
}

.ti-widget.ti-goog .ti-footer-filter-text:has(+ .ti-verified-by-row) {
    text-align: left
}

.ti-clickable-link {
    cursor: pointer
}


/* end */
































.cvs-google-review-card p {
    margin: 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.75;
    font-family: "Trustindex Poppins", sans-serif;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cvs-google-review-card a {
    display: inline-block;
    margin-top: 15px;
    color: #8b8b8b;
    font-size: 16px;
    text-decoration: none;
}

.cvs-google-review-card a:hover {
    color: #111;
}

/*==========================
ARROWS
==========================*/
/* 
.cvs-google-review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dadada;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    color: #555;
    z-index: 10;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.cvs-google-review-arrow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.cvs-google-review-arrow.prev {
    left: -24px;
}

.cvs-google-review-arrow.next {
    right: -24px;
} */
.cvs-google-review-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
}

.cvs-google-review-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.cvs-google-review-arrow {
    position: absolute;
    top: 110px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cvs-google-review-arrow.prev {
    left: 285px;
}

.cvs-google-review-arrow.next {
    right: -22px;
}

/*==========================
SMOOTH
==========================*/

.cvs-google-review-track,
.cvs-google-review-card,
.cvs-google-review-arrow {
    transition: all .35s ease;
}

/*==================================================
    CLEAN VISION PROMO SECTION
==================================================*/

.cvs-promo-banner-section {
    position: relative;
    overflow: hidden;
    height: 620px;
    background: #f7f7f7;
}

/*=============================
BACKGROUND
=============================*/

.cvs-promo-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cvs-promo-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*=============================
RIGHT OVERLAY
=============================*/

.cvs-promo-banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, .01);
    z-index: 2;
}

/*=============================
CONTAINER
=============================*/

.cvs-promo-banner-container {
    position: relative;
    z-index: 5;
    width: 92%;
    max-width: 1400px;
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/*=============================
RIGHT CONTENT
=============================*/

.cvs-promo-banner-content {
    width: 430px;
    margin-right: 90px;
    color: #111;
}

.cvs-promo-banner-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #c7ff2d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.cvs-promo-banner-icon img {
    width: 68px;
}

.cvs-promo-banner-content h2 {
    /* margin: 0; */
    font-family: Outfit, sans-serif;
    font-size: 40px;
    line-height: 46px;
    font-weight: 400;
}

/*=============================
BOTTOM WAVE
=============================*/

.cvs-promo-banner-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 6;
    line-height: 0;
}

.cvs-promo-banner-wave svg {
    width: 100%;
    height: 170px;
    display: block;
}

/*=============================
BUBBLES
=============================*/
/* 
.cvs-promo-banner-bubbles {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: 5;
    pointer-events: none;
    opacity: .85;

    background:
        radial-gradient(circle at 5% 80%, rgba(255, 255, 255, .95) 0 18px, transparent 19px),
        radial-gradient(circle at 15% 60%, rgba(255, 255, 255, .92) 0 40px, transparent 41px),
        radial-gradient(circle at 22% 88%, rgba(255, 255, 255, .95) 0 26px, transparent 27px),
        radial-gradient(circle at 34% 70%, rgba(255, 255, 255, .90) 0 18px, transparent 19px),
        radial-gradient(circle at 48% 86%, rgba(255, 255, 255, .95) 0 36px, transparent 37px),
        radial-gradient(circle at 60% 72%, rgba(255, 255, 255, .92) 0 22px, transparent 23px),
        radial-gradient(circle at 73% 90%, rgba(255, 255, 255, .95) 0 32px, transparent 33px),
        radial-gradient(circle at 85% 65%, rgba(255, 255, 255, .92) 0 24px, transparent 25px),
        radial-gradient(circle at 96% 88%, rgba(255, 255, 255, .95) 0 42px, transparent 43px);
} */

/*=============================
CTA
=============================*/

.cvs-promo-banner-cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 42px;
    z-index: 20;
}

.cvs-promo-banner-cta-inner {

    background: #c8ff26;

    border: 2px solid #8cb000;

    padding: 26px 42px;

    min-width: 520px;

    text-align: center;

    font-family: Outfit, sans-serif;

    font-size: 26px;
    line-height: 36px;

    font-weight: 400;

    color: #172000;

    border-radius: 4px;

    position: relative;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.cvs-promo-banner-cta-inner strong {
    font-weight: 700;
}

.cvs-promo-banner-cta-inner::before {

    content: "";

    position: absolute;

    inset: 8px;

    border: 2px dashed var(--clenq-black);

    pointer-events: none;
}

/*=============================
ANIMATION
=============================*/

.cvs-promo-banner-icon {
    animation: cvsFloat 3s ease-in-out infinite;
}

@keyframes cvsFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

.cvs-promo-banner-cta-inner {

    transition: .35s;

}

.cvs-promo-banner-cta-inner:hover {

    transform: translateY(-6px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, .22);

}

.cvs-promo-banner-content h2 {

    animation: cvsFadeUp 1s ease;

}

@keyframes cvsFadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}









/*====================================================
    CLEAN VISION PREMIUM FOOTER
====================================================*/

:root {
    --cvsf-primary: #d4ff2a;
    --cvsf-dark: #0f1114;
    --cvsf-dark2: #17191d;
    --cvsf-white: #ffffff;
    --cvsf-border: rgba(255, 255, 255, .08);
    --cvsf-text: #b8b8b8;
    --cvsf-heading: #ffffff;
    --cvsf-transition: .35s ease;
}



.cvsf-container {
    width: 92%;
    max-width: 1320px;
    margin: auto;
    position: relative;
}



.cvsf-cta-section {
    position: relative;
    margin-bottom: -90px;
    z-index: 100;
}

.cvsf-cta-wrapper {

    background: var(--cvsf-primary);
    border-radius: 14px;
    display: flex;
    flex-direction: column !important;
    justify-content: space-between;
    align-items: center;
    padding: 42px 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.cvsf-cta-wrapper::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background:
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, .12), transparent 42%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .12), transparent 40%);

    pointer-events: none;

}

/*=================================
LEFT SIDE
=================================*/

.cvsf-cta-left {

    display: flex;

    align-items: center;

    gap: 45px;

    flex-wrap: wrap;

}

.cvsf-cta-item {

    display: flex;

    align-items: center;

    gap: 18px;

}

.cvsf-cta-icon {

    width: 68px;

    height: 68px;

    /* border-radius: 50%; */

    /* background: #111; */
    background: #172000;
    color: #c3f842;
    border-radius: 5px;
    border: 3px solid #ffffff;
    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

    flex-shrink: 0;

}

.cvsf-cta-text span {

    display: block;

    font-size: 15px;

    color: #333;

    margin-bottom: 6px;

    font-family: "Outfit", sans-serif;

}

.cvsf-cta-text h4 {

    margin: 0;

    font-size: 24px;

    font-weight: 700;

    font-family: "Outfit", sans-serif;

}

.cvsf-cta-text a {

    color: #111;

    text-decoration: none;

    transition: var(--cvsf-transition);

}

.cvsf-cta-text a:hover {

    color: #4a6200;

}

/*=================================
RIGHT SIDE
=================================*/

.cvsf-cta-right {

    display: flex;

    align-items: center;
    margin-top: 56px;
    gap: 35px;

}

.cvsf-cta-content h2 {

    /* margin: 0 0 10px;

    font-size: 42px;

    font-weight: 700;

    color: #111;

    line-height: 1.15; */
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Outfit", sans-serif;

}

.cvsf-cta-content p {

    margin: 0;

    font-size: 17px;

    color: #333;

    line-height: 1.7;

    font-family: "Outfit", sans-serif;

}

/*=================================
BUTTON
=================================*/

.cvsf-price-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 190px;

    height: 60px;

    /* background: #111; */
    border: 2px solid var(--clenq-black2);
    color: #172000;
    border-radius: 27px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;

    transition: var(--cvsf-transition);

}

.cvsf-price-btn:hover {

    background: #172000;

    color: #fff;

    transform: translateY(-4px);

}

/*=================================
FOOTER WRAPPER
=================================*/

.cvsf-footer {

    position: relative;

    background: #111;

    padding-top: 170px;

    overflow: hidden;

}

.cvsf-footer-bg {

    position: absolute;

    inset: 0;

    z-index: 1;

}

.cvsf-footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
    transform: scale(1.05);
}

.cvsf-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:linear-gradient(
        180deg,
        rgba(14,16,20,.72) 0%,
        rgba(14,16,20,.80) 35%,
        rgba(14,16,20,.88) 100%
    ); */
    z-index: 2;
}

/* .cvsf-footer-bg img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    opacity: .12;

}

.cvsf-footer::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #0f1114;

    opacity: .96;

    z-index: 2;

} */

.cvsf-footer>.cvsf-container {

    position: relative;

    z-index: 5;

}

/*=================================
TOP AREA
=================================*/

.cvsf-footer-top {

    position: relative;

    padding: 80px 0 70px;

}

.cvsf-footer-grid {

    display: grid;

    grid-template-columns: 1.3fr .9fr 1.3fr 1fr;

    gap: 50px;

    align-items: flex-start;

}

/*====================================================
    FOOTER DECORATIVE SHAPES
====================================================*/

.cvsf-footer-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    animation: cvsfFloat 6s ease-in-out infinite;
}

.cvsf-footer-shape img {
    display: block;
    width: 380px;
    max-width: 100%;
}

@keyframes cvsfFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }

}

/*====================================================
    FOOTER COLUMN
====================================================*/

.cvsf-footer-grid>div {
    position: relative;
}

/*====================================================
    ABOUT COLUMN
====================================================*/

.cvsf-footer-about {
    padding-right: 30px;
}

.cvsf-footer-logo {
    display: inline-block;
    margin-bottom: 35px;
}

.cvsf-footer-logo img {
    width: 220px;
    display: block;
}

.cvsf-footer-about p {

    margin: 0;

    color: var(--cvsf-text);

    font-size: 17px;

    line-height: 2;

    font-family: "Outfit", sans-serif;

}

/*====================================================
    COMMON TITLES
====================================================*/

.cvsf-footer-title {

    margin: 0 0 35px;

    color: var(--cvsf-heading);

    font-size: 28px;

    font-weight: 700;

    line-height: 1.2;

    font-family: "Outfit", sans-serif;

    position: relative;

    padding-bottom: 18px;

}

.cvsf-footer-title::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 55px;

    height: 3px;

    background: var(--cvsf-primary);

    border-radius: 30px;

}

/*====================================================
    COLUMN SPACING
====================================================*/

.cvsf-footer-links,
.cvsf-footer-posts,
.cvsf-footer-newsletter {
    padding-top: 8px;
}

/*====================================================
    DEFAULT TEXT
====================================================*/

.cvsf-footer p,
.cvsf-footer li,
.cvsf-footer a {

    font-family: "Outfit", sans-serif;

}

.cvsf-footer a {

    transition: var(--cvsf-transition);

}

.cvsf-footer a:hover {

    color: var(--cvsf-primary);

}

/*====================================================
    FADE ANIMATION
====================================================*/

.cvsf-footer-grid>div {

    animation: cvsFadeUp .8s ease both;

}

.cvsf-footer-grid>div:nth-child(2) {

    animation-delay: .15s;

}

.cvsf-footer-grid>div:nth-child(3) {

    animation-delay: .3s;

}

.cvsf-footer-grid>div:nth-child(4) {

    animation-delay: .45s;

}

@keyframes cvsFadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*====================================================
    FOOTER LINKS
====================================================*/

.cvsf-footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cvsf-footer-links ul li {
    margin-bottom: 18px;
}

.cvsf-footer-links ul li:last-child {
    margin-bottom: 0;
}

.cvsf-footer-links ul li a {

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--cvsf-text);

    text-decoration: none;

    font-size: 17px;

    font-weight: 500;

    transition: var(--cvsf-transition);

}

.cvsf-footer-links ul li img {

    width: 18px;

    transition: .35s;

}

.cvsf-footer-links ul li:hover img {

    transform: translateX(6px);

}

.cvsf-footer-links ul li:hover a {

    color: var(--cvsf-primary);

    padding-left: 6px;

}

/*====================================================
    POPULAR POSTS
====================================================*/

.cvsf-post-item {

    padding-bottom: 28px;

    margin-bottom: 28px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.cvsf-post-item:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border: none;

}

/*====================================================
    POST DATE
====================================================*/

.cvsf-post-date {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #9fa5ab;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: .2px;

}

.cvsf-post-date i {

    color: var(--cvsf-primary);

    font-size: 15px;

}

/*====================================================
    POST TITLE
====================================================*/

.cvsf-post-item h4 {

    margin: 0;

    font-size: 18px;

    line-height: 1.7;

    font-weight: 600;

    font-family: "Outfit", sans-serif;

}

.cvsf-post-item h4 a {

    color: #ffffff;

    text-decoration: none;

    transition: var(--cvsf-transition);

}

.cvsf-post-item:hover h4 a {

    color: var(--cvsf-primary);

}

/*====================================================
    HOVER EFFECT
====================================================*/

.cvsf-post-item {

    transition: .35s;

}

.cvsf-post-item:hover {

    transform: translateX(8px);

}

/*====================================================
    SMALL DIVIDER
====================================================*/

.cvsf-footer-links,
.cvsf-footer-posts {

    position: relative;

}

.cvsf-footer-links::before,
.cvsf-footer-posts::before {

    content: "";

    position: absolute;

    top: 0;

    left: -25px;

    width: 1px;

    height: 100%;

    background: rgba(255, 255, 255, .06);

}

.cvsf-footer-about::before {

    display: none;

}

/*====================================================
    PREMIUM LINK ANIMATION
====================================================*/

.cvsf-footer-links ul li a {

    position: relative;

    overflow: hidden;

}

.cvsf-footer-links ul li a::after {

    content: "";

    position: absolute;

    left: 34px;

    bottom: -2px;

    width: 0;

    height: 1px;

    background: var(--cvsf-primary);

    transition: .35s;

}

.cvsf-footer-links ul li:hover a::after {

    width: calc(100% - 34px);

}

/*====================================================
    NEWSLETTER
====================================================*/

.cvsf-news-desc {

    margin: 0 0 22px;

    color: var(--cvsf-text);

    font-size: 16px;

    line-height: 1.8;

    font-family: "Outfit", sans-serif;

}

.cvsf-news-form {

    margin-bottom: 25px;

}

.cvsf-news-input {

    position: relative;

    margin-bottom: 18px;

}

.cvsf-news-input i {

    position: absolute;

    left: 22px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--cvsf-primary);

    font-size: 18px;

}

.cvsf-news-input input {

    width: 100%;

    height: 62px;

    padding: 0 20px 0 58px;

    border: 1px solid rgba(255, 255, 255, .12);

    background: rgba(255, 255, 255, .04);

    color: #fff;

    font-size: 16px;

    border-radius: 50px;

    outline: none;

    transition: .35s;

    font-family: "Outfit", sans-serif;

}

.cvsf-news-input input::placeholder {

    color: #9b9b9b;

}

.cvsf-news-input input:focus {

    border-color: var(--cvsf-primary);

    background: rgba(255, 255, 255, .06);

}

.cvsf-news-btn {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: 50px;

    background: var(--cvsf-primary);

    color: #111;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

    font-family: "Outfit", sans-serif;

}

.cvsf-news-btn:hover {

    background: #fff;

    transform: translateY(-4px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);

}

.cvsf-news-small {

    margin: 0;

    color: #9c9c9c;

    font-size: 15px;

    line-height: 1.9;

}

/*====================================================
    FOOTER BOTTOM
====================================================*/

.cvsf-footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 32px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}

.cvsf-footer-bottom-left p {

    margin: 0;

    color: #9d9d9d;

    font-size: 15px;

    font-family: "Outfit", sans-serif;

}

.cvsf-footer-bottom-right {

    display: flex;

    align-items: center;

    gap: 18px;

}

.cvsf-footer-bottom-right span {

    color: #fff;

    font-weight: 600;

    font-size: 16px;

    font-family: "Outfit", sans-serif;

}

/*====================================================
    SOCIAL ICONS
====================================================*/

.cvsf-social-list {

    display: flex;

    gap: 12px;

    margin: 0;

    padding: 0;

    list-style: none;

}

.cvsf-social-list li a {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .35s;

}

.cvsf-social-list li a:hover {

    background: var(--cvsf-primary);

    color: #111;

    transform: translateY(-5px);

}

/*====================================================
    HOVER EFFECTS
====================================================*/

.cvsf-footer-logo img {

    transition: .35s;

}

.cvsf-footer-logo:hover img {

    transform: scale(1.05);

}

.cvsf-footer-about p,
.cvsf-post-item,
.cvsf-footer-links li,
.cvsf-news-input,
.cvsf-news-btn {

    transition: .35s;

}

/*====================================================
    SCROLLBAR (OPTIONAL)
====================================================*/

.cvsf-footer *::-webkit-scrollbar {

    width: 6px;

}

.cvsf-footer *::-webkit-scrollbar-thumb {

    background: var(--cvsf-primary);

    border-radius: 20px;

}

/*====================================================
        LARGE LAPTOP
====================================================*/

@media (max-width:1400px) {

    .cvsf-container {
        width: 94%;
    }

    .cvsf-footer-grid {
        gap: 35px;
    }

    .cvsf-cta-content h2 {
        font-size: 38px;
    }

    .cvsf-footer-shape img {
        width: 300px;
    }

}

/*====================================================
        LAPTOP
====================================================*/

@media (max-width:1199px) {

    .cvsf-footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 55px;

    }

    .cvsf-footer-links::before,
    .cvsf-footer-posts::before {
        display: none;
    }

    .cvsf-cta-wrapper {

        flex-direction: column;

        gap: 40px;

        text-align: center;

        padding: 45px;

    }

    .cvsf-cta-left {

        justify-content: center;

    }

    .cvsf-cta-right {

        flex-direction: column;

    }

    .cvsf-footer {

        padding-top: 190px;

    }

}

/*====================================================
        TABLET
====================================================*/

@media (max-width:991px) {

    .cvsf-footer-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .cvsf-footer-about {

        padding-right: 0;

    }

    .cvsf-footer-title {

        margin-bottom: 25px;

        font-size: 26px;

    }

    .cvsf-footer-shape {

        opacity: .18;

    }

    .cvsf-footer-shape img {

        width: 220px;

    }

    .cvsf-footer-bottom {

        flex-direction: column;

        justify-content: center;

        text-align: center;

    }

    .cvsf-footer-bottom-right {

        justify-content: center;

    }

}

/*====================================================
        MOBILE
====================================================*/

@media (max-width:767px) {

    .cvsf-container {

        width: 92%;

    }

    /* CTA */

    .cvsf-cta-wrapper {

        padding: 30px 20px;

        border-radius: 14px;

    }

    .cvsf-cta-left {

        flex-direction: column;

        gap: 25px;

        align-items: flex-start;

    }

    .cvsf-cta-item {

        width: 100%;

    }

    .cvsf-cta-right {

        width: 100%;

        text-align: left;

        align-items: flex-start;

        gap: 22px;

    }

    .cvsf-cta-content h2 {

        font-size: 30px;

        line-height: 1.3;

    }

    .cvsf-cta-content p {

        font-size: 15px;

    }

    .cvsf-price-btn {

        width: 100%;

    }

    /* Footer */

    .cvsf-footer {

        padding-top: 220px;

    }

    .cvsf-footer-top {

        padding: 60px 0;

    }

    .cvsf-footer-logo img {

        width: 180px;

    }

    .cvsf-footer-about p {

        font-size: 15px;

        line-height: 1.8;

    }

    .cvsf-footer-title {

        font-size: 24px;

    }

    .cvsf-footer-links ul li a {

        font-size: 16px;

    }

    .cvsf-post-item h4 {

        font-size: 17px;

        line-height: 1.6;

    }

    .cvsf-news-input input {

        height: 56px;

    }

    .cvsf-news-btn {

        height: 56px;

    }

    .cvsf-footer-bottom {

        padding: 25px 0;

    }

    .cvsf-footer-bottom-left p {

        font-size: 14px;

    }

    .cvsf-social-list {

        gap: 10px;

    }

    .cvsf-social-list li a {

        width: 42px;

        height: 42px;

    }

    .cvsf-footer-shape {

        display: none;

    }

}

/*====================================================
        SMALL MOBILE
====================================================*/

@media (max-width:480px) {

    .cvsf-cta-content h2 {

        font-size: 26px;

    }

    .cvsf-cta-icon {

        width: 58px;

        height: 58px;

        font-size: 20px;

    }

    .cvsf-cta-text h4 {

        font-size: 20px;

    }

    .cvsf-footer-title {

        font-size: 22px;

    }

    .cvsf-post-item h4 {

        font-size: 16px;

    }

    .cvsf-news-input input {

        font-size: 15px;

    }

    .cvsf-news-btn {

        font-size: 15px;

    }

    .cvsf-social-list li a {

        width: 40px;

        height: 40px;

    }

}



.blog-modern-section {
    padding: 80px 0;
    background: #fff;
}

.blog-modern-section .container {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

.blog-heading {
    text-align: center;
    margin-bottom: 65px;
}

.blog-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #172000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-subtitle img {
    width: 20px;
}

.blog-heading h2 {
    font-size: 64px;
    line-height: 1.05;
    /* color: #18210f; */
    font-weight: 700;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    max-height: fit-content;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    transition: .35s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-date {
    position: absolute;
    left: 18px !important;
    top: 20px;
    width: 92px;
    height: 40px;
    border-radius: 40px;
    background: #edf4d8;
    color: #1f2714;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.blog-content {
    padding: 45px 15px 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6d6d6d;
    font-size: 14px;
    margin-bottom: 18px;
}

.blog-meta i {
    color: #18210f;
}

.blog-content h3 {
    margin: 0;
    /* min-height: 160px; */
}

.blog-content h3 a {
    text-decoration: none;
    color: #18210f;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    transition: .3s;
}

.blog-content h3 a:hover {
    color: #8da55b;
}

.blog-footer {
    display: flex;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 18px;
}

.learn-btn {
    flex: 1;
    height: 54px;
    background: #edf4d8;
    color: #18210f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.share-btn {
    /* width: 150px; */
    background: #efefef;
    color: #484657;
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.learn-btn:hover {
    background: #b5d261;
    color: #18210f;
}

.share-btn:hover {
    background: #18210f;
    color: #fff;
}

/************ Tablet ************/

@media(max-width:1199px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-heading h2 {
        font-size: 52px;
    }

    .blog-content h3 a {
        font-size: 30px;
    }

}

/************ Mobile ************/

@media(max-width:767px) {

    .blog-modern-section {
        padding: 70px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-heading {
        margin-bottom: 45px;
    }

    .blog-heading h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-date {
        left: 25px;
        width: 80px;
        height: 36px;
        font-size: 18px;
    }

    .blog-content {
        padding: 40px 20px 20px;
    }

    .blog-meta {
        font-size: 15px;
    }

    .blog-content h3 {
        min-height: auto;
        margin-bottom: 25px;
    }

    .blog-content h3 a {
        font-size: 24px;
        line-height: 1.45;
    }

    .learn-btn,
    .share-btn {
        font-size: 15px;
        height: 50px;
    }

    .share-btn {
        width: 130px;
    }

}

.blog-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    transition: .35s;
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
    display: block;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    left: 25px;
    bottom: -18px;
    width: 92px;
    height: 40px;
    border-radius: 40px;
    background: #edf4d8;
    color: #18210f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    z-index: 10;
}

.blog-content {
    padding: 40px 25px 25px;
}

@media(max-width:991px) {

    .blog-image {
        height: 220px;
    }

}

@media(max-width:767px) {

    .blog-image {
        height: 200px;
    }

    .blog-date {
        width: 78px;
        height: 34px;
        font-size: 15px;
    }

}


.faq-modern-section {
    padding: 60px 0;
    background: #fff;
}

.faq-modern-section .container {
    max-width: 980px;
    margin: auto;
    padding: 0 15px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    display: inline-block;
    color: var(--clenq-black2);
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-heading h2 {
    font-size: 60px;
    line-height: 1em;
    font-weight: 600;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;

}

.faq-question span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #222;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #edf4d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 18px;
    color: #1b240f;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 30px 30px;
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #172000cc;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;

    line-height: 1.9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    background: #b7d36b;
}

.faq-btn-wrap {
    text-align: center;
    margin-top: 55px;
}

/* .faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  
    border-radius: 28px;
    padding: 0px 45px 0px;
    background: var(--clenq-primary);
    border: 1px solid var(--clenq-black);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 60px;

    color: var(--clenq-black);
    text-decoration: none;

    transition: .3s;
}

.faq-btn:hover {
    background: var(--clenq-black);
    color: #ffffff;
} */
.faq-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* padding: 18px 38px; */
    border-radius: 28px;
    padding: 0px 45px 0px;
    background: var(--clenq-primary);
    border: 1px solid var(--clenq-black);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 60px;
    color: var(--clenq-black);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color .35s ease, transform .35s ease;
}

/* Bottom to Top Background Animation */
.faq-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--clenq-black);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s ease;
    z-index: -1;
    border-radius: 28px;
}

.faq-btn:hover::before {
    transform: scaleY(1);
}

.faq-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.faq-btn span {
    transition: transform .35s ease;
}

.faq-btn:hover span {
    transform: translateX(5px);
}

@media(max-width:991px) {

    .faq-heading h2 {
        font-size: 48px;
    }

    .faq-question {
        font-size: 20px;
        padding: 22px;
    }

}

@media(max-width:767px) {

    .faq-modern-section {
        padding: 70px 0;
    }

    .faq-heading {
        margin-bottom: 40px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 17px;
        padding: 18px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-icon {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .faq-btn {
        width: 100%;
        justify-content: center;
    }

}

/* ===========================
   PREMIUM MOBILE MENU
===========================*/

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 998;
    backdrop-filter: blur(3px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media(max-width:991px) {

    .menu-toggle {
        width: 46px;
        /* height: 46px; */
        margin-left: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 30px;
        transition: .35s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
    }

    .menu {

        position: fixed;

        top: 0;

        right: -360px;

        width: 340px;

        max-width: 90%;

        height: 100vh;

        background: #172000;

        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 95px 0 40px;

        transition: .45s cubic-bezier(.77, .2, .05, 1);

        overflow: auto;

        z-index: 999;

        box-shadow: -10px 0 40px rgba(0, 0, 0, .35);

    }

    .menu.active {

        right: 0;

    }

    .menu li {

        width: 100%;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

    }

    .menu li:last-child {

        border: none;

    }

    .menu>li>a {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 18px 28px;

        color: #fff;

        font-size: 17px;

        font-weight: 500;

    }

    .menu>li>a:hover {

        color: #c3f842;

        background: rgba(255, 255, 255, .05);

    }

    .dropdown-menu {

        position: static;

        width: 100%;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;

        background: #202c03;

        box-shadow: none;

    }

    .dropdown.active .dropdown-menu {

        display: block;

    }

    .dropdown-menu li a {

        padding: 15px 45px;

        color: #d9d9d9;

        font-size: 15px;

    }

    .dropdown-menu li a:hover {

        background: #2a3808;

        color: #c3f842;

    }

    .left-content {

        display: none;

    }

}

/*==============================
    Scroll To Top
==============================*/

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #fff203;
    color: #172000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    z-index: 9999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all .35s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #172000;
    color: #c3f842;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.scroll-top i {
    line-height: 1;
}

/* Mobile */

@media(max-width:768px) {

    .scroll-top {
        width: 48px;
        height: 48px;
        right: 20px;
        bottom: 20px;
        font-size: 20px;
    }

}