:root {
    --primary: #2895bc;
    --primary-hover: #14709f;
    --gr-yellow: #eb8c0a;
    --gr-yellow-hover: #e06604;
    --gr-blue: #2895bc;
    --gr-blue-hover: #14709f;
    --gr-pink: #d51180;
    --gr-pink-hover: #c2075a;
    --gr-purple: #7758a3;
    --gr-purple-hover: #5a3f81;
    --gr-grad: linear-gradient(45deg, rgba(74, 34, 87, 1) 0%, rgba(0, 56, 117, 1) 100%);
    --gr-grad-lgrey: linear-gradient(0deg, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
    --lgrey: #ededed;
    --font-color: #6c6f81;
    --font-color-emp: #14161d;
    --font-family: 'Poppins', sans-serif;
    --header-color: #14161d;
    --gen-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    --gen-box-radius: 15px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body,
p,
li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    color:var(--font-color);
}

p,
li{
    line-height: 1.8em;
}

a {
    color: #3498db;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
}

h1 {
    font-size: 3.875rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height:3.25rem;
    color: #222;
}

    h2 span {
        font-weight: 300;
    }

h3 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.4em;
    color: #333;
}

    h3 span {
        font-weight: 300;
    }

h4 {
    font-size: 1.25rem;
    line-height: 1.5em;
}

h5 {
    font-size: 1.125rem;
    line-height: 1.25em;
    margin-bottom: 15px;
    color:var(--font-color-emp);
}

h6 {
    font-size: 1rem;
    line-height: 1.6em;
}

.header-15{
    font-size:1.5rem;
}

.f-c-r{
    display:flex;
    align-items:center;
    justify-content:end;
}

strong {
    font-weight: 600;
}

.header-thin {
    font-weight: 300;
}

.text-gradient-2 {
    background-image: linear-gradient(90deg, rgba(40,149,188,1) 0%, rgba(213,17,128,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


html {
    position: relative;
    min-height: 100%;
}

.d-flex-col-cen {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.f-cen-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.fc-purple {
    color: var(--gr-purple);
}

.bg-purple {
    background-color: var(--gr-purple);
}

.fc-yellow {
    color: var(--gr-yellow);
}

.bg-yellow {
    background-color: var(--gr-yellow);
}

.fc-blue {
    color: var(--gr-blue);
}

.bg-blue {
    background-color: var(--gr-blue);
}

.fc-pink {
    color: var(--gr-pink);
}

.bg-grad-grey {
    background: var(--gr-grad-lgrey);
}

.c-green {
    color: #128106;
}

.container-fluid {
    padding-left: unset;
    padding-right: unset;
}

.img-cir{
    border-radius:50%;
    overflow:hidden;
}
.img-cir-long {
    border-radius: 250px;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-center {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%)
}

.btn {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.5s;
}
.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

    .btn-primary:hover {
        color: #fff;
        background-color: var(--primary-hover);
        border-color: var(--primary-hover)
    }
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary)
}
.btn-outline-primary:hover {
    color: #fff;
    background-color:var(--primary);
    border-color: var(--primary)
}

.btn-white-outline,
.btn-purple,
.btn-purple-outline,
.btn-yellow,
.btn-yellow-outline,
.btn-pink,
.btn-pink-outline,
.btn-blue,
.btn-blue-outline {
    border: 1px solid;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

    .btn-white-outline span,
    .btn-purple span,
    .btn-purple-outline span,
    .btn-yellow span,
    .btn-yellow-outline span,
    .btn-pink span,
    .btn-pink-outline span,
    .btn-blue span,
    .btn-blue-outline span {
        padding: 2px;
        font-size: 18px;
    }

    .btn-purple:hover,
    .btn-purple-outline:hover,
    .btn-yellow:hover,
    .btn-yellow-outline:hover,
    .btn-pink:hover,
    .btn-pink-outline:hover,
    .btn-blue:hover,
    .btn-blue-outline:hover {
        color: #fff;
    }

.btn-white-outline {
    border-color: #fff;
    color: #fff;
}

    .btn-white-outline:hover {
        background-color: #fff;
        border-color: #fff;
        color: #000;
    }

.btn-purple {
    background-color: var(--gr-purple);
    border-color: var(--gr-purple);
}
.btn-purple:hover {
    background-color: var(--gr-purple-hover);
}

.btn-purple-outline {
    border-color: var(--gr-purple);
    color: var(--gr-purple);
}
    .fi-ver:hover .btn-purple-outline,
    .btn-purple-outline:hover {
        background-color: var(--gr-purple);
        border-color: var(--gr-purple);
        color: #fff;
    }


.btn-yellow {
    background-color: var(--gr-yellow);
    border-color: var(--gr-yellow);
}

    .btn-yellow:hover {
        background-color: var(--gr-yellow-hover);
    }

.btn-yellow-outline {
    border-color: var(--gr-yellow);
    color: var(--gr-yellow);
}
    .fi-ver:hover .btn-yellow-outline,
    .btn-yellow-outline:hover {
        background-color: var(--gr-yellow);
        border-color: var(--gr-yellow);
        color: #fff;
    }


.btn-pink {
    background-color: var(--gr-pink);
    border-color: var(--gr-pink);
}

    .btn-pink:hover {
        background-color: var(--gr-pink-hover);
    }

.btn-pink-outline {
    border-color: var(--gr-pink);
    color: var(--gr-pink) !important;
}
    .fi-ver:hover .btn-pink-outline,
    .btn-pink-outline:hover {
        background-color: var(--gr-pink);
        border-color: var(--gr-pink);
        color: #fff !important;
    }

.btn-blue {
    background-color: var(--gr-blue);
    border-color: var(--gr-blue);
}

    .btn-blue:hover {
        background-color: var(--gr-blue-hover);
    }

.btn-blue-outline {
    border-color: var(--gr-blue);
    color: var(--gr-blue);
}
    .fi-ver:hover .btn-blue-outline,
    .btn-blue-outline:hover {
        background-color: var(--gr-blue);
        border-color: var(--gr-blue);
        color: #fff;
    }

.navbar .getstarted {
    background: var(--gr-blue);
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
}

    .navbar .getstarted:hover {
        color: #fff;
        background: var(--gr-blue-hover);
    }

.navbar .starttrial {
    background: var(--gr-pink);
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
}

    .navbar .starttrial:hover {
        color: #fff;
        background: var(--gr-pink-hover);
    }


.btn-block {
    width: 100%;
}

.gen-list {
    margin: unset;
    padding: unset;
}

    .gen-list li {
        list-style-type: none;
        margin: 15px 0;
        display: flex;
        align-items: start;
    }

        .gen-list li .icon-check {
            margin-right: 15px;
            font-size: 12px;
            border-radius: 50%;
            background-color: var(--lgrey);
            padding: 6px;
            margin-top: 3px;
        }

        .gen-list li .icon-arrow {
            margin-right: 10px;
            font-size: 18px;
            padding: 6px;
            margin-top: 1px;
        }

        .gen-list li .li-info {
            padding: 0 6px;
            line-height: 1.7em;
        }

        .gen-list li .li-bold {
            color: #232533;
            font-weight: 500;
        }


/*--------------------------------------------------------------
# Top Header 
--------------------------------------------------------------*/

.navbar a,
.navbar a:focus {
    font-family: var(--font-family);
}

    .navbar a, .navbar a:focus {
        font-size: 1rem;
        font-weight: 400;
    }


#header,
.header {
    z-index: 997;
    transition: all 0.5s;
    padding: 15px;
    background: #fff;
}


    #header .logo img {
        max-height: 70px
    }

    #header.header-inner-pages, #header.header-scrolled {
        background: #fff;
        box-shadow: rgba(99,99,99,.2) 0 2px 8px 0
    }

.navbar .dropdown ul a {
    padding: 5px 20px;
    font-weight: 400;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
}

.sec-pt-half {
    padding-top: 50px;
}

.sec-np-bot {
    padding-top: 60px;
    padding-bottom: unset;
}

.mt-n-10 {
    margin-top: -10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-setup {
    background: var(--gr-grad);
    width: 100%;
    height: 85vh;
    margin-top: 100px;
    padding: unset;
    overflow: hidden;
}

    .hero-setup h1 {
        margin: 0 0 40px 0;
        font-weight: 300;
        color: #ffffff;
    }

        .hero-setup h1 span {
            font-weight: 700;
        }

.hero-lines {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent url('../img/hero-logo-lines.webp') no-repeat right bottom;
    position:relative;
}

.badge-referral {
    width: 313px;
    height: 313px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}
.badge-referral img{
    width:100%;
    height:100%;
}

.hero-sub {
    position: relative;
    background: var(--gr-grad);
    width: 100%;
    margin-top: 100px;
    padding: unset;
    display: flex;
    align-items: start;
    overflow: unset;
}

.hero-sub-dots {
    position: absolute;
    top: 0;
    right: 0;
}

.hero-setup-resources {
    min-height: 270px;
}

.hero-setup-resources-sml {
    min-height: 90px;
}

.hero-setup-resources-steps {
    min-height: 170px;
}


.hero-setup-features {
    min-height: 260px;
}

    .hero-setup-features .hero-img img {
        height: 370px;
    }

.hero-setup-about .hero-img img {
    height: 400px;
}

.hero-subpage-head,
.hero-subpage-head-resources {
    margin: 60px auto;
    position: relative;
}
.hsrs-heading,
.hero-subpage-head-resources-steps {
    max-width: 100%;
    margin: 30px auto 30px auto;
}

.hsh-ex-w {
    max-width: 1000px;
}
.hsrs-heading p,
.hero-subpage-head p,
.hero-subpage-head-resources p,
.hero-subpage-head-resources-steps p {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.hero-subpage-head-resources-steps span.email-temp-note {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    text-align: center;
    padding: 10px 25px;
    display: block;
}

.hero-subpage-head h1,
.hero-subpage-head-resources h1,
.hero-subpage-head-resources-steps h1 {
    text-align: center;
    color: #31a0c8;
    font-weight: 600;
    font-size:3rem;
}

    .hero-subpage-head h1 .sp-yellow,
    .hero-subpage-head-resources h1 .sp-yellow {
        color: #eb8c0a;
        font-weight: 600;
    }

    .hero-subpage-head h1 .sp-purple,
    .hero-subpage-head-resources h1 .sp-purple {
        color: #8c6eb8;
        font-weight: 600;
    }

    .hero-subpage-head h1 .sp-pink,
    .hero-subpage-head-resources h1 .sp-pink {
        color: #d51180;
        font-weight: 600;
    }

    .hero-subpage-head h1 .sp-white,
    .hero-subpage-head-resources h1 .sp-white {
        color: #fff;
        font-weight: 600;
    }

/*--------------------------------------------------------------
# Question Section
--------------------------------------------------------------*/
.question-section .inner {
    padding: 0;
}

    .question-section .inner h2 {
        padding: 10px 100px 25px 100px;
        text-align: center;
    }

    .question-section .inner p {
        padding: 10px 0;
    }

/*--------------------------------------------------------------
# Motivational Sections
--------------------------------------------------------------*/
.moti h3 {
    font-weight: 600;
    margin-bottom: 25px;
}

.moti-info-left {
    padding: 50px 60px 50px 300px;
}

.moti-info-right {
    padding: 50px 300px 50px 100px;
}

.moti-purple-bar {
    height: 466px;
    background: #5f4388;
    text-align: left;
}

.moti-yellow-bar {
    height: 465px;
    background: var(--gr-yellow);
    text-align: right;
}

.moti-blue-bar {
    height: 465px;
    background: var(--gr-blue);
    text-align: left;
}

    .moti-blue-bar img {
        margin-top: -75px;
    }

.moti-blocks {
    border-radius: 50px;
    padding: 100px;
    color: #fff;
    min-height: 250px;
    margin-bottom: 25px;
}

    .moti-blocks h3,
    .moti-blocks p,
    .moti-blocks li{
        color: #fff;
    }

/*--------------------------------------------------------------
# Features + Solutions Sections
--------------------------------------------------------------*/
.solutions-block,
.features-block {
    padding: 5px 0;
}
    .solutions-block .col-md-4,
    .features-block .col-md-4 {
        margin-bottom: 25px;
    }

.solution-card,
.feature-indv {
    padding: 20px;
    transition: all 0.2s;
    position: relative;
    border-radius: var(--gen-box-radius);
    border: 1px rgba(200,200,200,0.6) solid;
    min-height: 100%;
    overflow:hidden;
}
    .solution-card:hover,
    .feature-indv:hover {
        background-color: #fff;
        border: 1px #fff solid;
        box-shadow: var(--gen-box-shadow);
    }
    .solution-card p,
    .feature-indv p {
        margin-bottom: unset;
        min-height: 100px;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow:hidden;
    }
    .feature-indv p {
        padding: 15px 15px 0 15px;
    }
    .solution-card p {
        padding:unset;
    }

    .feature-indv a {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

/* -- solutions --*/
.solutions-btns a {
    margin: 10px;
}
.solution-card-img {
    height: 140px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin: -1.25rem -1.25rem 1.25rem -1.25rem;
}
    .solution-card-img img {
        overflow: hidden;
        width: 100%;
    }
.solution-card-body {
    text-align:left;
}
.solution-card-body .title{
    margin-bottom:1rem;
    font-size:1.125rem;
    font-weight:500;
}
.solution-card-footer .btn{
    width:100%;
    justify-content:center;
}



.feature-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .feature-head h5 {
        margin-bottom: unset;
    }

    .feature-head .icon {
        text-align: center;
    }

    .feature-head span {
        font-size: 75px;
        padding: 10px;
    }

.fi-ver {
    background-color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
    .fi-ver:hover {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transition: .5s ease;
    }
.fiv-purple:hover {
    border: 1px var(--gr-purple) solid;
    transition: .5s ease;
}
.fiv-yellow:hover {
    border: 1px var(--gr-yellow) solid;
    transition: .5s ease;
}
.fiv-blue:hover {
    border: 1px var(--gr-blue) solid;
    transition: .5s ease;
}
.fiv-pink:hover {
    border: 1px var(--gr-pink) solid;
    transition: .5s ease;
}

/*-- features | Page--*/
.about-intro-img,
.features-intro-img,
.resources-intro-img {
    background: transparent;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}

.about-intro-img,
.features-intro-img {
    height: 420px;
}

.resources-intro-img {
    height: 280px;
}

.features-intro-img img {
    width: 100%;
    height: auto;
}

.features-blocks {
    padding: 10px 100px;
}

.feature-row,
.feature-row-rev {
    border-radius: 15px;
    background-color: #ccc;
    padding: 55px;
    display: flex;
    margin-bottom: 25px;
}

.feature-col {
    width: 50%;
    padding: 0 25px;
}

.bg-grad-setup,
.feature-setup {
    background: var(--gr-grad-lgrey);
}

    .feature-setup h3 {
        color: #333;
        margin-bottom: 10px;
    }

.fpage-img {
    border-radius: 50%;
    background: #ccc;
    width: 380px;
    height: 380px;
    margin: 0 auto;
    overflow: hidden;
}

    .fpage-img img {
        width: 100%;
        height: 100%;
    }

.fp-emp {
    border-left: 4px solid;
    padding-left: 15px;
    font-size: 1.25rem;
    font-weight: 500;
    color:var(--font-color-emp);
    margin-bottom: 30px;
}

.fpage-purple h2,
.fpage-purple .icon-angle-right {
    color: var(--gr-purple);
}
.fpage-purple .fp-emp {
    border-color: var(--gr-purple);
}
.fpage-purple .li-info a {
    color: var(--gr-purple);
    transition: all 0.2s;
}

.fpage-yellow h2,
.fpage-yellow .icon-angle-right {
    color: var(--gr-yellow);
}
.fpage-yellow .fp-emp {
    border-color: var(--gr-yellow);
}
.fpage-yellow .li-info a {
    color: var(--gr-yellow);
    transition: all 0.2s;
}

.fpage-blue h2,
.fpage-blue .icon-angle-right {
    color: var(--gr-blue);
}
.fpage-blue .fp-emp {
    border-color: var(--gr-blue);
}
.fpage-blue .li-info a {
    color: var(--gr-blue);
    transition: all 0.2s;
}

.fpage-pink h2,
.fpage-pink .icon-angle-right {
    color: var(--gr-pink);
}
.fpage-pink .fp-emp {
    border-color: var(--gr-pink);
}
.fpage-pink .li-info a {
    color: var(--gr-pink);
    transition: all 0.2s;
}

.fpage-purple .li-info a:hover,
.fpage-yellow .li-info a:hover,
.fpage-blue .li-info a:hover,
.fpage-pink .li-info a:hover {
    background-color: #222;
    color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    margin: 0 -5px;
}

/*--------------------------------------------------------------
# Sub Pages - About
--------------------------------------------------------------*/
.about-intro-img img {
    width: 100%;
    height: auto;
}

.about-head-spacer {
    height: 50px;
}

.about-faq-setup {
    background: var(--lgrey);
}

.about-logo img {
    width: 375px;
    height: 375px;
}

/*--------------------------------------------------------------
# Sub Pages - Blog
--------------------------------------------------------------*/
.card-row .col-md-4 {
    margin-bottom: 1.25rem;
}

.card-row .col-md-6 {
    margin-bottom: 25px;
}

.card-img {
    width: 100%;
    max-height: 250px;
    overflow: hidden
}

    .card-img img {
        width: 100%;
        height: auto
    }

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

    .card-body h5 {
        max-height: 60px;
        overflow: hidden;
    }

    .card-body p {
        margin-bottom: unset;
    }

.card-hr {
    border-bottom: 1px #ccc solid;
    margin: 1.5rem -1.5rem 1.5rem -1.5rem;
    opacity: unset;
}

.cb-cat-date {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cb-cat {
    border-radius: 5px;
    padding: 3px 10px;
    color: #fff;
    background-color: var(--gr-pink);
}

.cb-date {
    color: #787878;
    margin-left: 15px;
}


.blog-page-head {
    height: 450px;
    background: transparent;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom:2rem;
}

    .blog-page-head img {
        width: 100%;
        height: auto;
    }

.blog-page-content {
    padding-left: 80px;
    padding-right: 80px;
}

.blog-thumb-post a {
    color: var(--font-color);
}
    .blog-thumb-post a:hover {
        color: var(--primary);
    }



/*--------------------------------------------------------------
# Sub Pages - Demo + Trial
--------------------------------------------------------------*/
.demo-trial-line {
    border-top: 1px #d0d0d0 solid;
    opacity: unset;
    margin: 1.5rem -95px 2rem -95px;
}

.demo-intro-img,
.trial-intro-img {
    height: unset;
    background: #fff;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.trial-setup,
.demo-setup {
    background: var(--gr-grad-lgrey);
}

.demo-intro-img img {
    width: 100%;
    height: auto;
}

.trial-padding,
.demo-padding {
    padding: 3rem;
}

.demo-btn {
    display: block;
}

.demo-success-icon {
    font-size: 6rem;
    color: #128106;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
    .faq .faq-list h4 {
        font-size: 1.125rem;
    }

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 30px 0 0;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #47b2e4;
    }

    .faq .faq-list .icon-show, .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 15px 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #37517e;
        transition: 0.3s;
    }

        .faq .faq-list a.collapsed:hover {
            color: #47b2e4;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Resources
--------------------------------------------------------------*/
.sec-resources {
    background: var(--gr-grad-lgrey);
}

.card,
.resources-card,
.resources-cards {
    background-color: #fff;
    border-radius: var(--gen-box-radius);
    box-shadow: var(--gen-box-shadow);
    border: 1px #fff solid;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .5s ease;
}
.resources-card,
.resources-cards {
    min-height: 250px;
}
.card {
    min-height:100px;
}
.card:hover,
.resources-cards:hover {
    border: 1px var(--gr-blue) solid;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: .5s ease;
}


.resources-image {
    border-radius: 10px 10px 0 0;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.resources-cards img {
    width: 100%;
    height: 100%;
    transition: .5s ease;
}

.resources-cards:hover img {
    width: 103%;
    height: 103%;
    transition: .5s ease;
}

.resources-cards .body {
    padding: 2rem 2rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: left
}

    .resources-cards .body h2 {
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--header-color);
    }

    .resources-cards .body p {
        color: var(--font-color);
    }

.resources-cards .btn {
    height: 50px;
    align-items: center;
    background-color: var(--gr-blue);
    color: #fff;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
}

.resources-cards:hover .btn {
    background-color: var(--gr-blue-hover);
}

.resources-cards a {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.resources-card-head {
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px #ccc solid;
}

.resources-card-body {
    padding: 2rem;
}

    .resources-card-body h4 {
        color: #333;
    }

.resources-card-footer {
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    border-top: 1px #ccc solid;
}

.resources-steps {
    background-color: rgba(255,255,255,0.2);
    border-radius: 50px;
    box-shadow: var(--gen-box-shadow);
    display: flex;
    align-items: center;
    min-height: 60px;
    margin: unset;
    padding: unset;
    overflow: hidden;
}

    .resources-steps li {
        flex: 1;
        list-style-type: none;
        border-right: 1px rgba(255,255,255,0.5) solid;
        min-height: 60px;
    }

        .resources-steps li:last-child {
            border-right: unset;
        }

        .resources-steps li a {
            color: #fff;
            display: flex;
            min-height: 60px;
            justify-content: center;
            align-items: center;
        }

            .resources-steps li a span {
                display: flex;
                width: 30px;
                height: 30px;
                border: 1px #fff solid;
                border-radius: 50%;
                justify-content: center;
                align-items: center;
                margin-right: 10px;
            }

.email-sig {
    background-color: #fff;
    border: 1px #ccc solid;
    border-radius: var(--gen-box-radius);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
/*--- email signature tables ---*/
.email-sig-table {
    width: 580px;
    height: 300px;
    border-collapse: collapse;
    font-family: Arial;
}
.est-m-b {
    margin-bottom: 20px;
}
.est-logo {
    text-align: center;
}

.est-name-pos,
.est-detail,
.est-devider,
.est-devider-hor{
    border-collapse: collapse;
    font-family: Arial;
    width: 100%;
}
    .est-name-pos .est-name {
        color: #202020;
        font-size: 18px;
        font-weight: 600;
        font-family: Arial;
        margin-bottom: 5px;
    }
    .est-name-pos .est-position {
        color: #14709f;
        font-size: 15px;
        font-weight: 400;
        font-family: Arial;
        margin-bottom: 5px;
    }
    .est-detail .est-header {
        color: #14709f;
        font-size: 15px;
        font-weight: 500;
        font-family: Arial;
        width: 30px;
    }
    .est-detail .est-info {
        color: #202020;
        font-size: 15px;
        font-family: Arial;
    }
.est-devider-ver-table {
    height:80%;
}
.est-devider-ver {
    border-right: 1px #14709f solid;
    height: 100%;
}
.est-devider-hor {
    border-top: 1px #14709f solid;
    width: 100%;
}
.est-social-table {
    border-collapse: collapse;
    font-family: Arial;
}
.est-social {
    height:27px;
    width:27px;
    padding:2px 6px 0 0;
}
    .est-social div {
        background-color: #14709f;
        border-radius: 50%;
        color: #fff;
        width: 27px;
        height: 27px;
        display:flex;
        justify-content:center;
        align-items:center;
    }


/*--- Email Signature Tables End ---*/


.resources-card-head {
    display: flex;
    flex-direction: row;
}

    .resources-card-head .title {
        display: flex;
        flex-direction: column;
    }

    .resources-card-head .left {
        width: 60px;
        margin-right: 15px;
    }

        .resources-card-head .left h2 {
            border-radius: 50%;
            border: 3px var(--gr-blue) solid;
            color: var(--gr-blue);
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .resources-card-head .right {
        width: 80%;
        border-left: 4px var(--gr-blue) solid;
        border-radius: 10px;
        padding-left: 15px;
    }

        .resources-card-head .right h3 {
            color: var(--gr-blue);
            font-size: 1.25rem;
        }

        .resources-card-head .right p {
            margin: unset;
        }

            .resources-card-head .right p span {
                color: var(--gr-blue);
                font-weight: 500;
            }

.resources-rule {
    margin: 1.5rem -1.5rem;
}

.fa-bot {
    display: flex;
    align-items: end;
}

.email-sig-fin {
    border-radius: var(--gen-box-radius);
    box-shadow: var(--gen-box-shadow);
    background: #fff;
    min-height: 200px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-sig-table-wrapper {
    border: 1px #ccc solid;
    border-radius: 15px;
    width: 583px;
    min-height: 250px;
    display: flex;
    flex-direction:column;
    align-content: center;
    justify-content: center;
}

.email-sig-table {
    background: #fff;
}

    .email-sig-table .border-ver {
        border-right: 1px #14709f solid;
        width: 1px;
        padding-left: 10px;
        margin-right: 10px;
        height: 180px;
    }

    .email-sig-table .name {
        font-family: 'Open Sans', Arial;
        font-weight: 600;
        color: #222;
        font-size: 18px;
    }

    .email-sig-table .position {
        font-family: 'Open Sans', Arial;
        font-weight: 500;
        color: #14709f;
        font-size: 16px;
        padding-bottom: 15px;
    }

    .email-sig-table .icon {
        font-family: 'Open Sans', Arial;
        font-weight: 400;
        color: #14709f;
        font-size: 15px;
        padding-right: 10px;
    }

    .email-sig-table .info {
        font-family: 'Open Sans', Arial;
        font-weight: 400;
        color: #494949;
        font-size: 15px;
    }

/*--- email templates ---*/

.e-temp-preview-card {
    background-color: #efefef;
    border-radius: var(--gen-box-radius);
    box-shadow: var(--gen-box-shadow);
    border: 1px #fff solid;
    min-height: 250px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .5s ease;
}

    .e-temp-preview-card:hover {
        border: 1px var(--gr-blue) solid;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transition: .5s ease;
    }

.etpc-header {
    font-weight: 600;
    font-size: 1.125rem;
    padding: 15px 25px;
    box-shadow: var(--gen-box-shadow);
    background-color:#fff;
}

.etpc-btns {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
}

    .etpc-btns .btn-left,
    .etpc-btns .btn-right {
        width: 50%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .etpc-btns .btn-left {
        background-color: #fff;
        color: var(--gr-pink);
        border-radius: 0 0 0 15px;
        border-right:1px #ccc solid;
    }

        .etpc-btns .btn-left:hover {
            background-color: var(--gr-pink-hover);
            color: #fff;
        }

    .etpc-btns .btn-right {
        background-color: #fff;
        color: var(--gr-blue);
        border-radius: 0 0 15px 0;
    }

        .etpc-btns .btn-right:hover {
            background-color: var(--gr-blue-hover);
            color: #fff;
        }
.etpc-thmb-layout {
    padding-left:3rem;
    padding-right:3rem;
}
.etpc-thmb-screen {
    display: block;
    width: 100%;
    max-width: 340px;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #ccc;
    border-radius: 1px;
    margin: 0 auto;
}

    .etpc-thmb-screen img {
        bottom: -350px;
        width: 100%;
        height: auto;
        position: absolute;
        z-index: 0;
        margin: 0;
        padding: 0;
        -webkit-transition: top 5s;
        -moz-transition: top 5s;
        -ms-transition: top 5s;
        -o-transition: top 5s;
        transition: bottom 5s;
    }

    .etpc-thmb-screen:hover img {
        bottom: 0;
        -webkit-transition: all 5s;
        -moz-transition: all 5s;
        -ms-transition: all 5s;
        -o-transition: all 5s;
        transition: all 5s;
    }



/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding:8px 20px;
    border-radius:25px;
}

    .form-control::placeholder {
        color: #a7acb1;
    }
textarea.form-control {
    border-radius:15px;
}

.dropdown-menu{
    width:100%;
}

/*-- switch --*/

.toggle {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

    .toggle-switch:before, .toggle-switch:after {
        content: "";
    }

    .toggle-switch:before {
        display: block;
        background: linear-gradient(to bottom, #fff 0%, #eee 100%);
        border-radius: 50%;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
        width: 24px;
        height: 24px;
        position: absolute;
        top: 4px;
        left: 4px;
        transition: left 0.25s;
    }

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked + .toggle-switch {
    background: var(--gr-blue-hover);
}

    .toggle-checkbox:checked + .toggle-switch:before {
        left: 30px;
    }

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

/*--- colour picker ---*/

.color-picker input[type=radio] {
    display: none;
}

    .color-picker input[type=radio]:checked + label span {
        transform: scale(1.25);
    }

    .color-picker input[type=radio]:checked + label .red {
        border: 2px solid #711313;
    }

    .color-picker input[type=radio]:checked + label .orange {
        border: 2px solid #873a08;
    }

    .color-picker input[type=radio]:checked + label .yellow {
        border: 2px solid #816102;
    }

    .color-picker input[type=radio]:checked + label .olive {
        border: 2px solid #505a0b;
    }

    .color-picker input[type=radio]:checked + label .green {
        border: 2px solid #0e4e1d;
    }

    .color-picker input[type=radio]:checked + label .teal {
        border: 2px solid #003633;
    }

    .color-picker input[type=radio]:checked + label .blue {
        border: 2px solid #103f62;
    }

    .color-picker input[type=radio]:checked + label .violet {
        border: 2px solid #321a64;
    }

    .color-picker input[type=radio]:checked + label .purple {
        border: 2px solid #501962;
    }

    .color-picker input[type=radio]:checked + label .pink {
        border: 2px solid #851554;
    }

.color-picker label {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
}

    .color-picker label:hover span {
        transform: scale(1.25);
    }

    .color-picker label span {
        display: block;
        width: 100%;
        height: 100%;
        transition: transform 0.2s ease-in-out;
    }

        .color-picker label span.red {
            background: #DB2828;
        }

        .color-picker label span.orange {
            background: #F2711C;
        }

        .color-picker label span.yellow {
            background: #FBBD08;
        }

        .color-picker label span.olive {
            background: #B5CC18;
        }

        .color-picker label span.green {
            background: #21BA45;
        }

        .color-picker label span.teal {
            background: #00B5AD;
        }

        .color-picker label span.blue {
            background: #2185D0;
        }

        .color-picker label span.violet {
            background: #6435C9;
        }

        .color-picker label span.purple {
            background: #A333C8;
        }

        .color-picker label span.pink {
            background: #E03997;
        }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer h5 {
    color: #333;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
}

.foot-links {
    margin: unset;
    padding: unset;
}

    .foot-links li {
        list-style-type: none;
    }
        footer a,
        .foot-links li a
        {
            color: var(--font-color);
            display: block;
            font-weight: 400;
            font-size: 0.938rem;
            padding: 3px 0;
        }
            .foot-links li a:hover {
                color: var(--primary);
            }

.foot-logo img {
    max-height: 60px;
}

.foot-hr {
    background-color: #dadcde;
    margin: 2rem 0;
    opacity: unset;
}

.foot-social-links {
    margin: unset;
    padding: unset;
    display: flex;
}

    .foot-social-links li {
        list-style-type: none;
        margin-right: 5px;
    }

        .foot-social-links li a {
            display: block;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            background-color: var(--font-color);
            border: 1px var(--font-color) solid;
            color: #fff;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.5s;
        }

            .foot-social-links li a:hover,
            .foot-social-links li a:focus {
                background-color: #fff;
                color: var(--font-color);
            }
.foot-policies {
    margin:0;
    padding:0;
    display:flex;
}
    .foot-policies li {
        list-style-type: none;
    }
        .foot-policies li a {
            display: block;
            padding: 5px !important;
        }


/*--------------------------------------------------------------
# Grid / Table - responsive setup
--------------------------------------------------------------*/
.gr-grid-setup {
    width: 100%
}

    .gr-grid-setup .user-avtar {
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }

.ggs-row-bright-profile,
.ggs-row-bleft,
.ggs-row-bright,
.ggs-row-3m,
.ggs-row-nfc,
.ggs-row {
    display: flex;
    align-items: center;
    border-bottom: 1px rgba(200,200,200,0.5) solid;
    justify-content: space-between;
}

.gr-grid-setup .ggs-row-bleft:last-child,
.gr-grid-setup .ggs-row-bright:last-child {
    border-bottom: unset;
}

.ggs-row-nbb {
    border-bottom: unset;
}

.ggs-row-3m:first-child,
.ggs-row:first-child {
    background-color: rgba(200,200,200,0.2);
    font-weight: 500;
    color: var(--font-color-emp);
    min-height: 4rem;
}

.dark .ggs-row-3m:first-child,
.dark .ggs-row:first-child {
    background-color: rgba(200,200,200,0.2);
    font-weight: 500;
    color: var(--font-color-emp-dark);
    min-height: 4rem;
}

.ggs-row-3m:first-child .ggs-col {
    color: var(--font-color-emp);
}

.ggs-col-emp {
    font-weight: 500;
    color: var(--font-color-emp) !important;
}

.ggs-col-amount {
    text-align: right !important;
}

.dark .ggs-row-3m:first-child .ggs-col {
    color: var(--font-color-emp-dark);
}

.dark .ggs-col-emp {
    font-weight: 500;
    color: var(--font-color-emp-dark) !important;
}

.dark .ggs-row-3m:first-child {
    background-color: #2c3349;
    font-weight: 500;
}

.ggs-row-bleft:last-child,
.ggs-row-bright:last-child,
.ggs-row-3m:last-child,
.ggs-row:last-child {
    border-bottom: unset
}

.ggs-row-bright-profile div {
    flex: 1;
    color: var(--font-color);
    padding: 0.5rem 1rem;
}

.ggs-row-bleft div,
.ggs-row-bright div {
    flex: 1;
    color: var(--font-color);
    padding: 1rem 1.25rem;
}

.ggs-row-bright .ggs-org-logo,
.ggs-row-bright .ggs-org-name,
.ggs-row-bright .ggs-org-btn {
    max-width: 230px
}

    .ggs-row-bright .ggs-org-logo img {
        max-width: 100%;
        max-height: 80px;
    }

.ggs-row-bright-profile div:nth-child(2) {
    font-weight: 500;
    color: #efefef;
}

.ggs-row-bright div:nth-child(2) {
    font-weight: 500;
    color: var(--font-color-emp);
}

.dark .ggs-row-bright div:nth-child(2) {
    font-weight: 500;
    color: var(--font-color-emp-dark);
}

.ggs-row-bleft div:nth-child(1) {
    font-weight: 500;
    color: var(--font-color-emp);
    padding-top: 22px;
}

.dark .ggs-row-bleft div:nth-child(1) {
    font-weight: 500;
    color: var(--font-color-emp-dark);
}

.ggs-row-nfc .ggs-col,
.ggs-row-3m .ggs-col,
.ggs-row .ggs-col {
    width: 10%;
    color: var(--font-color);
    padding: 0.625rem 1.25rem;
}

.dark .ggs-row-nfc .ggs-col,
.dark .ggs-row-3m .ggs-col,
.dark .ggs-row .ggs-col {
    width: 10%;
    color: var(--font-color-dark);
    padding: 0.625rem 1.25rem;
}

.dark .ggs-row-nfc .ggs-col-action,
.dark .ggs-row-3m .ggs-col-action,
.dark .ggs-row .ggs-col-action,
.ggs-row-nfc .ggs-col-action,
.ggs-row-3m .ggs-col-action,
.ggs-row .ggs-col-action {
    width: 20%;
    padding: 0.625rem 1.25rem;
}

.dark .ggs-row-nfc .ggs-col-100,
.dark .ggs-row-3m .ggs-col-100,
.dark .ggs-row .ggs-col-100,
.ggs-row-nfc .ggs-col-100,
.ggs-row-3m .ggs-col-100,
.ggs-row .ggs-col-100 {
    width: 100%;
    color: var(--font-color);
    padding: 0.625rem 1.25rem;
}

.dark .ggs-row-nfc .ggs-col-90,
.dark .ggs-row-3m .ggs-col-90,
.dark .ggs-row .ggs-col-90,
.ggs-row-nfc .ggs-col-90,
.ggs-row-3m .ggs-col-90,
.ggs-row .ggs-col-90 {
    width: 90%;
}

.dark .ggs-row-nfc .ggs-col-80,
.dark .ggs-row-3m .ggs-col-80,
.dark .ggs-row .ggs-col-80,
.ggs-row-nfc .ggs-col-80,
.ggs-row-3m .ggs-col-80,
.ggs-row .ggs-col-80 {
    width: 80%;
}

.dark .ggs-row-nfc .ggs-col-70,
.dark .ggs-row-3m .ggs-col-70,
.dark .ggs-row .ggs-col-70,
.ggs-row-nfc .ggs-col-70,
.ggs-row-3m .ggs-col-70,
.ggs-row .ggs-col-70 {
    width: 70%;
}

.dark .ggs-row-nfc .ggs-col-60,
.dark .ggs-row-3m .ggs-col-60,
.dark .ggs-row .ggs-col-60,
.ggs-row-nfc .ggs-col-60,
.ggs-row-3m .ggs-col-60,
.ggs-row .ggs-col-60 {
    width: 60%;
}

.dark .ggs-row-nfc .ggs-col-50,
.dark .ggs-row-3m .ggs-col-50,
.dark .ggs-row .ggs-col-50,
.ggs-row-nfc .ggs-col-50,
.ggs-row-3m .ggs-col-50,
.ggs-row .ggs-col-50 {
    width: 50%;
}

.dark .ggs-row-nfc .ggs-col-45,
.dark .ggs-row-3m .ggs-col-45,
.dark .ggs-row .ggs-col-45,
.ggs-row-nfc .ggs-col-45,
.ggs-row-3m .ggs-col-45,
.ggs-row .ggs-col-45 {
    width: 45%;
}

.dark .ggs-row-nfc .ggs-col-40,
.dark .ggs-row-3m .ggs-col-40,
.dark .ggs-row .ggs-col-40,
.ggs-row-nfc .ggs-col-40,
.ggs-row-3m .ggs-col-40,
.ggs-row .ggs-col-40 {
    width: 40%;
}

.dark .ggs-row-nfc .ggs-col-35,
.dark .ggs-row-3m .ggs-col-35,
.dark .ggs-row .ggs-col-35,
.ggs-row-nfc .ggs-col-35,
.ggs-row-3m .ggs-col-35,
.ggs-row .ggs-col-35 {
    width: 35%;
}

.dark .ggs-row-nfc .ggs-col-30,
.dark .ggs-row-3m .ggs-col-30,
.dark .ggs-row .ggs-col-30,
.ggs-row-nfc .ggs-col-30,
.ggs-row-3m .ggs-col-30,
.ggs-row .ggs-col-30 {
    width: 30%;
}

.dark .ggs-row-nfc .ggs-col-25,
.dark .ggs-row-3m .ggs-col-25,
.dark .ggs-row .ggs-col-25,
.ggs-row-nfc .ggs-col-25,
.ggs-row-3m .ggs-col-25,
.ggs-row .ggs-col-25 {
    width: 25%;
}

.dark .ggs-row-nfc .ggs-col-20,
.dark .ggs-row-3m .ggs-col-20,
.dark .ggs-row .ggs-col-20,
.ggs-row-nfc .ggs-col-20,
.ggs-row-3m .ggs-col-20,
.ggs-row .ggs-col-20 {
    width: 20%;
}

.dark .ggs-row-nfc .ggs-col-15,
.dark .ggs-row-3m .ggs-col-15,
.dark .ggs-row .ggs-col-15,
.ggs-row-nfc .ggs-col-15,
.ggs-row-3m .ggs-col-15,
.ggs-row .ggs-col-15 {
    width: 15%;
}

.dark .ggs-row-nfc .ggs-col-avatar,
.dark .ggs-row-3m .ggs-col-avatar,
.dark .ggs-row .ggs-col-avatar,
.ggs-row-nfc .ggs-col-avatar,
.ggs-row-3m .ggs-col-avatar,
.ggs-row .ggs-col-avatar {
    width: 10%;
    padding: 0.625rem 1.25rem;
}

span.field-validation-error {
    color: #c90e0e !important
}

a span.hide {
    display: none;
}

.accordion-body ul li a
.accordion-button {
    font-size: 0.9rem
}


/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width:1536px) {
    #hero .container {
        padding-top: 25px;
    }
    .moti-info-left {
        padding: 50px 100px 50px 100px;
    }

    .moti-info-right {
        padding: 50px 100px 50px 100px;
    }

    .about-intro-img,
    .features-intro-img {
        height: 435px;
        background: transparent;
        background-size: cover;
        border-radius: 15px;
        width: 85vw;
        overflow: hidden;
    }

    .blog-page-head {
        width: 80vw;
    }

    .hero-setup-resources {
        height: 240px;
    }

    .hero-subpage-head-resources {
        margin: 40px auto 30px auto;
    }

    .hero-subpage-head-resources-steps {
        margin: 40px auto 30px auto;
    }
}

@media (max-width:1024px) {
    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.375rem;
    }
    h3 {
        font-size: 2.125rem;
    }

    .hero-setup {
        height: 55vh;
    }
        .hero-setup h1 {
            margin: 0 200px 40px 0;
        }
    .hero-lines {
        background-size: 50%;
    }
    .hero-lines .col-lg-6{
        width:100%;
    }
        .hero-lines .hero-img{
            display:none;
        }

    .navbar .getstarted,
    .navbar .starttrial {
        margin-left: 15px;
    }
    .nav-link {
        display: block;
        padding: .5rem 0.625rem;
    }

    .question-section .inner {
        padding: unset;
        text-align: center;
    }

        .question-section .inner h2 {
            padding: 10px 50px;
        }

        .question-section .inner p {
            padding: 10px 5px;
            text-align:left;
        }

    .question-section {
        padding-bottom: unset;
    }

    .moti-info-left,
    .moti-info-right {
        padding: 50px;
    }

    .section-spacer-pad {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about-intro-img, .features-intro-img {
        height: unset;
        width: 90vw;
        top: 300px;
    }

    .trial-intro-img,
    .demo-intro-img {
        top: 280px;
        width: 80vw;
    }

    .hero-setup-about {
        height: 500px;
    }

    .trial-padding,
    .demo-padding {
        padding: 35px;
    }

    .demo-spacer {
        height: 300px;
    }

    .trial-spacer {
        height: 450px;
    }

    .feature-indv {
        padding: 15px;
    }

    .feature-head h5 {
        font-size: 1.125rem;
        line-height: 1.25em;
    }

    .features-block {
        padding: 25px;
    }

    .fpage-img {
        width: 270px;
        height: 270px;
    }

    .hero-setup-features {
        min-height: 200px;
    }

    .hero-subpage-head {
        margin: 60px auto 30px auto;
    }

    .hero-setup-features .hero-img img {
        height: 280px;
    }

    .hero-setup-demo {
        height: 450px;
    }

        .hero-setup-demo .hero-img img {
            height: 370px;
        }

    .blog-page-head {
        height: 360px;
        top: 220px;
    }

    section {
        padding: 50px 0;
    }

    .badge-referral {
        width: 230px;
        height: 230px;
        left: 85%;
    }
}

@media (max-width:768px) {
    h1,
    .hero-subpage-head h1 {
        font-size: 2.625rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    #header {
        padding: 10px;
    }

    #hero {
        height: 400px;
    }

        #hero h1 {
            line-height: 3.5rem;
            text-align: left;
            margin: 20px 180px 20px 0;
        }

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    #hero .hero-img img {
        display: none;
    }

    .hero-setup {
        margin-top: 15px;
        padding:15px;
    }

    .header .logo img {
        height: 50px;
        width: 160px;
    }

    .navbar .getstarted,
    .navbar .starttrial {
        margin: 15px;
    }

    .hero-lines {
        background: none;
    }

        .hero-lines .btn-blue {
            margin-bottom: 15px;
        }



    section {
        padding: 50px 25px;
        overflow: hidden;
    }

    .question-section {
        padding: 50px 25px 0 25px;
    }

    .p-5 {
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .sec-np-bot {
        padding-top: 50px;
        padding-bottom: unset;
    }

    .question-section .inner {
        padding: 0;
        margin: 0 -10px;
    }

        .question-section .inner h2 {
            padding: 10px;
        }

        .question-section .inner p {
            padding: unset;
            text-align: left;
        }

    .moti-info-left,
    .moti-info-right {
        padding: unset;
        margin-bottom: 15px;
    }

    .moti-blocks {
        border-radius: 50px;
        padding: 3rem;
        color: #fff;
        min-height: 250px;
        margin-bottom: 25px;
    }

    .moti-purple-bar {
        height: 300px;
        margin-right: -35px;
    }

    .moti-yellow-bar {
        height: 300px;
        margin-left: -35px;
    }

        .moti-purple-bar img,
        .moti-yellow-bar img,
        .moti-blue-bar img {
            width: auto;
            height: 300px;
        }

    .moti-blue-bar {
        height: 300px;
        margin-right: -35px;
        margin-top: 50px;
    }

        .moti-blue-bar img {
            margin-top: -42px;
        }

    .btn-purple, .btn-yellow, .btn-pink, .btn-blue {
        width: 100%;
    }

    .features-block {
        padding: unset;
        margin-right: -10px;
        margin-left: -10px;
    }

        .features-block .col-md-4 {
            width: 50%;
        }

    .feature-indv {
        padding: 15px 0;
    }

    .hero-subpage-head {
        max-width: 650px;
        margin: 30px 15px;
    }

    #hero h2 {
        line-height: 40px;
        margin-bottom: 30px;
    }

    .about-intro-img, .demo-intro-img, .features-intro-img {
        height: unset;
        top: 300px;
        width: 85vw;
    }

    .section-spacer {
        height: unset;
    }

    .moti-blue-bar-white {
        background: #fff;
        height: 50px;
        width: 100%;
    }

    .btn-row-col {
        flex-direction: column;
    }

        .btn-row-col .col-md-6 {
            width: 100%;
            margin-bottom: 10px;
        }

    footer .col-md-4 {
        margin-bottom: 30px;
        width: 100%;
    }

    .fpage-img {
        width: 250px;
        height: 250px;
    }

    .moti-blocks .row .col-md-4,
    .moti-blocks .row .col-md-8 {
        width: 100%;
    }

    .moti-blocks h3 {
        margin-bottom: 25px;
    }
    .hero-sub {
        margin-top: 72px;
    }
    .hero-setup-features {
        height: 250px !important;
    }

    .demo-spacer {
        height: 400px;
    }

    .trial-spacer {
        height: 500px;
    }

    .blog-page-head {
        height: 270px;
        top: 250px;
    }

    .blog-page-content {
        padding-left: 45px;
        padding-right: 45px;
    }

    .hero-subpage-head-resources-steps {
        margin: 80px auto 30px auto;
    }

    .resources-steps {
        flex-direction: column;
        border-radius: 15px;
    }

        .resources-steps li {
            flex: auto;
            width: 100%;
            border-right: unset;
            border-bottom: 1px rgba(255,255,255,0.5) solid;
        }

            .resources-steps li:last-child {
                border-right: unset;
                border-bottom: unset;
            }

            .resources-steps li a {
                justify-content: start;
                padding-left: 15px;
            }

    .resources-card-body .col-md-6 {
        width: 100%;
    }

    .resources-card-footer .col-md-4 {
        width: 100%;
    }

    .resources-card-footer .btn-blue-outline {
        margin-bottom: 25px;
    }

    #hero-shr {
        height: 40vh;
    }

    .sec-resources .row {
        flex-direction: column;
    }

        .sec-resources .row .col-md-4 {
            width: 100%;
            margin-bottom: 25px;
        }

    .resources-cards img {
        width: 100%;
        height: auto;
    }
    .badge-referral {
        width: 200px;
        height: 200px;
        top: 60px;
        left: 85%;
    }
    
}

@media (max-width:480px) {
    h1,
    .hero-subpage-head h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
        line-height:3rem;
    }

    h3 {
        font-size: 1.75rem;
    }


    #hero .container {
        padding-top: 5px;
    }
    #hero .hero-img img {
        display:none;
    }
    .hero-sub-dots img{
        height:150px;
    }
    .pt-4 {
        padding-top: unset !important;
    }

    #hero h1 {
        line-height: 40px;
        text-align:left;
        margin-top:30px;
    }

    .row-rev,
    .moti-yellow-bar-rev {
        display: flex;
        flex-direction: column-reverse;
    }

    .section-spacer {
        height: 150px;
    }

    .hero-subpage-head {
        max-width: 100%;
        margin: 30px 0;
    }


    .hero-sub {
        margin-top: 75px;
    }

    .hero-subpage-head h2 .sp-white {
        color: #fff;
        font-weight: 600;
        line-height: 1.4em;
    }
    .hero-setup-demo {
        height: unset; 
    }
        .hero-setup-demo .hero-img img {
            height: 250px;
        }

    .features-block .col-md-4 {
        width: 100%;
    }

    .fpage-img {
        margin: 20px auto;
    }

    .trial-padding,
    .demo-padding {
        padding: 30px 20px;
    }

    .moti-blocks {
        padding: 25px;
        border-radius: 15px;
    }

    
    .blog-page-head {
        width: 100vw;
        height: 180px;
        border-radius: unset;
        top: 300px;
    }

    .blog-spacer {
        display: none;
    }

    .blog-page-content {
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero-blog {
        height: 53vh !important;
    }

    .trial-spacer {
        height: 700px;
    }
    footer .col-md-3{
        margin-bottom:2rem;
    }
}


/*--------------------------------------------------------------
# Site Icons
--------------------------------------------------------------*/

@font-face {
    font-family: 'icons';
    src: url('../fonts/icons.eot');
    src: url('../fonts/icons.eot') format('embedded-opentype'), url('../fonts/icons.ttf') format('truetype'), url('../fonts/icons.woff') format('woff'), url('../fonts/icons.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
    font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-circle-minus:before {
    content: "\e91e";
}

.icon-circle-plus:before {
    content: "\e91f";
}

.icon-angle-left:before {
    content: "\e91d";
}

.icon-search:before {
    content: "\e91c";
}

.icon-directory:before {
    content: "\e91a";
}

.icon-membercard:before {
    content: "\e91b";
}

.icon-download:before {
    content: "\e918";
}

.icon-view:before {
    content: "\e919";
}

.icon-ban:before {
    content: "\e915";
}

.icon-times:before {
    content: "\e916";
}

.icon-arrow-circle-left:before {
    content: "\e917";
}

.icon-menu:before {
    content: "\e913";
}

.icon-close:before {
    content: "\e914";
}

.icon-check-circle-border:before {
    content: "\e912";
}

.icon-arrow-circle-right:before {
    content: "\e900";
}

.icon-angle-right:before {
    content: "\e901";
}

.icon-youtube:before {
    content: "\e902";
}

.icon-linkedin-in:before {
    content: "\e903";
}

.icon-twitter:before {
    content: "\e904";
}

.icon-check:before {
    content: "\e905";
}

.icon-check-circle:before {
    content: "\e906";
}

.icon-angle-down:before {
    content: "\e907";
}

.icon-angle-up:before {
    content: "\e908";
}

.icon-member-centre:before {
    content: "\e909";
}

.icon-email-marketing:before {
    content: "\e90a";
}

.icon-billing-integration:before {
    content: "\e90b";
}

.icon-doc-management:before {
    content: "\e90c";
}

.icon-member-management:before {
    content: "\e90d";
}

.icon-chapter-management:before {
    content: "\e90e";
}

.icon-contact-management:before {
    content: "\e90f";
}

.icon-integration:before {
    content: "\e910";
}

.icon-integrated-ai:before {
    content: "\e911";
}
