/* ----- Fonts ----- */
@font-face {
    font-family: 'helveticaneue';
    src: url('../fonts/helveticaneue_light-webfont.woff2') format('woff2'),
        url('../fonts/helveticaneue_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* Medium */
@font-face {
    font-family: 'helveticaneuemedium';
    src: url('../fonts/helveticaneue_medium-webfont.woff2') format('woff2'),
        url('../fonts/helveticaneue_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* ----- End Fonts -----*/

/* ----- Global Variables -----*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    color: #374151;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

a {
    color: #27A7E0;
}

.wrapper {
    margin: auto;
    max-width: 1150px;
}

.header.wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1350px;
}

.sections {
    padding: 60px 0;
}

.center {
    text-align: center;
}

.header-1 {
    font-size: 53px;
}

.header-2 {
    font-size: 38px;
}

.header-3 {
    font-size: 34px;
}

.orange {
    color: #F2A11F;
}

.light-blue {
    color: #279CD7;
}

.font-800 {
    font-weight: 800;
}

.burger {
    display: none;
}

.order-0 {
    order: 0;
}

.margint-30 {
    margin-top: 30px !important;
}

.blue-banner-bg {
    position: relative;
    width: 100%;
    line-height: 126%;
    color: #ffffff;
    background: transparent linear-gradient(89deg, #279CD7 0%, #3573F1 40%, #3572F2 45%, #3B61FC00 100%);
    padding: 20px 0 25px;
    padding-right: 68px;
    font-family: 'Muli', sans-serif;
    font-weight: 100;
    letter-spacing: 0.6px;
    font-size: 20px;
}

.blue-banner-bg:before {
    content: '';
    display: block;
    background: #279ad8 linear-gradient(89deg, #279CD7 0%, #3573F1 40%, #3572F2 45%, #3B61FC00 100%);
    position: absolute;
    left: -552px;
    width: 552px;
    height: 100%;
    top: 0;
    z-index: 0;
}

.blue-banner-bg  .text-inner{
    /* padding-right: 150px; */
}

.justify-start {
    justify-content: flex-start !important;
}

.scroll-down {
    padding-top: 60px;
    display: block;
    position: relative;
    text-align: center;
    bottom: -177px;
    color: #030303;
    text-decoration: none;
}

.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #03030A;
    border-radius: 50px;
    box-sizing: border-box;
    z-index: 9;
}

.scroll-down span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #03030A;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}

/* Keyframes */
@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -60%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/* Overlay - Modal */
.button-modal {
    cursor: pointer;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    width: 80px;
    display: block;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 39%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.button-modal.cta-modal {
    position: static !important;
    left: 0;
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    display: inline-block;
    width: auto;
}

.button-modal.cta-banner {
    left: 75%;
    width: 110px;
    height: 110px;
    top: 35%;
    transform: translatey(0px);
    -moz-transform: translatey(0px);
    -webkit-transform: translatey(0px);
    /*animation: float 4s ease-in-out infinite;*/
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0px 12px 8px rgba(0, 0, 0, 0.45);
}

.button-modal img {
    width: 100%;
    object-fit: contain;
}

.overlay-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-modal.active {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
    -moz-transition: all 5s ease-in-out;
    -webkit-transition: all 5s ease-in-out;
}

.popup .close {
    position: absolute;
    top: 9px;
    right: 10px;
    transition: all 200ms;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    height: 33px;
    border-radius: 50%;
    background-color: #7d7d7d;
    padding: 10px 10px 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8;
}

.popup-modal {
    display: none;
}

/* Form Pop Up */
.form-pop-up h3 {
    margin: 20px 0 20px;
}

.form-pop-up .form h1 {
    margin: 0;
}

.form-pop-up .form form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    font-family: 'Muli', sans-serif;
    border: 1px solid #a9a9a9 !important;
    border-radius: 3px;
}

.form-pop-up #recapDiv {
    margin: 20px 0;
}

.form-pop-up .form form>p,
.form-pop-up #privacyNotes {
    font-size: 11px;
    border: none;
    border-radius: 0;
    margin-top: 60px;
}

.form-pop-up .form form>div {
    padding: 0;
}

.form-pop-up .form form>* input {
    width: 100%;
    padding: 8px;
    border: none;
}

.form-pop-up .form form button[type='submit'] {
    float: right;
    border: none !important;
    border-radius: 25px;
    padding: 10px 38px;
    color: #ffffff;
    background-color: #55AAF2;
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    font-size: 15px;
}

.form-pop-up .form form button[type='submit']:hover {
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
    color: #ffffff;
}

/*fixed button*/
.slide_dock {
    position: fixed;
    top: 115px;
    left: -304px;
    width: 300px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    border: 2px solid #000;
    z-index: 1000;
    padding-bottom: 20px;
}

.slide_dock .slide_dock_handle {
    position: absolute;
    right: -102px;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
    top: 80px;
    background: #fd7800;
    color: #ffff;
    padding: 10px 14px;
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    transition: .2s ease-out;
    -webkit-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    text-decoration: none;
}

.slide_dock .slide_dock_handle:hover {
    background-color: #000;
}

.slide_dock .dock {
    margin: auto;
    max-width: 85%;
    padding: 10px 0;
}

.slide_dock h3 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
}

.slide_dock .form-control {
    font-size: 12px;
    padding: 10px 13px;
    margin-bottom: 9px;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.slide_dock form button {
    width: 100%;
    padding: 7px;
    transition: .2s ease-out;
    -webkit-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    border: none;
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
    color: #ffffff;
}

.slide_dock form button:hover {
    opacity: .8;
    background: transparent linear-gradient(90deg, #279CD7 0%, #3573F2 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
}

.demoForm label.error {
    color: #f00;
    font-size: 12px;
    font-weight: normal;
    display: block;
}

/*fixed button*/

/* CTAs */
.cta {
    border-radius: 50px;
    color: #ffffff;
    display: inline-block;
    font-family: 'Muli';
    font-size: 15px;
    padding: 9px 20px 11px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.cta.orange {
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);

}

.cta.orange:hover {
    background: transparent linear-gradient(90deg, #279CD7 0%, #3573F2 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
}

.cta.orange-hover:hover {
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
}

.cta.white-hover:hover {
    background: #ffffff;
    color: #030303;
}

.cta.blue {
    background-color: #55AAF2;
}

.cta.blue:hover {
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
}

.cta.outline {
    border: 1px solid #707070;
}

/* Top Bar Settings */
.top-bar {
    position: relative;
}

.top-bar:before {
    content: '';
    background-color: #f2a11f;
    width: 82px;
    height: 5px;
    display: block;
    position: absolute;
    top: -27px;
}

.top-bar.center:before {
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

/* Font Setter */
.pt-serif {
    font-family: 'PT Serif', serif;
}

/* ----- End Global Variables -----*/

/* ----- Menu ----- */
.menu {
    padding: 25px 0 20px;
    position: relative;
    z-index: 9;
}

.menu .left {
    display: flex;
    justify-content: center;
}

.menu .right {
    margin-top: -15px;
}

.menu .logo {
    width: 138px;
    height: auto;
    object-fit: contain;
}

.menu nav>ul {
    list-style: none;
    display: flex;
    margin: 0;    
    height: 100%;
    align-items: center;
}

.menu nav>ul>li {
    padding: 0 15px;
    display: inline-block;
}

.menu nav>ul>li:first-of-type {
    padding-left: 0;
}

.menu nav>ul>li>a {
    text-decoration: none;
    color: #030303;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    font-family: 'helveticaneue';
    z-index: 5;
}

.menu nav>ul>li:hover>a {
    text-decoration: none;
}

.menu nav>ul>li>a:before,
.menu nav>ul>li>a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -6px;
    background: #fff;
    z-index: 5;
}

.menu nav>ul>li>a:before {
    left: 0;
}

.menu nav>ul>li>a:after {
    right: 0;
    background: transparent linear-gradient(90deg, #F8951E 0%, #F37629 100%) 0% 0% no-repeat padding-box;
    transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu nav>ul>li:hover>a:before {
    background: transparent linear-gradient(90deg, #F8951E 0%, #F37629 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu nav>ul>li:hover>a:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

.menu nav>ul>li>input[type='checkbox'] {
    top: 39px;
    opacity: 0;
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    position: absolute;
    height: 14px;
    width: 56px;
    z-index: 6;
}

.menu nav>ul>li>input[type='checkbox']:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    display: block;
    background: #C63D0F;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition-duration: 0.2s;
    -webkit-transform: scaleX(0);
    -webkit-transform-origin: bottom left;
    -webkit-transition-duration: 0.2s;
}

.menu nav>ul>li>input[type='checkbox']:hover {
    cursor: pointer;
}

.menu nav>ul>li>input[type='checkbox']:hover~.menu nav ul li {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
}

.menu nav>ul>li>input[type='checkbox']:checked:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.menu nav>ul>li>input[type='checkbox']:checked~.clicked {
    display: block;
    background: transparent linear-gradient(90deg, #F8951E 0%, #F37629 100%);
    z-index: 9;
    height: 3px;
    width: 56px;
    position: absolute;
    top: 57px;
}

.menu nav>ul>li>input[type='checkbox']:checked+ul {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    opacity: 1;
}

.menu nav>ul>li>input[type='checkbox']+ul {
    display: none;
    position: absolute;
    background: #595959;
    height: auto;
    z-index: 1;
    padding: 25px 2%;
    opacity: 1;
    top: 78px;
    width: unset;
    box-shadow: 0px 0px 10px 0px #a5a5a5;
    border-top: 3px solid #f47823;
}

.menu nav>ul>li>input[type='checkbox']+ul>li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.menu nav>ul>li>input[type='checkbox']+ul>li>span {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 17px;
    color: #ffffff;
}

.menu nav>ul>li>input[type='checkbox']+ul>li>span strong {
    font-size: 20px;
}

.menu nav>ul>li>input[type='checkbox']+ul>li>ul {
    list-style: none;
    padding-left: 0;
}

.menu nav>ul>li>input[type='checkbox']+ul>li>ul>li {
    padding-right: 40px;
}

.menu nav>ul>li>input[type='checkbox']+ul>li>ul li a {
    color: #ffffff;
    display: block;
    padding: 3px 0;
    font-size: 14px;
    font-family: 'helveticaneue';
    text-decoration-line: none;
    -webkit-text-decoration-line: none;
    text-decoration-color: #ffffff;
    -webkit-text-decoration-color: #ffffff;
}

.menu nav>ul>li>input[type='checkbox']+ul>li>ul li a:hover {
    color: #279CD7;
    text-decoration-color: #279CD7;
    -webkit-text-decoration-color: #279CD7;
}


.menu nav>ul>li:hover>input[type='checkbox']+ul {
    display: block;
}

.menu nav>ul>li:hover>ul {
    display: block;
    clear: both;
    content: '';
}

.menu .login {
    padding-right: 25px;
    font-size: 14px;
    color: #030303;
    text-decoration: none;
    font-weight: 600;
}

/* Navigation active state */
nav ul li a.active {
    color: #030303;
}

nav ul li a.active:before {
    background: transparent linear-gradient(90deg, #F8951E 0%, #F37629 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

nav ul li a.active:after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

/* ----- End Menu ----- */

/* ----- Header ----- */
header {
    background-image: url('../images/hero-image.png');
    min-height: 650px;
    background-size: cover;
    margin-top: -101px;
    justify-content: center;
    display: flex;
    position: relative;
}

header .wrapper {
    width: 1350px;
    max-width: 100%;
}

header h1.header-1 {
    font-family: 'PT Serif', serif;
    font-size: 49px;
    width: 45%;
    line-height: 120%;
}

header .text-content:before {
    content: '';
    display: block;
    background: #279ad8 linear-gradient(89deg, #279CD7 0%, #3573F1 40%, #3572F2 45%, #3B61FC00 100%);
    position: absolute;
    left: -621px;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
}

header .text-content {
    position: relative;
    font-size: 26px;
    width: 46%;
    line-height: 126%;
    color: #ffffff;
    background: transparent linear-gradient(89deg, #279CD7 0%, #3573F1 40%, #3572F2 45%, #3B61FC00 100%);
    padding: 20px 0 25px;
    padding-right: 82px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    letter-spacing: 0.6px;
}

header .ctas {
    margin-top: 30px;
}

header .ctas .free-trial {
    padding: 9px 35px 11px;
}

header .ctas .how-it-works {
    color: #F2A11F;
    text-decoration: none;
    font-weight: 600;
    /*padding-left: 30px;*/
    font-family: 'Muli', sans-serif;
}

header .ctas .how-it-works {
    color: #55AAF2;
    text-decoration: none;
    font-weight: 600;
    /*padding-left: 25px;*/
    font-size: 18px;
    vertical-align: middle;
}

header .ctas .how-it-works span {
    display: inline-block;
    height: 38px;
    position: relative;
    width: 38px;
    border: 4px solid #55AAF2;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 6px;
}

header .ctas .how-it-works span i {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #55AAF2;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    top: 50%;
    left: 57%;
}

header .ctas .how-it-works:hover {
    color: #F2A11F;
    top: -1px;
    position: relative;
}

header .ctas .how-it-works:hover span {
    border: 4px solid #f2a11f85;
}

header .ctas .how-it-works:hover span i {
    border-left: 9px solid #F2A11F;
}

.home-page header h1 {
    margin-bottom: 0;
}

.home-page header h1+p {
    font-size: 23px;
    margin-top: 4px;
}

.home-page header .text-content {
    font-size: 21px;
}

.inner-content header {
    min-height: 100px;
    background-image: none;
    margin-top: 0;
}

.inner-content header h1 {
    width: 100%;
    margin-top: 0;
}

.inner-content header h1.top-bar:before {
    top: auto;
    bottom: -24px;
}

.how-it-works header {
    min-height: 100px;
    background-image: none;
    margin-top: 0;
}

.how-it-works header h1 {
    width: 100%;
    margin-top: 0;
}

.how-it-works header h1.top-bar:before {
    top: auto;
    bottom: -24px;
}

.solutions header {
    min-height: 100px;
    background-image: none;
    margin-top: 0;
}

.solutions header h1 {
    width: 100%;
    margin-top: 0;
}

.solutions header h1.top-bar:before {
    top: auto;
    bottom: -24px;
}

.case-studies-pg header {
    min-height: 100px;
    background-image: none;
    margin-top: 0;
}

.case-studies-pg header h1 {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
}

.case-studies-pg header p {
    font-size: 18px;
}

.case-studies-pg header .top-bar:before {
    top: auto;
    bottom: -24px;
}

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

/* ----- Free Consultation ----- */
.free-consultation {
    padding-top: 20px;
    padding-bottom: 50px;
}

.free-consultation .text-content {
    text-align: center;
    margin: 0 auto 80px;
    width: 60%;
}

.free-consultation .text-content p {
    font-size: 18px;
}

.free-consultation .free-consultation-cta {
    font-size: 18px;
    padding: 9px 25px 11px;
}

.free-consultation .two-column {
    display: flex;
    margin-top: 60px;
    justify-content: space-between;
    align-items: center;
}

.free-consultation .two-column img {
    width: 42%;
    object-fit: contain;
    order: 1;
}

.free-consultation .two-column .content {
    width: 48%;
    flex-shrink: 0;
}

.free-consultation .two-column .content.force-full {
    width: 100%;
}

.free-consultation .two-column .videos {
    flex: 1;
}

.video-con {

}

.video-con video {
    width: 100%;
}

.free-consultation .two-column .content h2 {
    margin-top: 0;
}

.free-consultation .content ul {
    margin: 0 0 0;
    padding: 0;
}

.free-consultation .content ul li {
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    list-style: none;
    padding-left: 35px;
    line-height:1.5;
}

.free-consultation .content ul li:before {
    content: '';
    background-image: url(../images/check.png);
    width: 22px;
    height: 22px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 3px;
}

.free-consultation .content ul li:last-of-type {
    margin-bottom: 0;
}

.free-consultation .two-column .ctas {
    margin-top: 65px;
    display: flex;
    justify-content: space-around;
}

.free-consultation .two-column .ctas>a {
    font-size: 16px;
    padding: 9px 30px 11px;
    margin-right: 12px;
}

.free-consultation .two-column .ctas>a:last-of-type {
    margin-right: 0;
    margin-left: 0;
}

.home-page .free-consultation .one-column {
    justify-content: center;
}

.home-page .free-consultation .one-column .content {
    width: 70%;
}

.home-page .free-consultation .two-column .content ul li {
    margin-bottom: 25px;
}

.home-page .free-consultation .two-column .content ul li:last-of-type {
    margin-bottom: 0;
}

.inner-content .free-consultation .two-column {
    margin-top: 10px;
}

.inner-content .free-consultation .two-column img {
    order: 0;
}

.inner-content .free-consultation p {
    line-height: 174%;
}

.inner-content .free-consultation .two-column .content p {
    font-size: 15px;
    margin-bottom: 35px;
}

.inner-content .free-consultation .two-column .content p:last-of-type {
    margin-bottom: 0;
}

.inner-content .free-consultation .content ul li a {
    display: inline-block;
    color: #f2a11f;
    margin-bottom: 0;
    font-size: 15px;
    text-decoration: none;
}

.inner-content .free-consultation .content ul li a:hover {
    color: #27A7E0;
}

.how-it-works .free-consultation:not(.hiw) .two-column {
    margin-top: 0;
}

.how-it-works .free-consultation .two-column .order-0 {
    order: 0;
}

.how-it-works .free-consultation .two-column .content p {
    font-size: 15px;
    line-height: 160%;
}

.how-it-works .free-consultation:nth-of-type(odd) {
    padding-top: 60px;
    background-color: #F8F8F8;
}

.solutions .free-consultation .two-column {
    margin-top: 20px;
}

.solutions .free-consultation .two-column>* {
    width: 48%;
}

.solutions .free-consultation .two-column>.image-content {
    display: flex;
    flex-flow: wrap;
    order: 1;
    width: 43%;
}

.solutions .free-consultation .two-column>.image-content>* {
    width: 100%;
}

.solutions .free-consultation .two-column>.image-content>img {
    order: 0;
}

.solutions .free-consultation .two-column>.image-content>.ctas {
    justify-content: center;
}

.solutions .free-consultation .two-column .order-0 {
    order: 0;
}

.solutions .free-consultation .two-column .content p {
    font-size: 15px;
    margin-bottom: 35px;
}

.free-consultation .two-column .steps ul {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.free-consultation .two-column .steps ul li {
    width: 31.5%;
    padding: 0;
    box-shadow: 0px 0px 10px 1px #a5a5a5;
    border-radius: 30px;
    min-height: 200px;
    margin-bottom: 0;
}

 .free-consultation .two-column .steps ul li:before {
    display: none;
}

 .free-consultation .two-column .steps ul li a {
    display: block;
    margin-top: 28px;
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 81%;
    background: transparent linear-gradient(89deg, #279CD7 0%, #3B61FC 100%);
    color: #ffffff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 21px;
}

 .free-consultation .two-column .steps ul li p {
    padding: 0 20px;
}


.free-consultation .two-column .steps ul li:nth-of-type(even) a {
    background: transparent linear-gradient(89deg, #F2A11F 0%, #F6780A 100%);
}

 .free-consultation:nth-of-type(odd) {
    padding-top: 80px;
    background-color: #F8F8F8;
    overflow: hidden;
}

.custom-steps{
    padding-top: 50px;
    text-align: center;
}

.custom-steps .two-column{
    display: block;
}

.custom-steps .two-column > .content{
    margin: 0 auto;
}

.custom-steps .two-column > .content .steps{
    margin-bottom: 40px;
}

.solutions .free-consultation .two-column .content>p {
    font-size: 15px;
}

.solutions .free-consultation:nth-of-type(odd) .two-column .image-content>img {
    width: 120%;
}

.solutions .free-consultation:nth-of-type(odd) .two-column>.image-content {
    margin-right: -8%;
    position: relative;
}

.solutions .free-consultation:nth-of-type(odd) .two-column>.image-content .button-modal {
    width: 150px;
    object-fit: contain;
    text-align: center;
    margin-left: 66px;
}

.solutions .free-consultation:not(:first-of-type):nth-of-type(2n+4) {
    padding-top: 80px;
}

.solutions .free-consultation:not(:first-of-type):nth-of-type(2n+4) .two-column .image-content>img {
    width: 146%;
}

.solutions .free-consultation:not(:first-of-type):nth-of-type(2n+4) .two-column>.image-content {
    margin-left: -26%;
    position: relative;
    order: 0;
}

.solutions .free-consultation:not(:first-of-type):nth-of-type(2n+4) .two-column>.image-content .button-modal {
    width: 150px;
    object-fit: contain;
    text-align: center;
    margin-left: 113px;
}

.solutions .free-consultation .two-column .content ul {
    margin: 30px 0 0;
}

.solutions .free-consultation .bottom-content {
    margin-top: 60px;
}

.solutions .free-consultation .bottom-content ul {
    margin: 20px 0 0;
    padding: 0;
}

.solutions .free-consultation .bottom-content ul li {
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    list-style: none;
    padding-left: 35px;
}

.solutions .free-consultation .bottom-content ul li:before {
    content: '';
    background-image: url(../images/check-mark.png);
    width: 17px;
    height: 13px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 5px;
}

.how-it-works .free-consultation:nth-of-type(odd) {
    padding-top: 80px;
    background-color: #F8F8F8;
}

.case-studies-pg .free-consultation .two-column {
    margin-top: 20px;
}

.case-studies-pg .free-consultation .two-column .order-0 {
    order: 0;
    width: 44%;
}

.case-studies-pg .free-consultation .two-column .content p {
    font-size: 15px;
}

.case-studies-pg .free-consultation .two-column .content ul:not(.clean) li {
    color: #f2a11f;
    margin-bottom: 11px;
    font-size: 15px;
}

.case-studies-pg .free-consultation .two-column .content ul li a {
    display: block;
    text-decoration: none;
    color: #f2a11f;
    margin-bottom: 11px;
    font-size: 15px;
}

.case-studies-pg .free-consultation .two-column .content ul li a:hover {
    color: #27A7E0;
}

.case-studies-pg .free-consultation:nth-of-type(odd) {
    padding-top: 80px;
    background-color: #F8F8F8;
}

.case-studies-pg .free-consultation .two-column .content ul li > section{
    color: #030303;
    padding: 20px;
    display: none;
}

.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation  img{
    width:100%;
}

.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation .content,
.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation .two-column .content,
.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation .one-column .content{
    width: 100%;
}

.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation  ul li,
.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation .two-column .content ul li,
.case-studies-pg .free-consultation .two-column .content ul li > section.free-consultation .one-column .content ul li{
    color: #030303;
}


.inner-pages .free-consultatio.one-column {
    padding-bottom: 25px;
}

.inner-pages .free-consultation .content h2 {
    margin-top: 0;
}

.inner-pages .free-consultation .two-column {
    align-items: flex-start;
}

.inner-pages .free-consultation .order-0 {
    order: 0;
}

.inner-pages .free-consultation img.order-1 {
    order: 1;
}

.inner-pages .free-consultation .two-column .content p {
    font-size: 15px;
    line-height: 174%;
}

/* ----- End Free Consultation ----- */

/* ----- Rapid Analysis ----- */
.rapid-analysis {
    box-shadow: 0 3px 4px 0px #376af61c;
}

.rapid-analysis.rapid-analysis-home {
    padding-bottom: 150px;
}

.rapid-analysis.rapid-analysis-home .three-column .bg-white {
    margin-top: 0;
}

.rapid-analysis.rapid-analysis-home .three-column .bg-icon {
    padding: 25px 25px 0px;
}

.rapid-analysis.rapid-analysis-home .three-column .bg-icon img {
    width: 100%;
    height: auto;
    margin-bottom: -4px;
}

.rapid-analysis.rapid-analysis-home .three-column .bg-white>div {
    width: 100%;
    min-height: 220px;
}

.rapid-analysis.rapid-analysis-home .three-column .bg-white>div h3 {
    font-size: 103%;
    padding: 0;
}

.rapid-analysis .three-column {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.rapid-analysis .three-column>div {
    width: 29%;
}

.rapid-analysis .three-column .bg-icon {
    padding: 30px 30px 60px;
    text-align: center;
}

.rapid-analysis .three-column .bg-icon img {
    height: 150px;
    object-fit: contain;
}

.rapid-analysis .three-column>div:first-of-type .bg-icon {
    background: transparent linear-gradient(180deg, #3B61FC 0%, #1134C5 100%);
}

.rapid-analysis .three-column>div:nth-of-type(2) .bg-icon {
    background: transparent linear-gradient(180deg, #279CD7 0%, #0283C4 100%);
}

.rapid-analysis .three-column>div:last-of-type .bg-icon {
    background: transparent linear-gradient(180deg, #99D5E2 0%, #69ABB2 100%);
}

.rapid-analysis .three-column .bg-white {
    margin-top: -42px;
    display: flex;
    flex-flow: wrap;
    position: relative;
}

.rapid-analysis .three-column .bg-white>div {
    display: flex;
    width: 90%;
    margin: auto;
    background-color: #ffffff;
    flex-flow: wrap;
    min-height: 300px;
    align-content: baseline;
}

.rapid-analysis .three-column .bg-white>div h3 {
    margin: 30px 0 0;
    width: 100%;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 150%;
    padding: 0 12px;
    font-weight: 800;
    min-height: 65px;
}


/*
.rapid-analysis .three-column>div:nth-of-type(2) h3 {
    font-size: 122%;
    margin-top: 34px;
    margin-bottom: 4px;
}
*/


.rapid-analysis .three-column .bg-white>div p {
    text-align: center;
    width: 100%;
    color: #030303CB;
}

.rapid-analysis .three-column .bg-white>div p.light {
    margin-top: -1px;
}

.rapid-analysis .three-column .bg-white>div .ctas {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.home-percentage{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    
    gap: 20px;
}

.home-percentage > .hp{
    text-align: center;
    background-color: #eff1ec;
    border-radius: 20px;
    border: 1px solid #1c7bbb;
    padding: 20px;
    margin-bottom: 20px;
}

.home-percentage > .hp h3{
    color: #145188;
    margin: 0 0 10px;
    padding: 0 0 5px;
    font-size: 20px;
    position: relative;
}

.home-percentage > .hp h3::before{
    content: "";
    width: calc(100% - 20px);
    height: 3px;
    background-color: #145188;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.home-percentage > .hp h4{
    margin: 0 0 10px;
    font-size: 40px;
    color: #1c7bbb;
}

.home-percentage > .hp p{
    margin: 0;
}

.home-percentage img{
    display: block;
    width: auto;
    height: 100px;
    margin: 0 10px;
}

.home-percentage .group-this{
    display: flex;
    align-items: center;
}

.home-percentage .group-this > h4 {
    flex-shrink: 0;
    margin-right: 10px;
}

.home-percentage .group-this > p {
    flex: 1;
    text-align: left;
}

.make-interesting{
    text-align: center;
    padding-top: 50px;
    color: #0e538e;
    font-weight: bold;
    font-size: 25px;

}

.make-interesting span{
    background-color: #efefef;
    display: inline-block;
    border: 1px solid #207bb2;
    padding: 15px 30px;
    border-radius: 10px;
}



.make-interesting-2{
    text-align: center;
    color: #030303;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 50px;
}

.make-interesting-2 span{
    padding: 15px 30px;
    border-radius: 10px;
}



.rapid-analysis .three-column .bg-white>div .ctas .cta {
    font-size: 16px;
    padding: 9px 50px 11px;
}

.inner-pages .rapid-analysis .three-column .bg-white>div {
    min-height: 195px;
}

.inner-pages .rapid-analysis .three-column .bg-white {
    margin-top: 0;
}

.inner-pages .rapid-analysis .three-column .bg-icon img {
    height: auto;
    width: 78%;
}

.inner-pages .rapid-analysis .three-column .bg-icon {
    padding: 37px 31px;
    border-radius: 50%;
    width: 47%;
    margin: auto;
    position: relative;
}

.inner-pages .rapid-analysis .three-column .bg-icon:before {
    content: "";
    background: url(../images/arrow.png);
    width: 70px;
    height: 70px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    right: -95%;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    top: 59%;
}

.inner-pages .rapid-analysis .three-column>div:last-of-type .bg-icon:before {
    display: none;
}

.inner-pages .rapid-analysis .three-column .bg-white>div h3 {
    font-size: 150% !important;
}

.inner-pages .rapid-analysis .three-column .bg-white>div ul li {
    margin-bottom: 10px;
}

.inner-pages .rapid-analysis .three-column .bg-white>div ul li:last-of-type {
    margin-bottom: 0;
}


/* ----- End Rapid Analysis ----- */

/* ----- Tab List ----- */
.tabs-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.tabs-section .tabber ul {
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #3866f7;
}

.tabs-section .tabber ul li {
    display: inline-block;
    list-style: none;
    background-color: #F6F6F6;
    border-top-right-radius: 20px;
    padding: 10px 20px;
    margin-right: 20px;
}

.tabs-section .tabber ul li.active {
    background: transparent linear-gradient(122deg, #279CD7 0%, #3B61FC 100%);
}

.tabs-section .tabber ul li.active p {
    color: #ffffff;
}


.tabs-section .tabber ul li.active svg {
    fill: #ffffff;
}

.tabs-section .tabber ul li svg {
    max-width: 35px;
    display: block;
    margin: 8px auto;
    fill: #3866f7;
    height: auto;
}

.tabs-section .tabber ul li a {
    text-decoration: none;
    color: #3866f7;
    display: block;
    text-align: center;
}

.tabs-section .tabber ul li:last-of-type {
    margin-right: 0;
}

.tabs-section .tabber ul li p {
    margin: 0;
}

.tabs-section .tab-list {
    list-style: none;
    position: relative;
    display: block;
    font-size: 13px;
    perspective: 2000px;
    -o-perspective: 2000px;
    -ms-perspective: 2000px;
    -moz-perspective: 2000px;
    -webkit-perspective: 2000px;
    perspective-origin: 50% 50%;
    -o-perspective-origin: 50% 50%;
    -ms-perspective-origin: 50% 50%;
    -moz-perspective-origin: 50% 50%;
    -webkit-perspective-origin: 50% 50%;
}

.tabs-section .tab-list .tab {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 0;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    overflow: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    opacity: 0;

    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -o-transition: opacity .8s, -o-transform .8s;
    -ms-transition: opacity .8s, -ms-transform .8s;
    -moz-transition: opacity .8s, -moz-transform .8s;
    -webkit-transition: opacity .8s, -webkit-transform .8s;
    -o-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    opacity: 0;
}

.tabs-section .tab-list .tab.active {
    -o-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -webkit-transform: rotateX(0);
    -o-transition-delay: .5s;
    -ms-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -webkit-transition-delay: .5s;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.tabs-section .tab-list .tab>* {
    width: 48%;
}

.tabs-section .tab-list .tab:nth-of-type(odd) .img-con {
    position: relative;
    order: 1;
    width: 45%;
}

.tabs-section .tab-list .tab:nth-of-type(even) .img-con {
    position: relative;
    order: 0;
    width: 45%;
}

.tabs-section .tab-list .tab .img-con:after {
    content: '';
    clear: both;
    display: block;
}

.tabs-section .tab-list .tab .img-con>a {
    width: 100%;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0px 12px 8px rgba(0, 0, 0, 0.45);
    width: 100px;
    height: 100px;
}

.tabs-section .tab-list .tab .img-con img {
    width: 100%;
    object-fit: contain;
}

.tabs-section .tab-list .tab p {
    font-size: 15px;
}

.tabs-section .tab-list .tab ul {
    margin: 30px 0;
    padding: 0;
}

.tabs-section .tab-list .tab ul li {
    font-size: 15px;
    margin-bottom: 25px;
    position: relative;
    list-style: none;
    padding-left: 35px;
}

.tabs-section .tab-list .tab ul li:before {
    content: '';
    background-image: url(../images/check.png);
    width: 23px;
    height: 23px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 1px;
}

.tabs-section .tab-list .tab ul li:last-of-type {
    margin-bottom: 0;
}

.tabs-section .tab-list .tab .content>h2 {
    margin-top: 0; 
    font-size: 33px;
}

.tabs-section .tab-list .tab .ctas a span {
    display: inline-block;
    height: auto;
    position: relative;
    float: left;
    margin-right: 14px;
    margin-top: 10px;
}

.tabs-section .tab-list .tab .ctas a span:after {
    content: '';
    display: block;
    clear: both;
}

.tabs-section .tab-list .tab .ctas a span i {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #ffffff;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    top: 50%;
    left: 53%;
}

.tabs-section .tab-list .tab {
    flex-flow: wrap;
}

.tabs-section .tab-list .tab .bottom-content {
    width: 100%;
    margin-top: 30px;
}

.tabs-section .tabber ul {
    display: flex;
}

.tabs-section .tabber ul li {
    width: 25%;
}

.tabs-section .tab-list .tab:nth-of-type(odd) .img-con {
    order: 0;
}

.tabs-section.orange-tabs .content {
    width: 100%;
}

.tabs-section.orange-tabs .tab-list .tab ul {
    padding-left: 20px;
}

.tabs-section.orange-tabs .tabber ul {
    border-bottom: 2px solid #f47725;
}

.tabs-section.orange-tabs .tabber ul li {
    padding: 13px 25px;
    font-size: 15px;
}

.tabs-section.orange-tabs .tabber ul li a {
    color: #f2a11f;
}

.tabs-section.orange-tabs .tabber ul li.active {
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
}

quote{
    font-size: 20px;
    text-align: center;
}

table.custom-table{
    width: 100%;
    border: none;
    border-spacing: 0;
    margin-top: 20px;
}

table.custom-table thead th{
    background-color: #55AAF2;
    color: #fff;
    padding: 5px;
    vertical-align: top;
}

table.custom-table tbody td{
    padding: 5px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    vertical-align: top;
}

table.custom-table tbody td:nth-child(1){
    border-left: 1px solid #ccc;
}

/* ----- End Tab List ----- */

/* ----- Schedule Demo ----- */
.schedule-demo {
    background-image: url(../images/bg-image.png);
    background-size: 111%;
    background-position: -103px 111px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    box-shadow: 0 -6px 11px 0px #00000014;
    padding: 50px 0;
}

.schedule-demo .wrapper {
    width: 1150px;
}

.schedule-demo .header-1 {
    margin: 0;
    font-size: 38px;
}

.schedule-demo .header-2 {
    margin-top: 0;
}

.schedule-demo .header-3 {
    margin-top: 0;
}

.schedule-demo .content {
    text-align: center;
    margin: 20px 0 20px;
    font-size: 15px;
}

.schedule-demo .ctas {
    text-align: center;
    margin-top: 30px;
}


.schedule-demo .ctas>a {
    font-size: 16px;
    padding: 10px 32px 12px;
}

.how-it-works .schedule-demo .content a {
    text-decoration: none;
}

.how-it-works .schedule-demo .ctas a:first-of-type {
    margin-right: 50px;
}

/* ----- End Schedule Demo ----- */

/* ----- Case Studies ----- */
.case-studies {
    background: transparent linear-gradient(180deg, #279CD7 0%, #3B61FC 100%);
    padding: 40px 0 45px;
}

.case-studies .two-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-studies .two-column>* {
    width: 48%;
}

.case-studies .two-column>img {
    order: 1;
    width: 31%;
    margin-right: 9%;
}

.case-studies h2 {
    color: #ffffff;
}

.case-studies p {
    color: #ffffff;
    font-size: 18px;
    margin-top: 40px;
}

.case-studies .ctas {
    margin-top: 35px;
}

.case-studies .ctas a {
    font-size: 16px;
    padding: 9px 30px 11px;
}

/* ----- End Case Studies ----- */

/* ----- Analyze Survey ----- */
.analyze-survey .text-content {
    text-align: center;
    margin-bottom: 80px;
}

.analyze-survey .text-content p {
    font-size: 15px;
}

.analyze-survey .two-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.analyze-survey .two-column .content>h2 {
    margin-bottom: 65px;
}

.analyze-survey .two-column>* {
    width: 45%;
}

.analyze-survey .two-column>img {
    width: 40%;
}

.analyze-survey .img-content {
    display: flex;
}

.analyze-survey .img-content img {
    width: 80px;
    object-fit: contain;
    align-self: start;
    min-width: 80px;
}

.analyze-survey .img-content {
    margin-bottom: 40px;
}

.analyze-survey .img-content:last-of-type {
    margin-bottom: 0;
}

.analyze-survey .img-content>div {
    padding-left: 20px;
}

.analyze-survey .img-content>div h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
}

/* ----- End Analyze Survey ----- */

/* ----- Contact Us ----- */
.home-page>.contact-us {
    padding: 0 0 50px;
}

.home-page .contact-us .blue-banner-bg {
    padding-right: 20%;
    font-size: 26px;
    margin-bottom: 40px;
}

.home-page .contact-details-content {
    display: flex;
    justify-content: space-between;
}

.home-page .contact-details-content .contact-details {
    width: 25%;
}

.home-page .contact-details-content .contact-details ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.home-page .contact-details-content .contact-details ul li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
}

.home-page .contact-details-content .contact-details ul li:before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 29px;
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

.home-page .contact-details-content .contact-details ul li:first-of-type:before {
    background-image: url(../images/icon-address-blue.png);
}

.home-page .contact-details-content .contact-details ul li:nth-of-type(2):before {
    background-image: url(../images/icon-website-blue.png);
}

.home-page .contact-details-content .contact-details ul li:last-of-type:before {
    background-image: url(../images/icon-phone-blue.png);
}

.home-page .contact-details-content .contact-details ul li a {
    text-decoration: none;
    font-size: 14px;
}

.home-page .contact-details-content .contact-us {
    width: 70%;
}

.home-page .contact-details-content .contact-us form input {
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 15px;
}

.home-page .contact-details-content .contact-us form button[type="submit"] {
    width: auto;
    float: right;
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
    border-radius: 50px;
    color: #ffffff;
    display: inline-block;
    font-family: 'Muli';
    font-size: 15px;
    padding: 9px 20px 11px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
}

.home-page .contact-details-content .contact-us form button[type="submit"]:hover {
    background: transparent linear-gradient(90deg, #279CD7 0%, #3573F2 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
}

.home-page .contact-details-content .contact-us form div[name="SIGNUP_FORM_LABEL"] {
    font-size: 14px;
}

.home-page .contact-details-content .contact-us .recapDivlight {
    margin-bottom: 15px;
}

/* ----- End Contact Us ----- */

/* ----- Quote ----- */
.quote-content {
    padding: 30px 0;
}

.quote-content .quote-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 30px 40px 50px 130px;
    border-radius: 10px;
    font-size: 15px;
    font-style: italic;
    position: relative;
}

.quote-content .quote-box::before {
    content: '\201C';
    position: absolute;
    font-size: 240px;
    font-family: 'PT Serif', serif;
    line-height: 1;
    left: 10px;
    top: 15px;
    color: #ddd;
    font-style: normal;
}

.quote-content .quote-box::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #FD7800;
    left: 130px;
    bottom: -10px;
}

.quote-content .content {
    margin-top: 22px;
    padding-left: 130px;
}

.quote-content .content>* {
    display: block;
    margin-bottom: 7px;
}

/* ----- End Quote ----- */

/* ----- Footer ----- */
footer {
    background: transparent linear-gradient(180deg, #279CD7 0%, #3B61FC 100%);
    padding: 50px 0;
}

footer .border {
    border-top: 1px solid #E1DFDF;
    border-bottom: 1px solid #E1DFDF;
    padding: 50px 0 35px;
}

footer .contain {
    display: flex;
}

footer .contain>div {
    padding-right: 50px;
}

footer .contain>div:last-of-type {
    padding-right: 0;
}

footer .contain h5 {
    font-family: 'BenchNine', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 21px;
    color: #ffffff;
    margin: 0;
}

footer .contain h2 {
    margin: 0;
}

footer .about h2 {
    font-family: 'PT Serif', serif;
    font-size: 25px;
    margin-top: 15px;
}

footer .about h2 em {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    display: inline-block;
    padding-right: 6px;
}

footer .about p {
    font-weight: 100;
    line-height: 166%;
    font-size: 14px;
}

footer .pages {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    display: inline-block;
    padding-right: 6px;
    width: 175px;
}

footer .pages ul {
    margin: 20px 0 0;
    padding: 0;
}

footer .pages ul li {
    list-style: none;
}

footer .pages ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
}

footer .contain .about {
    width: 38%;
    color: #ffffff;
}

footer .copyright {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    margin-top: 50px;
}

footer .contact-details {
    width: 295px;
}

footer .contact-details ul {
    list-style: none;
    margin: 29px 0 25px;
    padding: 0;
}

footer .contact-details ul li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
}

footer .contact-details ul li:before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 29px;
    background-repeat: no-repeat;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

footer .contact-details ul li:first-of-type:before {
    background-image: url(../images/icon-address.png);
}

footer .contact-details ul li:nth-of-type(2):before {
    background-image: url(../images/icon-website.png);
}

footer .contact-details ul li:last-of-type:before {
    background-image: url(../images/icon-phone.png);
}

footer .contact-details ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

footer .contact-us h5 {
    width: 276px;
}

footer .contact-us h5 {
    margin-bottom: 29px;
}

footer .contact-us .form-group {
    margin-bottom: 20px;
}

footer .contact-us label,
footer #errorMsgDiv,
footer div[name="SIGNUP_FORM_LABEL"],
footer #REQUIRED_FIELD_TEXT {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

footer #REQUIRED_FIELD_TEXT {
    margin-top: 20px;
}

footer .zcsffieldsdiv {
    margin-top: 20px;
}

footer .zcsffieldsdiv>div {
    margin-bottom: 20px;
}

footer .zcsffieldsdiv input,
footer .zcsffieldsdiv textarea,
footer .contact-us input,
footer .contact-us textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    outline: none;
    resize: none;
    color: #ffffff;
    line-height: 130%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

footer .contact-us input::-webkit-input-placeholder {
  color: #ffffff;
}

footer .contact-us textarea {
    height: 75px;
}

footer .contact-us button[type='submit'] {
    float: right;
    border: none;
    border-radius: 31px;
    padding: 10px 38px;
    color: #4B4A4A;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    margin-top: 20px;
}

footer .contact-us button[type='submit']:hover {
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
    color: #ffffff;
}

/* ---------- Free Trial Sign Up Page ----------*/
.free-trial-sign-up .menu {
    position: relative;
    z-index: 9;
}

.free-trial-sign-up .menu .right,
.free-trial-sign-up .menu .logo {
    position: relative;
    z-index: 9;
}

.free-trial-sign-up .login {
    padding-bottom: 9px;
    color: #ffffff;
}

.free-trial-sign-up header {
    background-image: url(../images/free-trial-bg.jpg);
    position: relative;
    margin-top: -112px
}

.free-trial-sign-up header:before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.39);
    top: 0;
}

.free-trial-sign-up header .wrapper {
    display: flex;
    justify-content: space-evenly;
}

.free-trial-sign-up header .wrapper>* {
    width: 45%;
}

.free-trial-sign-up header .text-content:before {
    left: -607px;
}

.free-trial-sign-up header .header-1 {
    width: 100%;
    margin-top: 80px;
}

.free-trial-sign-up #SIGNUP_HEADING {
    display: none;
}

.free-trial-sign-up header .text-content {
    width: 100%;
    padding-right: 145px;
}

.free-trial-sign-up header .form {
    width: 75%;
    background-color: rgba(255, 255, 255, 0.91);
    padding: 30px 30px 60px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.free-trial-sign-up header h5 {
    font-size: 28px;
    text-align: center;
    margin: 0;
    font-family: 'Muli', sans-serif;
}

.free-trial-sign-up header form {
    padding: 20px 0 30px;
}

.free-trial-sign-up header form>div {
    width: 100%;
    margin-bottom: 15px;
}

.free-trial-sign-up header input {
    width: 100%;
    background-color: #ffffff;
    border: none;
    border: 1px solid #dcdcdc;
    outline: none;
    resize: none;
    line-height: 130%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 10px;
    margin-bottom: 15px;
}

.free-trial-sign-up header input[type='submit'] {
    float: right;
    border: none;
    border-radius: 31px;
    padding: 10px 38px;
    background: transparent linear-gradient(180deg, #FF8800 0%, #F37629 100%);
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-transform: uppercase;
    margin-top: 15px;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Muli';
}

.free-trial-sign-up header input[type='submit']:hover {
    background: transparent linear-gradient(90deg, #279CD7 0%, #3573F2 100%);
    box-shadow: 0px 3px 6px 1px #9494948c;
    top: -1px;
    position: relative;
    color: #ffffff;
}

/* ---------- Thank you Page ----------*/

.thank-you-page .menu .logo {
    position: relative;
    z-index: 9;
}

.thank-you-page header {
    background-image: none;
    position: relative;
}

.thank-you-page header .wrapper {
    display: flex;
    justify-content: space-evenly;
    position: relative;
}

.thank-you-page header .wrapper>* {
    width: 100%;
}

.thank-you-page header .text-content:before {
    left: -314px;
    width: 314px;
}

.thank-you-page header h1 {
    width: 100%;
    margin-top: 105px;
    margin-bottom: 10px;
}

.thank-you-page header h1+p {
    font-size: 25px;
}

.thank-you-page header .text-content {
    width: 100%;
    padding-right: 50%;
}

.thank-you-page header .img-container {
    position: absolute;
    right: 166px;
    top: 66%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.thank-you-page header .ctas .free-trial {
    font-size: 22px;
}

.thank-you-page footer .copyright {
    margin-top: 0;
}
/* 
.home-page header h1 {
    margin-bottom: 0;
    font-size: 60px !important;
    font-weight: 700;
}

.home-page header h1+p {
    font-size: 40px;
    margin-top: 4px;
    font-weight: 300;
} */

.platform-section {
    padding: 60px 0;
    background: #f9fafb;
}

.platform-body {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
    text-align: center;
}

.platform-intro strong {
    color: #1f2937;
    font-weight: 600;
    background: linear-gradient(135deg, #2a9ad9, #317fe9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.platform-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2a9ad9, #317fe9);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.platform-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}

.platform-cta .btn-secondary svg {
    transition: transform 0.3s ease;
}

.platform-cta .btn-secondary:hover svg {
    transform: translateX(4px);
}

.platform-subtitle {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}
@media (max-width: 768px) {
    .platform-body {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .platform-intro {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .platform-cta .btn-secondary {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .platform-body {
        padding: 24px 16px;
    }
    
    .platform-intro {
        font-size: 16px;
    }
}

.platform-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.platform-header {
    margin-bottom: 40px;
}

.platform-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    color: #4f46e5;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.platform-header .section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 700;
}

.platform-body {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
}

.platform-intro strong {
    color: #1f2937;
    font-weight: 600;
    background: linear-gradient(135deg, #2a9ad9, #317fe9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.platform-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2a9ad9, #317fe9);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.platform-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}

.platform-cta .btn-secondary svg {
    transition: transform 0.3s ease;
}

.platform-cta .btn-secondary:hover svg {
    transform: translateX(4px);
}

.platform-subtitle {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-header .section-title {
        font-size: 32px;
    }
    
    .platform-body {
        padding: 32px 24px;
    }
    
    .platform-intro {
        font-size: 18px;
    }
    
    .section-platform {
        padding: 60px 0;
    }
}

.section-impact {
    padding: 100px 0;
    background: white;
    position: relative;
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-content .section-title {
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.impact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(79, 70, 229, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5 0%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1);
}

.impact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

.impact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.free-consultation .content ul.no-checkmarks li:before {
    display: none;
}

.free-consultation .content ul.no-checkmarks li {
    position: relative;
    padding-left: 0;
}

.inner-pages .free-consultation .two-column .content ul li strong {
    font-weight: 700;
    color: #030303;
}

.inner-pages .schedule-demo {
    background-image: url(../images/bg-image.png);
    background-size: cover;
}

.inner-pages .rapid-analysis .three-column .bg-white > div {
    min-height: 180px;
}

.inner-pages .rapid-analysis .three-column .bg-white > div h3 {
    min-height: auto;
    font-size: 130%;
    padding: 0 10px;
}

/* Modern Contact Form Styles */
.modern-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    color: #4f46e5;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-header h2 {
    margin: 0 0 16px 0;
    font-size: 42px;
    color: #1f2937;
}

.contact-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 16px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    outline: none;
}

.form-input:focus {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: #4f46e5;
    background: white;
    padding: 0 8px;
}

.form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.form-input::placeholder {
    color: transparent;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: 'Open Sans', sans-serif;
}

.modern-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2a9ad9, #317fe9);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
    align-self: flex-end;
    font-family: 'Muli', sans-serif;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}

.modern-submit-btn svg {
    transition: transform 0.3s ease;
}

.modern-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-contact-section {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 32px;
    }
    
    .modern-contact-container {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modern-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modern-contact-container {
        padding: 24px 16px;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
}

.modern-form .form-group {
    margin-bottom: 24px;
    position: relative;
}

.modern-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    outline: none;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.modern-form textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.modern-form button[type="submit"],
.modern-form .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2a9ad9, #317fe9);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
    font-family: 'Muli', sans-serif;
}

.modern-form button[type="submit"]:hover,
.modern-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}

/* Responsive for modern-form */
@media (max-width: 768px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .modern-form button[type="submit"],
    .modern-form .btn-primary {
        width: 100%;
    }
}

.free-consultation .content ul li:before {
    background-image: none;
    width: auto;
    height: auto;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}
