html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
}

body {
    background-color: var(--theme-color-background-body-background-color);
    color: var(--theme-color-text-text-color);
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px;
    line-height: 32px;
}

section {
    width: 100%;
}

h1 {
    font-family: "Poppins-SemiBold", sans-serif;
    font-size: 3.6rem;
}

h2 {
    font-family: "Poppins-SemiBold", sans-serif;
    font-size: 3rem;
}

h3 {
    font-size: 1.8rem;
    font-family: "Poppins-Medium", sans-serif;
}

h6 {
    font-size: 1.2rem;
    font-family: "Poppins-SemiBold", sans-serif;
}

p strong {
    font-family: "Poppins-SemiBold", sans-serif;
}

a {
    color: var(--theme-color-text-link-color);
}

div.clear-both {
    clear: both;
}

@media only screen and (max-width: 1500px) {
    h1 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
}

/* Materialize overwrites */
.container {
    width: 80%;
    max-width: 1738px;
}

.blue {
    background-color: var(--theme-color-button-secondary-buttons-background-color) !important;
}

.btn {
    padding: 0 24px !important;
    height: unset !important;
    line-height: unset !important;
    border-radius: 10px;
    text-transform: unset !important;
}

.btn.blue {
    color: var(--theme-color-button-secondary-buttons-text-color);
    font-family: "Poppins-Light", sans-serif;
}

.btn.yellow {
    background-color: var(--theme-color-button-primary-buttons-background-color) !important;
    color: var(--theme-color-button-primary-buttons-text-color);
}

div.card {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

div.card div.card-title {
    font-family: "Poppins-SemiBold", sans-serif;
    display: block !important;
    line-height: 36px !important;
    margin-bottom: 8px !important;
    margin: 15px 0 20px 0 !important;
    font-size: 2rem !important;
}

div.card label {
    font-family: "Poppins-Medium", sans-serif;
    -webkit-transform: translateY(-28px);
    transform: translateY(-18px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    font-size: 16px;
    color: var(--theme-color-text-title-color);
}

div.card input {
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px !important;
    border: 1px solid #dcdfe5 !important;
    border-radius: 10px !important;
    height: 50px !important;
    margin-top: 20px !important;
    padding-left: 10px !important;
}

div.card input[type=text]:not(.browser-default):focus:not([readonly]),
div.card input[type=email]:not(.browser-default):focus:not([readonly]),
div.card textarea:not(.browser-default):focus:not([readonly]) {
    border-bottom: 1px solid #dcdfe5 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

select.browser-default {
    margin-top: 20px;
}

@media only screen and (max-width: 601px) {
    nav, nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i {
        height: 64px;
        line-height: 64px;
    }
}

/* Navigation */
nav {
    background-color: unset;
    box-shadow: none;
    color: unset;
    height: 175px;
}

nav div.brand-logo {
    height: 100%;
    padding: 25px 25px 25px 0;
}

nav div.brand-logo img {
    width: 100%;
    height: 100%;
    max-width: 150px;
}

nav div.brand-logo a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

nav ul#primary-menu {
    float: right;
    padding: 60px 0;
}

nav div.container ul li.spacer {
    margin-left: 35px;
}

nav div.container ul li.nav-btn.menu-item a {
    background-color: var(--theme-color-button-primary-buttons-background-color);
    color: var(--theme-color-button-primary-buttons-text-color);
    font-size: 16px;
    margin-top: -2px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 0 24px !important;
    height: unset !important;
    line-height: unset !important;
    border-radius: 10px;
    text-transform: unset !important;
    text-decoration: none;
    text-align: center;
    letter-spacing: .5px;
    transition: background-color .2s ease-out;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
nav div.container ul li.nav-btn.menu-item a:hover {
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

nav div.container ul li.nav-btn.menu-item a:not(nav div.container ul li.spacer.nav-btn.menu-item a) {
    background-color: var(--theme-color-button-secondary-buttons-background-color) !important;
    color: var(--theme-color-button-secondary-buttons-text-color);
    border: unset !important;
    font-family: "Poppins-Light", sans-serif;
}

nav div.container ul li a {
    color: var(--theme-color-text-text-color);
    font-size: 16px;
}

nav div.container ul.sidenav-wrapper {
    float: right;
    padding: 60px 0;
}

nav div.container ul.sidenav-wrapper a.sidenav-trigger {
    background-color: var(--theme-color-button-primary-buttons-background-color);
    color: var(--theme-color-button-primary-buttons-text-color);
    border-radius: 100%;
}

nav div.container ul.sidenav-wrapper li a.sidenav-trigger:hover {
    background-color: var(--theme-color-button-primary-buttons-background-color);
}

nav div.container ul.sidenav-wrapper li a.sidenav-trigger i {
    width: 34px;
    text-align: center;
}

@media only screen and (max-width: 1650px) {

    .container {
        width: 90%;
        max-width: 1738px;
    }

}

@media only screen and (max-width: 1500px) {

    nav div.container ul li.spacer {
        margin-left: 0;
    }

    nav div.container ul li a.btn.blue {
        margin-right: 0;
    }

}

@media only screen and (max-width: 1420px) {

    nav div.container ul li.nav-btn,
    nav div.container ul li a {
        font-size: 14px !important;
    }

}

@media only screen and (max-width: 1280px) {

    nav div.container ul#primary-menu li:not(nav div.container ul#primary-menu li.nav-btn) {
        display: none;
    }

    nav div.container a.sidenav-trigger {
        display: block;
    }

}

@media only screen and (max-width: 1024px) {

    nav div.container ul#primary-menu {
        display: none;
    }

}

@media only screen and (max-width: 992px) {

    nav div.brand-logo {
        left: unset;
        -webkit-transform: unset;
        transform: unset;
    }

}

/* Header */
header {
    background-image: url("/wp-content/themes/innerdivine/assets/img/background-hero-line.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    /*margin-bottom: -70px;*/
}

@media only screen and (max-width: 992px) {

    header {
        background: none !important;
    }

}

section#header {
    padding-bottom: 100px;
}

section#header img.banner {
    width: 100%;
    margin-top: -10px;
}

section#header div.header-video {
    text-align: center;
    padding: 45px;
    transform: rotate(3deg);
}

section#header div.header-video i {
    pointer-events: none;
    position: absolute;
    font-size: 104px;
    left: 0;
    right: 0;
    top: calc(50% - 52px);
    color: var(--theme-color-text-text-color-secondary);
    transform: rotate(-3deg);
}

section#header div.header-video img {
    max-height: 650px;
    max-width: 650px;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    -webkit-box-shadow: 0px 0px 23px 10px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 23px 10px rgba(0,0,0,0.10);
    box-shadow: 0px 0px 23px 10px rgba(0,0,0,0.10);
    cursor: pointer;
}

section#header ul li {
    float: left;
}

section#header ul li:first-child,
section#header ul li:nth-child(2) {
    margin-right: 25px;
}

section#header ul li a {
    font-size: 16px;
}

section#header a.btn.yellow {
    min-width: 150px;
}

section#header div#overlay {
    display: none;
    z-index: 9999;
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

section#header div#overlay div.container {
    margin-top: 50px;
    max-width: 1300px;
}

section#header div.container div.frame-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

section#header div.container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

section#header div.overlay-background {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
    cursor: pointer;
}

@media only screen and (max-width: 1425px) {

    section#header ul li:first-child {
        margin-right: 10px;
    }

    section#header ul li a {
        font-size: 14px;
        padding: 0px 10px !important;
    }

}

@media only screen and (max-width: 1200px) {

    section#header div.header-video {
        padding: 45px 0 45px 45px;
    }

}

@media only screen and (max-width: 992px) {

    section#header ul li {
        width: calc(50% - 25px);
    }

    section#header ul li:first-child {
        margin-right: 25px;
    }

    section#header ul li a {
        width: 100%;
        font-size: 16px;
        padding: 0px 24px !important;
    }

    section#header div.header-video {
        padding: 0;
        margin-top: 60px;
    }

    section#header ul li.nav-btn {
        width: 100%;
        margin-right: unset;
        margin: 15px 0;
        float: unset;
    }

    section#header div.header-video img {
        max-height: 550px;
        max-width: 550px;
    }
    section#header ul {
        height: unset !important;
    }
}

@media only screen and (max-width: 786px) {





}

section#cta {
    background-color: var(--theme-color-background-primary-background-color);
}

section#cta div.container {
    padding: 50px 0 5px 0;
}

section#cta div.owl-stage {
    display: flex;
    margin-bottom: 10px;
}

/* Hide dots if there is 1 */
.owl-dots button:only-child {
    display: none;
}

section#cta div.owl-dots {
    display: block;
    text-align: center;
    margin-top: 20px;
}

section#cta div.owl-dots span {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    display: block;
    background-color: var(--theme-color-button-secondary-buttons-background-color);
    border-radius: 100%;
}

section#cta div.owl-dots button.active span {
    color: var(--theme-color-button-secondary-buttons-text-color);
}

section#cta div.card {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 35px;
    padding: 15px;
    box-shadow: unset;
}

section#cta div.card div.card-content {
    flex: 1;
}

section#cta div.card div.card-content p {
    padding-bottom: 15px;
}

section#cta div.card div.card-content a {
    position: absolute;
    bottom: 25px;
}

section#cta a.all-posts {
    color: #fff;
}

@media only screen and (max-width: 1200px) {

    section#cta div.row div.col {
        margin-bottom: 25px;
    }

}

section#timeline {
    margin-bottom: 100px;
}

section#timeline div.container {
    margin-top: 100px;
}

section#timeline h2 {
    margin: 15px 0;
}

section#timeline div.description {
    width: 90%;
    border-bottom: 1px solid #f2e8d7;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

section#timeline div.dates span {
    font-size: 1.5rem;
}

section#timeline div.dates a {
    color: var(--theme-color-text-link-color);
}

section#timeline div.dates div.wrapper {
    margin-top: 10px;
}

section#timeline div.dates div.card,
section#therapists-details div.coming-id-days div.card,
section#calendar div.card {
    max-width: 100%;
    width: 400px;
    display: inline-block;
    box-shadow: unset;
    border: 1px solid #f0ede9;
    border-radius: 15px;
    padding: 20px;
}

/** Check if not double */
section#therapists-details div.coming-id-days div.card,
section#calendar div.card {
    width: unset;
}

section#timeline div.dates div.card div.card-title,
section#therapists-details div.coming-id-days div.card div.card-title,
section#calendar div.card div.card-title {
    text-transform: uppercase;
    color: var(--theme-color-text-link-color);
    margin-top: 0 !important;
}

section#timeline div.dates div.card p,
section#therapists-details div.coming-id-days div.card p,
section#calendar div.card p {
    margin: 0;
    font-size: 18px;
    color: #4d4d4d;
}

section#timeline div.timeline,
section#timeline div.content {
    float: left;
}

section#timeline div.timeline-item {
    position: relative;
    margin-bottom: 20px;
    min-height: 170px;
}

section#timeline div.timeline-item div.step {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--theme-color-button-primary-buttons-background-color);
    border-radius: 100%;
    color: var(--theme-color-button-primary-buttons-text-color);
    text-align: center;
    line-height: 50px;
    font-size: 22px;
}

section#timeline div.timeline-item div.line {
    position: absolute;
    height: calc(100% - 70px);
    width: 1px;
    left: 25px;
    background-color: #cac8c4;
    z-index: -1;
    margin-top: 70px;
    -webkit-box-shadow: 1px 0px 1px 0px rgba(202,200,196,1);
    -moz-box-shadow: 1px 0px 1px 0px rgba(202,200,196,1);
    box-shadow: 1px 0px 1px 0px rgba(202,200,196,1);
}

section#timeline div.timeline-wrapper div.timeline-item:last-child div.line {
    display: none;
}

section#timeline div.content {
    width: calc(100% - 75px);
    margin-left: 25px;
}

section#timeline div.content h3 {
    margin-top: 10px;
}

section#timeline a.btn.blue {
    margin-left: 75px;
    padding: 18px !important;
    font-size: 18px;
}

section#timeline a.btn.yellow {
    margin-top: 15px;
    margin-left: 75px;
    padding: 18px !important;
    font-size: 18px;
}

@media only screen and (max-width: 992px) {

    section#timeline div.dates {
        border-bottom: 1px solid #f2e8d7;
        padding-bottom: 20px;
        margin-bottom: 35px;
    }

}

@media only screen and (max-width: 736px) {

    section#timeline div.description {
        width: 100%;
    }

}

@media only screen and (max-width: 600px) {

    section#timeline a.btn.blue {
        margin-left: unset;
        width: 100%;
    }

}

section#therapists {

}

section#therapists div.owl-carousel div.owl-dots {
    display: unset;
}

section#therapists div.owl-carousel div.owl-dots {
    display: block;
    text-align: center;
}

section#therapists div.owl-carousel div.owl-dots button span {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    display: block;
    background-color: var(--theme-color-button-primary-buttons-background-color);
    border-radius: 100%;
}

section#therapists div.owl-carousel div.owl-dots button.active span {
    background-color: var(--theme-color-button-secondary-buttons-background-color);
}

section#therapists a.btn.all-therapists {
    padding: 18px !important;
    font-size: 18px;
    float: right;
    margin: 2rem 0;
}

@media only screen and (max-width: 600px) {

    section#therapists a.btn.all-therapists {
        float: unset;
        width: 100%;
    }

}

section#introduction {
    position: relative;
    background-image: url(/wp-content/themes/innerdivine/assets/img/clouds-background.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

section#introduction div.container {
    padding-top: 100px;
    z-index: 1;
    position: relative;
    color: var(--theme-color-text-text-color-secondary);
    padding-bottom: 60px;
}

section#introduction div.container h1 {
    margin-top: 20px;
}

section#introduction ul li a {
    color: var(--theme-color-text-text-color-secondary);
    border-bottom: 1px solid var(--theme-color-text-text-color-secondary);
}

section#introduction div.card {
    margin-left: 50px;
    padding: 25px 50px;
    border-radius: 25px;
    color: var(--theme-color-text-text-color);
}

section#introduction div.card div.card-title {
    line-height: 42px !important;
}

section#introduction div.card p {
    font-size: 18px;
    color: #808080;
}

/*section#introduction div.card form {
    margin-top: 40px;
}

section#introduction div.card form div.input-field {
    margin-top: 20px;
}*/

section#introduction div.card .btn {
    padding: 18px !important;
    width: 100%;
    font-size: 16px;
    height: unset !important;
}

section#introduction div.card .btn.show-on-small {
    display: none;
}

section#introduction div.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--theme-color-background-secondary-background-color), #ffc10726);
}

@media only screen and (max-width: 1280px) {

    section#introduction div.card {
        margin-left: 0;
    }

}

@media only screen and (max-width: 1200px) {

    section#introduction div.card {
        max-width: 800px;
        margin: 50px auto 50px auto;
    }

}

@media only screen and (max-width: 600px) {

    section#introduction div.card {
        padding: 15px 25px;
    }

    /*section#introduction div.card input {
        width: calc(100% - 10px);
    }*/

    section#introduction div.card .btn.show-on-small {
        display: block;
    }

}

section#reviews {
    color: var(--theme-color-text-text-color-secondary);
    background-color: var(--theme-color-background-tertiary-background-color);
    margin-top: -20px;
}

section#reviews div.container {
    padding-top: 100px;
    padding-bottom: 100px;
}

section#reviews h2 {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

section#reviews div.owl-carousel {
    margin-top: 50px;
}

section#reviews div.owl-carousel div.item {
    transition: opacity 0.3s ease;
}

section#reviews div.owl-carousel div.owl-item div.item {
    opacity: 1 !important;
}

section#reviews div.owl-carousel p.review {
    padding: 0 80px;
    text-align: center;
}

section#reviews div.owl-carousel div.review-footer {
    text-align: center;
}

section#reviews div.owl-carousel div.review-footer div.user {
    display: inline-block;
}

section#reviews div.owl-carousel img {
    width: 75px;
    border-radius: 100%;
    float: left;
}

section#reviews div.owl-carousel div.user-info {
    text-align: left;
    float: left;
    margin-left: 15px;
    padding-top: 14px;
    line-height: 24px;
}

section#reviews div.owl-carousel div.user-info p {
    margin: 0;
}

section#reviews div.owl-carousel div.user-info p.title {
    font-family: "Poppins-Light", sans-serif;
}

section#reviews div.owl-carousel div.owl-dots {
    margin: 30px 0;
    text-align: center;
}

section#reviews div.owl-carousel button.owl-dot span {
    background-color: #676562;;
    height: 7px;
    width: 50px;
    display: inline-block;
    border-radius: 5px;
    margin: 0 5px;
}

section#reviews div.owl-carousel button.owl-dot.active span {
    background-color: var(--theme-color-button-secondary-buttons-background-color);
}

@media only screen and (max-width: 1450px) {

    section#reviews div.owl-carousel p.review {
        padding: 0 40px;
    }

}

@media only screen and (max-width: 1150px) {

    section#reviews div.owl-carousel p.review {
        max-width: 600px;
        margin: 0 auto 50px auto;
    }

}

@media only screen and (max-width: 550px) {

    section#reviews div.owl-carousel button.owl-dot span {
        width: 25px;
    }

}

section#sign-up {
    background-color: var(--theme-color-background-secondary-background-color);
}

section#sign-up div.container {
    padding-top: 100px;
    padding-bottom: 50px;
    color: var(--theme-color-text-text-color-secondary);
}

section#sign-up h1 {
    margin-top: 0;
}

section#sign-up a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: .1s ease-in-out;
}

    section#sign-up a:hover {
        border-bottom: 1px solid rgba(255,255,255,1);
    }

section#sign-up div.card {
    margin-left: 50px;
    padding: 25px 50px;
    border-radius: 25px;
    color: var(--theme-color-text-text-color);
}

section#sign-up div.card div.card-title {
    line-height: 42px !important;
}

section#sign-up div.card p {
    margin-top: 0;
    font-size: 18px;
}

section#sign-up div.card p.product-terms {
    color: #808080;
}

section#sign-up div.card h5 {
    font-family: "Poppins-SemiBold", sans-serif;
}

section#sign-up div.card ul li:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Solid", sans-serif;
    color: var(--theme-color-text-text-color);
    font-size: 18px;
    margin-right: 10px;
}

section#sign-up div.card a.btn {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    padding: 18px !important;
}

@media only screen and (max-width: 1386px) {

    section#sign-up div.card {
        margin-left: unset;
    }

}

@media only screen and (max-width: 1200px) {

    section#sign-up div.card {
        margin-top: 50px;
    }

}

@media only screen and (max-width: 600px) {

    section#sign-up div.card {
        padding: 15px 25px;
    }

}

section#faq div.container {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 60px;
}

section#faq div.container ul.collapsible {
    margin: 0 auto;
    max-width: 900px;
    border-top: unset;
    border-right: unset;
    border-left: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

section#faq div.container ul.collapsible li {
    margin: 15px 0;
}
section#faw div.container ul.collapsible li:first-child {
    margin: 0 0 15px 0;
}

section#faq div.container ul.collapsible div.collapsible-header {
    position: relative;
    border-bottom: unset;
    padding: 25px;
    background-color: var(--theme-color-background-primary-background-color);
    color: var(--theme-color-text-text-color-secondary);
    border-radius: 15px;
}

section#faq div.container ul.collapsible div.collapsible-header span {
    max-width: calc(100% - 42px);
    font-size: 18px;
    font-family: "Poppins-SemiBold", sans-serif;
}

section#faq div.container ul.collapsible div.collapsible-header div.icon {
    position: absolute;
    right: 0px;
}

section#faq div.container ul.collapsible div.collapsible-header div.icon i {
    font-size: 20px !important;
    line-height: 25px;
}

section#faq div.container ul.collapsible div.collapsible-body {
    text-align: left;
    font-size: 18px;
}

section#faq div.container p a {
    color: var(--theme-color-text-link-color);
    border-bottom: 1px solid var(--theme-color-text-link-color);
}

section#faq div.form-wrapper {
    background-color: var(--theme-color-background-secondary-background-color);
    width: calc(100% - 50px);
    margin: 0 auto;
    border-radius: 20px;
    padding: 50px 0 50px 0;
}

section#faq div.form-wrapper div.container {
    padding-top: 0;
}

section#faq div.form-wrapper h1 {
    color: var(--theme-color-text-title-color-secondary);
}

section#faq div.form-wrapper p {
    color: var(--theme-color-text-text-color-secondary);
}

section#faq div.form-wrapper form {
    text-align: left;
}

section#faq div.form-wrapper div.card {
    padding: 25px 50px;
    max-width: 750px;
    margin: 0 auto;
    border-radius: 25px;
}

section#faq div.form-wrapper div#notification.error {
    background-color: rgba(255,0,0,0.3);
    text-align: left;
    border: 1px solid rgba(255, 0, 2, 0.5);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

section#faq div.form-wrapper div#notification.success {
    background-color: rgba(0,255,0,0.3);
    text-align: left;
    border: 1px solid rgba(0, 150, 2, 0.5);
    border-radius: 5px;
    padding: 10px;
}

section#faq div.form-wrapper div.card p.radio {
    min-width: 100%;
    display: inline-block;
    text-align: left;
    border: 1px solid rgba(128, 128, 128, 0.29);
    padding: 5px;
    border-radius: 10px;
}

section#faq div.form-wrapper div.card p.radio span.description {
    display: block;
    text-align: left;
    color: #808080;
    padding-left: 35px;
}

section#faq div.form-wrapper div.card textarea {
    height: 155px;
    border: 1px solid rgba(128, 128, 128, 0.29);
    min-width: 100%;
    display: inline-block;
    text-align: left;
    border: 1px solid rgba(128, 128, 128, 0.29);
    padding: 5px;
    border-radius: 10px;
    margin-top: 20px !important;
}

section#faq div.form-wrapper input[type=submit] {
    height: 64px !important;
    line-height: 64px !important;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
}

@media only screen and (max-width: 600px) {

    section#faq div.form-wrapper div.card {
        padding: 25px;
    }

    section#faq div.form-wrapper div.card input {
        width: calc(100% - 10px);
    }

    section#faq div.form-wrapper div.card p.radio,
    section#faq div.form-wrapper div.card textarea {
        min-width: unset;
        width: calc(100% - 10px);
    }

    section#faq div.form-wrapper div.card input#AddressNumber,
    section#faq div.form-wrapper div.card input#City {
        margin-top: 0 !important;
    }

}

@media only screen and (max-width: 500px) {

    section#faq div.form-wrapper {
        width: 100%;
    }

}

@media only screen and (max-width: 430px) {

    section#faq div.form-wrapper textarea#Questions {
        margin-top: 60px !important;
    }

}

footer {
    padding-top: 100px;
}

footer div.container {
    width: 95%;
}

footer div.container div.wrapper.newsletter {
    width: 80%;
}

footer img {
    max-width: 150px;
}

footer div.newsletter-input {
    position: relative;
    max-width: 550px;
    width: 100%;
}

footer div.newsletter-input input {
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px !important;
    border: 1px solid var(--theme-color-button-primary-buttons-background-color) !important;
    border-radius: 10px !important;
    height: 50px !important;
    margin-top: 20px !important;
    padding-left: 10px !important;
}

footer div.newsletter-input a.btn {
    position: absolute;
    top: 20px;
    right: -12px;
    padding: 10px 30px !important;
    width: 200px;
}

footer p.disclaimer {
    font-size: 12px;
    line-height: 14px;
    max-width: 550px;
}

footer input[type=email]:not(.browser-default):focus:not([readonly]) {
    border-bottom: 1px solid #dcdfe5 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

footer h2 {
    margin-top: 0;
}

footer div.row.socials {
    margin-bottom: 55px;
}

footer div.socials a {
    color: var(--theme-color-text-text-color);
}

footer div.socials i,
footer div.contact-info div.wrapper > i {
    font-size: 24px;
    display: block !important;
    width: 75px;
    height: 75px;
    border: 1px solid #b1b1b1;
    border-radius: 100%;
    text-align: center;
    padding-top: 23px;
    float: left;
    transition: .25s ease-in-out all;
}

footer div.socials div.social:hover i {
    border: 1px solid var(--theme-color-button-primary-buttons-background-color);
}

footer div.contact-info div.wrapper {
    position: relative;
}

footer div.contact-info div.wrapper a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

footer div.contact-info div.wrapper > i {
    width: 65px;
    height: 65px;
    padding-top: 19px;
}

footer div.contact-info div.wrapper div.call-to-action i {
    transition: .25s ease-in-out all;
}

footer div.contact-info div.wrapper:hover {
    border: 1px solid var(--theme-color-button-primary-buttons-background-color);
}

footer div.contact-info div.wrapper:hover > i {
    border: 1px solid var(--theme-color-button-primary-buttons-background-color);
}

footer div.socials p {
    float: left;
    line-height: 45px;
    margin-left: 15px;
    font-family: 'Poppins-Medium', sans-serif;
}

@media only screen and (max-width: 1500px) {

    footer div.container div.wrapper.newsletter {
        width: 100%;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1540px) {

    footer div.socials i,
    footer div.contact-info div.wrapper > i {
        width: 55px;
        height: 55px;
        padding-top: 14px;
    }

    footer div.socials p {
        line-height: 23px;
        margin-left: 5px;
        font-size: 15px;
    }

    footer div.contact-info div.wrapper {
        padding: 15px !important;
    }

    footer div.contact-info div.wrapper p {
        display: none;
    }

    footer div.contact-info div.wrapper p span {
        font-size: 12px;
    }

    footer div.contact-info div.call-to-action span {
        font-size: 16px !important;
    }

}

footer div.contact-info div.wrapper {
    border: 1px solid #b1b1b1;
    border-radius: 15px;
    padding: 25px;
}

footer div.contact-info div.wrapper p {
    float: left;
    line-height: 45px;
    margin: 10px 0 0 15px;
    font-family: 'Poppins-Medium', sans-serif;
}

footer div.contact-info div.wrapper p span {
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 14px;
    line-height: 18px;
    display: block;
}

footer div.contact-info div.call-to-action {
    margin-top: 25px;
    width: 100%;
}

footer div.contact-info div.call-to-action span {
    width: 75%;
    float: left;
    font-family: "Poppins-SemiBold", sans-serif;
    font-size: 20px;
    line-height: 24px;
}

footer div.contact-info div.call-to-action i {
    width: 25%;
    float: right;
    text-align: right;
    font-size: 48px;
}

footer div.bottom-footer {
    border-top: 1px solid #f3e9d8;
}

footer div.bottom-footer div.container {
    position: relative;
}

footer div.bottom-footer div.container p a {
    color: #000;
    margin: 0 15px;
}
footer div.bottom-footer div.container p a:last-child {
    margin-right: 0;
}

footer div.bottom-footer div.container h1 {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    top: 35px;
    font-size: 11.5vw;
    text-wrap: nowrap;
    overflow: hidden;
    margin: 0;
    color: rgba(248,204,131,0.61);
    opacity: 0.25;
}

@media only screen and (min-width: 732px) and (max-width: 1200px) {

    footer div.wrapper.newsletter img,
    footer div.wrapper.newsletter div.content {
        float: left;
    }

    footer div.wrapper.newsletter img {
        width: 150px;
    }

    footer div.wrapper.newsletter div.content {
        width: calc(100% - 185px);
        margin-left: 35px;
    }

    footer div.wrapper.newsletter div.content p {
        margin: 0;
    }

}

@media only screen and (min-width: 600px) and (max-width: 992px) {

    footer div.row.socials div.col:first-child,
    footer div.row.socials div.col:nth-child(2) {
        margin-bottom: 25px;
    }

}

@media only screen and (max-width: 992px) {

    footer div.row.contact-info div.wrapper {
        margin-bottom: 25px;
    }

}

@media only screen and (max-width: 600px) {

    footer div.row.socials div.col {
        margin-bottom: 25px;
    }

    footer div.row.socials {
        margin-bottom: 25px;
    }

}

@media only screen and (max-width: 1200px) {

    footer h2 {
        margin-top: 100px;
    }

}

@media only screen and (max-width: 732px) {

    footer div.bottom-footer p.left,
    footer div.bottom-footer p.right {
        float: unset !important;
    }

    footer div.bottom-footer p a:first-child {
        margin: unset !important;
    }

}

@media only screen and (max-width: 500px) {

    footer div.newsletter-input input {
        width: calc(100% - 10px) !important;
    }

    footer div.newsletter-input a.btn {
        position: unset;
        width: 100%;
    }

    footer div.bottom-footer p a {
        margin: unset !important;
        display: block;
    }

}

section#therapists-details div.coming-id-days div.owl-stage,
section#calendar div.owl-stage {
    display: flex;
}

section#therapists-details div.coming-id-days div.owl-item,
section#calendar div.owl-item {
    display: flex;
    align-items: stretch;

}

section#therapists-details div.coming-id-days div.owl-item div.card,
section#calendar div.owl-item div.card {
    padding: 20px 20px 100px 20px;
}

section#therapists-details div.coming-id-days div.owl-item div.card a:not(section#therapists div.coming-id-days div.card a.btn.btn-large),
section#calendar div.owl-item div.card a:not(section#therapists div.coming-id-days div.card a.btn.btn-large) {
    display: block;
}

section#therapists-details div.coming-id-days div.card a.btn.btn-large,
section#calendar div.card a.btn.btn-large {
    box-shadow: none;
    padding: 7px 25px !important;
    margin-top: 25px;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

section#therapists-details div.coming-id-days div.owl-dots,
section#calendar div.owl-dots {
    display: block;
    text-align: center;
    margin-top: 20px;
}

section#therapists-details div.coming-id-days div.owl-dots span,
section#calendar div.owl-dots span {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    display: block;
    background-color: var(--theme-color-button-secondary-buttons-background-color);
    border-radius: 100%;
}

section#therapists-details div.coming-id-days div.owl-dots button.active span,
section#calendar div.owl-dots button.active span {
    background-color: var(--theme-color-button-primary-buttons-background-color);
}

.owl-nav {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    pointer-events: none;
}

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        position: absolute;
        height: 100%;
        pointer-events: all;
    }

    .owl-nav button.owl-prev {
        text-align: left;
        left: -20px;
    }

    .owl-nav button.owl-next {
        right: -20px;
    }

        .owl-nav button.owl-prev i,
        .owl-nav button.owl-next i {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            font-size: 4rem;
            line-height: 45px;
            height: 55px;
            width: 55px;
            display: inline-block;
            text-align: center;
            border-radius: 100%;
        }

        .owl-nav button.owl-prev i {
            padding: 5px 10px 0px 0px;
        }

        .owl-nav button.owl-next i {
            padding: 5px 20px;
        }

section#therapists-details input[type=text] {
    background-color: #fff;
    color: #6b6b6b;
    font-family: "Poppins-Regular", sans-serif;
    font-size: 16px !important;
    border: 1px solid #dcdfe5 !important;
    border-radius: 10px !important;
    height: 50px !important;
    margin-top: 20px !important;
    padding: 5px;
    padding-left: 10px !important;
}
section#therapists-details input[type=text]::placeholder {
    color: #6b6b6b;
}

section#therapists-details input[type=text]:not(.browser-default) {
    border-bottom: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

section#therapists-details form a {
    box-shadow: none;
    padding: 12px 25px !important;
    margin-top: 22px;
}

section#therapists div.card {
    width: 100%;
    height: 500px;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eeebe8;
    text-align: center;
}

section#therapists-details div.row.therapists div.card {
    width: 100%;
    height: 500px;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eeebe8;
    /*text-align: center;*/
}

section#therapists-details div.row.therapists div.card div.card-title,
section#therapists div.card div.card-title {
    font-size: 24px !important;
    margin: 15px 0 0px 0 !important;
}

section#therapists-details div.row.therapists div.card div.profile-image,
section#therapists div.card div.profile-image {
    margin: 0 auto;
    text-align: center;
}

section#therapists-details div.row.therapists div.card div.profile-image {
    width: 60%;
}

section#therapists div.card div.profile-image {
    width: 40%;
}

section#therapists-details div.row.therapists div.card div.profile-image img,
section#therapists div.card div.profile-image img {
    width: 100%;
    border-radius: 100%;
}

section#therapists-details div.row.therapists div.card span a,
section#therapists div.card span a {
    color: var(--theme-color-text-text-color);
}

section#therapists-details div.row.therapists div.card span.company,
section#therapists div.card span.company {
    display: block;
    margin-top: 10px;
}

section#therapists-details div.row.therapists div.card span.company i,
section#therapists div.card span.company i {
    margin-right: 5px;
}

section#therapists-details div.row.therapists div.card span.location,
section#therapists div.card span.location {
    display: block;
    margin-top: 10px;
}

section#therapists-details div.row.therapists div.card span.location i,
section#therapists div.card span.location i {
    font-size: 20px;
    margin-right: 5px;
}

section#therapists-details div.row.therapists div.card span.phone,
section#therapists div.card span.phone {
    display: block;
    margin-top: 10px;
}

section#therapists-details div.row.therapists div.card span.phone i,
section#therapists div.card span.phone i {
    font-size: 20px;
}

section#therapists-details div.row.therapists div.card a.btn {
    box-shadow: none;
    padding: 7px 25px !important;
    margin-top: 60px;
    text-align: center;
    position: absolute;
    bottom: 30px;
}

section#therapists div.card a.btn {
    box-shadow: none;
    padding: 7px 25px !important;
    margin-top: 60px;
    text-align: center;
    position: absolute;
    left: calc(50% - 96px);
    bottom: 30px;
}

section#therapists-details div.row.therapists div.card a.btn i,
section#therapists div.card a.btn i {
    font-size: 1rem;
}

@media only screen and (max-width: 800px) {
    section#therapists-details div.coming-id-days div.owl-item div.card {
        width: 100%;
    }
}

section#events {

}

section#events div.card-image span {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: var(--theme-color-button-primary-buttons-background-color);
    padding: 5px 20px;
    color: var(--theme-color-button-primary-buttons-text-color);
    border-top-left-radius: 5px;
}

section#events div.card-content {
    padding: 24px 0;
}

section#events div.card-content p {
    margin: 15px 0 0 0;
    line-height: 1.5em;
}

section#events div.date-wrapper {
    width: 45px;
    margin-right: 15px;
    border-right: 2px solid var(--theme-color-button-primary-buttons-background-color);
    float: left;
}

section#events div.date-wrapper span {
    font-family: "Poppins-SemiBold", sans-serif;
}

section#events div.date-wrapper span.month {
    color: var(--theme-color-button-primary-buttons-background-color);
}

section#events div.date-wrapper span.day {
    font-size: 26px;
    line-height: 0;
    color: var(--theme-color-button-secondary-buttons-background-color);
}

section#events div.card-title {
    float: left;
    margin: 0 !important;
    max-width: calc(100% - 70px);
}

main#all-posts div.col {
    display: contents;
}

main#all-posts div.card {
    max-width: 100%;
    display: inline-block;
    box-shadow: unset;
    border: 1px solid #f0ede9;
    border-radius: 15px;
    padding: 20px;
}