@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --body-fonts: "Inter", sans-serif;
    --title-fonts: "Poppins", sans-serif;

    --text-color: #1F1F26;
    --color-primary: #9ad80c;
    --color-primary-dark: #7fb407;
    --btn-text-color: #1F1F26;

    --text-color-secondary: #484949;
    --color-white: #ffffff;
    --color-secondary: #202020;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    font-family: var(--body-fonts);
    -webkit-font-smoothing: antialiased;
}

.web-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1 0 auto;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h2 {
    font-size: 42px;
}

b {
    font-weight: 700;
}

a {
    color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary) !important;;
}

.container {
    max-width: 1280px;
}

.hide {
    display: none !important;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    padding: 16px 30px;
    border-radius: 35px;
    border-width: 2px;
}

.btn span {
    margin-bottom: 0 !important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--btn-text-color);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 10px 22px -6px var(--color-primary);
    opacity: 0.5;
    z-index: -1;
}

body .btn-primary span {
    color: var(--btn-text-color);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--btn-text-color);
}

.btn-sm {
    padding: 12px 20px;
}

.text-primary {
    color: var(--color-primary);
}

/*--- Body Style End ---*/

/*--- Header Style Start ---*/
.promo-header {
    /*border-bottom: 1px solid rgba(33, 123, 244, 0.1);*/
    padding: 25px 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #171717;
    transition: 0.35s all ease-in-out;
}

.navbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

body .navbar-brand {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-fonts);
    color: var(--color-white) !important;
    padding: 0;
}

.header-btn span {
    font-size: 14px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

/*--- Header Style End ---*/

/*--- Hero Style Start ---*/
.hero-section {
    /*padding: 270px 0 150px;*/
    padding: 230px 0 100px;
    background-size: cover;
    position: relative;
    background-image: url("../images/offer/Hero.png");
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-section:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
}

.hero-content {
    padding: 50px 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section span {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-white);
    display: block;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-section h1 {
    font-size: 52px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-section .hero-content .btn {
    margin-top: 25px;
    padding: 25px 30px;
    font-size: 24px;
    border-radius: 85px;
}

.form-card {
    padding: 30px;
    border-radius: 25px;
    background-color: var(--color-white);
}

.form-card button {
    margin-top: 30px;
}

.form-card h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-card input:not(.btn) {
    padding: 13px;
    border: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 25px;
    outline: none;
    box-shadow: none;
    border-radius: 0 !important;
}

.form-card form p,
.form-card form p span {
    margin-bottom: 0;
}

.form-card form br {
    display: none;
}

.form-card input:not(.btn):focus {
    border-color: var(--color-primary);
}

.form-card .wpcf7-not-valid-tip {
    color: #dc3232 !important;
    font-size: 13px;
    text-transform: initial;
    letter-spacing: initial;
    margin-top: -12px;
}

body input.wpcf7-not-valid {
    border-color: #dc3232 !important;
}

.p-sm {
    font-size: 12px;
    color: #525252;
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 300;
}

.p-sm a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color)
}

.p-sm a:hover {
    text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    padding: 10px;
    border-radius: 10px;
}


/* hero-with-backdrop */
.hero-with-backdrop {
    background: linear-gradient(to bottom, #71787a, #182022) !important;
    max-width: 1400px !important;
    margin: 150px auto 20px auto !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    padding: 70px 0 !important;
}

.hero-inner-img img {
    width: 100%;
}

@media (max-width: 991px) {
    .hero-with-backdrop {
        max-width: 1400px !important;
        margin: 65px auto 0 auto !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        padding: 40px 0 !important;
    }

    .hero-inner-img {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}


/*--- Hero Style End ---*/

/*--- Steps Section Style Start ---*/
.steps-section {
    padding: 60px 0;
}

.step-card {
    display: flex;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 2px 4px -2px rgba(16, 24, 40, .1), 0 4px 6px -1px rgba(16, 24, 40, .1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-card i {
    font-size: 40px;
    color: #81AEB5;
    margin-top: 20px;
}

.step-card p {
    font-weight: 300;
}

/*--- Steps Section Style End ---*/

/*--- Product View Section Style Start ---*/
.product-view-section {
    padding: 70px 0 50px;
}

.product-detail-box {
    background-color: #edf2f2;
    padding: 30px;
    border-radius: 30px;
}

.product-detail-box h2 {
    margin-bottom: 50px;
}

.swiper-thumbs {
    margin-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    width: 55%;
}

.swiper-thumbs .swiper-slide {
    transition: 0.35s all ease-in-out;
    opacity: 0.3;
    cursor: pointer;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

body .swiper-fade .swiper-slide {
    opacity: 0;
}

.swiper-thumbs img,
.product-slider img {
    width: 100%;
}

.swiper-thumbs .swiper-button-next,
.swiper-thumbs .swiper-button-prev {
    height: 100%;
    background-color: #edf2f2 !important;
    top: 50%;
    transform: translateY(-50%);
    margin: -1px;
    font-size: 20px;
    color: var(--color-white);
    width: 60px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--color-white);
}

.swiper-thumbs .swiper-button-prev {
    left: 0;
}

.swiper-thumbs .swiper-button-next {
    right: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 50%;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.productSlider span {
    font-size: 13px;
    display: block;
    text-align: center;
    width: 100px;
    margin: 5px auto 0;
}

.product-content h2 {
    margin-bottom: 15px;
}

.product-content span {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.products-pagination {
    display: none !important;
}

/*--- Product View Section Style End ---*/

/*--- Product Slides Section Style Start ---*/
.product-slide {
    text-align: center;
    position: relative;
    padding: 25px 0;
}

.product-slide img {
    width: 100%;
    margin-bottom: 0 !important;
    border-radius: 10px;
    object-fit: cover;
}

.product-slide h3 {
    text-align: center;
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 25px;*/
    width: 100%;
    padding: 15px;
    font-weight: 600;
}

.product-slide ul {
    border-right: 1px solid #DEDEDE;
}

.products-slides-section .swiper-slide:last-child ul {
    border-right: none;
}

.product-slide li {
    font-size: 18px;
}

.product-slide li + li {
    margin-top: 10px;
}

.product-slide .btn {
    margin-top: 30px;
}

.products-slides-section .swiper-pagination {

}

@media (max-width: 1024px) {
    .products-slides-section {
        padding-top: 50px;
    }

    .products-slides-section .swiper {
        padding-bottom: 50px;
    }

    .product-slide {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .product-slide li {
        font-size: 16px;
    }

    .product-slide h3 {
        padding: 7px;
    }

    .product-slide ul {
        border-right: none !important;
    }
}

/*--- Product Slides Section Style End ---*/

/*--- Videos Section Style Start ---*/
.videos-section {
    padding: 70px 0;
}

.videos-section .container {
    max-width: 1500px;
}

.videos-section .title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-slide {
    border-radius: 20px;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.video-slide video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.video-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 34px;
    cursor: pointer;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    transition: transform 0.3s ease;
    color: var(--color-white);
}

.play-btn:hover {
    transform: scale(1.1);
}

.videos-section .video-slide {
    transition: 0.35s all ease-in-out;
    transform: scale(0.9);
}

.videos-section .swiper-slide-active .video-slide {
    transform: scale(1);
}

.videos-section .swiper-button-next {
    right: 30px;
}

.videos-section .swiper-button-prev {
    left: 30px;
}

@media (max-width: 767px) {
    .videos-section .swiper-button-prev,
    .videos-section .swiper-button-next {
        top: auto;
        bottom: 0;
    }

    .videosSlider {
        padding-bottom: 50px;
    }

    .videos-section .swiper-button-next {
        right: 32%;
    }

    .videos-section .swiper-button-prev {
        left: 32%;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        font-size: 24px;
    }
}

/*--- Videos Section Style End ---*/

/*--- Reviews Section Style Start ---*/
.reviews-section {
    padding: 100px 0;
    z-index: 2;
    position: relative;
    background-color: transparent;

}

.reviews-section h2 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}

.reviews-section .swiper {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 120px;
}

.reviews-section .swiper-slide {
    padding: 15px 10px;
}

.review-card {
    border: 1px solid #cccccc36;
    border-radius: 14px;
    padding: 0 30px 30px 30px;
    text-align: center;
    box-shadow: 14px 22px 52px -12px #7F7F7F21;

}

.review-card .avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    margin: -20px auto 10px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card p {
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin: 12px 0 15px 0;
}

.review-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0;
    font-family: var(--body-fonts);
}

.review-card span {
    font-size: 15px;
    color: #656464;
    font-weight: 400;
    font-family: var(--body-fonts);
}

.swiper-pagination-bullet {
    background-color: #E3E6F0;
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: 0.35s all ease-in-out;
    border-radius: 25px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background-color: var(--color-primary);
}

.reviews-pagination {
    justify-content: center;
    text-align: center;
}

/*--- Reviews Section Style End ---*/

/*--- Footer Style Start ---*/
.promo-footer {
    background: #171717;
    padding: 35px 0;
}

.promo-footer ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.promo-footer ul a {
    font-size: 16px;
    color: #fff;
}

.promo-footer ul a:hover {
    color: var(--color-primary);
}

.promo-footer li + li {
    margin-left: 20px;
}

.ftr-copyright {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-footer p {
    font-size: 14px;
    text-align: center;
    color: #d4d4d4;
    margin-bottom: 0;
}


.promo-footer .disclaimer {
    font-size: 10px;
    max-width: 650px;
}

/*--- Footer Style End ---*/


.promo-mobile-strip {
    background-color: #171717;
    padding: 20px 15px 40px 15px;
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    left: 0;
    bottom: -100px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    z-index: -1;
    transition: 1s all ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-mobile-strip.shown {
    bottom: 0;
    opacity: 1;
    visibility: visible;
    z-index: 20;
}

.promo-mobile-strip span {
    font-size: 14px;
    color: var(--color-white);
}

.strip-close {
    background-color: transparent;
    padding: 0;
    border: none;
    color: var(--color-white);
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 24px;
}

@media (max-width: 1440px) {
    .reviews-section .swiper {
        padding-left: 60px;
    }

    .form-card input:not(.btn) {
        padding: 9px;
        font-size: 13px;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        max-width: 600px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-content {
        margin-top: 50px;
    }

    .swiper-thumbs {
        width: 100%;
    }

    .reviews-section .swiper {
        padding-left: 0;
    }

    .plus-btn {
        padding: 10px;
        background-color: transparent;
        border: none;
        position: relative;
        width: 100%;
        justify-content: center;
    }

    .plus-btn .fa,
    .plus-btn i {
        background: #ffffff;
        position: relative;
        z-index: 2;
        padding: 4px;
    }

    .plus-btn:after {
        content: "";
        height: 1.5px;
        width: 100%;
        background-color: var(--text-color);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .reviews-section {
        padding: 50px 0;
    }

    .promo-footer ul {
        justify-content: flex-start;
    }

    .product-view-section .swiper-thumbs {
        display: none !important;
    }

    .products-pagination {
        display: flex !important;
    }

    body.promoStripShown .promo-footer {
        padding-bottom: 170px;
    }

    .promo-mobile-strip {
        display: flex !important;
    }
}


@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }

    .promo-header {
        padding: 15px 0;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .btn {
        padding: 15px 25px;
    }

    .btn-sm {
        padding: 10px 13px;
        font-size: 16px;
    }

    body .navbar-brand {
        font-size: 20px;
    }

    header .btn {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 16px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .hero-section {
        padding: 100px 0 30px;
    }

    .hero-content {
        padding: 30px 0;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-content {
        max-width: 350px
    }

    .form-card button {
        font-size: 16px;
    }

    .hero-section .hero-content .btn {
        margin-top: 10px;
    }

    .form-card h3 {
        font-size: 26px;
    }

    .steps-section,
    .product-view-section {
        padding-bottom: 0;
    }

    .step-card {
        max-width: 300px;
    }

    .product-detail-box h2 {
        font-size: 28px;
    }
    .product-view-section .product-detail-box h2 {
        text-align: left !important;
        max-width: 300px;
    }

    .reviews-section h2 {
        font-size: 28px;
    }

    .product-detail-box {
        padding: 20px;
    }

    .reviews-section .swiper {
        padding-bottom: 0;
    }

    .promo-footer ul {
        flex-wrap: wrap;
    }

    .promo-footer ul li {
        margin: 0 10px 10px 0 !important;
    }

    .promo-footer ul a {
        font-size: 14px;
    }

    .product-view-section {
        padding-top: 40px;
    }

    .hero-section .hero-content .btn {
        padding: 20px 25px;
        font-size: 20px;
    }

    .product-content span {
        font-size: 13px;
    }
}

@media (max-width: 374px) {
    .navbar-brand {
        font-size: 18px;
    }

    .btn-sm {
        white-space: nowrap;
    }
}