/* Document
   ========================================================================== */
html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

body {
    margin: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

button, input {
    /* 1 */
    overflow: visible;
}

button, select {
    /* 1 */
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* CSS START ========================================================================== */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    height: 100%;
    max-height: 100%;
    font-size: 2.0rem;
    line-height: 1.6em;
    color: #3A4145;
    font-family: nunito, sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
}

h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    line-height: 1;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 500;
}

h1 {
    font-size: 4rem;
    line-height: 1.2em;
    letter-spacing: 0;
    text-indent: -3px;
    margin: 0;
    font-weight: 100;
}

h1 span {
    display: block;
}

h2 {
    font-size: 4rem;
    line-height: 1.2em;
    text-indent: -2px;
    margin: 0;
    letter-spacing: 1px;
}

h3 {
    font-size: 3.5rem;
}

h4 {
    font-size: 3rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 2rem;
}

a {
    color: #4a4a4a;
    transition: color ease 0.3s;
    text-decoration: none;
}

a:hover {
    color: #57A3E8;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #50585D;
}

p, ul, ol {
    margin: 1em 0;
}

ol ol, ul ul, ul ol, ol ul {
    margin: 0.4em 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #efefef;
    margin: 3.2em 0;
    padding: 0;
}

header {
    display: flex;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0 0 40px rgb(0 0 0 / 20%);
    position: sticky;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 86px;
    align-items: center;
    padding: 0 0 0 40px;
}

header a {
    margin: 0 50px 0 0;
    display: flex;
    align-items: inherit;
}

header a img:first-of-type {
    max-width: 20px;
}

header a img {
    margin: 0 20px 0 0;
    max-width: 25px;
}

.sidebar-header {
    width: 100%;
    background: whitesmoke;
    padding: 15px 0 20px;
    text-align: center;
    height: 86px;
}

.sidebar-form {
    width: 450px;
    background: #00657a;
    color: white;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-holder {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}

.sidebar-form h2 {
    text-align: center;
    font-weight: 100;
    font-size: 4rem;
    margin: 0 10% 15px;
}

.sidebar-form h2 span {
    display: block;
    font-weight: 700;
    font-size: 3.6rem;
    margin: 0;
}

.sidebar-form ul {
    list-style: none;
    margin: 0 10%;
    padding: 0;
}

.sidebar-form ul li input, .sidebar-form ul li textarea {
    width: 100%;
    padding: 15px 15px 12px;
    margin: 0 0 10px;
    border: none;
    background: rgb(255 255 255 / 95%);
}

.sidebar-form ul li textarea {
    height: 160px;
    margin: 0;
}

.sidebar-form ul li input::-webkit-input-placeholder, .sidebar-form ul li textarea::-webkit-input-placeholder {
    font-size: 1.6rem;
}

.gdpr {
    font-size: 1.6rem;
    text-align: left;
    line-height: 2rem;
    margin: 0;
}

.gdpr input {
    display: inline-block;
}

.sidebar-form ul li button {
    width: 100%;
    padding: 20px;
    border: none;
    background: #023c48;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 15px 0 0;
    cursor: pointer;
}

.gdpr {
    font-size: 1.2rem;
    line-height: 20px;
    text-align: center;
    display: inline-block;
}

.gdpr a {
    color: white;
}

.gdpr input {
    display: inline-block;
}

.sidebar-form ul li .gdpr input {
    width: 20px;
}

main {
    width: calc(100% - 450px);
    display: flex;
    flex-wrap: wrap;
}

.banner-content-holder {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgb(255 255 255);
    padding: 35px 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 strong {
    font-weight: 700;
    color: black;
}

.banner {
    height: calc(100vh - 86px);
    width: 100%;
    background: #fefefe;
    background-repeat: no-repeat;
    background-image: url(assets/img/banner-background.jpg);
    background-size: cover;
    background-position: 0 -100px;
    position: relative;
    background-position: left;
}

.intro {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    width: 100%;
    background: whitesmoke;
}

.intro-content-holder {
    padding: 0 50px 0 40px;
    width: 60%;
}

.intro-content-holder p {
    max-width: 85%;
}

.intro-content-holder h2 span {
    display: block;
    font-weight: 600;
    color: black;
}

.intro-message {
    margin: 20px 0 0 0;
    display: inline-flex;
    font-size: 26px;
    font-weight: 800;
    color: #00657a;
    max-width: 85%;
    line-height: 36px;
}

.before-after-slides {
    width: 40%;
    line-height: 0;
}

.slick-slider {
    position: -webkit-sticky!important;
    position: sticky!important;
    top: 120px;
    max-width: 100%!important;
    height: inherit;
}

.blue-band {
    background: #00657a;
    color: white;
    left: -40px;
    position: relative;
    padding: 30px 20px 30px 40px;
    letter-spacing: 1px;
    margin: 30px 0 0 0;
}

.blue-band h4 {
    margin: 0;
    font-size: 3.8rem;
    font-weight: 600;
}

.intro-content-holder .blue-band p {
    margin: 15px 0 0 0;
    font-weight: 400;
    font-size: 2.2rem;
    max-width: 100%;
}

.meet {
    background: #e2e2e2;
    padding: 100px 40px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.meet-content {
    padding: 0 0 0 40px;
    align-self: center;
    width: calc(65% - 40px);
}

.meet-content p {
    max-width: 90%;
}

.meet-content h2 span {
    display: block;
    font-weight: 800;
}

.blue-band-meet {
    background: #023c48;
    color: white;
    position: relative;
    padding: 1px 30px;
    letter-spacing: 1px;
    max-width: 500px;
    line-height: 2.8rem;
    text-align: center;
    font-weight: 600;
}

.blue-band-meet p {
    max-width: 100%;
}

.meet img {
    align-self: center;
    width: 35%;
}

.benefits, .prf {
    display: flex;
    width: 100%;
    background: #00657a;
    flex-wrap: wrap;
}

.benefits-content, .prf-content {
    display: flex;
    flex-wrap: wrap;
    color: white;
    width: 60%;
}

.benefits-content h2, .prf-content h2 {
    background: #023c48;
    width: 100%;
    text-align: center;
    color: white;
    padding: 30px 30px 25px;
    align-self: flex-start;
}

.benefits-content div {
    width: 50%;
    text-align: center;
    color: white;
    align-self: baseline;
    padding: 20px;
}

.benefits-content div img {
    margin: 0 0 20px;
}

.benefits-content div h5 {
    width: 70%;
    margin: 0 15%;
    line-height: 2.8rem;
}

.prf-gap {
    padding: 20px 40px;
}

.prf-gap .blue-band-meet {
    width: 85%;
    text-align: left;
    font-weight: 500;
}

.prf-content {
    align-content: baseline;
}

img.content-img {
    width: 40%;
    align-self: flex-start;
}

.prf-gap .blue-band-meet a {
    color: white;
    font-weight: 700;
}

.faq {
    background: white;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    justify-content: space-between;
}

.faq h2 {
    width: 100%;
    text-align: center;
    margin: 0 0 30px;
}

.accordion {
    width: 100%;
}

.accordion .tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: #464340;
    overflow: hidden;
}

.accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion label {
    position: relative;
    display: block;
    padding: 20px 40px;
    background: #023c48;
    font-weight: bold;
    line-height: 2.5rem;
    cursor: pointer;
    text-transform: uppercase;
    color: #ffffff;
}

.accordion .tab-content {
    max-height: 0;
    overflow: hidden;
    background: whitesmoke;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
}

.accordion .tab-content p {
    margin: 40px;
}

/* :checked */
.accordion input:checked ~ .tab-content {
    max-height: 100em;
}

/* Icon */
.accordion label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 4em;
    height: 4em;
    line-height: 4;
    text-align: center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

.accordion input[type=checkbox] + label::after {
    content: "+";
}

.accordion input[type=radio] + label::after {
    content: "\25BC";
}

.accordion input[type=checkbox]:checked + label::after {
    transform: rotate(315deg);
}

.accordion input[type=radio]:checked + label::after {
    transform: rotateX(180deg);
}

.video-holder {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 0 0;
}

.video-wrapper {
    width: 48%;
    margin: 0 0 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

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

.video-holder span {
    text-align: center;
    display: flex;
    justify-content: center;
    background: #023c48;
    color: white;
    padding: 10px;
    width: 100%;
}

.testimonials {
    display: flex;
    padding: 100px 40px;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden !important;
    align-self: center;
}

.testimonials h2 {
    margin: 0 auto;
}

.testimonials div.eapps-widget {
    margin: 0 auto;
    width: 100%;
    overflow: hidden !important;
    align-self: center;
}

.elfsight-app-ddc51660-c138-4a66-9fa6-778c2f29377a {
    display: flex;
    width: 100%;
}

.map {
    display: flex;
    width: 100%;
    position: relative;
}

.map-details {
    position: absolute;
    right: 0;
    max-width: 500px;
    background: white;
    padding: 30px 30px 10px;
    bottom: 0;
}

.map-details a {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
    line-height: 2.8rem;
    word-wrap: break-word;
}

.map-details a img {
    max-width: 20px;
    object-fit: contain;
    margin: 0 25px 0 0;
}

footer {
    background: #105867;
    color: white;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 35px;
    justify-content: space-between;
}

.footer-content h6 {
    display: flex;
    width: 100%;
    line-height: 3rem;
    flex-wrap: wrap;
    font-size: 1.8rem;
}

.footer-content {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

footer img {
    width: 30%;
    height: fit-content;
    align-self: flex-end;
}

footer a {
    color: white;
}

a.resources {
    margin-left: auto;
    padding: 20px;
    background: #00657a;
    color: white;
    font-weight: 600;
    justify-content: center;
    width: 100%;
    text-align: center;
}

a.resources:hover {
    background: #023c48;
}

a.mobile-click {
    display: none;
}

/* transitions */
a {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
p.consent {
    font-size: 9px;
    line-height: initial;
    margin: 0 0 10px;
    text-align: center;
    line-height: 16px;
}

input#consent_yes {
    display: inline-block !important;
    width: auto;
    margin: 0;
}
section.cta {
    padding: 25px;
    text-align: center;
    width: 100%;
    background-color: #1e657b;
    font-size: 3.8rem;
    font-weight: 600;
    color:white;

}

section.cta a {
    color: white;
    line-height: 1;
}
@media only screen and (max-width: 1764px) {
    .sidebar-form h2, .sidebar-form h2 span {
        font-size: 3rem;
    }

    .intro-content-holder p {
        max-width: 100%;
    }

    .intro-content-holder, .before-after-slides {
        width: 50%;
    }

    .meet img {
        max-width: 35%;
    }
}

@media only screen and (max-width: 1400px) {
    body, .intro-content-holder .blue-band p {
        font-size: 1.6rem;
        line-height: 1.4em;
    }

    .intro-message {
        font-size: 22px;
    }

    h1, h2, .blue-band h4 {
        font-size: 3rem;
    }

    .sidebar-form ul {
        margin: 0 5%;
    }

    .sidebar-form h2 {
        margin: 0 5% 15px;
    }

    .sidebar-form h2, .sidebar-form h2 span {
        font-size: 2.6rem;
    }

    .sidebar-form ul li button {
        font-size: 1.4rem;
    }

    .sidebar-form ul li input, .sidebar-form ul li textarea {
        padding: 10px 10px 8px;
    }

    .sidebar-form ul li textarea {
        height: 130px;
    }

    .sidebar-form {
        width: 350px;
    }

    main {
        width: calc(100% - 350px);
    }

    .banner-content-holder img {
        width: 50%;
    }

    .benefits-content div img {
        width: 30%;
    }

    .benefits-content div h5 {
        width: 100%;
        margin: 0;
        line-height: 2rem;
    }

    .prf-gap .blue-band-meet {
        width: 100%;
    }
}

@media only screen and (max-height: 700px) {
    body, .intro-content-holder .blue-band p {
        font-size: 1.6rem;
        line-height: 1.4em;
    }

    h1, h2, .blue-band h4 {
        font-size: 3rem;
    }

    .sidebar-form ul {
        margin: 0 5%;
    }

    .sidebar-form h2 {
        margin: 0 5% 15px;
    }

    .sidebar-form h2, .sidebar-form h2 span {
        font-size: 2.6rem;
    }

    .sidebar-form ul li button {
        font-size: 1.4rem;
    }

    .sidebar-form ul li input, .sidebar-form ul li textarea {
        padding: 10px 10px 8px;
    }

    .sidebar-form ul li textarea {
        height: 130px;
    }

    .sidebar-form {
        width: 350px;
    }

    main {
        width: calc(100% - 350px);
    }
}

@media only screen and (max-height: 560px) {
    .sidebar-form ul li textarea {
        height: 100px;
    }

    .sidebar-form h2, .sidebar-form h2 span {
        font-size: 2rem;
    }

    .sidebar-form ul li input, .sidebar-form ul li textarea {
        padding: 5px;
    }

    .sidebar-form ul li button {
        padding: 10px;
    }

    .sidebar-form ul li input::-webkit-input-placeholder, .sidebar-form ul li textarea::-webkit-input-placeholder {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 1200px) {
    .banner {
        background-position: left;
    }

    h1 {
        font-size: 2.5rem;
    }

    .banner-content-holder img {
        width: 40%;
    }

    .intro-content-holder {
        padding: 0 20px;
    }

    .banner-content-holder {
        padding: 20px;
    }

    .intro {
        padding: 50px 0;
    }

    .faq, .meet {
        padding: 50px 20px;
    }

    .meet-content {
        padding: 0 0 0 20px;
    }

    .blue-band {
        left: 0;
        padding: 20px;
    }

    h1, h2, .blue-band h4 {
        font-size: 2.5rem;
    }

    .form-holder {
        padding: 50px 20px;
    }

    .map-details {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
    }

    .map-details a {
        width: 50%;
        margin: 0;
    }

    .footer-content {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footer-content h6 {
        justify-content: center;
        margin: 0 0 20px;
    }

    footer img {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    main {
        width: 100%;
    }

    .sidebar-form {
        width: 100%;
        height: inherit;
        position: relative;
        top: inherit;
    }

    header {
        height: inherit;
        padding: 15px;
    }

    .banner {
        height: calc(90vh - 52px);
    }

    a.mobile-click {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 30px 20px;
        text-transform: uppercase;
        font-weight: 700;
        background: #023c48;
        color: white;
        position: sticky;
        bottom: 0;
        z-index: 999;
    }
}

@media only screen and (max-width: 700px) {
    .intro-content-holder, .before-after-slides, .accordion, .video-holder, .benefits-content, .prf-content {
        width: 100%;
    }

    .banner {
        height: 65vh;
    }

    .accordion {
        margin: 0 0 20px;
    }

    .prf-gap {
        padding: 20px;
    }

    .blue-band {
        margin: 0 0 20px;
    }

    .before-after-slides {
        padding: 0 20px;
    }

    .intro-content-holder h2 span {
        display: inline-block;
    }

    h5, h6 {
        font-size: 1.6rem;
        text-transform: capitalize;
    }

    .benefits-content div img {
        width: 20%;
    }

    .meet img {
        max-width: 60%;
        margin: 0 20%;
        width: auto;
    }

    .meet-content {
        padding: 0;
        margin: 40px 0 0 0;
        width: 100%;
        text-align: center;
    }

    .meet-content p {
        max-width: 100%;
    }

    .blue-band-meet {
        max-width: 100%;
        line-height: 2rem;
    }

    .map iframe {
        height: 800px;
    }

    .map-details a {
        width: 100%;
        word-break: break-word;
    }

    h1, h2, .blue-band h4 {
        font-size: 2rem;
    }

    .testimonials {
        padding: 50px 20px;
    }

    .video-wrapper {
        width: 100%;
        margin: 0 0 25px;
    }

    img.content-img {
        display: none;
    }
}

@media only screen and (max-width: 425px) {
    body, .intro-content-holder .blue-band p {
        font-size: 1.4rem;
        line-height: 1.3em;
    }

    h1, h2, .blue-band h4 {
        font-size: 1.8rem;
    }

    h5, h6 {
        font-size: 1.4rem;
    }

    header a {
        margin: 0 0 10px;
    }
}

@media only screen and (max-width: 340px) {
    .banner {
        height: 100vh;
    }
}

.badge {
    display: block;
    background: #00657a;
    color: #ffffff;
    padding: 20px 15px 15px;
    width: 100%;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

@media (min-width: 870px) {
    .badge {
        display: flex;
        align-items: center;
        position: absolute;
        top: 20px;
        right: 20px;
        border-radius: 50%;
        padding: 26px 19px 19px;
        width: 175px;
        height: 175px;
        font-size: 19px;
        line-height: 1.5;
    }
}