/** Website CSS **/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

@font-face {
    font-family: 'Futura Bold', sans-serif;
    src: url('./fonts/Futura-Bold.ttf');
}
@font-face {
    font-family: 'Futura Medium';
    src: url('./fonts/Futura-Medium.ttf');
}
@font-face {
    font-family: 'Futura';
    src: url('./fonts/Futura-Book.ttf');
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
span {
    font-family: 'Futura Medium', sans-serif !important;
}

p,
ul li,
ol li,
blockquote,
input,td {
    font-family: 'Futura', sans-serif !important;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

.mobile-only {
    display: none !important;
}
.mobile-only-website {
    display: none !important;
}
.mobile-only-hero {
    display: none !important;
}

.flex {
    display: flex;
}

@media (max-width: 1024px) {
    .navigation-home.desktop-only {
        display: none !important;
    }
}

@media (max-width: 825px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}
@media(max-width: 690px) {
    .desktop-only-hero {
        display: none !important;
    }
    .mobile-only-hero {
        display: block !important;
    }
}
@media(max-width: 600px) {
    .mobile-only-website {
        display: block !important;
    }
}

@media (max-width: 500px) {

    .flex {
        flex-wrap: wrap;
    }
}

.sub-pages-height .slick-slide {
    height: 92vh !important;
}

.padding-right-40 {
    padding-right: 40px;
}
.padding-left-40 {
    padding-left: 40px;
}

@media (max-width: 768px) {
    .padding-right-40 {
        padding-right: initial;
    }
    .padding-left-40 {
        padding-left: initial;
    }
}

.testi-maid {
    max-width: 300px;
    display: block;
    margin: 0 auto;
    box-shadow: 32px 54px 108px 8px rgba(0,0,0,0.2);
}

/** Switch CSS **/
.switch {
    position: relative;
    display: block;
    width: 60px;
    height: 25px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sliding {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #525252;
    -webkit-transition: .4s;
    transition: .4s;
}

.sliding:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 10px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked+.sliding {
    background-color: #061146;
}

.switch input:focus+.sliding {
    box-shadow: 0 0 1px #061146;
}

.switch input:checked+.sliding:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.sliding.round {
    border-radius: 34px;
}

.sliding.round:before {
    border-radius: 50%;
}

/** Header CSS **/
header {
    height: 100px;
    line-height: 100px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
}

header img {
    display: inline-block;
    height: 60px;
    margin-top: 15px;
}

header nav {
    text-align: right;
    line-height: 100px;
}

header nav ul {
    line-height: 80px;
}

header nav ul li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    margin-top: 8px;
}

header nav ul li a {
    font-size: 1.1em;
    text-transform: uppercase;
    color: #121846;
    font-family: sans-serif;
}

header nav ul li a.active {
    border-bottom: 2px solid #fc7756;
}

header nav ul li a:hover {
    color: #fc7756;
}

header nav ul .special-cta {
    margin-left: 0;
}

header nav ul .special-cta a {
    background: #EA8992;
    padding: 10px 20px;
    color: #fff;
    text-transform: none;
    font-size: 1.2em;
    font-weight: bold;
    border: 1px solid #EA8992;
}
header nav ul .special-cta a:hover {
    color: #fff;
}
header nav ul .log-in {
    font-size: 1em;
    font-weight: bold;
    border: 1px solid #293E40;
    padding: 10px 20px;
    transition: 0.2s ease-in-out;
    font-size: 1.2em;
    text-transform: none;
}

header nav ul .log-in:hover {
    color: #EA8992;
    background:#fff;
    border-color: #fff;
}

header section {
    text-align: left;
    display: inline-block;
    margin-top: 15px;
}


header section ul li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}

header section ul li a {
    font-size: 1.2em;
    color: #121846;
    font-family: sans-serif;
}

header section ul li a.active {
    border-bottom: 2px solid #EA8992;
}

header section ul li a:hover {
    color: #EA8992;
}

header section ul .special-cta a {
    background: #EA8992;
    padding: 15px 20px;
    border-radius: 7px;
    color: #fff;
    text-transform: none;
    font-size: 1.2em;
}

header button {
    display: none;
}

#mobile_actual_nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: none;
}

#mobile_actual_nav ul li a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: lighter;
}

#mobile_actual_nav ul li a:hover {
    background: #000;
}

#close_mobile_actual_nav {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 20px;
    margin-right: 20px;
}

#close_mobile_actual_nav {
    color: #071146;
}

#close_mobile_actual_nav i {
    color: #fff;
    font-size: 2em;
}

@media only screen and (min-width: 1400px) {
    header section ul li a {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 1024px) {
    header nav {
        display: none;
    }

    header button {
        display: block;
        float: right;
        font-size: 2em;
        line-height: 100px;
    }

    header button i {
        color: #071146;
    }
}
@media only screen and (max-width: 825px) {
    #mobile_actual_nav ul li a {
        font-size: 1.2em;
    }
}
@media only screen and (max-width: 600px) {
    #mobile_actual_nav ul li a {
        font-size: 2em;
    }
}

/** Footer CSS **/
.Hb4312dda0dd8dc59c40705409d756857296608cb {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #f7f7f7;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb img {
    display: block;
    width: 90%;
    height: auto;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb p {
    color: #293E40;
    padding-top: 20px;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb .column {
    padding: 0px;
    padding-bottom: 10px;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    text-align: left;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route {
    margin-bottom: 40px;
    text-align: center;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route li:first-child {
    text-align: left;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route li:last-child {
    text-align: right;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route li {
    padding-bottom: 5px;
    display: inline-block;
    margin-top: 0px;
    padding-top: 0px;
    color: #293E40;
    width: 16.6666%;
    letter-spacing: 0;
}
.Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route li:last-child {
    margin-right: 0;
}
.newsletter {
    margin-left: 40px;
}
.newsletter h2 {
    padding:0;
    margin:0;
    margin-top:8px;
}
.newsletter p {
    margin: 0;
    padding: 0;
}
.divider-footer {
    width: 300px;
    border-width: 3px;
    border-color:#293E40;
    margin-bottom: 40px;
}

.social-media {
    margin-top: 20px !important;
}

.social-media li {
    display: inline-block !important;
    margin-right: 15px;
}

.social-media li i {
    font-size: 2em;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul li i {
    margin-right: 10px;
    display: inline-block;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul li address {
    display: inline-block;
    font-style: normal;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul li a {
    color: #293E40;
    letter-spacing: 0px;
    font-size: 1.3em;
}

.Hb4312dda0dd8dc59c40705409d756857296608cb ul li a:hover {
    color: #293E40;
    text-decoration: underline;
}

.I1b5e2785976aec91a829894caf36ba0a430ff7f1 {
    padding-top: 20px;
}

.I1b5e2785976aec91a829894caf36ba0a430ff7f1 .columns {
    padding: 0px;
    padding-bottom: 10px;
}

.A43bf79d9872139d040d5300df4df78d2eb5151f4 {
    font-size: 1.15em;
    color: #fff;
}

.H508f4d03c53d30a6fe5da88cc7a9fd1dd94a13de {
    color: #999;
    font-weight: bold;
}

.Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
    height: 70px;
    width: 90%;
}

.K0648f5450734949ebdb51befbc8e516668abfbcb {
    text-align: right;
    height: 40px;
    line-height: 40px;
    background: #1c1c1c;
}


.K0648f5450734949ebdb51befbc8e516668abfbcb a {
    color: #293E40;
}

@media only screen and (max-width: 1240px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 65px;
    }
}

@media only screen and (max-width: 1140px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 60px;
    }
}

@media only screen and (max-width: 1070px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 55px;
    }
}

@media only screen and (max-width: 1024px) {
    .Hb4312dda0dd8dc59c40705409d756857296608cb {
        padding-bottom: 30px;
    }

    .Hb4312dda0dd8dc59c40705409d756857296608cb img {
        width: 60%;
    }

    .Hb4312dda0dd8dc59c40705409d756857296608cb .columns {
        padding-bottom: 30px;
    }

    .Hb4312dda0dd8dc59c40705409d756857296608cb .columns .column {
        padding-bottom: 0px;
    }

    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 115px;
    }

    .clearfix-on-medium {
        display: block;
        clear: both;
    }

    .I1b5e2785976aec91a829894caf36ba0a430ff7f1 .columns {
        padding-bottom: 15px;
    }
    .newsletter {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1000px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 100px;
    }
}

@media only screen and (max-width: 920px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 95px;
    }

    .social-media a {
        margin-right: 0 !important;
    }
    .newsletter h2 {
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 800px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 85px;
    }
    .Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route li:first-child {
        text-align: center;
    }
    
    .Hb4312dda0dd8dc59c40705409d756857296608cb ul.normal-route li:last-child {
        text-align: center;
    }
}

@media only screen and (max-width: 750px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 80px;
    }
}

@media only screen and (max-width: 720px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 75px;
    }
    .Hb4312dda0dd8dc59c40705409d756857296608cb ul li a {
        margin-right: 0;
    }
    .social-media li:last-child {
        margin-right:0;
    }
    .social-media li a i {
        margin-right: 0;
    }
    .Hb4312dda0dd8dc59c40705409d756857296608cb .columns {
        padding-bottom: 0;
    }
    .social-media {
        padding-top: 0;
        text-align: center !important;
    }
    .newsletter h2 {
        text-align: center;
    }
    .newsletter p {
        text-align: center;
    }
}

@media only screen and (max-width: 641px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 70px;
    }
    .Hb4312dda0dd8dc59c40705409d756857296608cb ul li {
        text-align: center;
    }
    .newsletter {
        margin-left: 0;
    }
}

@media only screen and (max-width: 639px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 150px;
    }
}

@media only screen and (max-width: 600px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 145px;
    }
}

@media only screen and (max-width: 570px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 140px;
    }
}

@media only screen and (max-width: 520px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 120px;
    }
}

@media only screen and (max-width: 480px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 110px;
    }
}

@media only screen and (max-width: 420px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 105px;
    }
}

@media only screen and (max-width: 400px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 100px;
    }
}

@media only screen and (max-width: 390px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 90px;
    }
}

@media only screen and (max-width: 380px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 95px;
    }
}

@media only screen and (max-width: 370px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 85px;
    }
}

@media only screen and (max-width: 370px) {
    .Hc401ef515dd195d01036901f5ffc2dedfde58c87 {
        height: 80px;
    }
}

/** Homepage CSS **/

.I707203d54f65e7d5f9562536 {
    position: relative;
}

.I707203d54f65e7d5f9562536 .slick-slide {
    height: 110vh;
    position: relative;
}

.I707203d54f65e7d5f9562536 .slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    margin-left: 50px;
    margin-bottom: 20px;
}

.I707203d54f65e7d5f9562536 .slick-dots li {
    display: inline-block;
    height: 12.5px;
    width: 12.5px;
    margin-right: 12.5px;
    color: transparent;
    border-radius: 99999px;
    border: 1px solid #fff;
    transition: all 0.2s ease-in-out;
}

.I707203d54f65e7d5f9562536 .slick-dots li.slick-active {
    background: #fff;
}

.I707203d54f65e7d5f9562536 .slick-dots li:hover {
    background: #fff;
    cursor: pointer;
}

.down-abit {
    margin-top: 40px;
}
.pricing-pages .down-abit {
    margin-top: 60px;
}

.Xf9abf51f5bf5e9cfb618344d {
    width: 90%;
    margin: 0 auto;
}

.Z3e8e8ccbabf5945301a0a212 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.Z3e8e8ccbabf5945301a0a212 span {
    color: #121846;
    font-size: 3em;
    display: block;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: left;
    font-weight: 600;
}

.Z3e8e8ccbabf5945301a0a212 p {
    padding-bottom: 20px;
    font-size: 1.5em;
    color: #121846;
    margin-bottom: 0;
    line-height: 1.1;
    text-align: left;
    margin-top: 20px;
    max-width: 80%;
}

.Z3e8e8ccbabf5945301a0a212 a {
    color: #fff;
    padding-right: 34px;
    padding-left: 34px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    text-transform: uppercase;
    background: #121943;
    border-radius: 0px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2em;
    transition: all 0.2s ease-in-out;
    float: left;
    margin-right: 20px;
    font-weight: bold;
}

.started-free {
    background: #EE798C !important;
    margin-left: 0px;
}

.view-demo {
    background: none !important;
    color: #121943 !important;
    border: 1px solid #121943;
}

.started-free:hover {
    color: #EE798C;
    background: #fff !important;
}
.view-demo:hover {
    background: #121943 !important;
    color: #fff !important;
}

.right-graphic {
    height: 250px;
    display: block;
    margin: 0 auto;
}


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

.content-hero-home h2 {
    color: #443E53 !important;
    margin:0;
    font-size: 3em;
    font-weight: bolder !important;
}
.content-hero-home h3 {
    color: #443E53 !important;
    margin:0;
    font-size: 2em;
    font-weight: bolder !important;
}
.content-hero-home a {
    display: block !important;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 0px;
    float: none;
    max-width: 350px;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 3px;
    background: #27589D;
    border-radius: 0;
    font-size: 1.5em;
    height: 40px;
    line-height: 40px;
}

.mobile-flex {
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1400px) {
    .content-hero-home h2 {
        font-size: 3.5em;
        font-weight: bolder !important;
    }
    .content-hero-home h3 {
        font-size: 2.4em;
        margin-bottom: 40px;
        font-weight: bolder !important;
    }
    .down-abit {
        margin-top: 0;
    }
    .content-hero-home {
        margin-top: 40px;
    }

    .Z3e8e8ccbabf5945301a0a212 p {
        font-size: 1.7em;
    }
    .Z3e8e8ccbabf5945301a0a212 span {
        font-size: 3.2em;
    }
}
@media only screen and (max-height: 425px) {
    .I707203d54f65e7d5f9562536 .slick-slide {
        height: 170vh !important;
    }
}

@media only screen and (max-width: 825px) {
    .Z3e8e8ccbabf5945301a0a212 a {
        margin-bottom: 10px;
    }
    .I707203d54f65e7d5f9562536 .slick-slide {
        height: 100vh;
    }
    .down-abit .table {
        margin-left: 0;
    }
    .content-hero-home h2 {
        font-size: 2em;
        font-weight: bolder !important;
        margin-top: 20px;
    }
    .content-hero-home h3 {
        font-size: 1.5em;
        font-weight: bolder !important;
    }
    .content-hero-home h2 {
        font-size: 2em;
        font-weight: bolder !important;
        margin-top: 20px;
    }
    .content-hero-home h3 {
        font-size: 1.5em;
        font-weight: bolder !important;
    }
}

@media only screen and (max-width: 700px) {
    .mobile-flex li {
        width: 50% !important;
        margin-right: 0 !important;
    }
    .down-abit .table {
        margin-left: 0;
    }
    .Z3e8e8ccbabf5945301a0a212 a {
        font-size: 14px;
        margin-bottom: 0px;
        margin-right: auto;
        margin-top: 20px;
        float: none;
        width: 200px;
        margin-bottom: 0;
    }
    .T1dbf48adf6d1eefe625500f5 form {
        flex-wrap: wrap;
    }

    .T1dbf48adf6d1eefe625500f5 form label {
        margin-left: 0px;
        margin-right: 0px;
        width: 90%;
        margin: 0 auto;
    }

    .T1dbf48adf6d1eefe625500f5 form input {
        margin-bottom: 20px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .T1dbf48adf6d1eefe625500f5 form input[type='submit'] {
        margin-bottom: 0px;
        width: 90%;
        margin: 0 auto;
    }

    .T1dbf48adf6d1eefe625500f5 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .I707203d54f65e7d5f9562536 .slick-slide {
        height: 100vh;
    }

    .new-hero .I707203d54f65e7d5f9562536 .slick-slide {
        height: 600px;
    }
    .new-hero .down-abit {
        margin-top: 100px;
    }

    #home-page-text {
        text-align: center !important;
        max-width: 100%;
        font-size: 1.5em;
    }
    span#home-page-text {
        margin-top: 0px;
        text-align: center !important;
        font-size: 3em;
    }

    .mobile-image-hero {
        bottom: 0;
        position: absolute;
    }

    .Z3e8e8ccbabf5945301a0a212 span {
        font-size: 2em;
        text-align: center !important;
    }

    .Z3e8e8ccbabf5945301a0a212 p {
        font-size: 1.15em;
        text-align: center !important;
        margin-top: 15px !important;
    }
}

@media only screen and (max-width: 640px) {
    .I707203d54f65e7d5f9562536 .slick-dots {
        margin-left: 8.5%;
    }

    .blue-background-mobile {
        background: #BFE0F1 !important;
    }

    .blue-background-mobile-two {
        background: #307EBD !important;
    }
}

.everything-you-need {
    padding-top: 80px;
    padding-bottom: 80px;
}
.title-everything {
    text-align: center;
}
.title-everything h2,
.title-everything h3 {
    margin: 0;
}

.title-everything h2 {
    color: #293E40;
    font-size: 2.3em;
}
.title-everything h3 {
    color: #808080;
    letter-spacing: 0;
    font-size: 1.45em;
}

.sections-everything {
    margin-top: 100px;
}

.sections-everything h2 {
    text-align: left;
    font-size: 2.3em;
    max-width: 70%;
}
.sections-everything p {
    text-align: left;
    font-size: 1.2em;
}
.sections-everything a {
    float: left;
    color: #EA8992;
}
.sections-everything img {
    display: block;
    width: 80%;
}
.sections-everything .image-right {
    margin-left: auto;
}
.center-graphic {
    margin: 0 auto;
    display: block;
    width: 100%;
}

@media (min-width: 1400px) {
    .other-sections {
        padding-top: 80px;
    }
}
@media (max-width: 1024px) {
    .sections-everything h2 {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .sections-everything .image-left,
    .sections-everything .image-right {
        margin-left: auto;
        margin-right: auto;
    }
    .sections-everything img {
        margin: 0 auto;
    }

    .title-everything h2 {
        color: #293E40;
        font-size: 2em;
    }
    .title-everything h3 {
        color: #808080;
        letter-spacing: 0;
        font-size: 1.2em;
    }
}

.tooling-needs {
    background: #253F40;
    padding-top: 60px;
    padding-bottom: 60px;
}

.tooling-needs h2 {
    color: #fff;
    text-align: center;
    font-size: 2.5em;
}

.tooling-content {
    margin-top: 40px;
}

.tooling-content img {
    height: 30px;
    display: block;
    margin: 0 auto;
}
.icon-showing p {
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

.icon-content {
    margin-bottom: 30px;
}

.icon-showing hr {
    width: 50px;
    border-width: 3px;
    border-color: #fff;
    opacity: 1;
}

.icon-content {
    transition: 0.2s ease-in-out;
}

.hidden-text {
    color: #fff;
    max-width: 70%;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.icon-content:hover .hidden-text {
    opacity: 1;
}

.tooling-needs a {
    background: #A9CED0;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 350px;
    font-size: 1.5em;
    height: 40px;
    line-height: 40px;
    letter-spacing: 3px;
    margin-top: 40px;
}

.just-for-you {
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-just-you {
    padding: 40px;
    margin-top: -100px;
    position: relative;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
}

.content-just-you h2{
    font-size: 3em;
    width: 60%;
}
.content-just-you .bigger-section {
    width: 80%;
}
.content-just-you a {
    background: #EA8992;
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 350px;
    font-size: 2em;
    height: 45px;
    line-height: 45px;
    margin-top: 40px;
}
.content-just-you .smaller-section {
    text-align: center;
    font-size: 0.9em;
    margin-top: 10px;
}

.small-symbol img{
    width: 30px;
    margin-top: -8px;
}
.more-amazing {
    position: relative;
}

@media (min-width: 1400px) {
    .content-just-you .bigger-section {
        font-size: 1.2em;
    }
}

@media (max-width: 875px) {
    .content-just-you h2{
        font-size: 2em;
        width: 100%;
    }
    .content-just-you .bigger-section {
        width: 100%;
    }
    .content-just-you a {
        font-size: 1.3em;
    }
    .content-just-you h2 {
        font-size: 1.5em;
    }
    .hidden-text {
        display: block;
        opacity: 1;
        max-width: 100%;
    }
    .content-just-you {
        margin-top: -50px;
    }
}

.more-amazing .next-arrow {
    position: absolute;
    margin-right: 33%;
    right: 0;
    z-index: 99999;
    bottom: 60%;
    cursor: pointer;
    opacity: 1;
}

.more-amazing .prev-arrow {
    position: absolute;
    margin-left: 33%;
    left: 0;
    z-index: 99999;
    bottom: 60%;
    cursor: pointer;
    opacity: 1;
}

.more-amazing .arrow-nav img {
    height: 50px;
}

.more-stuff h2 {
    text-align: center;
    color: #121846;
    font-size: 2em;
}

.stuff-content {
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.stuff-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.stuff-content .image-icon-home {
    height: 200px;
    box-shadow: 0px 0px 33px 12px rgba(0, 0, 0, 0.14);
    padding: 0 60px;
    border-radius: 10px;
}

.stuff-content h3 {
    font-size: 1.2em;
}

.stuff-content p {
    font-size: 1em;
}

.next-icon a {
    background: #375e97;
    color: #fff;
    padding: 10px 60px;
    border-radius: 5px;
    font-size: 1.3em;
    text-transform: uppercase;
    margin-top: 30px;
}

.bf727eff10433c36c433e930e4b38cb101198045 {
    padding-top: 30px;
    padding-bottom: 60px;
    text-align: center;
}

.bf727eff10433c36c433e930e4b38cb101198045 h2 {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #121846;
    font-size: 1.5em;
    font-weight: 400;
}

.bf727eff10433c36c433e930e4b38cb101198045 p {
    max-width: 550px;
    color: #121846;
    margin: 0 auto;
    margin-top: 20px;
    line-height: 1.8;
    font-size: 1.1em;
    padding-bottom: 40px;
}

.bf727eff10433c36c433e930e4b38cb101198045 h3 {
    font-size: 1.1em;
}

.a8aaf0ea54b06d8165d3f37bd0428e87ee2bc7dcc {
    height: 175px;
    border-radius: 4px;
    background: #333;
    width: 90%;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .bf727eff10433c36c433e930e4b38cb101198045 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .stuff-content .image-icon-home {
        padding: 30px;
    }
}

@media only screen and (max-width: 640px) {
    .bf727eff10433c36c433e930e4b38cb101198045 .columns {
        margin-top: 20px;
    }

    .bf727eff10433c36c433e930e4b38cb101198045 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .bf727eff10433c36c433e930e4b38cb101198045 p {
        padding-bottom: 0px;
    }

    .more-amazing .next-arrow {
        position: absolute;
        margin-right: 10%;
        right: 0;
        z-index: 99999;
        bottom: 60%;
        cursor: pointer;
        opacity: 1;
    }
    
    .more-amazing .prev-arrow {
        position: absolute;
        margin-left: 10%;
        left: 0;
        z-index: 99999;
        bottom: 60%;
        cursor: pointer;
        opacity: 1;
    }
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 {
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 h2 {
    font-size: 3em;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 .columns {
    text-align: left;
    padding-top: 40px;
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 .columns h3 {
    font-size: 1.4em;
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 .columns p {
    line-height: 1.75;
    font-size: 1.1em;
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 .columns a {
    color: #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
    float: left;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 .columns a:hover {
    color: #ff6363;
    border-bottom: 1px solid #ff6363;
}

@media only screen and (max-width: 1024px) {
    .Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 h2 {
        margin-bottom: 0px;
    }

    .Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 .columns {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 640px) {
    .Q0c2cb78552e6f19d33a07a2eae6a51fa049dac17 {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .columns {
        padding-bottom: 20px;
    }
}

.Q70161798433653547bea713020ab25e824b74b74 {
    height: 300px;
}

.Q70161798433653547bea713020ab25e824b74b74 .table {
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
}

.Q70161798433653547bea713020ab25e824b74b74 .table h2 {
    font-size: 2.1em;
}

.Q70161798433653547bea713020ab25e824b74b74 .table p {
    font-size: 1.15em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.Q70161798433653547bea713020ab25e824b74b74 .table a {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #375E97;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 1.5em;
}

.Q70161798433653547bea713020ab25e824b74b74 .table a:hover {
    background: #1c1c1c;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .Q70161798433653547bea713020ab25e824b74b74 {
        height: 400px;
    }
}

@media only screen and (max-width: 640px) {
    .Q70161798433653547bea713020ab25e824b74b74 {
        background-size: cover !important;
    }
    .Q70161798433653547bea713020ab25e824b74b74 .table h2 {
        font-size: 1.5em;
    }

    .Q70161798433653547bea713020ab25e824b74b74 .table p {
        font-size: 1em;
    }

    .Q70161798433653547bea713020ab25e824b74b74 .table a {
        max-width: 200px;
        letter-spacing: 1px;
        font-size: 1em;
    }
}

.slick-slide .stuff-content {
    opacity: 0.4;
}

.slick-center .stuff-content {
    opacity: 1;
}

.more-amazing .slick-slide {
    margin: 0 27px;
}

.more-amazing .slick-list {
    margin: 0 -27px;
}

.Jc8c8b3d7e9b4b02ba08dbe2c {
    max-width: 100%;
}

.Jc8c8b3d7e9b4b02ba08dbe2c .table i {
    color: #121846;
    font-size: 30px;
}

.Jc8c8b3d7e9b4b02ba08dbe2c .table span {
    margin-top: 0;
    margin-bottom: 0;
}

.Jc8c8b3d7e9b4b02ba08dbe2c .table p {
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-size: 1em;
    color: #121846;
    text-align: center;
    line-height: 1.6;
}

.Jc8c8b3d7e9b4b02ba08dbe2c .table h2 {
    font-size: 1.4em;
}

.Jc8c8b3d7e9b4b02ba08dbe2c .table img {
    width: 90%;
    height: auto;
}

.B25b28fcd8ea681396244fa1c {
    max-width: 100%;
    padding-top: 20px;
}

.I098cc2fac11f88c8bfacd05a {
    margin-top: 70px;
}

.I098cc2fac11f88c8bfacd05a .slick-dots {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.I098cc2fac11f88c8bfacd05a .slick-dots li {
    display: inline-block;
    color: transparent;
    height: 10px;
    width: 10px;
    background: transparent;
    box-sizing: border-box;
    background: #b5b5b5;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 9999px;
    cursor: pointer;
}

.I098cc2fac11f88c8bfacd05a .slick-dots li.slick-active {
    background: #121846;
}

.I098cc2fac11f88c8bfacd05a h2,
.I098cc2fac11f88c8bfacd05a p {
    text-align: center;
}

.X6ddd65bcefc8c6417147a361 {
    height: 150px;
    width: 150px;
    border-radius: 99999px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.Tbe2764dda90d0ac8c337d377 {
    text-align: center;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.5em;
}

@media only screen and (max-width: 640px) {
    .Jc8c8b3d7e9b4b02ba08dbe2c .table {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .I098cc2fac11f88c8bfacd05a p {
        font-size: 1.25em !important;
    }

    .Tbe2764dda90d0ac8c337d377 {
        font-size: 1.25em;
    }
}


.X6b8986a6185328acaf0bf913619ed262d22d0699 {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-bottom: 40px;
    margin-top: -40px;
    z-index: 9999;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 .columns {
    position: relative;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 .float-left {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 h2 {
    font-family: sans-serif;
    color: #1f3367;
    width: 60%;
    font-size: 1.5em;
    margin: 0 auto;
}


.X6b8986a6185328acaf0bf913619ed262d22d0699 p {
    padding-top: 15px;
    font-family: sans-serif;
    width: 75%;
    line-height: 1.7;
    font-size: 1.2em;
    margin: 0 auto;
    max-width: 550px;
}

.email-border {
    background: none !important;
    color: #1f3367 !important;
    text-transform: none !important;
    display: initial !important;
    border: 0 !important;
    font-size: 1em !important;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 a {
    display: block;
    width: 210px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: sans-serif;
    color: #fff;
    border: 1px solid #fb6542;
    border-radius: 4px;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 30px;
    transition: all 0.2s ease-in-out;
    background: #fb6542;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 a:hover {
    background: #fb6542;
    color: #fff;
}

.floating-air {
    box-shadow: 0px 0px 23px 5px rgba(0, 0, 0, 0.10);
    margin-top: 40px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .float-left {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 640px) {
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .float-left {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .X6b8986a6185328acaf0bf913619ed262d22d0699 .float-left h2 {
        font-size: 1.5em;
    }

    .X6b8986a6185328acaf0bf913619ed262d22d0699 .float-left p {
        max-width: 600px;
        width: 80%;
        font-size: 1.1em;
    }

    .X6b8986a6185328acaf0bf913619ed262d22d0699 .float-left a {
        font-size: 1.1em;
        width: 180px;
    }
}

/** Team CSS **/
.take-charge {
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #ebebebeb;
}

.take-charge h2 {
    text-align: center;
    max-width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8em;
    color: #121846;
    margin-bottom: 80px;
    margin-top: 20px;
}

.take-charge p {
    text-align: left;
    color: #121846;
    font-size: 1.1em;
}

.team-details {
    padding-top: 60px;
    padding-bottom: 60px;
}

.team-details p {
    color: #121846;
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.team-details .blurb h3 {
    text-align: left;
    margin-bottom: 0;
    font-size: 2.3em;
    max-width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.team-details .blurb p {
    text-align: left;
    margin-bottom: 0;
    font-size: 1em;
    max-width: 100%;
}

.team-details .blurb a {
    color: #6b6b6b;
    font-size: 1.1em;
    text-align: left;
    float: left;
    margin-right: 20px;
}

.team-details .blurb .inline-social a {
    display: inline-block;;
    text-align: left;
}

.card-image {
    position: relative;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.card-image img {
    border-radius: 100%;
}

.card-image .img-top {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    border-radius: 100%;
}

.card-image:hover .img-top {
    display: inline;
}

.team-details-break {
    margin-top: 100px;
}

.details-join {
    text-align: center;
}

.details-join .columns {
    padding-top: 40px;
    padding-bottom: 80px;
}

.details-join p {
    font-size: 1.1em;
    max-width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.details-join h2 {
    color: #1f3367;
    font-size: 1.8em;
}

.details-join img {
    height: 100px;
}

.details-join a {
    color: #fff;
    background: #fb6542;
    text-transform: uppercase;
    display: block;
    height: 40px;
    line-height: 40px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px;
}

.promise-content {
    display: flex;
    max-width: 90%;
    margin: 0 auto;
}

.promise-content p {
    display: inline;
    width: 100%;
}

/** Features CSS **/
.no-hero-page {
    padding-top: 130px;
    padding-bottom: 40px;
}

.no-hero-page img {
    width: 50%;
    display: block;
    margin: 0 auto;
}

.features-banner p {
    max-width: none !important;
    font-size: 1.1em !important;
}

.features-list {
    padding-top: 80px;
    padding-bottom: 40px;
}

.features-list img {
    max-width: 60%;
    display: block;
    margin: 0 auto;
}

.features-list .height-tall {
    max-width: 50%;
}

.features-list .width-wide {
    max-width: 40%;
}

.feature-count {
    margin-top: 80px;
    margin-bottom: 80px;
}

.feature-count.first-count {
    margin-top: 0;
}

.feature-count.left-side {
    text-align: right;
}

.feature-content h2 {
    color: #076db3;
    font-size: 1.8em;
}

.feature-content p {
    font-size: 1.1em;
}

.height-difference {
    height: 280px;
}

.height-difference .table h2 {
    text-align: left;
    color: #1F3366;
    font-size: 2.1em;
}

.height-difference .table a {
    margin-left: 0;
    width: 200px;
    font-size: 1.2em;
    height: 35px;
    line-height: 35px;
}

@media (max-width: 600px) {
    .no-hero-page img {
        width: 100%;
    }
    .feature-content h2,
    .feature-content p {
        text-align: center;
    }
}

/** Knowledge CSS **/
.knowledge-base span {
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 30px;
}

.knowledge-base input {
    border-color: #1F3366;
    border-radius: 5px;
    max-width: 70%;
    display: block;
    margin: 0 auto;
    padding-left: 30px;
}

.knowledge-base .looking-for {
    position: relative;
}

.knowledge-base .looking-for img {
    position: absolute;
    left: 150px;
    top: 10px;
    width: 15px;
}

.topics-img img {
    display: block;
    margin: 0 auto;
    width: 110px;
    margin-top: 60px;
}

.first-topics {
    margin-top: 0 !important;
}

@media (max-width: 600px) {
    .first-topics {
        margin-top: 60px !important;
    }
    .knowledge-base .looking-for img {
        left: 50px;
    }
}

/** Knowledge Post CSS **/
.content-knowledge {
    padding-top: 80px;
    padding-bottom: 80px;
}
.title-left {
    padding-left: 20px;
}

.quick-posts {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
}
.quick-posts {
    padding: 20px;
}
.quick-posts ul li{
    display: block;
}
.quick-posts ul li a {
    color: #000;
    font-size: 1.3em;
    max-width: 50%;
}
.quick-posts ul li a.active {
    color: #fb6542;
    font-weight: bold;
}
.knowledge-post-content {
    padding-left: 20px;
}
.knowledge-post-content p {
    font-size: 1.1em;
}

.knowledge-post-content h2,
.title-left {
    font-family: 'Futura', sans-serif !important;
}

/** Blog CSS **/
.blog-hero {
    margin-top: 90px;
}

.blog-hero .slick-slide {
    height: 80vh !important;
}

.blog-hero .I707203d54f65e7d5f9562536 .slick-dots li.slick-active {
    background: #000946;
    border: 1px solid #000946;
}

.blog-hero .I707203d54f65e7d5f9562536 .slick-dots li {
    background: #fff;
}

.blog-hero .I707203d54f65e7d5f9562536 .slick-dots {
    width: 100%;
    text-align: center;
    margin-left: 0;
}

.blog-list {
    padding-top: 40px;
    padding-bottom: 40px;
}

.blog-image {
    height: 200px;
}

.blog-content {
    margin-bottom: 30px;
}

.blog-content h4 {
    margin-top: 8px;
    color: #fb6542;
    margin-bottom: 5px;
}

.blog-content p {
    font-weight: 500 !important;
    color: #073069;
    font-size: 1.1em;
}

.next-button a {
    background: #fb6542;
    text-transform: uppercase;
    color: #fff;
    float: right;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 10px;
}


.explore-topics {
    margin-bottom: 30px;
}

.explore-topics h2 {
    text-align: center;
    color: #073069;
}

.explore-content a {
    color: #073069;
}

.explore-content {
    color: #073069;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.21);
    text-align: center;
    border-radius: 5px;
    height: 70px;
}

.explore-content h3 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.social-media {
    text-align: center;
}

.social-media a {
    margin-right: 20px;
}

.social-media img {
    width: 45px;
}

/** Blog Post CSS **/
.blog-content-post {
    padding-top: 40px;
    padding-bottom: 40px;
}

.blog-title {
    margin-bottom: 20px;
}

.blog-title h2 {
    margin: 0;
}

.blog-title h4 {
    text-transform: uppercase;
    margin-top: 8px;
    color: #fb6542;
    margin-bottom: 5px;
}

.blog-text p {
    font-size: 1.1em;
}

.blog-related {
    padding-top: 40px;
    padding-bottom: 40px;
}

.blog-related h2 {
    margin-bottom: 10px;
}

.blog-related-image {
    height: 250px;
}

.blog-related-content {
    margin-bottom: 30px;
}

.blog-related-content h4 {
    margin-top: 8px;
    color: #fb6542;
    margin-bottom: 5px;
}

.blog-related-content p {
    font-weight: 500 !important;
    color: #073069;
    font-size: 1.1em;
}

.subscribe {
    width: 60%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

.subscribe input[type=email] {
    margin-right: 20px;
    border-radius: 5px;
    border: 1px solid #073069;
}

.subscribe input[type=submit] {
    background: #ff653e;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    padding: 0 30px;
    font-size: 1.2em;
    height: 35px;
    border-radius: 5px;
}

/** Demo CSS **/
.content-demo {
    padding-top: 80px;
    padding-bottom: 80px;
}

.content-demo p {
    font-size: 1.1em;
    text-align: center;
}

.form-demo {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 20px;
    margin-bottom: 80px;
    background: #f7f9fc;
    box-shadow: 0px 0px 35px 7px rgba(0, 0, 0, 0.08);
}

.form-demo textarea::placeholder,
.form-demo input::placeholder {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
}

.form-demo textarea {
    height: 200px;
}

.form-demo input {
    border-radius: 5px;
    border: 1px solid #073069;
}

.form-demo textarea {
    border-radius: 5px;
    border: 1px solid #073069;
}

.form-demo input[type="submit"] {
    float: right;
    margin-top: 15px;
    background: #ff653e;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    padding: 10px 30px;
    font-size: 1.2em;
}

/** Error CSS **/
.error_design {
    height: 100vh;
    margin-top: 40px;
}

.error_design img {
    width: 200px;
}

.error_design h1 {
    font-size: 5em;
    margin-bottom: 0;
    color: #062f69;
}

.error_design h2 {
    font-size: 1.4em;
    margin-top: 0;
    color: #062f69;
}

/** Sign Up CSS **/
.sign-up,
.sign-up-confirmed {
    padding-top: 80px;
    padding-bottom: 80px;
}

.sign-up .table,
.sign-up-confirmed .table {
    height: 100%;
}

.paragraph-section p {
    margin-bottom: 10px;
}
.paragraph-section {
    margin-top: 20px;
    margin-bottom: 20px;
}
.paragraph-section a {
    color: #fff !important;
    text-decoration: underline;
}

.name-plan {
    font-size: 2.2em;
    font-weight: lighter !important;
    font-family: 'Futura', sans-serif !important;
    margin-bottom: 0;
}

.sign-title h2,
.sign-title h4 {
    font-weight: 600;
    color: #071248;
    margin: 0;
}

.sign-title h2 {
    font-size: 3em;
}

.sign-title h4 {
    font-size: 1.8em;
}
.sign-title p {
    font-size: 1.2em;
}

.sign-title {
    margin-bottom: 40px;
}

.form-signup {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #f7f9fc;
    box-shadow: 0px 0px 35px 7px rgba(0, 0, 0, 0.08);
}

.form-signup textarea::placeholder,
.form-signup input::placeholder {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
}

.form-sliding p {
    line-height: 25px;
    padding: 0 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    color: #525252;
}

.form-signup input[type=submit] {
    margin-top: 15px;
    background: #EA8992;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 12px;
}

.form-sliding {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

form img {
    height: 50px;
}

.pick-list img {
    display: block;
    height: auto;
    margin-top: 6px !important;
}

.pick-list p {
    text-align: left;
    font-weight: 500;
    color: #525252;
    word-break: break-word;
}

.checkingbox {
    margin-bottom: 10px;
}

.pricing {
    font-weight: 800;
    font-size:1.1em;
    margin-bottom: 10px;
    font-family: 'Futura Medium', sans-serif !important;
}

.pricing span {
    font-weight: 600;
    font-size: 14px;
}

.form-about textarea::placeholder,
.form-about input::placeholder {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
    color: #071146;
    opacity: 0.7;
}

.form-about textarea {
    height: 200px;
}

.form-about input {
    border-radius: 5px;
    border: 1px solid #073069;
}

.form-about textarea {
    border-radius: 5px;
    border: 1px solid #073069;
}

.form-about select {
    display: block;
    border-radius: 5px;
    border: 1px solid #073069;
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif !important;
}

.form-about input[type="submit"] {
    float: right;
    margin-top: 15px;
    background: #ff653e;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    font-size: 1.2em;
    width: 150px;
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.custom-checkbox input[type="checkmark"] {
    width: 100%;
    height: 100%;
}

.form-data p {
    max-width: 60%;
    display: block;
    margin: 0 auto;
}

.custom-checkbox label {
    font-family: 'Montserrat', sans-serif !important;
}

.next-data {
    display: block;
    margin: 0 auto;
    float: none !important;
}

.form-confirm h3 {
    font-size: 1em;
}

.form-confirm .nextline {
    font-size: 1.4em;
    font-weight: 600;
}

.form-confirm .disclaimer {
    height: 250px;
    overflow-y: scroll;
    background: #ffffff;
    border-radius: 5px;
    color: black;
    font-weight: 500;
    padding: 10px 20px 10px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 70%;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: left;
}

.lets-go {
    width: 30% !important;
    margin-right: 0 !important;
    ;
}

.sign-up-confirmed img {
    width: 100px;
}

.sign-up-confirmed .sign-title h2 {
    font-size: 2em;
}

.sign-up-confirmed a {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 15px;
    background: #ff653e;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    font-size: 1.2em;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 7px;
}

/** Sign In CSS **/
.sign-in {
    padding-top: 80px;
    padding-bottom: 80px;
}

.card-sign {
    border-radius: 10px;
    box-shadow: 0px 0px 35px 7px rgba(0, 0, 0, 0.08);
}

@media (min-width: 300px) {
    .card-sign .columns {
        padding: 0 !important;
    }
}

.background-card {
    background: transparent;
}

.background-card .table,
.sign-form .table {
    height: 500px;
    min-height: 500px;
    overflow: hidden;
}

.background-card img {
    width: 400px;
    display: block;
    margin: 40px auto;
}


.background-card h2 {
    color: #415053;
    font-size: 30px;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}

.first-time {
    margin-top: 20px;
    font-size: 1.2em;
}

.first-time p {
    margin: 0;
}

.first-time p a {
    font-weight: 700;
    color: #415053;
}

.first-time p a:hover {
    border-bottom: 2px solid #415053;
}

.sign-form img {
    width: 200px;
}

.sign-form p {
    text-align: left;
    font-weight: 500;
    color: #071146;
}

.sign-in-action label {
    font-family: 'Futura', sans-serif !important;
    color: #071146;
    position: relative;
}

.sign-in-action img {
    width: 15px;
    height: auto;
    position: absolute;
    z-index: 9999;
    left: 10px;
    top: 8px;
}

.sign-in-action .email-icon {
    top: 12px;
    width: 18px;
    left: 8px;
}

.sign-in-action input {
    /* border: 1px solid #071146; */
    border: 1px solid #818181;
    border-radius: 25px;
    padding-left: 20px;
    margin: 5px 0;
}

.sign-in-action input:focus {
    border: 1px solid #071146;
}

.sign-in-action input::placeholder {
    color: #071146;
    opacity: 0.4;
    font-weight: 500;
}

.sign-in-action input[type=submit] {
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* background: #0266B2; */
    background-color: #FFBA4B    ;
    color: #013D82;
    font-weight: bold;
    border: 0;
    font-size: 1em;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0;
    margin-top: 30px;
    letter-spacing: 1px;
}
.remember-me {
    float: left;
}
.forgot-password {
    float: right;
}
.forgot-password a {
    color: #071146;
    font-family: 'Futura', sans-serif !important;
}

/** Pricing CSS **/
.pricing-page span {
    text-align: left;
    font-size: 2.3em;  
}
.pricing-page p {
    font-size: 1.5em;
    margin-top: 0;
}
.pricing-page img {
    margin: 0 auto;
    display: block;
    height: 100%;
}

.pricing-page {
    z-index: 99;
}
.text-base {
    color: #525252;
    font-size: 0.8em;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-table {
    box-shadow: 0px 0px 23px 5px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    padding: 20px;
    z-index: 999;
    position: relative;
    background: #fff;
}

.pricing-table img {
    display: block;
    margin: auto auto;
}

.pricing-table .name-plan,
.pricing-table .pricing {
    text-align: center;
}

.pricing-table .select-plan {
    margin-top: 15px;
    background: #ff653e;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 1.2em;
    margin-bottom: 5px;
    padding-right: 30px;
}
.saving-image img{
    position: absolute; right: 30%; top: -30px; width: 80px;
}

.bigger-rest {
    margin-top: -40px; 
    height: 860px; 
    position: relative;
}

@media (max-width: 1024px) {
    .bigger-rest {
        height: auto;
    }
}
@media (max-width: 825px) {
    .pricing-page img {
        width: 150px;
        height: auto;
        margin-top: 15px;
    }
    .bigger-rest {
        height: auto;
    }
    .pricing-table {
        margin-top: 20px;
    }
    .form-signup {
        padding-top: 0 !important;
    }
    .saving-image img {
        display: none !important;
    }

}

@media (max-width: 600px) {
    .pricing-page img {
        width: auto !important;
    }
    .saving-image img{
        display: none !important;
    }
    .two-small {
        margin-top: 0 !important;
    }
    .form-signup {
        padding-top: 0 !important;
    }
    .pricing-page img {
        margin-top: 60px;
    }
    .bigger-rest {
        height: auto;
    }
}


.pricing-banner {
    margin-top: -50px;
    min-height: 400px;
}

.pricing-banner .S5e1c403deb09dbc5c0005b0ac2a012c98a0ef997 {
    margin-top: -50px;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: transparent !important;
}

.slick-dots:focus, 
.slick-dots li:focus, 
.slick-dots li button:focus {
    outline: 0 !important;
}

span.registration-error-message {
    color: red;
    text-align: left;
    display: none;
    margin-top: -10px !important;
    margin-bottom: 10px !important;
}

span.email-error-message {
    color: red;
    text-align: left;
    display: none;
    margin-top: -10px !important;
    margin-bottom: 10px !important;
}

.selecting-plan {
    position: relative;
}
.selecting-plan img {
    position: absolute;
    right: 40px;
    top: 10px;
    width: 20px;
    height: auto;
}

#bigger-number {
    font-size: 2.2em;
}

@media (max-width: 1024px) {
    .selecting-plan img {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .selecting-plan img {
        right: 40px;
    }
}

img.popular {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: auto;
}

.super-saver {
    padding-top: 60px;
    padding-bottom: 0;
}
.super-saver p {
    text-align: center;
    font-size: 2em;
}

.features-cut {
    background: #f8f8f8;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec h2 {
    font-family: sans-serif;
    color: #000;
    width: 100%;
    font-size: 1.8em;
    margin: 0 auto;
    text-align: center;
}


.X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec p {
    padding-top: 15px;
    font-family: sans-serif;
    width: 100%;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

.features-only-sec img {
    width: 80%;
    margin-left: auto;
    display: block;
}

.features-only-sec {
    position: relative;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec a.on-features-button {
    display: block;
    width: 210px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: sans-serif;
    color: #fff;
    border: 1px solid #006eb1;
    border-radius: 4px;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 30px;
    transition: all 0.2s ease-in-out;
    background: #006eb1;
    margin-top: 20px;
    left: 40%;
    position: absolute;
}

.testing-button {
    display: block;
    width: 300px !important;
    height: 60px;
    text-align: center;
    padding-top: 20px !important;
    padding-bottom: 10px;
    font-family: sans-serif;
    color: #fff;
    border: 1px solid #006eb1;
    border-radius: 4px;
    font-size: 32px !important; 
    text-transform: uppercase;
    margin: 0 auto;
    margin-top: 10px !important;
    transition: all 0.2s ease-in-out;
    background: #006eb1;
    margin-top: 20px;
    left: 37%;
    position: absolute;
}

.X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec a.on-features-button:hover {
    background: #006eb1;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 825px) {
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec a.on-features-button {
        left: 31%;
        margin-top: 20px;
    }

    .testing-button {
        left: 10px !important;
        margin-top: 20px;
    }
    .features-only-sec img {
        margin-right: auto;
        width: 200px;
    }
}

@media only screen and (max-width: 380px) {
    .testing-button {
        left: 40px !important;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 325px) {
    .testing-button {
        left: 10px !important;
        margin-top: 20px;
    }
}


@media only screen and (max-width: 640px) {
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec h2 {
        font-size: 1.5em;
    }

    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec p {
        max-width: 600px;
        width: 80%;
        font-size: 1.1em;
    }

    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec a {
        font-size: 1.1em;
        width: 180px;
    }
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec a.on-features-button {
        position: static;
    }
    .features-only-sec img {
        margin-right: auto;
        width: auto !important;
    }
    .X6b8986a6185328acaf0bf913619ed262d22d0699 .features-only-sec p {
        max-width: 100%;
        width: 100%;
    }
    .needed-text a {
        position: static !important;
        display: block !important;
        margin: 0 auto !important;
    }
}


.faq-design {
    margin-top: 100px;
    padding-bottom: 20px;
    background: #f8f8f8;
}
.faq-design .title-faq h2{
    color: #006eb1;
    text-transform: uppercase;
    margin-top: -30px;
}
.faq-content-here {
    border-top: 3px solid #006eb1;
    padding-top: 20px;
}

.faq-content-here h4 {
    color: #000;
}
.faq-content-here p {
    color: #777;
    margin-bottom: 20px;
}

.top-more {
    margin-top: -100px;
}

.features-page .slick-slide {
    height: 80vh !important;
}

.pricing-pages .slick-slide {
    height: 80vh;
}

.pricing-page .slick-slide {
    height: 80vh !important;
}

@media (max-width: 825px) {
    .pricing-page .slick-slide,
    .features-page .slick-slide {
        height: 100vh !important;
    }
}
@media (max-width: 600px) {
    .features-page .slick-slide,
    .pricing-page .slick-slide {
        height: 80vh !important;
    }
    .pricing-pages .slick-slide {
        height: 400px;
    }
}

/* Style the tab */
.tab {
  overflow: hidden;
  display: flex;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #fff;
  font-family: 'Futura' !important;
  font-size: 1.5em;
}
.tab button.active {
  font-family: 'Futura Medium' !important;
  font-weight: 700;
}

.tab button span {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-top: 15px;
}

#border-bottom {
    display: none;
}
.tablinks img{
    padding-bottom: 15px;
}

.tab button.active #border-bottom{
    border-bottom: 2px solid #ff765b;
    display: block;
}

.tab button:hover #border-bottom {
    border-bottom: 2px solid #ff765b;
    display: block;
}

/* Style the tab content */
.tabcontent {
  display: block;
  padding: 6px 12px;
  border-top: none;
  padding-top: 40px;
  padding-bottom: 40px;
}

.pricing-plans {
    padding-bottom: 40px;
    margin-top: -115px;
}

.image-tab img{
    display: block;
    margin: 0 auto;
    width: 200px;
}

.tablinks img {
    height: 80px;;
}

.feature-text {
    text-align: left;
    font-size: 1.1em;
    color: #525252;
}

.feature-slick .slick-dots {
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}
.feature-slick .slick-dots li{
    display: inline-block;
    color: transparent;
    height: 10px;
    width: 10px;
    border: 1px solid #525252;
    margin-right: 10px;
    border-radius: 100%;
}
.feature-slick .slick-dots li:last-child {
    margin-right: 0;
}
.feature-slick .slick-dots li.slick-active {
    background: #ff765b;
    border-color: #ff765b;
}

.features-block img {
    width: 70%;
    display: block;
    margin: auto;
}
.features-block h3 {
    font-size: 1.5em;
}
.features-block p {
    font-size: 1.2em;
}

@media (max-width: 812px) {
    .pricing-plans {
        margin-top: 0px;
    }
    .tab {
        flex-wrap: wrap;
    }
    .tab button {
        width: 50%;
    }
    .feature-text {
        padding-top: 15px;
    }
}
@media (max-width: 812px) {
    .pricing-plans {
        margin-top: -185px;
    }
}

.features-set {
    padding-top: 10px;
    padding-bottom: 10px;
}
.features-block {
    padding-top: 30px;
    padding-bottom: 30px;
}

.features-needed {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #006eb1;
}

.needed-text {
    color: #fff;
    text-align: center;
    position: relative;
}

.needed-text p {
    font-size: 1.2em;
}

.needed-text h2 {
    font-size: 2.2em;
}

.needed-text a {
    background: #ff6349;
    display: block;
    width: 280px;
    text-transform: uppercase;
    color: #fff;
    height: 40px;
    line-height: 40px;
    letter-spacing: 2px;
    font-size: 24px;
    border-radius: 5px;
    position: absolute;
    bottom: -75px;
    left: 37%;
    z-index: 99999;
}

.features-video {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}
.features-video img {
    width: 100%;
}
.features-video video {
    width: 80%;
    display: block;
    margin: 0 auto;
}
.features-video p {
    padding-top: 40px;
    font-size: 30px;
}

.box-shadow-card {
    width: 70%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    border-radius: 5px;
}
.box-shadow-card span {
    font-weight: 800 !important;
}

#company_email_container,
#company_username_container,
#notifications_email_container {
    position: relative;
}
.icon-galance {
    position: absolute;
    right: 20px;
    top: 9px;
    z-index: 999999999;
}
span.span-galance {
    height: 15px;
    line-height: 15px;
    width: 15px;
    border-radius: 100%;
    border:1px solid #d8d8d8;
    display: block;
    font-size: 11px;
    color: #d8d8d8;
}
p.icon-details {
    display: none;
    position: absolute;
    width: 200px;
    background: #fff;
    z-index: 999999999;
    padding: 8px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.13);
    border-radius: 10px;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-left: 20px;
    margin-top: -10px;
  }

/** New Sign up Design **/
.flex-design {
    display: flex;
    width: 100%;
}
.new-signup {
    margin-top: 100px;
    box-shadow: 0px 0px 35px 7px rgba(0, 0, 0, 0.08);
}
.content-new-signup {
    width: 100%;
    padding: 50px 40px;
    height: 100vh;
}
.content-new-signup.lets-confirm-design {
    height: auto !important;
}
.image-background-signup {
    width: 50%;
}

.contentsignup-inside {
    margin-bottom: 20px;
}
.contentsignup-inside h2 {
    text-align: center;
    margin-bottom: 0;
    color: #0C508F;
}
.contentsignup-inside h3 {
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    color: #ff6349;
    font-family: 'Futura' !important;
    font-weight: 400;
}
.contentsignup-inside p {
    text-align: center;
}

.content-step.active {
    background: #dfedf5;
}
.content-step.active p {
    color: #006eb1;
}

.content-step {
    padding: 10px;
    border-radius: 5px;
}

.content-step img{
    display: block;  
    height: 20px;
    margin: 0 auto; 
    margin-bottom: 10px;
}
.content-step p {
    color: #a8a8a8;
    text-align: center;
}

.display-flex {
    display: flex;
}

.form-about .new-design input[type="submit"] {
    float: left;
    height: 40px;
    background: #f38893;
    border-radius: 0;
    font-weight: normal;
}


.next-about {
    padding-right: 30px;
}
.back-about {
    margin-right: 20px;
    padding-left: 30px;
}
.new-inputs {
    position: relative;
    width: 150px;
    float: left;
    margin-right: 20px;
}
.new-inputs img {
    right: 10px;
    top: 20px;
    position: absolute;
    height: 30px;
}
.opacity-disable{
    opacity: 0.5;
}
.input-back img {
    left: 10px;
}

.inputs-here {
    margin-top: 10px;
}

.form-signup-complete h2{
    text-align: left;
    font-size: 1.2em;
    font-style: italic;
}

.content-thankyou {
    text-align: center;
    position: absolute;
    bottom: 60px;
    width: 100%;
    margin-left: -15px;
}
.content-thankyou h2 {
    color: #ff6346;
}
.content-thankyou p {
    color: #525252;
}
.content-thankyou a {
    background: #f38893;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 15px;
}

/** Template Page **/
.case-study-template {
    padding-top: 70px;
    padding-bottom: 70px;
}

.image-inside {
    max-width: 200px;
}

.case-block p {
    font-size: 1.2em;
}
.case-block ul {
    margin-left: 40px;
}
.case-block ul li {
    font-size: 1.2em;
}

.case-block:first-child {
    margin-bottom: 100px;
}

.case-block .table-cell {
    text-align: left;
}

.case-block.white-text{
    color: #fff;
}

.case-block a {
    background: #EA8992;
    padding: 10px 20px;
    color: #fff;
    text-transform: none;
    font-size: 1.2em;
    font-weight: bold;
    border: 1px solid #EA8992;
    margin-top: 20px;
    font-family: 'Futura', sans-serif !important;
}

@media (max-width: 768px) {
    .content-new-signup {
        height: auto !important;
    }

    .contentsignup-inside .display-flex {
        flex-wrap: wrap;
    }

    .image-background-signup {
        display: none;
    }
}

@media (max-width: 450px) {
    .case-study-template {
        background: transparent !important;
        padding-bottom: 0;
    }
    .case-block.white-text {
        background: #32abe1 !important;
        padding-top: 40px;
    }
    .white-text {
        text-align: center !important;
    }
    .case-block:first-child {
        margin-bottom: 40px;
    }
}

/* The Modal (background) */
.modal-template {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content */
.modal-template .modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 80%;
    position: relative;
    border-radius: 5px;
}

/* The Close Button */
.modal-template .close {
    color: #aaaaaa;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
}

.modal-template .close:hover,
.modal-template .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-template .table-cell {
    text-align: left;
}

.form-group-two {
    display: flex;
}
.form-group-section {
    width: 100%;
}
.form-group-section:first-child {
    margin-right: 10px;
}
.form-group-section:last-child {
    margin-left: 10px;
}

/* .background-template-height {
    height: 500px;
} */

.content-template-wise {
    padding: 20px;
}

.modal-template-form input {
    border-radius: 3px;
}

.modal-template-form button {
    background: #FE6247;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}

.modal-template-form h5 {
    color: #525252;
}

.content-template-wise h2 {
    font-size: 2em;
    font-family: 'Futura', sans-serif !important;
    font-weight: lighter;
    max-width: 80%;
    color: #FE6247;
}

.template-buynow img {
    width: 100%;
}

.template-thankyou {
    display: none;
    padding: 20px;
}
.template-thankyou .image-payment {
    height: 450px;
    display: block;
    margin-left: auto;
}

.content-thankyou-template {
    padding: 20px;
}
.content-thankyou-template h2 {
    color: #FE6247;
    font-size: 4em;
    margin-bottom: 50px;
}
.content-thankyou-template p {
    font-size: 1.2em;
}
.content-thankyou-template button {
    background: #FE6247;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
}

#myBtn {
    background: #ea8992;
    border:transparent; 
    border-radius: 0;
}

#affordable-pricing {
    text-align: left; 
    font-weight: lighter;
}
#affordable-pricing-text {
    text-align: left; 
    width: auto; 
    line-height: 1.2;
}

@media (max-width: 835px) {

    #affordable-pricing,
    #affordable-pricing-text {
        text-align: center;
    }

    .white-text h2 {
        text-align: center;
    }
    .white-text p {
        text-align: center;
    }
    .white-text a {
        display: block;
        margin: 0 auto;
        width: 150px;
        text-align: center;
    }

    #myBtn {
        position: relative;
        left: 0 !important;
    }
    .form-group-two {
        flex-wrap: wrap;
    }
    .form-group-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .background-template-height {
        display: none;
    }
    .content-template-wise h2 {
        max-width: 100%;
    }
    .template-content .columns {
        padding-bottom: 0;
    }
    .content-thankyou-template h2 {
        font-size: 2em;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .content-thankyou-template {
        padding: 0;
    }

    span#home-page-text-template {
        margin-top: 0px;
        text-align: center !important;
        font-size: 2.4em;
    }

    .template-hero-mobile {
        width: 60%;
        right: 20px;
    }
}


/* new redesign design css */

.color-yellow {
    color: #FFBA4B ;
}

.sign-in .image-logo-top {
    width:600px;
    height: auto;
    display: block;
    margin: 10px auto 20px auto;
}

.sign-form h2 {
    margin-bottom: 30px;
    color: #013D82;
    letter-spacing: 1px;
    font-size: 25px;
}

.sign-form .new-content {
    margin: 100px auto;
}

.sign-in-action label {
    margin: 12px 0;
}

@media(max-width:770px) {
    .sign-in {
        padding-top:0;
        padding-bottom:0;
    }
}

/* end new redesign design css */