﻿ol, ul, li {
    margin: 0;
    padding: 0;
}

*:focus,
button:focus {
    outline: none;
}

a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

h1, .h1 {
    margin: 0;
    padding: 0;
}

h2, .h2 {
    font-size: 28px;
}

@media (min-width: 768px) {
    h2, .h2 {
        font-size: 54px;
    }
}

h3, .h3 {
    font-size: 36px;
}

h4, .h4 {
    font-size: 16px;
}

@media (min-width: 768px) {
    h4, .h4 {
        font-size: 28px;
    }
}

h5, .h5 {
    font-size: 22px;
    font-weight: 700;
    color: rgb(0,0,0);
}

@media (min-width: 768px) {
    h5, .h5 {
        font-size: 24px;
    }
}

h6, .h6 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(0,0,0);
}

p {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
}

    body.homepage {
        background-image: url("../images/background-image.png");
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-position: center;
        /*object-fit: cover;
	height: 100vh;*/
    }

.login-header {
    display: block;
    float: left;
    width: 100%;
    padding-top: 20px;
    background-color: transparent;
    position: relative;
}

.logo-container {
    display: block;
    width: 150px;
    height: 150px;
    margin: 65px auto;
}

@media (min-width: 768px) {
    .logo-container {
        float: left;
        margin: 0 0 0 25px;
    }
}

.logo-container a {
    display: inline-block;
    width: 150px;
    height: 150px;
    background-image: url("../images/logo.png");
    background-repeat: no-repeat;
    background-size: 150px 150px;
    background-position: center;
}

.hidden {
    visibility: hidden;
}

.login-container {
    width: 100%;
    display: block;
    float: left;
    position: absolute;
    top: 350px;
}

@media (min-width: 768px) {
    .login-container {
        width: auto;
        float: right;
        padding-right: 28px;
        position: relative;
        top: auto;
    }
}

.login-button-wrapper {
    width: 100%;
    height: 40px; /*60px;*/
    float: left;
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .login-button-wrapper {
        display: inline-block;
        width: 120px;
        margin-right: 15px;
        margin-bottom: 0;
    }
}

.login-button-wrapper a {
    display: block;
    text-decoration: none;
    width: 190px;
    height: 40px;
    border-radius: 30px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 30px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .login-button-wrapper a {
        display: inline-block;
        width: 120px;
    }
}

.start-application-wrapper {
    width: 100%;
    height: 40px;
    float: left;
    overflow: hidden;
    display: block;
    /*margin-bottom: 20px;*/
}

@media (min-width: 768px) {
    .start-application-wrapper {
        display: inline-block;
        width: 190px;
        margin-bottom: 0;
    }
}

.homepage .start-application-wrapper {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .homepage .start-application-wrapper {
        margin-bottom: 0;
    }
}

.start-application-wrapper a {
    display: block;
    text-decoration: none;
    width: 190px;
    height: 40px;
    border-radius: 30px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: rgb(0,0,0);
    border-radius: 30px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .start-application-wrapper a {
        display: inline-block;
        background-color: rgb(108,190,70);
    }
}

.homepage .start-application-wrapper a {
    background-color: rgb(108,190,70);
}

/* modal */
.modal-backdrop.show {
    opacity: 0.25;
}

body.homepage .modal-backdrop.show {
    opacity: 1;
    background-color: rgb(255,255,255);
}

@media (min-width: 576px) {
    body.homepage .modal-backdrop.show {
        opacity: 0;
        background-color: rgb(0,0,0);
    }
}

body .modal-backdrop.show {
    opacity: 0.25;
    background-color: rgb(0,0,0);
}

@media (min-width: 576px) {
    body .modal-backdrop.show {
        opacity: 0.25;
        background-color: rgb(0,0,0);
    }
}

.modal-dialog {
}

@media (min-width: 576px) {
    .modal-dialog {
    }
}

#loginModal .modal-dialog,
#signUpModal .modal-dialog {
    width: 100%;
    margin: 0;
    min-height: 100%;
}

@media (min-width: 576px) {
    #loginModal .modal-dialog,
    #signUpModal .modal-dialog {
        max-width: 375px;
        width: auto;
        margin: 1.75rem auto;
        height: auto;
        min-height: auto;
    }
}

@media (min-width: 768px) {
    #loginModal .modal-dialog,
    #signUpModal .modal-dialog {
        left: auto;
    }
}

.modal-dialog-centered {
    align-items: flex-start;
    background-color: #ffffff;
}

@media (min-width: 576px) {
    .modal-dialog-centered {
        align-items: center;
        background-color: transparent;
    }
}

.modal-content {
    border: none;
    border-radius: 10px;
    padding: 46px 15px 30px 15px;
}

@media (min-width: 576px) {
    .modal-content {
        padding: 41px 25px 50px 25px;
    }
}

#loginModal .modal-content,
#signUpModal .modal-content {
    border: none;
    border-radius: 0;
    padding: 46px 15px;
    height: 100%;
}

@media (min-width: 576px) {
    #loginModal .modal-content,
    #signUpModal .modal-content {
        padding: 41px 25px 50px 25px;
        height: auto;
        border-radius: 20px;
    }
}

.modal-header {
    padding: 0;
    border-bottom: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 23px;
    position: relative;
    display: block;
    float: left;
}

@media (min-width: 576px) {
    .modal-header {
        margin-bottom: 24px;
    }
}

#loginModal .modal-header {
    margin-bottom: 61px;
}

@media (min-width: 576px) {
    #loginModal .modal-header {
        margin-bottom: 24px;
    }
}

#pricingPackagesModal .modal-header {
    padding-top: 150px;
    background-image: url("../images/pricing-modal.png");
    background-repeat: no-repeat;
    background-size: 128px 128px;
    background-position: center top;
}

@media (min-width: 576px) {
    #pricingPackagesModal .modal-header {
        padding-top: 200px;
        background-size: 160px 160px;
        background-position: center 20px;
    }
}

.modal-header .close {
    opacity: 1;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -30px;
    right: 0;
    background-image: url("../images/close-grey.png");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
}

@media (min-width: 576px) {
    .modal-header .close {
        top: -25px;
        right: -10px;
    }
}

#loginModal .modal-header .close,
#signUpModal .modal-header .close {
    opacity: 1;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -30px;
    right: 0;
    background-image: url("../images/close.png");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center;
}

@media (min-width: 576px) {
    #loginModal .modal-header .close,
    #signUpModal .modal-header .close {
        display: none;
    }
}

.modal-intro-text {
    width: 100%;
    float: left;
    margin-top: 14px;
    font-size: 14px;
    color: rgb(0,0,0);
    font-weight: 400;
}

@media (min-width: 576px) {
    .modal-intro-text {
        margin-top: 16px;
        font-size: 16px;
    }
}

.modal-body {
    padding: 0;
    flex: inherit;
}

#pricingPackagesModal .modal-body h4 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 13px;
}

#pricingPackagesModal .modal-body p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 30px;
}

#pricingPackagesModal .green-link-wrapper {
    text-align: center;
}

.modal-note {
    font-size: 12px;
    font-weight: 400;
    color: rgb(0,0,0);
    text-align: center;
    margin-top: 21px;
}

@media (min-width: 576px) {
    .modal-note {
        margin-top: 34px;
    }
}

.form-wrapper {
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}

@media (min-width: 576px) {
    .form-group {
        margin-bottom: 12px;
    }
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
select {
    width: 100%;
    height: 54px;
    background-color: #ffffff;
    font-size: 14px;
    border: 1px solid rgb(221,221,221);
    border-radius: 4px;
    padding-left: 15px;
    padding-right: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: rgb(0,0,0);
}

@media (min-width: 576px) {
    input[type=text],
    input[type=password],
    input[type=email],
    input[type=number],
    input[type=tel],
    select {
        height: 60px;
        font-size: 16px;
    }
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
select:focus,
input[type=text]:not(:focus):valid,
input[type=password]:not(:focus):valid,
input[type=email]:not(:focus):valid,
input[type=number]:not(:focus):valid,
input[type=tel]:not(:focus):valid {
    background-color: #ffffff;
    border: 1px solid rgb(221,221,221);
    padding-top: 20px;
}

input[type=text]:not(:focus):invalid,
input[type=password]:not(:focus):invalid,
input[type=email]:not(:focus):invalid,
input[type=number]:not(:focus):invalid,
input[type=tel]:not(:focus):invalid {
    background-color: #ffffff;
    border: 1px solid rgb(221,221,221);
    padding-top: 20px;
}

.floating-label {
    position: absolute;
    left: 15px;
    top: 17px;
    margin-bottom: 0;
    color: rgb(170,170,170);
    font-weight: 400;
    opacity: 1;
    font-size: 14px;
    transition: 0.2s ease all;
    pointer-events: none;
}

@media (min-width: 576px) {
    .floating-label {
        font-size: 16px;
        top: 19px;
    }
}

input:focus ~ .floating-label /*,
input:not(:focus):valid ~ .floating-label,
input:invalid ~ .floating-label*/,
input.small ~ .floating-label {
    top: 10px;
    font-size: 12px;
}

.correct {
    display: inline-block;
    width: 15px;
    height: 54px;
    position: absolute;
    right: 15px;
    background-image: url("../images/correct.png");
    background-repeat: no-repeat;
    background-size: 15px 11px;
    background-position: center;
    visibility: hidden;
}

@media (min-width: 576px) {
    .correct {
        height: 60px;
    }
}

.incorrect {
    display: inline-block;
    width: 13px;
    height: 54px;
    position: absolute;
    right: 15px;
    background-image: url("../images/incorrect.png");
    background-repeat: no-repeat;
    background-size: 13px 13px;
    background-position: center;
    visibility: hidden;
}

@media (min-width: 576px) {
    .incorrect {
        height: 60px;
    }
}

.forgot-pass,
.forgot-pass:hover,
.forgot-pass:focus,
.forgot-pass:visited {
    font-weight: 700;
    font-size: 14px;
    color: rgb(108,190,70);
    display: inline-block;
    margin-bottom: 3px;
}

@media (min-width: 576px) {
    .forgot-pass,
    .forgot-pass:hover,
    .forgot-pass:focus,
    .forgot-pass:visited {
        font-size: 16px;
    }
}

input[type=submit],
input[type=submit]:hover {
    width: 146px;
    height: 48px;
    background-color: rgb(108,190,70);
    color: #ffffff;
    font-size: 14px;
    border: none;
    font-weight: 600;
    border-radius: 28px;
    margin-bottom: 5px;
    margin-top: 12px;
}

@media (min-width: 576px) {
    input[type=submit],
    input[type=submit]:hover {
        width: 163px;
        height: 54px;
        font-size: 16px;
        border-radius: 31px;
    }
}

.no-account {
    margin-bottom: 31px;
    font-size: 12px;
    font-weight: 400;
    color: rgb(0,0,0);
}

@media (min-width: 576px) {
    .no-account {
        font-size: 14px;
    }
}

.green-link,
.green-link:hover,
.green-link:focus,
.green-link:visited {
    font-size: 12px;
    font-weight: 600;
    color: rgb(108,190,70);
}

@media (min-width: 576px) {
    .green-link,
    .green-link:hover,
    .green-link:focus,
    .green-link:visited {
        font-size: 14px;
    }
}

.modal-footer {
    padding: 0;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
}

@media (min-width: 576px) {
    .modal-footer {
        text-align: center;
    }
}

.modal-footer-text {
    display: block;
    margin-top: 12px;
    margin-bottom: 22px;
    font-size: 12px;
    color: rgb(0,0,0);
    font-weight: 400;
}

@media (min-width: 576px) {
    .modal-footer-text {
        text-align: center;
        font-size: 14px;
        margin-bottom: 27px;
    }
}

.modal-footer-text a,
.modal-footer-text a:hover {
    font-weight: 600;
    color: rgb(0,0,0);
}

.modal-footer p {
    font-size: 14px;
    font-weight: 600;
    color: rgb(0,0,0);
}

@media (min-width: 576px) {
    .modal-footer p {
        margin: 0 auto;
        font-size: 16px;
    }
}

.modal-footer p .green-link {
    font-size: 14px;
}

@media (min-width: 576px) {
    .modal-footer p .green-link {
        font-size: 16px;
    }
}

/* header */
.header-section {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
}

.header-container {
    display: block;
    width: 100%;
    float: left;
    height: 110px;
    background-color: rgb(255,255,255);
    padding: 13px 17px;
    border-bottom: 2px solid rgb(221,221,221);
    position: relative;
}

@media (min-width: 524px) {
    .header-container {
        height: 62px;
    }
}

@media (min-width: 768px) {
    .header-container {
        height: 74px;
        padding: 17px 29px 17px 29px;
    }
}

.navigation-wrapper {
    width: auto;
    float: left;
}

.menu-icon {
    display: inline-block;
    width: 19px;
    height: 36px;
    cursor: pointer;
    background-image: url("../images/menu-icon.png");
    background-repeat: no-repeat;
    background-size: 19px 13px;
    background-position: center;
}

@media (min-width: 768px) {
    .menu-icon {
        width: 60px;
        height: 40px;
        background-size: 30px 20px;
    }
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: -1px;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 110px;
}

@media (min-width: 576px) {
    .sidenav {
        border-right: 1px solid rgb(221,221,221);
    }
}

@media (min-width: 768px) {
    .sidenav {
        height: 450px;
        padding-top: 100px;
        border-bottom: 1px solid rgb(221,221,221);
    }
}

.sidenav a,
.sidenav a:hover,
.sidenav a:focus,
.sidenav a:visited {
    padding: 16px 18px 16px 18px;
    text-decoration: none;
    font-size: 16px;
    color: rgb(0,0,0);
    font-weight: 400;
    display: block;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .sidenav a,
    .sidenav a:hover,
    .sidenav a:focus,
    .sidenav a:visited {
        padding: 15px 30px 15px 13px;
    }
}

.sidenav .close-menu,
.sidenav .close-menu:hover,
.sidenav .close-menu:focus,
.sidenav .close-menu:visited {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 18px;
    right: 18px;
    background-image: url("../images/close-menu.png");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
    padding: 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .sidenav .close-menu,
    .sidenav .close-menu:hover,
    .sidenav .close-menu:focus,
    .sidenav .close-menu:visited {
        top: 13px;
        right: 11px;
    }
}

.logo-menu {
    display: inline-block;
    width: 75px;
    height: 75px;
    position: absolute;
    left: 18px;
    top: 18px;
    background-image: url("../images/menu-logo.png");
    background-repeat: no-repeat;
    background-size: 75px 75px;
    background-position: center;
}

@media (min-width: 768px) {
    .logo-menu {
        top: 13px;
        left: 13px;
    }
}

.logo-wrapper {
    display: block;
    width: 50px; /*40px;*/
    height: 50px; /*40px;*/
    background-image: url("../images/menu-logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 6px; /*10px;*/
    left: 38px;
    transition: 0.2s;
}

@media (min-width: 340px) {
    .logo-wrapper {
        left: 48px;
    }
}

@media (min-width: 768px) {
    .logo-wrapper {
        width: 54px;
        height: 54px; /**/
        top: 10px;
        left: 100px;
    }
}

@media (min-width: 992px) {
    .logo-wrapper {
        width: 150px;
        height: 150px;
        top: 17px;
        left: 155px;
    }
}

.logo-wrapper > a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.header-buttons-wrapper {
    display: inline-block;
    float: right;
    width: 75%;
}

@media (min-width: 576px) {
    .header-buttons-wrapper {
        width: auto;
    }
}

.phone-number-wrapper {
    display: inline-block;
    float: left;
    margin-right: 15px;
    min-width: 120px;
    height: 36px;
    margin-bottom: 0;
    position: absolute;
    bottom: 13px;
    right: 2px;
}

@media (min-width: 524px) {
    .phone-number-wrapper {
        position: relative;
        bottom: auto;
        right: auto;
    }
}

@media (min-width: 576px) {
    .phone-number-wrapper {
        display: inline-block;
        min-width: 150px;
        height: 36px;
    }
}

@media (min-width: 768px) {
    .phone-number-wrapper {
        min-width: 190px;
        height: 40px;
    }
}

.phone-number-wrapper a {
    display: inline-block;
    text-decoration: none;
    min-width: 120px;
    height: 36px;
    border-radius: 30px !important;
    line-height: 36px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: rgb(0,0,0);
    background-color: #ffffff;
    margin: 0 auto;
    border: 1px solid rgb(0,0,0) !important;
    padding-left: 28px;
    padding-right: 10px;
    background-image: url("../images/phone-icon.png");
    background-repeat: no-repeat;
    background-size: 19px 16px;
    background-position: 8px center;
}

@media (min-width: 576px) {
    .phone-number-wrapper a {
        min-width: 150px;
        height: 36px;
        line-height: 36px;
        font-size: 12px;
        padding-left: 48px;
        padding-right: 26px;
        background-position: 24px center;
    }
}

@media (min-width: 768px) {
    .phone-number-wrapper a {
        min-width: 190px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}

.header-buttons-wrapper .login-button-wrapper {
    display: inline-block;
    width: 90px;
    height: 36px;
    margin-right: 0;
    margin-bottom: 10px;
    overflow: visible;
    float: right;
}

@media (min-width: 524px) {
    .header-buttons-wrapper .login-button-wrapper {
        margin-bottom: 0;
        margin-right: 15px;
        float: left;
    }
}

@media (min-width: 768px) {
    .header-buttons-wrapper .login-button-wrapper {
        width: 120px;
        height: 40px;
    }
}

.header-buttons-wrapper .login-button-wrapper a {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    border-radius: 18px;
    width: 90px;
}

@media (min-width: 768px) {
    .header-buttons-wrapper .login-button-wrapper a {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        border-radius: 30px;
        width: 120px;
    }
}

.header-buttons-wrapper .start-application-wrapper {
    width: 120px;
    height: 36px;
    overflow: visible;
    margin-right: 4px;
    float: right;
}

@media (min-width: 360px) {
    .header-buttons-wrapper .start-application-wrapper {
        margin-right: 15px;
    }
}

@media (min-width: 524px) {
    .header-buttons-wrapper .start-application-wrapper {
        margin-right: 0;
        float: left;
    }
}

@media (min-width: 768px) {
    .header-buttons-wrapper .start-application-wrapper {
        width: 190px;
        height: 40px;
    }
}

.header-buttons-wrapper .start-application-wrapper a {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    border-radius: 18px;
    width: 120px;
}

@media (min-width: 768px) {
    .header-buttons-wrapper .start-application-wrapper a {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        border-radius: 30px;
        width: 190px;
    }
}

/* main */
main {
    margin-top: 110px;
}

@media (min-width: 524px) {
    main {
        margin-top: 62px;
    }
}

@media (min-width: 576px) {
    main {
        margin-top: 62px;
    }
}

@media (min-width: 768px) {
    main {
        margin-top: 74px;
    }
}

/* section simplify */
.simplify {
    padding-top: 50px;
    background-image: linear-gradient(rgb(105,184,217), rgb(194,230,234));
}

@media (min-width: 768px) {
    .simplify {
        padding-top: 75px;
    }
}

.simplify-content {
}

@media (min-width: 768px) {
    .simplify-content {
        padding-top: 101px;
    }
}

@media (min-width: 992px) {
    .simplify-content {
        padding-top: 60px;
    }
}

@media (min-width: 1200px) {
    .simplify-content {
        padding-top: 101px;
    }
}

.simplify-content h2 {
    color: rgb(255,255,255);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

@media (min-width: 768px) {
    .simplify-content h2 {
        text-align: left;
    }
}

.simplify-content p {
    color: rgb(255,255,255);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .simplify-content p {
        text-align: left;
    }
}

.simplify-buttons-wrapper {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 24px;
}

.talk-to-us {
    display: block;
    margin: 0 auto 20px;
    width: 140px;
    height: 40px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .talk-to-us {
        display: inline-block;
        float: left;
        width: 190px;
        height: 50px;
        margin: 0 20px 0 0;
    }
}

.talk-to-us a,
.talk-to-us a:hover,
.talk-to-us a:focus,
.talk-to-us a:visited {
    display: inline-block;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    line-height: 40px;
    background-color: rgb(0,0,0);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255,255,255);
}

@media (min-width: 768px) {
    .talk-to-us a,
    .talk-to-us a:hover,
    .talk-to-us a:focus,
    .talk-to-us a:visited {
        width: 190px;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
    }
}

.store-buttons {
    display: block;
    text-align: center;
}

@media (min-width: 768px) {
    .store-buttons {
        display: inline-block;
        float: left;
        text-align: left;
        padding-top: 5px;
    }
}

.app-store-link {
    display: inline-block;
    margin-right: 9px;
    width: 96px;
    height: 28px;
    background-image: url("../images/app-store-img.png");
    background-repeat: no-repeat;
    background-size: 96px 28px;
    background-position: center;
}

@media (min-width: 768px) {
    .app-store-link {
        margin-right: 12px;
        width: 138px;
        height: 40px;
        background-size: 138px 40px;
    }
}

.google-play-link {
    display: inline-block;
    width: 96px;
    height: 28px;
    background-image: url("../images/google-play-img.png");
    background-repeat: no-repeat;
    background-size: 96px 28px;
    background-position: center;
}

@media (min-width: 768px) {
    .google-play-link {
        width: 138px;
        height: 40px;
        background-size: 138px 40px;
    }
}

.img-wrapper {
    width: 100%;
}

    .img-wrapper > img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
    }

@media (min-width: 992px) {
    .img-wrapper > img {
        margin: 0;
    }
}

.gif-wrapper {
    /*width: 100%;*/
    width: 419px;
    height: auto;
    position: relative;
    margin: 0 auto;
    display: none;
}

@media (min-width: 480px) {
    .gif-wrapper {
        display: block;
    }
}

.gif-wrapper > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@media (min-width: 992px) {
    .gif-wrapper > img {
        margin: 0;
    }
}

.gif-wrapper > img.gif-img {
    position: absolute;
    left: 46px;
    bottom: 0;
    right: 46px;
}

.img-mobile {
    width: auto;
    max-width: 100%;
}

@media (min-width: 480px) {
    .img-mobile {
        display: none;
    }
}

.img-mobile > img {
    display: block;
    margin: 0 auto;
}

/* section smsf-administration */
.smsf-administration {
    width: 100%;
    padding-top: 43px;
    background-color: #ffffff;
}

@media (min-width: 768px) {
    .smsf-administration {
        padding-top: 83px;
    }
}

.smsf-administration-intro {
    display: block;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .smsf-administration-intro {
        padding: 0 30px;
    }
}

@media (min-width: 768px) {
    .smsf-administration-intro {
        margin-bottom: 70px;
    }
}

.smsf-administration-intro h4 {
    display: block;
    font-weight: 700;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .smsf-administration-intro h4 {
        font-weight: 600;
        margin-bottom: 18px;
    }
}

.smsf-administration-intro p {
    font-size: 16px;
    text-align: center;
}

.administration-items-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .administration-items-wrapper {
        padding: 0 200px;
    }
}

.administration-item {
    padding: 100px 15px 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .administration-item {
        padding: 100px 30px 0 30px;
    }
}

@media (min-width: 768px) {
    .administration-item {
        margin-bottom: 60px;
    }
}

.administration-item h6 {
    display: block;
    text-align: center;
    margin-bottom: 6px;
}

.administration-item p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
}

.administration-item a,
.administration-item a:hover,
.administration-item a:focus,
.administration-item a:visited {
    color: rgb(71,171,194);
    text-decoration: underline;
}

.item-real-time {
    background-image: url("../images/real-time.png");
    background-repeat: no-repeat;
    background-size: 108px 84px;
    background-position: top center;
}

.item-control-investments {
    background-image: url("../images/control-investments.png");
    background-repeat: no-repeat;
    background-size: 75px 75px;
    background-position: top center;
}

.item-choose-bank {
    background-image: url("../images/choose-bank.png");
    background-repeat: no-repeat;
    background-size: 76px 63px;
    background-position: top center;
}

.item-free-expert {
    background-image: url("../images/free-expert.png");
    background-repeat: no-repeat;
    background-size: 75px 75px;
    background-position: top center;
}

.item-reporting {
    background-image: url("../images/reporting.png");
    background-repeat: no-repeat;
    background-size: 75px 75px;
    background-position: top center;
}

.item-save-time {
    background-image: url("../images/save-time.png");
    background-repeat: no-repeat;
    background-size: 76px 64px;
    background-position: top center;
}

.book-free-session {
    width: 100%;
    float: left;
}

    .book-free-session a,
    .book-free-session a:hover,
    .book-free-session a:focus,
    .book-free-session a:visited {
        display: block;
        width: 190px;
        height: 50px;
        border-radius: 30px;
        margin: 0 auto 84px;
        background-color: rgb(108,190,70);
        line-height: 50px;
        font-size: 18px;
        font-weight: 400;
        color: rgb(255,255,255);
        text-align: center;
    }

/* section testimonials */
.testimonials {
    width: 100%;
    float: left;
    background-color: rgb(180,211,211);
}

.testimonials-container {
    width: 100%;
    float: left;
    padding: 15px;
}

@media (min-width: 576px) {
    .testimonials-container {
        padding: 15px 50px;
    }
}

@media (min-width: 1200px) {
    .testimonials-container {
        padding: 15px 150px;
    }
}

@media (min-width: 1300px) {
    .testimonials-container {
        padding: 15px 200px;
    }
}

@media (min-width: 1400px) {
    .testimonials-container {
        padding: 15px 200px;
    }
}

.carousel {
    padding: 150px 0 180px 0;
    background-image: url("../images/quotes-start.png"), url("../images/quotes-end.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 77px 62px,77px 62px;
    background-position: left 40px, right 460px;
}

@media (min-width: 480px) {
    .carousel {
        background-position: left 40px, right 400px;
    }
}

@media (min-width: 992px) {
    .carousel {
        padding: 100px 0 130px 0;
        background-position: left 40px, right 300px;
    }
}

.carousel-indicators {
    bottom: 50px;
}

    .carousel-indicators li {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.8);
        margin-right: 5px;
        margin-left: 5px;
    }

        .carousel-indicators li.active {
            background-color: rgb(0,0,0);
        }

.testimonial-wrapper {
    display: block;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 480px) {
    .testimonial-wrapper {
        padding: 0 30px;
        height: 250px;
    }
}

@media (min-width: 768px) {
    .testimonial-wrapper {
        padding: 0 50px;
    }
}

@media (min-width: 992px) {
    .testimonial-wrapper {
        padding: 0 100px;
        height: 200px;
    }
}

@media (min-width: 1400px) {
    .testimonial-wrapper {
        padding: 0 150px;
    }
}

.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: rgb(0,0,0);
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .testimonial-title {
        font-size: 28px;
        font-weight: 600;
    }
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    margin-bottom: 21px;
}

@media (min-width: 768px) {
    .testimonial-text {
        margin-bottom: 26px;
    }
}

.testimonial-author {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: rgb(102,102,102);
}

/* section track-wealth */
.track-wealth {
    width: 100%;
    float: left;
    background-color: #ffffff;
}

.track-wealth {
    padding-top: 47px;
}

@media (min-width: 768px) {
    .track-wealth {
        padding-top: 71px;
    }
}

.track-wealth-content {
    padding-top: 50px;
}

@media (min-width: 576px) {
    .track-wealth-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 768px) {
    .track-wealth-content {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 992px) {
    .track-wealth-content {
        padding-top: 20px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1200px) {
    .track-wealth-content {
        padding-top: 101px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1400px) {
    .track-wealth-content {
        padding-left: 130px;
        padding-right: 130px;
    }
}

@media (min-width: 1500px) {
    .track-wealth-content {
        padding-left: 150px;
        padding-right: 150px;
    }
}

.track-wealth-content h6 {
    color: rgb(0,0,0);
    margin-bottom: 13px;
    text-align: center;
    font-weight: 700;
}

@media (min-width: 768px) {
    .track-wealth-content h6 {
        font-size: 28px;
        font-weight: 600;
        text-align: left;
    }
}

.track-wealth-content p {
    color: rgb(0,0,0);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.track-wealth-content ul {
    margin-bottom: 25px;
    list-style: disc;
    padding-left: 20px;
}

@media (min-width: 768px) {
    .track-wealth-content ul {
        margin-bottom: 36px;
    }
}

.track-wealth-content li {
    color: rgb(0,0,0);
    font-size: 16px;
    font-weight: 400;
}

.track-wealth-buttons-wrapper {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .track-wealth-buttons-wrapper {
        padding: 0 30px;
    }
}

@media (min-width: 768px) {
    .track-wealth-buttons-wrapper {
        padding: 0 100px;
    }
}

@media (min-width: 992px) {
    .track-wealth-buttons-wrapper {
        padding: 0 60px;
    }
}

@media (min-width: 1200px) {
    .track-wealth-buttons-wrapper {
        padding: 0 80px;
    }
}

@media (min-width: 1400px) {
    .track-wealth-buttons-wrapper {
        padding: 0 130px;
    }
}

@media (min-width: 1500px) {
    .track-wealth-buttons-wrapper {
        padding: 0 150px;
    }
}

.track-wealth-buttons-wrapper .book-free-session {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

@media (min-width: 460px) {
    .track-wealth-buttons-wrapper .book-free-session {
        display: inline-block;
        width: 140px;
        margin-right: 20px;
    }
}

@media (min-width: 768px) {
    .track-wealth-buttons-wrapper .book-free-session {
        display: inline-block;
        float: left;
        width: 190px;
        height: 50px;
        margin: 0 20px 0 0;
    }
}

.track-wealth-buttons-wrapper .book-free-session a,
.track-wealth-buttons-wrapper .book-free-session a:hover,
.track-wealth-buttons-wrapper .book-free-session a:focus,
.track-wealth-buttons-wrapper .book-free-session a:visited {
    display: inline-block;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255,255,255);
}

@media (min-width: 768px) {
    .track-wealth-buttons-wrapper .book-free-session a,
    .track-wealth-buttons-wrapper .book-free-session a:hover,
    .track-wealth-buttons-wrapper .book-free-session a:focus,
    .track-wealth-buttons-wrapper .book-free-session a:visited {
        width: 190px;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
    }
}

.track-wealth-buttons-wrapper .store-buttons {
    display: block;
    text-align: left;
}

@media (min-width: 460px) {
    .track-wealth-buttons-wrapper .store-buttons {
        display: inline-block;
        float: left;
        text-align: left;
        padding-top: 5px;
    }
}

.track-wealth .img-wrapper {
    width: 100%;
}

    .track-wealth .img-wrapper > img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
    }

/* section free-expert */
.free-expert {
    width: 100%;
    float: left;
    background-color: rgb(239,239,239);
    padding-top: 216px;
    background-image: url("../images/free-support-icon.png");
    background-repeat: no-repeat;
    background-size: 128px 128px;
    background-position: center 55px;
}

@media (min-width: 768px) {
    .free-expert {
        padding-top: 284px;
        background-size: 160px 160px;
        background-position: center 95px;
    }
}

.free-expert-intro {
    display: block;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .free-expert-intro {
        padding: 0 30px;
    }
}

.free-expert-intro h4 {
    display: block;
    font-weight: 700;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .free-expert-intro h4 {
        font-weight: 600;
        margin-bottom: 18px;
    }
}

.free-expert-intro p {
    font-size: 16px;
    text-align: center;
}

.free-expert .book-free-session a,
.free-expert .book-free-session a:hover,
.free-expert .book-free-session a:focus,
.free-expert .book-free-session a:visited {
    display: block;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    margin: 0 auto 56px;
    background-color: rgb(108,190,70);
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255,255,255);
    text-align: center;
}

@media (min-width: 768px) {
    .free-expert .book-free-session a,
    .free-expert .book-free-session a:hover,
    .free-expert .book-free-session a:focus,
    .free-expert .book-free-session a:visited {
        width: 190px;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        margin-bottom: 95px;
    }
}

/* section risk-profile */
.risk-profile {
    width: 100%;
    float: left;
    padding: 120px 0;
    background-image: url("../images/img003.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.risk-profile-wrapper {
    width: 100%;
    float: left;
    background-color: rgb(255,255,255);
    border-radius: 10px;
    padding: 36px 30px 45px;
}

.risk-profile-content {
    margin-bottom: 28px;
}

    .risk-profile-content h4 {
        font-weight: 600;
        color: rgb(0,0,0);
        margin-bottom: 12px;
    }

    .risk-profile-content p {
        font-size: 16px;
        font-weight: 400;
        color: rgb(0,0,0);
        margin-bottom: 12px;
    }

.green-link-wrapper {
    width: 100%;
    height: 40px;
    border-radius: 30px;
}

@media (min-width: 768px) {
    .green-link-wrapper {
        height: 50px;
    }
}

.green-link-wrapper a,
.green-link-wrapper a:hover,
.green-link-wrapper a:focus,
.green-link-wrapper a:visited {
    display: inline-block;
    text-align: center;
    width: 140px;
    height: 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    background-color: rgb(108,190,70);
    color: rgb(255,255,255);
    line-height: 40px;
}

@media (min-width: 768px) {
    .green-link-wrapper a,
    .green-link-wrapper a:hover,
    .green-link-wrapper a:focus,
    .green-link-wrapper a:visited {
        width: 190px;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
}

/* section make-change */
.make-change {
    width: 100%;
    float: left;
    background-color: rgb(180,211,211);
    padding-top: 47px;
    padding-bottom: 52px;
}

@media (min-width: 768px) {
    .make-change {
        background-color: #ffffff;
        padding-top: 83px;
        padding-bottom: 95px;
    }
}

.make-change-intro {
    display: block;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .make-change-intro {
        padding: 0 30px;
    }
}

.make-change-intro h4 {
    display: block;
    font-weight: 700;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .make-change-intro h4 {
        font-weight: 600;
        margin-bottom: 18px;
    }
}

.make-change-intro p {
    font-size: 16px;
    text-align: center;
}

.make-change .green-link-wrapper {
    text-align: center;
}

/* section general-disclaimer */
.general-disclaimer {
    width: 100%;
    float: left;
    background-color: rgb(51,51,51);
    padding: 47px 0 0 0;
}

@media (min-width: 768px) {
    .general-disclaimer {
        padding: 80px 0 0 0;
    }
}

.general-disclaimer p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(255,255,255);
    margin-bottom: 30px;
}

/* section footer-section */
.footer-section {
    width: 100%;
    float: left;
    background-color: rgb(51,51,51);
    padding-bottom: 36px;
}

@media (min-width: 576px) {
    .footer-section {
        padding: 36px 0;
    }
}

@media (min-width: 768px) {
    .footer-section {
        padding: 72px 0;
    }
}

.footer-links-wrapper {
    padding-top: 49px;
}

@media (min-width: 576px) {
    .footer-links-wrapper {
        padding-top: 0;
    }
}

.footer-menu-links {
    border-bottom: 1px solid rgb(238,238,238);
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .footer-menu-links {
        flex-direction: row;
        flex-wrap: nowrap;
        /*justify-content: space-between;*/
        justify-content: left;
        padding-bottom: 0;
    }
}

.footer-menu-links > a {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    color: rgb(238,238,238);
    font-weight: 600;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .footer-menu-links > a {
        margin-right: 25px;
    }
}

@media (min-width: 992px) {
    .footer-menu-links > a {
        font-size: 16px;
        margin-right: 35px;
    }
}

@media (min-width: 1200px) {
    .footer-menu-links > a {
        margin-right: 45px;
    }
}

@media (min-width: 1300px) {
    .footer-menu-links > a {
        margin-right: 55px;
    }
}

@media (min-width: 1500px) {
    .footer-menu-links > a {
        margin-right: 70px;
    }
}

.footer-terms-links {
    border-bottom: 1px solid rgb(238,238,238);
    display: flex;
    flex-direction: column;
    padding: 30px 0 15px 0;
}

@media (min-width: 768px) {
    .footer-terms-links {
        border-bottom: none;
        flex-direction: row;
        flex-wrap: nowrap;
        /*justify-content: space-between;*/
        justify-content: left;
        padding: 0;
    }
}

.footer-terms-links > a {
    display: inline-block;
    font-size: 12px;
    color: rgb(238,238,238);
    font-weight: 400;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .footer-terms-links > a {
        margin-top: 19px;
        margin-right: 25px;
    }
}

@media (min-width: 992px) {
    .footer-terms-links > a {
        font-size: 16px;
        margin-right: 35px;
    }
}

@media (min-width: 1200px) {
    .footer-terms-links > a {
        margin-right: 45px;
    }
}

@media (min-width: 1300px) {
    .footer-terms-links > a {
        margin-right: 55px;
    }
}

@media (min-width: 1500px) {
    .footer-terms-links > a {
        margin-right: 70px;
    }
}

.footer-contact-wrapper {
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid rgb(238,238,238);
}

@media (min-width: 768px) {
    .footer-contact-wrapper {
        padding: 0;
        border-bottom: none;
    }
}

.footer-contact-us {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-contact-us {
        border-bottom: 1px solid rgb(238,238,238);
        margin-bottom: 19px;
    }
}

.footer-contact-us > span {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    color: rgb(238,238,238);
    font-weight: 600;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .footer-contact-us > span {
        font-size: 16px;
    }
}

.footer-contact-details {
}

    .footer-contact-details > div {
        font-size: 12px;
        font-weight: 400;
        color: rgb(238,238,238);
        padding-left: 20px;
        background-repeat: no-repeat;
        background-position: left center;
        margin-bottom: 6px;
    }

@media (min-width: 768px) {
    .footer-contact-details > div {
        margin-bottom: 13px;
    }
}

@media (min-width: 992px) {
    .footer-contact-details > div {
        font-size: 16px;
        padding-left: 27px;
    }
}

.contact-phone {
    background-image: url("../images/contact-phone.png");
    background-size: 11px 11px;
}

@media (min-width: 992px) {
    .contact-phone {
        background-size: 15px 15px;
    }
}

a[href^=tel] {
    color: rgb(238,238,238);
    text-decoration: none;
}

.contact-address {
    background-image: url("../images/contact-address.png");
    background-size: 10px 12px;
}

@media (min-width: 992px) {
    .contact-address {
        background-size: 16px 20px;
    }
}

.contact-email {
    background-image: url("../images/contact-email.png");
    background-size: 14px 12px;
}

@media (min-width: 992px) {
    .contact-email {
        background-size: 17px 14px;
    }
}

.pr-15-0 {
    padding-right: 15px;
}

@media (min-width: 768px) {
    .pr-15-0 {
        padding-right: 0;
    }
}

.pl-15-0 {
    padding-left: 15px;
}

@media (min-width: 768px) {
    .pl-15-0 {
        padding-left: 0;
    }
}

.footer-menu-links > a.empty-link,
.footer-terms-links > a.empty-link {
    display: none;
    pointer-events: none;
}

@media (min-width: 768px) {
    .footer-menu-links > a.empty-link,
    .footer-terms-links > a.empty-link {
        display: inline-block;
    }
}

.footer-logo-wrapper {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 37px;
    padding-bottom: 20px;
}

    .footer-logo-wrapper > img {
        display: block;
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

@media (min-width: 768px) {
    .footer-logo-wrapper > img {
        width: 100px;
        height: 100px;
    }
}

.footer-copyright {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: rgb(238,238,238);
}

@media (min-width: 768px) {
    .footer-copyright {
        display: none;
    }
}

/* section pricing */
.pricing {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding: 49px 0 47px 0;
}

@media (min-width: 768px) {
    .pricing {
        padding: 175px 0 78px 0;
    }
}

.pricing-content {
}

    .pricing-content h2 {
        font-weight: 600;
        color: rgb(0,0,0);
        margin-bottom: 21px;
    }

@media (min-width: 768px) {
    .pricing-content h2 {
        font-weight: 400;
        margin-bottom: 34px;
    }
}

.pricing-content p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    margin-bottom: 30px;
}

/* section pricing-packages */
.pricing-packages {
    width: 100%;
    float: left;
    padding: 47px 0 64px 0;
    background-color: rgb(194,230,234);
}

@media (min-width: 768px) {
    .pricing-packages {
        padding: 93px 0 86px 0;
    }
}

.packages-intro {
    width: 100%;
    float: left;
    margin-bottom: 44px;
}

    .packages-intro p {
        font-size: 16px;
        font-weight: 600;
        color: rgb(0,0,0);
        text-align: center;
    }

.pricing-packages-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .pricing-packages-wrapper {
        flex-direction: row;
    }
}

.pricing-packages-item {
    background-color: rgb(255,255,255);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .pricing-packages-item {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 60px;
    }
}

.package-name {
    font-size: 16px;
    font-weight: 600;
    color: rgb(108,190,70);
    margin-bottom: 30px;
}

.package-price {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0,0,0);
    margin-bottom: 30px;
}

    .package-price h3 {
        display: inline-block;
        font-weight: 600;
    }

.pricing-packages-item p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    margin-bottom: 30px;
}

.pricing-packages-item ul {
    list-style: none;
}

.pricing-packages-item li {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    margin-bottom: 30px;
    padding-left: 30px;
    background-image: url("../images/list-item.png");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: left 6px;
}

    .pricing-packages-item li.highlight {
        color: rgb(108,190,70);
        background-image: url("../images/list-item-highlight.png");
    }

.pricing-packages .green-link-wrapper {
    text-align: center;
}

/* section which-package */
.which-package {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding-top: 55px;
    padding-bottom: 58px;
}

@media (min-width: 768px) {
    .which-package {
        padding-top: 78px;
        padding-bottom: 78px;
    }
}

.which-package-intro {
    display: block;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .which-package-intro {
        padding: 0 30px;
    }
}

.which-package-intro h4 {
    display: block;
    font-weight: 700;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .which-package-intro h4 {
        font-weight: 600;
        margin-bottom: 18px;
    }
}

.which-package-intro p {
    font-size: 16px;
    text-align: center;
}

.which-package .green-link-wrapper {
    text-align: center;
}

/* section contact-us */
.contact-us {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .contact-us {
        flex-direction: row;
        align-items: center;
        min-height: 600px;
    }
}

.contact-img-wrapper {
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    background-image: url("../images/contact-us-img-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

@media (min-width: 480px) {
    .contact-img-wrapper {
        background-image: url("../images/contact-us-img.png");
    }
}

@media (min-width: 768px) {
    .contact-img-wrapper {
        width: 50%;
        min-height: 900px;
        background-image: url("../images/contact-us-img.png");
    }
}

.contact-form-wrapper {
    padding: 50px 18px;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 0 50px;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .contact-form-wrapper {
        padding: 0 85px;
    }
}

@media (min-width: 1200px) {
    .contact-form-wrapper {
        padding: 0 155px 0 85px;
    }
}

.contact-form-wrapper h2 {
    font-weight: 600;
    margin-bottom: 21px;
}

@media (min-width: 768px) {
    .contact-form-wrapper h2 {
        font-weight: 400;
        margin-bottom: 34px;
    }
}

.contact-form-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
}

    .contact-form-text p {
        font-size: 16px;
        font-weight: 400;
    }

.contact-form {
}

    .contact-form .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .contact-form input[type=text],
    .contact-form input[type=email],
    .contact-form input[type=number],
    .contact-form input[type=tel] {
        width: 100%;
        height: 49px;
        background-color: rgb(255,255,255);
        font-size: 16px;
        font-weight: 400;
        border: 1px solid rgb(187,187,187);
        border-radius: 2px;
        padding-left: 15px;
        padding-right: 30px;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: rgb(0,0,0);
    }

        .contact-form input[type=text]:focus,
        .contact-form input[type=email]:focus,
        .contact-form input[type=number]:focus,
        .contact-form input[type=tel]:focus,
        .contact-form input[type=text]:not(:focus):valid,
        .contact-form input[type=email]:not(:focus):valid,
        .contact-form input[type=number]:not(:focus):valid,
        .contact-form input[type=tel]:not(:focus):valid {
            background-color: #ffffff;
            border: 1px solid rgb(187,187,187);
            padding-top: 0;
        }

        .contact-form input[type=text]:not(:focus):invalid,
        .contact-form input[type=email]:not(:focus):invalid,
        .contact-form input[type=number]:not(:focus):invalid,
        .contact-form input[type=tel]:not(:focus):invalid {
            background-color: #ffffff;
            border: 1px solid rgb(187,187,187);
            padding-top: 0;
        }

    .contact-form ::placeholder,
    .contact-form :-ms-input-placeholder,
    .contact-form ::-ms-input-placeholder {
        color: rgb(136,136,136);
        opacity: 1;
    }

    .contact-form textarea {
        width: 100%;
        padding: 12px 10px;
        border: 1px solid rgb(187,187,187);
        border-radius: 2px;
        height: 110px;
    }

    .contact-form input[type=submit],
    .contact-form input[type=submit]:hover {
        width: 140px;
        height: 40px;
        background-color: rgb(108,190,70);
        color: #ffffff;
        font-size: 14px;
        border: none;
        font-weight: 400;
        border-radius: 30px;
        margin-bottom: 5px;
        margin-top: 12px;
    }

@media (min-width: 576px) {
    .contact-form input[type=submit],
    .contact-form input[type=submit]:hover {
        width: 190px;
        height: 50px;
        font-size: 18px;
    }
}

/* section ready-to */
.ready-to {
    width: 100%;
    float: left;
    padding: 50px 0;
}

@media (min-width: 768px) {
    .ready-to {
        padding: 120px 0;
        background-image: url("../images/img003.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

.ready-to-wrapper {
    width: 100%;
    float: left;
    background-color: rgb(255,255,255);
}

@media (min-width: 768px) {
    .ready-to-wrapper {
        border-radius: 10px;
        padding: 36px 30px 45px;
    }
}

.ready-to-content {
    margin-bottom: 28px;
    text-align: center;
}

@media (min-width: 768px) {
    .ready-to-content {
        text-align: left;
    }
}

.ready-to-content h4 {
    font-weight: 600;
    color: rgb(0,0,0);
    margin-bottom: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .ready-to-content h4 {
        text-align: left;
    }
}

.ready-to-content p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    margin-bottom: 12px;
}

.ready-to .green-link-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .ready-to .green-link-wrapper {
        text-align: left;
    }
}

/* section expert-support */
.expert-support {
    width: 100%;
    float: left;
    background-color: rgb(239,239,239);
    padding-top: 216px;
    padding-bottom: 57px;
    background-image: url("../images/expert-support-img.png");
    background-repeat: no-repeat;
    background-size: 128px 128px;
    background-position: center 55px;
}

@media (min-width: 768px) {
    .expert-support {
        padding-bottom: 78px;
        background-color: #ffffff;
        padding-top: 284px;
        background-size: 160px 160px;
        background-position: center 95px;
    }
}

.free-eexpert-support-intro {
    display: block;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .expert-support-intro {
        padding: 0 30px;
    }
}

.expert-support-intro h4 {
    display: block;
    font-weight: 700;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .expert-support-intro h4 {
        font-weight: 600;
        margin-bottom: 18px;
    }
}

.expert-support-intro p {
    font-size: 16px;
    text-align: center;
}

.expert-support-intro a,
.expert-support-intro a:hover,
.expert-support-intro a:focus,
.expert-support-intro a:visited {
    color: rgb(71,171,194);
    text-decoration: underline !important;
}

.expert-support .green-link-wrapper {
    text-align: center;
    margin-top: 39px;
}

/* section why-smsf */
.why-smsf {
    padding-top: 50px;
    padding-bottom: 54px;
    background-color: rgb(255,255,255);
}

@media (min-width: 768px) {
    .why-smsf {
        padding-top: 175px;
        padding-bottom: 94px;
    }
}

.why-smsf-content {
}

    .why-smsf-content h2 {
        color: rgb(0,0,0);
        margin-bottom: 19px;
        font-weight: 600;
    }

@media (min-width: 768px) {
    .why-smsf-content h2 {
        font-weight: 400;
        margin-bottom: 34px;
    }
}

.why-smsf-content p {
    color: rgb(0,0,0);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .why-smsf-content p {
    }
}

.why-smsf-content ul {
    list-style: none;
}

.why-smsf-content li {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
    margin-bottom: 30px;
    padding-left: 30px;
    background-image: url("../images/list-item.png");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: left 6px;
}

.why-smsf .green-link-wrapper {
    margin-bottom: 44px;
}

@media (min-width: 992px) {
    .why-smsf .green-link-wrapper {
        margin-bottom: 0;
    }
}

.why-smsf-buttons-wrapper {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 24px;
}

.why-smsf .store-buttons {
    display: block;
    text-align: center;
}

@media (min-width: 768px) {
    .why-smsf .store-buttons {
        float: none;
        padding-top: 5px;
    }
}

/* section how-it-works */
.how-it-works {
    width: 100%;
    padding-top: 53px;
    padding-bottom: 66px;
    background-color: rgb(238,238,238);
}

@media (min-width: 768px) {
    .how-it-works {
        padding-top: 77px;
        padding-bottom: 99px;
    }
}

.how-it-works-intro {
    display: block;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .how-it-works-intro {
        padding: 0 30px;
    }
}

.how-it-works-intro h4 {
    display: block;
    font-weight: 600;
    color: rgb(0,0,0);
    text-align: center;
    margin-bottom: 12px;
    font-size: 28px;
}

@media (min-width: 768px) {
    .how-it-works-intro h4 {
        margin-bottom: 18px;
    }
}

.how-it-works-intro p {
    font-size: 16px;
    text-align: center;
}

.how-it-works-items-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.how-it-works-item {
    padding: 150px 15px 0 15px;
    margin-bottom: 50px;
    background-repeat: no-repeat;
    background-size: 115px 115px;
    background-position: top center;
    display: flex;
    flex-direction: column;
    opacity: 0;
    /*animation: fadeInRight 1s ease-in-out 0s forwards;*/
}

@media (min-width: 576px) {
    .how-it-works-item {
        padding: 0 0 0 200px;
        margin-bottom: 65px;
        background-position: top left;
        background-size: 165px 165px;
        min-height: 165px;
        justify-content: center;
    }
}

.how-it-works-item.animation-effect {
    animation: fadeInRight 1s ease-in-out 0s forwards;
}

.how-it-works-item h4 {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

@media (min-width: 576px) {
    .how-it-works-item h4 {
        text-align: left;
    }
}

.how-it-works-item p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
}

@media (min-width: 576px) {
    .how-it-works-item p {
        text-align: left;
    }
}

.step1 {
    background-image: url("../images/step1.png");
}

.step2 {
    background-image: url("../images/step2.png");
}

.step3 {
    background-image: url("../images/step3.png");
}

.step4 {
    background-image: url("../images/step4.png");
}

.how-it-works-item.step4 {
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .how-it-works-item.step4 {
        margin-bottom: 65px;
    }
}

.how-it-works .green-link-wrapper {
    text-align: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
/**/
.how-it-works-item.step1 {
    animation-delay: 0s;
}

.how-it-works-item.step2 {
    animation-delay: 0.25s;
}

.how-it-works-item.step3 {
    animation-delay: 0.5s;
}

.how-it-works-item.step4 {
    animation-delay: 0.75s;
}

/* section our-services */
.our-services {
    width: 100%;
    background-color: rgb(194,230,234);
    padding: 57px 0 30px 0;
}

@media (min-width: 768px) {
    .our-services {
        padding: 69px 0 85px 0;
    }
}

.our-services-content {
    text-align: center;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .our-services-content {
        text-align: left;
    }
}

.our-services-content h4 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(0,0,0);
    margin-bottom: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .our-services-content h4 {
        text-align: left;
    }
}

.our-services-content p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
}

.our-services-item {
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .our-services-item {
        text-align: left;
    }
}

.our-services-item p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(0,0,0);
}

/* section about-us */
.about-us {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding-bottom: 59px;
}

@media (min-width: 768px) {
    .about-us {
        padding: 115px 0 110px 0;
    }
}

.about-us-content {
    padding-top: 50px;
    text-align: center;
}

@media (min-width: 768px) {
    .about-us-content {
        padding-top: 0;
        text-align: left;
    }
}

.about-us-content h4 {
    font-size: 16px;
    color: rgb(0,0,0);
    margin-bottom: 21px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .about-us-content h4 {
        font-size: 28px;
        text-align: left;
    }
}

.about-us-content p {
    color: rgb(0,0,0);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
}

.about-us .green-link-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .about-us .green-link-wrapper {
        text-align: left;
    }
}

.about-us .img-wrapper {
}

@media (min-width: 768px) {
    .about-us .img-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 992px) {
    .about-us .img-wrapper {
        padding-right: 50px;
    }
}

.bg-color-grey {
    background-color: rgb(238,238,238) !important;
}

/* section general-section */
.general-section {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0;
}

@media (min-width: 768px) {
    .general-section {
        padding: 175px 0 75px 0;
    }
}

.general-section h2 {
    font-weight: 600;
    margin-bottom: 21px;
}

@media (min-width: 768px) {
    .general-section h2 {
        font-weight: 400;
        margin-bottom: 34px;
    }
}

.general-section h4 {
    font-weight: 600;
    margin-bottom: 17px;
}

.general-section h6 {
    font-weight: 400;
    margin-bottom: 21px;
}

@media (min-width: 768px) {
    .general-section h6 {
        font-weight: 600;
        margin-bottom: 35px;
        margin-top: 50px;
    }
}

.general-section p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.general-section ul {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 30px;
}

    .general-section ul.alpha-list {
        list-style: lower-alpha;
        padding-left: 40px;
    }

    .general-section ul.decimal-list {
        list-style: decimal;
        padding-left: 40px;
    }

/* email-template */
main.email-template {
    margin-top: 0;
    width: 100%;
    background-color: rgb(117,144,157);
    padding: 179px 0 102px 0;
    background-image: url("../images/logo-white.png");
    background-repeat: no-repeat;
    background-size: 100px 101px;
    background-position: center 48px;
}

@media (min-width: 768px) {
    .email-template {
        padding: 179px 0 102px 0;
    }
}

.email-content {
    width: 100%;
    float: left;
    background-color: rgb(255,255,255);
    padding: 64px 49px;
}

    .email-content h5 {
        margin-bottom: 40px;
    }

    .email-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .email-content ul {
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 30px;
    }

    .email-content .green-link-wrapper {
        width: 163px;
        height: 54px;
        border-radius: 31px;
        margin-bottom: 35px;
    }

        .email-content .green-link-wrapper > a {
            width: 163px;
            height: 54px;
            line-height: 54px;
            border-radius: 31px;
            font-weight: 600;
            font-size: 16px;
        }

hr {
    margin-top: 35px;
    margin-bottom: 35px;
    border: 0;
    border-top: 1px solid rgba(151, 151, 151, 1);
}





/* fixes */
.container.body-content > .text-center > h3 {
    padding: 0;
    font-size: 28px;
    color: rgb(0,0,0);
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .container.body-content > .text-center > h3 {
        padding: 50px 0;
        font-size: 36px;
    }
}

.forgot-pass-form {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .forgot-pass-form {
        margin-top: 90px;
    }
}

.get-in-touch-title {
    display: block;
    float: left;
}

.forgot-pass-form .get-in-touch-title {
    float: none;
    max-width: 450px;
    margin: 0 auto;
}

.get-in-touch-title h2 {
    font-size: 28px;
}

@media (min-width: 768px) {
    .get-in-touch-title h2 {
        font-size: 36px;
    }
}

.forgot-pass-form .form-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.forgot-pass-form .form-group input[type=text]:focus,
.forgot-pass-form .form-group input[type=password]:focus,
.forgot-pass-form .form-group input[type=email]:focus,
.forgot-pass-form .form-group input[type=number]:focus,
.forgot-pass-form .form-group input[type=tel]:focus,
.forgot-pass-form .form-group input[type=text]:not(:focus):valid,
.forgot-pass-form .form-group input[type=password]:not(:focus):valid,
.forgot-pass-form .form-group input[type=email]:not(:focus):valid,
.forgot-pass-form .form-group input[type=number]:not(:focus):valid,
.forgot-pass-form .form-group input[type=tel]:not(:focus):valid {
    padding-top: 0;
}

.reset-password-form {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .reset-password-form {
        margin-top: 90px;
    }
}

.reset-password-form .form-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.reset-password-form h4 {
    margin-bottom: 30px;
}

.form-control:focus {
    box-shadow: none;
}

.text-danger.field-validation-error {
    font-size: 11px;
    color: rgb(252,54,91) !important;
}

@media (min-width: 576px) {
    .text-danger.field-validation-error {
        font-size: 12px;
    }
}

.field-validation-error,
.field-validation-valid {
    display: inline-block;
    width: 94%;
    position: absolute;
    top: 6px;
    left: 15px;
    background-color: white;
}

@media (min-width: 576px) {
    .field-validation-error,
    .field-validation-valid {
        width: 95%;
    }
}

.field-validation-error::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    width: 13px;
    height: 34px;
    background-image: url("../images/incorrect.png");
    background-repeat: no-repeat;
    background-size: 11px 11px;
    background-position: center;
}

@media (min-width: 576px) {
    .field-validation-error::after {
        height: 40px;
        background-size: 13px 13px;
    }
}

.text-danger.field-validation-valid::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    width: 15px;
    height: 34px;
    background-image: url("../images/correct.png");
    background-repeat: no-repeat;
    background-size: 15px 11px;
    background-position: center;
}

@media (min-width: 576px) {
    .text-danger.field-validation-valid::after {
        height: 40px;
    }
}
/*#generalerror.field-validation-valid::after {
	background-image: none;
}*/

/* login page */
#loginPage {
    display: block;
    width: 100%;
    float: left;
    min-height: 100vh;
}

.login-content-wrapper {
    width: 100%;
    min-height: 100vh;
    float: left;
    padding: 0; /*
	display: flex;
    flex-direction: column;
    justify-content: space-between;*/
    position: relative;
    padding-bottom: 75px;
}

.login-header-mobile {
    padding: 25px 25px 0 25px;
    position: relative;
}

    .login-header-mobile .logo-wrapper {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }

h5.login-title {
    font-size: 24px;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 33px;
}

.login-content {
    width: 100%;
    padding: 25px;
}

#loginPage .form-group {
    margin-bottom: 12px;
    position: relative;
}

#loginPage input[type=text],
#loginPage input[type=password],
#loginPage input[type=email],
#loginPage input[type=number],
#loginPage input[type=tel],
#loginPage select {
    height: 60px;
    font-size: 16px;
    letter-spacing: -0.8px;
}

    #loginPage input[type=text]:not(:focus):invalid,
    #loginPage input[type=password]:not(:focus):invalid,
    #loginPage input[type=email]:not(:focus):invalid,
    #loginPage input[type=number]:not(:focus):invalid,
    #loginPage input[type=tel]:not(:focus):invalid {
        padding-top: 24px;
    }

#loginPage .form-group .floating-label {
    font-size: 16px;
    letter-spacing: -0.8px;
}

#loginPage input:focus ~ .floating-label,
#loginPage input.small ~ .floating-label {
    top: 10px;
    font-size: 12px;
    letter-spacing: -0.6px;
}

#loginPage .correct,
#loginPage .incorrect {
    height: 60px;
}

#loginPage .forgot-pass,
#loginPage .forgot-pass:hover,
#loginPage .forgot-pass:focus,
#loginPage .forgot-pass:visited {
    font-size: 16px;
}

#loginPage input[type=submit],
#loginPage input[type=submit]:hover {
    width: 163px;
    height: 54px;
    font-size: 16px;
    letter-spacing: -0.5px;
    border-radius: 31px;
}

#loginPage .no-account {
    font-size: 14px;
    margin-bottom: 0;
}

#loginPage .green-link,
#loginPage .green-link:hover,
#loginPage .green-link:focus,
#loginPage .green-link:visited {
    font-size: 14px;
}

.login-footer {
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
    position: absolute;
    bottom: 0;
}

.login-footer-text {
    display: block;
    width: 100%;
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 22px;
    text-align: center;
    color: rgb(0,0,0);
    font-weight: 600;
}

    .login-footer-text a,
    .login-footer-text a:hover {
        font-weight: 700;
        color: rgb(0,0,0);
    }

#loginPage .login-footer p {
    font-size: 16px;
    font-weight: 600;
    color: rgb(0,0,0);
}

#loginPage .login-footer a.green-link {
    font-size: 16px;
}
