html, body {
    font-family: "Avenir";
    font-weight: normal;
    font-size: 1rem;
    color: #333;
    overflow-x: hidden;
}
h1 {
    font-weight: bold;
    font-size: 3em;
}
h2 {
    font-weight: bold;
    font-size: 2.5em;
    color: #272D68;
}
h3 {
    font-weight: bold;
    font-size: 2em;
    color: #272D68;
}
h4 {
    font-weight: bold;
    font-size: 1.6em;
    color: #272D68;
}
a, a:visited {
    text-decoration: none;
    color: #27AADF;
}
a:hover {
    text-decoration: none;
    color: #272D68;
}
.custom-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.custom-list li i {
    padding-right: 8px;
}

.header {
    width: 100%;
    background-image: url(../images/svg/header-background.svg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}

.header.subpage {
    background-color: #272D68;
    padding-bottom: 120px;
}
.topbar-wrap {
    width: 100%;
    transition: all 0.3s ease-in;
}
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}
.logo {
    width: 100px;
    height: auto;
}
.logo img {
    width: 100%;
    height: auto;
}
/** make topbar sticky when page is scrolled **/
.sticky {
    background-color: rgba(39, 45, 104, 0.9);
    position: fixed;
    top: 0;
    z-index: 99;
}
.sticky .logo {
    width: 70px;
}
.sticky + .content {
    padding-top: 150px;
}
.sticky .member-text {
    font-size: 12px;
}
.topbar-contact .icon {
    padding: 4px 8px;
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
}
.topbar-contact .remix-icon  {
    font-size: 1.1em;
    vertical-align: bottom;
}
.topbar-contact a:link, .topbar-contact a:visited {
    width: 30px;
    padding: 10px;
    color: #FFF;
    font-size: 1em;
    font-weight: 500;
}

.topbar-contact a:hover{
    color: #009EE7 !important;
}

.btn-main,
.btn-main:visited {
    background-color: #009EE7;
    color: #FFF;
    border-radius: 2.5em;
    padding: 0.5em 2em;
    transition: all 0.3s ease-out;
    font-weight: normal;
    margin: 0 0.5em;
}
.btn-main:hover {
    background-color: #4765AC;
    color: #FFF;
}
.btn-hollow,
.btn-hollow:visited {
    border-radius: 2.5em;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 0.5em 2em;
    transition: all 0.3s ease-in;
    background-color: transparent;
    font-weight: 500;
    align-items: center;
    vertical-align: center;
    margin: 0 5px;
}
.remix-icon  {
    font-size: 1.1em;
    vertical-align: bottom;
}
.btn-hollow:hover {
    border-radius: 2.5em;
    color: #4765AC;
    background-color: #FFF;
}
.notice {
    border-radius: 16px;
    background: linear-gradient(to right, #009EE7 0%,#009EE7 2%,#EAF0FF 2%,#EAF0FF 100%);
    padding: 1em 3em;
}
.therapies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2.5em;
}
.therapy {
    flex: 0 0 200px;
    background-color: #FFF;
    border: 1px solid #4765AC;
    border-radius: 2.2em;
    padding: 0.5em 1.5em;
    margin: 1em 0.5em 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 3px 15px #00000029;
    width: 200px;
    height: 100%;
}
.therapy .title {
    flex: 1;
    color: #4765AC;
    font-weight: normal;
    font-size: 1em;
}
.therapy .icon {
    background-size: contain;
    width: 3em;
    height: 3em;
    margin: 1.5em 1.25em 1.25em 1.25em;
}
.service-models {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.model {
    background-color: #eaf0ff;
    color: #4765ac;
    font-weight: bold;
    padding: 1em;
    display: flex;
    align-items: center;
    margin-right: 2em;
    border-radius: 1em;
    flex: 1 1 50%;
}
.model .icon {
    background-size: cover;
    width: 3em;
    height: 3em;
    margin: 0 1.25em;
}
.model .title {
    flex: 1;
    font-size: 1.2em;
}
.model:hover {
    background-color: #4765ac;
}
.model:hover .title {
    color: #FFF;
}
.icon-speech {
    background: url(../images/svg/icon-speech.svg) no-repeat;
}
.icon-ot {
    background: url(../images/svg/icon-ot.svg) no-repeat;
}
.icon-educational {
    background: url(../images/svg/icon-educational.svg) no-repeat;
}
.icon-brain {
    background: url(../images/svg/icon-brain.svg) no-repeat;
}
.icon-therapyhome {
    background: url(../images/svg/icon-therapyhome.svg) no-repeat;
}
.icon-telehealth {
    background: url(../images/svg/icon-telehealth.svg) no-repeat;
}
.therapy:hover,
.therapy.active {
    background-color: #4765ac;
}
.therapy:hover .title,
.therapy.active .title {
    color: #FFF;
}
.therapy:hover .icon-speech,
.therapy.active .icon-speech {
    background: url(../images/svg/icon-speech-white.svg) no-repeat;
}
.therapy:hover .icon-ot,
.therapy.active .icon-ot{
    background: url(../images/svg/icon-ot-white.svg) no-repeat;
}
.therapy:hover .icon-educational,
.therapy.active .icon-educational {
    background: url(../images/svg/icon-educational-white.svg) no-repeat;
}
.therapy:hover .icon-brain,
.therapy.active .icon-brain{
    background: url(../images/svg/icon-brain-white.svg) no-repeat;
}
.model:hover .icon-therapyhome {
    background: url(../images/svg/icon-therapyhome-white.svg) no-repeat;
}
.model:hover .icon-telehealth {
    background: url(../images/svg/icon-telehealth-white.svg) no-repeat;
}

.steps {
    padding: 1em 0 3em;
}
.step .title {
    font-size: 1.5em;
    font-weight: bold;
    color: #4765AC;
    margin: 0.6em 0;
}

.step .number {
    font-size: 2em;
    color: #272D68;
    font-weight: bold;
    border: 3px solid #272d68;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    line-height: 1.9em;
    display: block;
    text-align: center;
}

/* to hide social icons */
.social-icons {
    display: none;
}

/* to style font-awesome icons */
.social-icon a {
    width: 1.875em;
    padding: 0.625em 0.5em;
    color: #333333;
    font-size: 1em;
}

.social-icon a:hover{
    color: #4765ac;
}

.social-icon a:hover .feather{
    fill: #4765ac;
}

.social-icon a:hover .feather-stroke{
    stroke: #4765ac;
    fill: none;
}

/* to style feather icons */
.feather {
    width: 1em;
    height: 1em;
    stroke: none;
    fill: #333333;
}

.feather-stroke {
    stroke: #333333;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icon:first-child {
    padding-left: 0;
}

.social-icon:last-child {
    padding-right: 0;
}
.display {
    padding: 2em 1.5em 3em 0;
}
.display-heading {
    font-weight: bold;
    font-size: 3em;
    color: #FFF;
}
.display-content {
    color: #FFF;
    font-size: 1em;
    line-height: 1.5em;
}
.info-technology {
    background-color: #F9F9F9;
}
.therapy-fees {
    padding: 3em 0 0 0;
    margin-bottom: 0;
}

.fee-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 1.5em;
    font-size: 1.2em;
    color: #272D68;
}

.fee-type,
.fee-type:visited {
    border: 0;
    border-bottom: 2px solid transparent;
    margin: 0 0.5em;
    color: #272D68;
    padding: 0.5em;
}
.fee-type:hover,
.fee-type.active {
    border: 0;
    border-bottom: 2px solid #272D68;
    font-weight: bold;
}

.fees-row {
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 4.5em 0 1.5em 0;
}

.fees-row-bg--first {
    background-color: #EAF0FF;
    background-image: url(../images/svg/curve-background-7.svg), url(../images/svg/curve-background-9.svg);
    background-position: center top, center bottom;
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    padding-bottom: 6em;
}
.fees-row-bg--second {
    background-color: #F7F9FF;
    background-image: url(../images/svg/curve-background-8.svg), url(../images/svg/curve-background-10.svg);
    background-position: center top, center bottom;
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    padding: 6em 0;
}
.fees-row-bg {
    background-color: #EAF0FF;
    background-image: url(../images/svg/curve-background-7.svg);
    padding-bottom: 1em;

}
.speech {
    background-color: #EAF0FF;
    background-image: url(../images/svg/curve-background-1.svg);
}
.occupational {
    background-color: #F7F9FF;
    background-image: url(../images/svg/curve-background-2.svg);
}
.educational {
    background-color: #EAF0FF;
    background-image: url(../images/svg/curve-background-3.svg);
}
.counselling-child {
    background-color: #F7F9FF;
    background-image: url(../images/svg/curve-background-4.svg);
}
.counselling-adult {
    background-color: #EAF0FF;
    background-image: url(../images/svg/curve-background-5.svg), url(../images/svg/curve-background-6.svg);
    background-position: center top, center bottom;
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    padding-bottom: 6em;
}
.fee-datas {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}
.fee-box {
    flex: 1;
    margin: 1.1em 0.8em;
    background: #FFF;
    border-radius: 1.5em;
    padding: 1em 1.2em;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    max-width: 320px;
}

.fee-box .title {
    font-weight: bold;
    color: #4765AC;
    font-size: 1.2em;
    margin-bottom: 1em;
    flex: 1;
}
.label {
    color: #272D68;
    text-transform: capitalize;
}
.fee-box .price .number {
    font-size: 4em;
    font-weight: bold;
    line-height: 1em;
    color: #272d68;
    letter-spacing: 2px;
}
.fee-box .price sup {
    font-size: 0.3em;
    top: -1.5em;
    font-weight: normal;
    color: #272d68;
    margin-right: 0.5em;
}
.company-logos {
    margin: 50px auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}
.company-card {
    max-width: 16%;
    flex: 0 0 11%;
    text-align:center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    background-color: #FFF;
    border: 1px solid #F5F5F5;
    padding: 1.5em 0;
}

.company-card:nth-child(2n+2) {
    background-color: #F8F8F8;
}

.company-card a:link,
.company-card a:visited
 {
    width: 100%;
    height: auto;
}

.umbrella-icon {
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 4px;
}

.member-text {
    color: #FFF;
    font-size: 14px;
    font-style: italic;
    width: 100%;
    padding: 1em 0 0.5em 0;
    text-align: center;
    background: rgba(255,255,255,0.1)
}
.member-text a {
    /* font-weight: 600; */
    color: #FFF;
    font-style: normal;
    padding-left: 4px;
    /* text-decoration: underline; */
}
.member-text a:hover {
    text-decoration: underline;
}

.company-logo {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;   
}
.company-logo img {
    width: 63%;
    height: auto;
}
.session-text {
    color: #272D68;
}
.disclaimer {
    color:#4765AC;
    font-size: 0.96em;
    margin: 2em auto;
}
.footer {
    background-color: #FBF5ED;
    padding: 45px 25px;
}
.footer a, .footer a:visited {
    color: #272D68;
}
.footer a:hover {
    color: #009EE7;
}
.help-text {
    font-size: 0.9em;
}
.form-input {
    border-radius: 1.5em;
    border: 1px solid #A4A2A0;
    padding: 8px 16px;
    width: 250px;
}
.form-button {
    border-radius: 1.5em;
    background-color: #009EE7;
    font-size: 1em;
    padding: 8px 32px;
    color: #FFF;
    margin-left: -45px;
}
.form-button:hover {
    border-radius: 1.5em;
    background-color: #272D68;
    font-size: 1em;
    padding: 8px 32px;
    color: #FFF;
    margin-left: -45px;
}
.copyright {
    font-size: 0.85em;
}
.contact-info {
    display: flex;
    align-items: stretch;
    margin: 0.5em 0;
}
.company-info {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0;
}
.company-info .icon,
.company-address .icon,
.contact-info .icon {
    width: 25px;
    color: #272D68;
}
.company-info > div:not(:first-child) {
    margin-left: 25px;
}
.company-info > div {
    display: flex;
}
.company-address {
    display: flex;
    margin-bottom: 1em;
}
.backtotop,
.backtotop:visited {
    border-radius: 3em;
    background-color: #4765AC;
    width: 3em;
    height: 3em;
    line-height: 3em;
    color: #FFF;
    bottom: 2em;
    right: 6em;
    display: none;
    text-align: center;
    position: fixed;
    z-index: 99;
    transition: all 0.5s ease-in;
}

.backtotop:hover {
    background-color: #272D68;
}

.feedback-form {
    background-color: #F7F9FF;
    padding: 2em;
    border-radius: 2em;
}
.show {
    display: block;
}

@media screen and (min-width:769px) and (max-width: 1024px) {
    .display {
        margin-left: 1.5em;
    }
    .display-heading {
        font-size: 2.4em;
    }
    .fee-box {
        margin: 0.9em;
    }
    .company-info {
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-direction: column;
    }
    .company-info > div:not(:first-child) {
        margin-left: 0;
    }

}

@media screen and (max-width: 1023px) {
    .therapy {
        flex: 0 0 250px;
    }
    .company-info {
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-direction: column;
    }
    .company-info > div:not(:first-child) {
        margin-left: 0;
    }
}


@media screen and (max-width:768px) {
    body {
        font-size: 0.94em;
    }
    h1 {
        font-weight: bold;
        font-size: 2.5em;
    }
    h2 {
        font-weight: bold;
        font-size: 2em;
        color: #272D68;
    }
    h3 {
        font-weight: bold;
        font-size: 1.8em;
        color: #272D68;
    }
    h4 {
        font-weight: bold;
        font-size: 1.5em;
        color: #272D68;
    }
    .topbar {
        font-size: 0.92em;
    }
    .contact-icon span:nth-child(2){
        display: none;
    }
    .logo {
        width: 80px;
    }
    .display {
        margin-left: 1em;
    }
    .fee-box {
        min-width: 240px;
    }
    .service-models {
        justify-content: space-between;
    }
    .model {
        flex: 1 1 200px;
        padding: 1em;
        flex-direction: column;
    }
    .form-input {
        border-radius: 1.5em;
        border: 1px solid #A4A2A0;
        padding: 8px 16px;
        width: 200px;
        font-size: 1em;
    }
    .form-button {
        padding: 8px 24px;
        margin-left: -45px;
        margin-top: -3px;
    }
    .sticky + .content {
        padding-top: 150px;
    }
    .display {
        padding: 1em;
    }
    .display-heading {
        font-size: 2.8em;
    }
    .non-bold {
        font-weight: 400;
    }
    .therapies {
        margin-bottom: 1em;
    }
    .therapy {
        flex: 0 0 150px;
        border-radius: 2em;
        padding: 0 0.5em;
        margin: 1em 0.5em 0.2em;
        width: 150px;
        height: 100%;
    }
    .company-card {
        max-width: 40%;
        flex: 0 1 16%;
    }
    .company-logos {
        margin: 25px auto;
    }
}

@media screen and (max-width: 565px) {
    body {
        font-size: 0.875em;
    }
    .logo {
        width: 70px;
    }
    .sticky .logo {
        width: 60px;
    }
    .sticky + .content {
        padding-top: 100px;
    }
    .topbar {
        padding: 1em;
    }
    .topbar-contact {
        margin-right: 1em;
    }
    .topbar-contact a:link, 
    .topbar-contact a:visited{
        padding: 0;
    }
    .topbar-contact .icon {
        font-size: 14px;
        padding: 4px;
    }
    .topbar-contact .remix-icon {
        font-size: 1.25em;
        vertical-align: middle;
    }
    .header {
        padding-bottom: 20px;
    }
    .display {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .display-heading {
        font-size: 2.2em;
        line-height: 1.2em;
    }
    .notice {
        border-radius: 16px;
        background: linear-gradient(
            to right,
            #009EE7 0%,
            #009EE7 3%,
            #EAF0FF 3%,
            #EAF0FF 100%
        );
        padding: 1em 2em;
    }
    .nav-item {
        margin-bottom: 1em;
    }
    .therapies {
        margin-top: 1.5em;
    }
    .therapy {
        margin: 0.5em;
        border-radius: 1.5em;
        padding: 1em 0.5em;
        flex: 1 0 110px;
        box-shadow: 0px 1px 10px #00000029;
    }
    .therapy .icon,
    .model .icon {
        background-size: contain;
        width: 2.5em;
        height: 2.5em;
        margin: 0 0 0.5em 0;
    }
    .therapy .title {
        font-size: 0.9em;
    }
    .fee-types {
        margin-bottom: 0.5em;
    }
    .step .number {
        margin: 0 auto;
    }
    .newsletter,
    .help-text {
        padding: 1em 0;
    }
    .btn-main,
    .btn-main:visited {
        border-radius: 2.5em;
        padding: 0.5em 1.2em;
        margin: 0;
        font-size: 1em;
    }
    .fees-row {
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
        padding: 3em 0 1em 0;
    }
    .fees-row-bg--first,
    .fees-row-bg--second {
        background-position: center top, center bottom;
        background-size: contain, contain;
        background-repeat: no-repeat, no-repeat;
        padding-bottom: 2em;
    }
    .fee-datas {
        justify-content: space-between;
    }
    .fee-box {
        padding: 1em 1em;
        margin: 0.5em 0.5em;
        flex: 1 0 120px;
        max-width: 170px;
        min-width: 140px;
    }
    .fee-box .title {
        font-size: 1em;
        line-height: 1.3em;
        font-weight: 600;
        letter-spacing: 0.01em;
    }
    .fee-box .price .number {
        font-size: 2.5em;
        max-width: 100px;
    }
    .service-models {
        align-items: stretch;
        margin-bottom: 1.25em;
    }
    .model {
        margin: 0.5em 0.5em;
        padding: 1em 0.5em;
        font-size: 1em;
    }
    .show {
        display: none;
    }
    .bigger-icon {
        font-size: 1.5em;
    }
    .company-card {
        max-width: 40%;
        flex: 0 1 30%;
    }
    .company-logos {
        margin: 25px auto;
    }
}

@media screen and (max-width: 336px) {
    .logo {
        width: 55px;
    }
    .form-input {
        border-radius: 1.5em;
        border: 1px solid #A4A2A0;
        padding: 8px 16px;
        width: 190px;
        font-size: 1em;
    }
    .member-text {
        font-size: 12px;
    }
    .form-button {
        padding: 8px 16px;
        margin-left: -45px;
        margin-top: -3px;
    }
    .therapy {
        margin: 0.3em;
        border-radius: 1.5em;
        padding: 1em 0.5em;
        flex: 1 0 90px;
        width: 120px;
        box-shadow: 0px 1px 10px #00000029;
    }
    .therapy .icon {
        background-size: contain;
        width: 2em;
        height: 2em;
        margin: 0 0 0.5em 0;
    }
    .therapy .title {
        font-size: 0.9em;
    }
    .fee-datas {
        justify-content: space-between;
    }
    .fee-box {
        padding: 1em 1.2em;
        margin: 0.5em 0.2em;
        flex: 1 0 140px;
        max-width: 140px;
        min-width: 130px;
    }
    .fee-box .price .number {
        font-size: 2.5em;
        max-width: 100px;
    }
}

/**** to override cookie consent btn position ****/
.cc-btn{
    margin-right: 70px;
}