@import url('https://fonts.googleapis.com/css2?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');

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #575757;
}

* {
    box-sizing: border-box;
}

a {
    transition: all 0.3s;
    color: #575757;
}

a:hover {
    color: #43CC91;
}

p {
    margin: 0 0 1em;
}

ul,
ol,
dl {
    margin: 0 0 1em;
    padding: 0 0 0 1.25;
}

*:last-child {
    margin-bottom: 0;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.pageCenter {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

h1,
h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.14;
    margin: 0 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #252525;
    margin: 0 0 20px;
}

main h2 {
    text-transform: uppercase;
}

.subNowPageHeader h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.13;
    text-transform: uppercase;
    text-align: center;
}

.inputWrap {
    background: linear-gradient(0deg, rgba(210, 247, 243, 0.3) 0%, rgba(164, 239, 232, 0.3) 100%);
    padding: 2px;
    box-shadow: 0px 5px 12px 0px rgba(28, 128, 132, 0.2);
    border-radius: 12px;
}

.inputWrapIn {
    background: linear-gradient(180deg, #252935 0%, #1A2122 100%);
    border-radius: 12px;
}

input[type='text'],
input[type='email'],
input[type='number'],
select,
textarea {
    width: 100%;
    display: block;
    padding: 10px 12px 10px 53px;
    background: linear-gradient(180deg, rgba(114, 126, 159, 0.25) 0%, rgba(47, 101, 119, 0.25) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.23px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='number']:focus,
select:focus,
textarea:focus{
    box-shadow: 0px 0px 14px 10px rgba(28, 128, 132, 0.2);
    outline: none;
}

input[type='text'],
input[type='email'] {
    background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/tabler_user.svg');
    background-repeat: no-repeat;
    background-position: 12px 8px;
}

input[type='email']{
    background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/email.svg');
}

textarea {
    height: 115px;
    resize: none;
    padding-left: 15px;
}

::placeholder {
    color: #fff;
    opacity: 1;
}

/* websiteHeader */
.websiteHeader {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.websiteHeader .websiteHeaderContent {
    display: flex;
    align-items: center;
    gap: 75px;
}

.websiteHeader .headerMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px 57px;
}

.websiteHeader .headerMenu ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}

.websiteHeader .headerMenu ul li a:hover,
.websiteHeader .headerMenu ul li.active a,
.websiteHeader .headerMenu ul li a.active {
    /* color: #43CC91; */
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .websiteHeader {
        top: 45px;
    }

    .websiteHeader .websiteHeaderContent {
        gap: 55px;
    }

    .websiteHeader .headerMenu ul {
        gap: 10px 30px;
    }

    .websiteHeader .headerMenu ul li a {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .websiteHeader .websiteHeaderContent {
        gap: 45px;
    }

    .websiteHeader .headerMenu ul {
        gap: 10px 20px;
    }
}

@media (min-width: 768px) {

    .websiteHeader .mobileTrigger,
    .websiteHeader .logoMobile {
        display: none;
    }

    .websiteHeader .headerMenu {
        /* display: block !important; */
        max-height: none !important;
    }
}

@media (max-width: 767px) {
    .logoDasktop {
        display: none;
    }

    .websiteHeader {
        top: 32px;
    }

    .websiteHeader .headerMenu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, #252935 0%, #1A2122 100%);
        overflow: hidden;
        transition: max-height 0.3s ease;
        max-height: 0;
    }

    .websiteHeader .headerMenu ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .websiteHeader .websiteHeaderContent {
        gap: 20px;
        justify-content: space-between;
    }

    .mobileTrigger {
        border: none;
        cursor: pointer;
        width: 24px;
        height: 16px;
        background: transparent;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .mobileTrigger .triggerLine {
        width: 24px;
        height: 3px;
        background: #fff;
        position: relative;
    }

    .mobileTrigger .triggerLine::before,
    .mobileTrigger .triggerLine::after {
        content: '';
        width: 24px;
        height: 3px;
        background: #fff;
        transition: all 0.3s;
        position: absolute;
        left: 0;
    }

    .mobileTrigger .triggerLine::before {
        top: -7px;
    }

    .mobileTrigger .triggerLine::after {
        bottom: -7px;
    }

    .mobileTrigger.triggerActive .triggerLine {
        background: transparent;
    }

    .mobileTrigger.triggerActive .triggerLine::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobileTrigger.triggerActive .triggerLine::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .websiteHeader .headerMenu ul li a:hover,
    .websiteHeader .headerMenu ul li.active a,
    .websiteHeader .headerMenu ul li a.active {
        color: #43CC91;
        text-decoration: none;
    }
}

/* websiteFooter */
.websiteFooter {
    color: #fff;
    padding: 279px 0 0;
    background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/footerBg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.websiteFooter a {
    color: inherit;
    text-decoration: none;
}

.websiteFooter h3 {
    margin: 0 0 11px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.5;
    color: inherit;
}

.websiteFooter a:hover {
    color: #43CC91;
}

.websiteFooter .footerTop {
    margin: 0 -15px;
    padding: 0 0 50px;
    display: flex;
    gap: 30px 65px;
}

.websiteFooter .footerTopCol {
    padding-left: 15px;
    padding-right: 15px;
}

.websiteFooter .aboutCol {
    max-width: 364px;
}

.websiteFooter .footerLogo {
    margin: 0 0 21px;
}

.websiteFooter .contactLinks {
    list-style: none;
    display: flex;
    padding: 0;
    align-items: center;
    line-height: 1;
}

.websiteFooter .contactLinks li+li {
    border-left: 1px solid #fff;
    padding-left: 30px;
    margin-left: 30px;
}

.websiteFooter .contactLinks li a:hover {
    opacity: 0.6;
}

.websiteFooter .linkCol {
    max-width: 170px;
}

.websiteFooter .footerLinks ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.websiteFooter .downloadCol {
    margin-left: auto;
    max-width: 345px;
}

.websiteFooter .downloadApp {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 8px;
}

.websiteFooter .downloadApp a:hover {
    opacity: 0.6;
}

.websiteFooter .footerBottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #FFFFFF;
    padding: 18px 0;
}

@media (max-width: 1199px) {

    .websiteFooter .aboutCol,
    .websiteFooter .downloadCol {
        max-width: 300px;
    }

    .websiteFooter .contactLinks li+li {
        padding-left: 15px;
        margin-left: 15px;
    }

    .websiteFooter .downloadApp a {
        flex: 1;
    }

    .websiteFooter .downloadApp {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .websiteFooter {
        padding: 31px 0 0;
    }

    .websiteFooter .aboutCol,
    .websiteFooter .downloadCol {
        max-width: 280px;
    }

    .websiteFooter .footerTop {
        gap: 30px 10px;
    }
}

@media (max-width: 767px) {

    .websiteFooter .footerTop {
        flex-direction: column;
        gap: 73px;
        padding: 0 0 37px;
    }

    .websiteFooter .aboutCol {
        max-width: 364px;
    }

    .websiteFooter .downloadCol {
        max-width: 300px;
        margin-left: 0;
    }

    .websiteFooter .footerBottom {
        border: none;
        padding: 18px 0 37px;
        gap: 0px;
    }

    .websiteFooter .copyrightText {
        max-width: 146px;
    }
}

/* Contact Section */
.contactSection {
    margin-bottom: -216px;
    position: relative;
    z-index: 3;
}

.contactSection .contactFormOut {
    background: linear-gradient(0deg, #D2F7F3 0%, #05574F 100%);
    box-shadow: 0px 10px 100px 0px rgb(0 0 0 / 24%);
    padding: 1px;
    border-radius: 16px;
}

.contactSection .contactForm {
    background: linear-gradient(180deg, #252935 0%, #1A2122 100%);
    padding: 31px;
    border-radius: 16px;
}

.contactSection .subNowPageHeader {
    margin-bottom: 48px;
}

.contactSection .subNowPageHeader h2 {
    color: #fff;
}

.contactSection .contactColumns {
    margin: 0 -11px;
    display: flex;
}

.contactSection .contactCol {
    width: 100%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.contactSection .contactColHalf {
    width: 50%;
}

.contactSection .submitArea {
    text-align: center;
    width: 100%;
}

.contactSection .submitBtn {
    display: inline-block;
    background: linear-gradient(180deg, #24A868 6.82%, #0D8752 100%);
    border: 1px solid rgba(219, 219, 219, 0.07);
    border-image-source: linear-gradient(0deg, rgba(219, 219, 219, 0.07), rgba(219, 219, 219, 0.07)), linear-gradient(35.22deg, rgba(219, 219, 219, 0) 33.61%, rgba(219, 219, 219, 0.7) 89.19%);
    box-shadow: 0px 10px 10px 0px #1717171A, 0px 4px 4px 0px #1717170D, 0px 1px 0px 0px #1717170D;
    padding: 12px 32px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.contactSection .submitBtn:hover {
    background: linear-gradient(180deg, #0D8752 6.82%, #24A868 100%);
}

.contactSection .submitBtn img {
    transition: all 0.3s;
    position: relative;
    left: 0;
}

.contactSection .submitBtn:hover img {
    left: 10px;
}

@media (max-width: 991px) {
    .contactSection {
        margin-bottom: 0;
    }

    .contactSection .pageCenter {
        padding: 0;
        max-width: 100%;
    }

    .contactSection .contactFormOut {
        padding: 0;
        border-radius: 0;
    }

    .contactSection .contactForm {
        border-radius: 0;
        padding: 32px;
    }
}

@media (max-width: 479px) {
    .contactSection .contactForm {
        padding: 32px 16px;
    }
}

/* subNowBanner */
.subNowBanner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 200px 0 79px;
    text-align: center;
    color: #fff;
}

.subNowBanner h1,
.subNowBanner h2 {
    margin: 0 0 32px;
    color: #fff;
}

@media (max-width: 767px) {
    .subNowBanner {
        padding: 140px 0 60px;
    }

    .subNowBanner h1,
    .subNowBanner h2 {
        margin: 0 0 20px;
        font-size: 32px;
        line-height: 1.25;
    }
}

/* FAQ Page */
.faqSection {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    padding: 72px 0 417px;
    margin-bottom: -327px;
}

.faqSection .subNowPageHeader {
    margin: 0 0 48px;
}

.subNowAccordionItemWrap {
    background: linear-gradient(0deg, #8CB6D8 0%, #3EA59F 100%);
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0px 6px 10px 0px rgba(0, 112, 124, 0.25);
}

.subNowAccordionItemWrapIn {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    border-radius: 12px;
}

.subNowAccordionItem {
    background: linear-gradient(180deg, rgba(0, 102, 94, 0.2) 0%, rgba(40, 142, 180, 0.2) 100%);
    border-radius: 10px;
    padding: 18px;
}

.subNowAccordionHeader h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    padding: 7px 0;
}

.subNowAccordionHeader {
    padding: 0 48px 0 60px;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.subNowAccordionHeader:after {
    content: "";
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    top: 6px;
    /* background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/caret.svg'); */
}

.subNowAccordionHeader:before {
    content: "";
    position: absolute;
    left: 0;
    width: 44px;
    height: 44px;
    top: 0;
    background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/faqArrow.svg');
}

.subNowAccordionBody {
    padding: 12px 0 0 60px;
    display: none;
}

.subNowAccordionBody p {
    margin: 0;
}

.subNowAccordionItemWrap+.subNowAccordionItemWrap {
    margin-top: 24px;
}

.functionLogicArea {
    margin-bottom: 82px;
}

.faqSection .subNowPageHeader h2 {
    color: #232233;
}

.subNowAccordionHeader h3 {
    color: #232233;
}

@media (max-width: 991px) {
    .faqSection {
        padding: 72px 0;
        margin-bottom: 0;
    }

    .subNowAccordionItem {
        padding: 7px 10px;
    }

    .subNowAccordionHeader {
        padding: 0 30px 0 37px;
    }

    .subNowAccordionHeader:before {
        width: 30px;
        height: 30px;
        background-size: cover;
    }

    .subNowAccordionHeader h3 {
        font-size: 17px;
        line-height: 1.5;
        padding: 2px 0;
    }

    .subNowAccordionHeader:after {
        width: 20px;
        height: 20px;
        background-size: cover;
        top: 4px;
    }

    .subNowAccordionBody {
        padding: 5px 0 0 37px;
    }

    .functionLogicArea {
        margin-bottom: 60px;
    }

    .faqSection .subNowPageHeader {
        margin: 0 0 30px;
    }
}

/* Terms and Privacy Page */
main .termsContent h2 {
    text-transform: none;
}

.termsContent h3,
.termsContent h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 15px;
    color: #232233;
}

.termsContent h3,
.termsContent h2,
.termsContent h4,
.termsContent h5,
.termsContent h6 {
    color: #232233;
}

.termsContent ul li+li {
    margin-top: 1em;
}

/* About Page */

/* Our Team */
.ourTeam {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    padding: 57px 0 48px;
}

.ourTeam .subNowPageHeader {
    text-align: center;
    max-width: 864px;
    margin: 0 auto 64px;
}

.ourTeam .subNowPageHeader h2 {
    color: #232233;
}

.ourTeam .teamSlider {
    padding: 0 110px;
    z-index: 3;
}

.teamSlider .slick-arrow {
    position: absolute;
    top: 50%;
    margin-top: -84px;
    border-radius: 50%;
    width: 84px;
    height: 84px;
    padding: 0;
    border: none;
    background: none;
    font-size: 0;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.teamSlider .slick-arrow:hover {
    opacity: 0.6;
}

.teamSlider .slick-prev {
    left: 0;
    background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/leftIcon.png');
}

.teamSlider .slick-next {
    right: 0;
    background-image: url('https://www.subnowapp.com/wp-content/uploads/2025/07/rightIcon.png');
}

.teamSlider .teamSliderItem {
    text-align: center;
}

.teamSlider .teamSliderItem .teamImage {
    display: flex;
    justify-content: center;
    margin: 0 0 24px;
    padding: 9px;
}

.teamSlider .teamSliderItem .teamImage .teamImageIn {
    display: inline-flex;
    border-radius: 50%;
    padding: 8px;
}

.teamSlider .teamSliderItem.slick-current.slick-active .teamImage .teamImageIn {
    background: linear-gradient(180deg, #5CFF94 0%, #02B5AC 100%);
    box-shadow: 0px 0px 0px 9px rgba(13, 135, 82, 0.32);
}

.teamSlider .teamSliderItem .teamImage img {
    width: auto;
    margin: 0 auto;
    border-radius: 50%;
}

.teamSlider .teamSliderItem .teamContent h3 {
    color: #232233;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.teamSlider .teamSliderItem.slick-current.slick-active .teamContent h3 {
    background: linear-gradient(180deg, #24A868 6.82%, #0D8752 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 991px) {
    .teamSlider .slick-arrow {
        width: 40px;
        height: 40px;
        background-size: cover;
        margin-top: -40px;
    }

    .ourTeam .teamSlider {
        padding: 0 55px;
    }
}

/* About Mark */
.aboutMark {
    background: linear-gradient(180deg, #00665E 0%, #288EB4 100%);
    padding: 72px 0;
    text-align: center;
    color: #fff;
}

.aboutMark h2 {
    margin: 0 0 44px;
    color: #fff;
}

.aboutMark h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 9px;
}

.aboutMark p+h3 {
    margin-top: 33px;
}

/* Mark Story */
.markStory {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    padding: 72px 0;
}

.markStory .subNowPageHeader {
    margin: 0 0 64px;
}

.markStory .markStoryWrap {
    display: flex;
    align-items: center;
    gap: 41px;
}

.markStory .markStoryCol {
    width: 50%;
    max-width: 575px;
}

.markStory .markStoryCol.imageCol {
    max-width: 554px;
}

.markStory .subNowPageHeader h2 {
    color: #232233;
}

.markStory .markStoryWrap p {
    margin-bottom: 20px;
}

.markStory .markStoryWrap p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .markStory .markStoryWrap {
        flex-direction: column-reverse;
    }

    .markStory .markStoryCol,
    .markStory .markStoryCol.imageCol {
        width: 100%;
        max-width: 100%;
    }

    .markStory .markStoryCol.imageCol {
        text-align: center;
    }
}

/* About Contact */
.aboutContact {
    background: linear-gradient(180deg, #00665E 0%, #288EB4 100%);
    padding: 72px 0 399px;
    margin-bottom: -327px;
    text-align: center;
    color: #fff;
}

.aboutContact .pageCenter {
    max-width: 1063px;
}

.aboutContact h2 {
    color: #fff;
}

@media (max-width: 991px) {
    .aboutContact {
        padding: 72px 0;
        margin-bottom: 0;
    }
}



/* Home Page */
/* Home Banner */
.homeBanner {
    position: relative;
    z-index: 3;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.homeBanner .homeBannerSliderWrap {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.homeBanner .homeBannerSliderWrap .homeBannerSliderItem {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.homeBanner .homeBannerSliderWrap .homeBannerSliderItem.active {
    opacity: 1;
    z-index: 1;
}

.homeBanner .sliderDots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 2;
    bottom: 0;
}

.homeBanner .sliderDots .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: all 0.3s;
}

.homeBanner .sliderDots .dot.active,
.homeBanner .sliderDots .dot:hover {
    background: #ffffff;
    border-color: rgba(47, 138, 130, 1);
    box-shadow: 0 0 0 4px #fff;
}

.homeBanner .homeBannerItem {
    padding: 140px 0 93px;
    color: #fff;
}

.homeBanner .homeBannerContent {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.homeBanner .homeBannerCol {
    max-width: 500px;
}

.homeBanner .homeBannerCol.textCol {
    padding-top: 100px;
}

.homeBanner .homeBannerCol.imageCol {
    max-width: 624px;
}

.homeBanner h1,
.homeBanner h2 {
    font-weight: 700;
    font-size: 58px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}

.homeBanner .homeBannerText {
    margin-bottom: 55px;
}

.homeBanner .bannerDownload {
    display: flex;
    gap: 16px;
}

.homeBanner .bannerDownload a {
    transition: all 0.3s;
}

.homeBanner .bannerDownload a:hover {
    opacity: 0.6;
}

@media (max-width: 991px) {
    .homeBanner .homeBannerItem {
        padding: 100px 0 60px;
    }

    .homeBanner .homeBannerCol {
        flex: 1;
    }

    .homeBanner .homeBannerCol.textCol {
        padding-top: 0;
    }

    .homeBanner .sliderDots {
        bottom: 0;
    }

    .homeBanner h1, .homeBanner h2 {
        margin-bottom: 15px;
        font-size: 46px;
    }

    .homeBanner .homeBannerText {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .homeBanner .homeBannerContent {
        flex-direction: column;
        gap: 22px;
    }

    .homeBanner .homeBannerItem {
        padding: 120px 0 32px;
        text-align: center;
    }

    .homeBanner .homeBannerSliderWrap,
    .homeBanner .sliderDots {
        display: none !important;
    }

    .homeBanner h1, 
    .homeBanner h2 {
        margin-bottom: 20px;
        font-size: 46px;
        line-height: 1.1;
    }
    .homeBanner .bannerDownload {
        justify-content: center;
    }

    .homeBanner .homeBannerCol.textCol,
    .homeBanner .homeBannerCol.imageCol {
        max-width: 100%;
    }

    .homeBanner .homeBannerCol.imageCol {
        margin: 0 0 -20px;
    }
}

/* Nutshell */
.nutshellSection {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    padding: 25px 0;
}

.nutshellSection .subNowPageHeader {
    max-width: 601px;
    margin: 0 auto 43px;
    text-align: center;
}

.nutshellSection .nutshellWrap {
    display: flex;
    align-items: center;
    gap: 47px;
}

.nutshellSection .nutshellCol.textCol {
    max-width: 394px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nutshellSection .nutshellcard {
    box-shadow: 0px 6px 10px 0px rgba(0, 112, 124, 0.25);
    padding: 2px;
    background: linear-gradient(0deg, #8CB6D8 0%, #3EA59F 100%);
    border-radius: 12px;
}

.nutshellSection .nutshellcardBg {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    border-radius: 12px;
}

.nutshellSection .nutshellcardIn {
    background: linear-gradient(180deg, rgba(0, 102, 94, 0.2) 0%, rgba(40, 142, 180, 0.2) 100%);
    border-radius: 12px;
    padding: 19px 18px 24px 58px;
    position: relative;
    z-index: 3;
}

.nutshellSection .nutshellcardIn h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nutshellSection .nutshellcardIn::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 21px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url('https://www.subnowapp.com/wp-content/uploads/2025/07/checkboxCircle.svg') center / cover no-repeat;
}

@media (max-width: 1199px){
    .nutshellSection .nutshellCol.textCol {
        width: 33%;
    }
}

@media (max-width: 991px){
    .nutshellSection {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .nutshellSection .nutshellWrap {
        flex-direction: column;
        gap: 0;
    }

    .nutshellSection .nutshellCol.textCol {
        width: 100%;
    }

    .nutshellSection {
        padding: 70px 0;
    }

    .nutshellSection .subNowPageHeader {
        margin: 0 auto 40px;
    }

    .nutshellSection .subNowPageHeader h2 {
        margin-bottom: 15px;
    }

    .nutshellSection .nutshellCol.textCol {
        order: 1;
    }

    .nutshellSection .nutshellCol.imageCol+.textCol {
        margin-top: 24px;
    }

    .nutshellSection .nutshellCol.textCol {
        gap: 24px;
    }

    .nutshellSection .nutshellCol.imageCol {
        margin-bottom: 48px;
    }
}

/* appFeatureSection */
.appFeatureSection {
    text-align: center;
    padding: 30px 0 90px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.appFeatureSection .subNowPageHeader {
    margin-bottom: 4px;
}

.appFeatureSection .subNowPageHeader h2 {
    color: inherit;
}

.appFeatureSection .appFeatureImage {
/*     margin-top: -90px; */
/*     margin-bottom: -45px; */
    pointer-events: none;
    text-align: center;
    padding: 0 110px;
    position: relative;
    z-index: 3;
}

.appFeatureSection .appFeatureImage .customArrow {
    pointer-events: auto;
    cursor: pointer;
    padding: 0;
    background: no-repeat;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    width: 84px;
    height: 84px;
    z-index: 3;
    transition: all 0.3s;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.appFeatureSection .appFeatureImage .customArrow:hover {
    opacity: 0.6;
}

.appFeatureSection .appFeatureImage .customArrow.customPrevArrow {
    left: 0;
}

.appFeatureSection .appFeatureImage .customArrow.customNextArrow {
    right: 0;
}

.appFeatureSlider .appFeatureSliderItem h3 {
    font-size: 25px;
    line-height: 1.28;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.appFeatureSlider .appFeatureSliderItem p {
    margin-bottom: 10px;
}

.appFeatureSlider .appFeatureSliderItem p:last-child {
    margin-bottom: 0;
}

.appFeatureSlider .appFeatureSliderItem p.reviewArea {
    padding-top: 15px;
}

.appFeatureSlider .slick-dots {
    position: absolute;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    gap: 18px;
    bottom: -50px;
    z-index: 3;
}

.appFeatureSlider .slick-dots li {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.appFeatureSlider .slick-dots li button {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    font-size: 0;
    background: transparent;
    cursor: pointer;
}

.appFeatureSlider .slick-dots li.slick-active,.appFeatureSlider .slick-dots li:hover {
    box-shadow: 0 0 0 4px #fff;
    border: 1px solid #2F8A82;
}

/* @media (max-width: 1199px) {
    .appFeatureSection .appFeatureImage {
        margin-top: -50px;
        margin-bottom: -25px;
    }
} */

@media (max-width: 991px){
    .appFeatureSection {
        padding: 100px 0;
    }

    .appFeatureSection .appFeatureImage{
        padding: 0 55px;
    }

    .appFeatureSection .appFeatureImage .customArrow{
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .appFeatureSection {
        padding: 70px 0 110px;
    }

    .appFeatureSection .appFeatureImage .customArrow {
        display: none !important;
    }

    .appFeatureSlider .appFeatureSliderItem h3 {
        font-size: 22px;
    }

    .appFeatureSlider .appFeatureSliderItem p {
        margin-bottom: 5px;
    }

    .appFeatureSlider .appFeatureSliderItem p.reviewArea {
        padding-top: 5px;
    }

    .appFeatureSlider .slick-dots {
        bottom: -40px;
    }

    .appFeatureSlider .slick-dots li:not(.slick-active):hover {
        background: #fff;
        box-shadow: none;
    }
}

@media (max-width: 550px) {
    .appFeatureSection .appFeatureImage {
        padding: 0;
        overflow: hidden;
        margin:  0 -15px 0;
    }

    .appFeatureSection .appFeatureImage img {
        max-width: none;
        object-fit: cover;
        object-position: center;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        height: auto;
    }
}

/* testimonialSection */
.testimonialSection {
    background: linear-gradient(180deg, #ECF5FF 0%, #C4E7F4 100%);
    padding: 30px 0 410px;
    text-align: center;
    margin-bottom: -320px;
}

.testimonialSection .subNowPageHeader {
    margin: 0 0 64px;
}

.testimonialSliderWrapper {
    position: relative;
    z-index: 3;
    padding: 0 109px;
}

.testimonialSlider {
    position: relative;
    height: 100%;
    max-width: 954px;
    margin: 0 auto;
    padding: 0 91px;
    z-index: 3;
}

.testimonialSlider .testimonialSliderItem {
    position: absolute;
    width: 100%;
    opacity: 0;
    z-index: 0;
    transition: all 0.5s;
    top: 0;
    padding: 2px;
    background: linear-gradient(0deg, #8CB6D8 0%, #3EA59F 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
    box-shadow: 0px 6px 10px 0px rgba(0, 112, 124, 0.25);
    left: 0;
}

.testimonialSlider .testimonialSliderItem.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
    position: relative;
    top: 0;
    pointer-events: all;
}

.testimonialSlider .testimonialSliderItem.prev,
.testimonialSlider .testimonialSliderItem.next {
    opacity: 0.5;
    z-index: 2;
    pointer-events: all;
    cursor: pointer;
    width: 70%;
    display: flex;
    flex-direction: column;
    height: 100%;
transform: scaleY(.85);

}

.testimonialSlider .testimonialSliderItem.prev .testimonialcard,
.testimonialSlider .testimonialSliderItem.next .testimonialcard {
    height: 100%;
    overflow: hidden;
}

.testimonialSlider .testimonialSliderItem.prev {
    left: 0;
}

.testimonialSlider .testimonialSliderItem.next {
    right: 0;
    left: auto;
}

.testimonialSlider .testimonialcard {
    padding: 35px 38px;
height: 100%;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 102, 94, 0.2) 0%, rgba(40, 142, 180, 0.2) 100%), linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(180deg, rgba(0, 102, 94, 0.2) 0%, rgba(40, 142, 180, 0.2) 100%);
}

.testimonialSliderArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    width: 84px;
    height: 84px;
    cursor: pointer;
    z-index: 4;
    font-size: 0;
    padding: 0;
    background: transparent;
    transition: all 0.3s;
}

.testimonialSliderArrow:hover {
    opacity: 0.6;
}

.testimonialSliderArrow.testimonialPrev {
    left: 0;
}

.testimonialSliderArrow.testimonialNext {
    right: 0;
}

.testimonialSliderDots {
    display: flex;
    gap: 18px;
    z-index: 2;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -45px;
}

.testimonialSliderDots span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1e8e5e;
    border: 1px solid #1e8e5e;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonialSliderDots span.active,
.testimonialSliderDots span:hover {
    background: #1e8e5e;
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(47, 138, 130, 1);
}

.testimonialSlider .testimonialImage {
    display: inline-block;
    border-radius: 50%;
    margin: 0 0 13px;
}

.testimonialSlider .testimonialContent {
    line-height: 1.3;
    max-width: 644px;
    margin: 0 auto;
}

.testimonialSlider .testimonialContent h3 {
    font-weight: 700;
    font-size: 31.25px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.testimonialSlider .testimonialContent h4 {
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 7px;
}

@media (max-width: 991px){
    .testimonialSection {
        margin-bottom: 0;
        padding: 100px 0 150px;
    }

    .testimonialSliderWrapper{
        padding: 0 55px;
    }

    .testimonialSliderArrow{
        width: 40px;
        height: 40px;
    }

    .testimonialSlider .testimonialcard {
        padding: 20px;
    }

    .testimonialSlider {
        padding: 0 50px;
    }
}

@media (max-width: 767px){
    .testimonialSection {
        padding: 70px 0 120px;
    }

    .testimonialSection .subNowPageHeader {
        margin: 0 0 40px;
    }

    .testimonialSlider .testimonialContent h3 {
        font-size: 28px;
    }

    .testimonialSliderWrapper {
        padding: 0 45px;
    }

    .testimonialSlider {
        padding: 0 25px;
    }

    .testimonialSliderDots span:not(.active):hover {
        background: #1e8e5e;
        border: 1px solid #1e8e5e;
        box-shadow: none;
    }
}

@media (max-width: 550px){
    .testimonialSlider .testimonialSliderItem.prev, 
    .testimonialSlider .testimonialSliderItem.next {
        opacity: 0;
    }


    .testimonialSlider, .testimonialSliderWrapper {
        padding: 0;
    }

    .testimonialSliderArrow {
        display: none !important;
    }
}

.page h1.entry-title {
    display: none;
}

.wpcf7-response-output {
    margin-bottom: 16px !important;
    position: relative !important;
    z-index: 5 !important;
    color: white !important;
}

.contactSection .form-response-box {
    margin: 0;
    padding: 0;
}
 
.e-con>.e-con-inner , .elementor-element.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded , .elementor-element.e-con-full.e-flex.e-con.e-parent.e-lazyloaded {
    padding: 0 !important;
}

.contactSection~div {
    display: none !important;
}

section.aboutContact {
/*     padding-top: 150px; */
}

/* Feature Page */
.featuresSection .main-features {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    overflow: auto;
    margin: 0 auto;
    border-radius: 12px;
    width: 950px;
}
.featuresSection .price-table {
    width: 100%;
    border-collapse: collapse;
    border: 0 none;
}
.featuresSection .price-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.featuresSection .price-table tr td {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    font-size: 14px;
    width: 25%;
}
.featuresSection .price-table tr td:first-child {
    border-left: 0 none;
    width: 50%;
    max-width: 500px;
    min-width: 250px;
}
.featuresSection .price-table tr td:not(:first-child) {
    text-align: center;
}
.featuresSection .price-table tr {
    background-color: #FFFFFF;
}
.featuresSection .price-table tr:hover {
    background-color: #EEEEEE;
}
.featuresSection .price-table .fa-check {
    color: #1e8e5e;
}
.featuresSection .price-table .fa-times {
    color: #dc3232;
}
 
.featuresSection .price-table tr:nth-child(2n) td:nth-child(3) {
    /* Highlighted column */
    background-color: rgba(216, 214, 227, 0.25);
}
.featuresSection .price-table tr td:nth-child(3) {
    background-color: rgba(216, 214, 227, 0.15);
    padding: 8px 48px;
}
 
.featuresSection .price-table tr.price-table-head td {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 24px;
}
.featuresSection .price-table tr.price-table-head {
    background: linear-gradient(180deg, #24A868 6.82%, #0D8752 100%);
    color: #FFFFFF;
}

@media (max-width: 767px) {

    .subNowPageHeader h2,
    main h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 479px) {
	.inputWrapIn input ~ span , .inputWrapIn textarea ~ span {
	font-size: 10px;
	bottom: -25px;
		width: 100%;
}
	.inputWrapIn span {
		display: block;
		position: relative;
	}
}
@media (min-width: 992px){
    .websiteFooter.websiteFooterForm {
        margin-top: -286px;
        padding-top: 349px;
    }
    footer.websiteFooter {
        margin-top: -216px;
    }
}

.featuresSection .main-features {
    max-height: 80vh;
}
 
.featuresSection .main-features table thead {
    position: sticky;
    top: 0;
    left: 0;
}

.homeBanner .sliderDots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 2;
    bottom: -40px;
}

.bannerVideoWrapper{
    position: relative;
    width: 100%;
}

.bannerVideo{
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.videoControl{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.videoControl .videoControlBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoControl:hover{
    background: transparent;
}

@media (max-width: 991px) {
    .homeBanner .homeBannerItem {
        padding: 100px 0 60px;
    }

    .homeBanner .homeBannerCol {
        flex: 1;
    }

    .homeBanner .homeBannerCol.textCol {
        padding-top: 0;
    }

    /* .homeBanner .sliderDots {
        bottom: 0;
    } */

    .homeBanner h1, .homeBanner h2 {
        margin-bottom: 15px;
        font-size: 46px;
    }

    .homeBanner .homeBannerText {
        margin-bottom: 25px;
    }

    .bannerVideoWrapper{
        max-width: 420px;
    }
}