/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template: Divi
Version: 3.0.1
*/
/* Add your own styles at the bottom */

/* -- COLORS -- */

.white,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white li,
.white a,
h1.white,
h2.white,
h3.white,
h4.white,
h5.white,
h6.white,
li.white,
a.white,
p.white {
    color: #fff;
}

.black,
.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6,
.black li,
.black a,
h1.black,
h2.black,
h3.black,
h4.black,
h5.black,
h6.black,
li.black,
a.black,
p.black {
    color: #000;
}

.primary,
.primary h1,
.primary h2,
.primary h3,
.primary h4,
.primary h5,
.primary h6,
.primary li,
.primary a,
h1.primary,
h2.primary,
h3.primary,
h4.primary,
h5.primary,
h6.primary,
li.primary,
a.primary,
p.primary {
    color: #32a709;
}

.secondary,
.secondary h1,
.secondary h2,
.secondary h3,
.secondary h4,
.secondary h5,
.secondary h6,
.secondary li,
.secondary a,
h1.secondary,
h2.secondary,
h3.secondary,
h4.secondary,
h5.secondary,
h6.secondary,
li.secondary,
a.secondary,
p.secondary {
    color: #daf238;
}

.tertiary,
.tertiary h1,
.tertiary h2,
.tertiary h3,
.tertiary h4,
.tertiary h5,
.tertiary h6,
.tertiary li,
.tertiary a,
h1.tertiary,
h2.tertiary,
h3.tertiary,
h4.tertiary,
h5.tertiary,
h6.tertiary,
li.tertiary,
a.tertiary,
p.tertiary {
    color: #e4debe;
}

/* background colors */
.bg-white,
a.bg-white {
    background-color: #fff;
}
.bg-black,
a.bg-black {
    background-color: #000;
}
.bg-primary,
a.bg-primary {
    background-color: #32a709;
}
.bg-secondary,
a.bg-secondary {
    background-color: #daf238;
}
.bg-tertiary,
a.bg-tertiary {
    background-color: #e4debe;
}

/* -- END COLORS -- */

/* -- TYPOGRAPHY -- */

.text-lowercase,
.text-lowercase h1,
.text-lowercase h2,
.text-lowercase h3,
.text-lowercase h4,
.text-lowercase h5,
.text-lowercase h6,
.text-lowercase li,
.text-lowercase a {
    text-transform: lowercase !important;
}

.text-uppercase,
.text-uppercase h1,
.text-uppercase h2,
.text-uppercase h3,
.text-uppercase h4,
.text-uppercase h5,
.text-uppercase h6,
.text-uppercase li,
.text-uppercase a {
    text-transform: uppercase !important;
}

.text-capitalize,
.text-capitalize h1,
.text-capitalize h2,
.text-capitalize h3,
.text-capitalize h4,
.text-capitalize h5,
.text-capitalize h6,
.text-capitalize li,
.text-capitalize a {
    text-transform: capitalize !important;
}

.text-transform-none,
.text-transform-none h1,
.text-transform-none h2,
.text-transform-none h3,
.text-transform-none h4,
.text-transform-none h5,
.text-transform-none h6,
.text-transform-none li,
.text-transform-none a {
    text-transform: none !important;
}

.font-weight-bold,
.font-weight-bold h1,
.font-weight-bold h2,
.font-weight-bold h3,
.font-weight-bold h4,
.font-weight-bold h5,
.font-weight-bold h6,
.font-weight-bold li,
.font-weight-bold a {
    font-weight: 700;
}

.font-weight-normal,
.font-weight-normal h1,
.font-weight-normal h2,
.font-weight-normal h3,
.font-weight-normal h4,
.font-weight-normal h5,
.font-weight-normal h6,
.font-weight-normal li,
.font-weight-normal a {
    font-weight: 400;
}

.font-italic {
    font-style: italic;
}

.text-underline-none,
.text-underline-none a {
    text-decoration: none !important;
}

.text-underline,
.text-underline a {
    text-decoration: underline !important;
}

.text-nowrap,
.text-nowrap a {
    white-space: nowrap !important;
}

.text-wrap-normal,
.text-wrap-normal a {
    white-space: normal !important;
}

/* -- END TYPOGRAPHY -- */

/* -- TEMPLATE -- */

/* -- END TEMPLATE -- */

/* -- HEADER -- */

/* helps logo to not be pixelated when scaled down */
#logo {
    transform: none !important;
}

/* when mobile menu is open, change hamburger icon to x icon */
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before {
    content: "\4d";
}

/* makes sub sub menu icon be right arrow instead of down arrow */
#top-menu
    .menu-item-has-children
    .menu-item-has-children
    > a:first-child::after,
#et-secondary-nav
    .menu-item-has-children
    .menu-item-has-children
    > a:first-child::after {
    content: "5";
}

/* if parent link of child menu is a deadlink, then make it not clickable */
#main-header
    #mobile_menu.et_mobile_menu
    .menu-item-has-children
    > a[href="#0"] {
    pointer-events: none;
}

/* - mobile menu toggling elements, injected via jQuery - */

/* make menu list item be relative, to be able to position toggle within this item */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children {
    position: relative;
}
/* the new toggle element, which is added via jQuery */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    top: 4px;
    right: 4px;
    cursor: pointer;
    text-align: center;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped {
    background-color: rgba(0, 0, 0, 0.1);
}
/* toggle icon */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle::before {
    font-family: "ETmodules" !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 36px;
    font-size: 24px;
    text-transform: none;
    speak: none;
    content: "\33";
}
/* toggle icon when triggered */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped::before {
    content: "\32";
}
/* hide sub menus by default */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle ~ ul.sub-menu {
    display: none !important;
    padding-left: 0;
}
/* show sub menu when triggered via jQuery toggle, and add slight bg color */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.03);
}
/* remove sub menu list item left padding, since padding will be on anchors */
#main-header #mobile_menu.et_mobile_menu li li {
    padding-left: 0;
}

/* adjust mobile menu anchors side paddings */
#main-header #mobile_menu.et_mobile_menu li a {
    padding-left: 20px;
    padding-right: 20px;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a {
    padding-left: 40px;
    padding-right: 20px;
}
/* indent sub sub menus further */
#main-header #mobile_menu.et_mobile_menu li li li a {
    padding-left: 60px;
    padding-right: 20px;
}
/* if mobile menu anchor has toggle, make room for it to fit next to the link */
#main-header
    #mobile_menu.et_mobile_menu
    .menu-item-has-children
    .sub-menu-toggle
    + a {
    padding-right: 44px;
}

/* - end mobile menu toggling elements - */

/* undo Divi's default styling of mobile menu links that have children */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a {
    background-color: transparent;
    font-weight: inherit;
}

/* make the current page's mobile menu link be different */
#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a {
    font-weight: bolder;
}

/* -- END HEADER -- */

/* -- FOOTER -- */

/* - Bottom Bar - */

/* if the bottom bar has equal column height setting, then make it always be flex, and stack the columns initially (for mobile use)
 * and make the columns vertical aligned to be vertically centered too */
#fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns {
    display: flex;
    align-items: center;
}

/* copyright wrapper */
#freshy_copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 13px;
    line-height: 1.25em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
    width: 33.33333%;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 200%;
    background: rgba(255, 255, 255, 0.25);
    vertical-align: middle;
    margin: 10px auto 15px;
    display: block;
}

/* add an FS logo via background */
#freshy_copyright a.copyright_fs {
    display: block;
    width: 42px;
    height: 20px;
    background-image: url("/wp-content/uploads/fs-lettermark-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
    transition: all 0.4s ease-in-out;
}
/* FS logo link hover */
#freshy_copyright a.copyright_fs:hover {
    opacity: 0.8;
}

/* remove the bottom margin that Divi adds to the social media follow icons */
#fs-footer-bottom-bar .et_pb_social_media_follow li {
    margin-bottom: 0;
}

@media (min-width: 600px) {
    /* make the copyright elements be side by side at wider screens */
    #freshy_copyright {
        flex-direction: row;
    }
    /* change horizontal pipe divider to vertical on wider screens */
    #freshy_copyright span.copyright_via {
        width: 1px;
        height: 20px;
        margin: 0 10px;
    }
}

@media (max-width: 980px) {
    /* make sure the row has columns going side by side instead of stacked */
    #fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns {
        flex-direction: column;
    }
    /* when stacked, adjust the gap between stacked columns */
    #fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns > .et_pb_column {
        margin-bottom: 1rem;
    }
    /* swap the order of columns when stacked, to the first column is the last one 
	 * and give no bottom margin to the first column, since we re-ordered it to the bottom */
    #fs-footer-bottom-bar
        > .et_pb_row.et_pb_equal_columns
        > .et_pb_column:first-child {
        order: 1;
        margin-bottom: 0;
    }
    /* center the copyright stuff when columns are stacked */
    #freshy_copyright {
        justify-content: center;
    }
    /* remove left margin on first social icon in regular Divi footer (when not using Theme Builder) when stacked */
    #footer-bottom .et-social-icons li:first-child {
        margin-left: 0;
    }
}

/* -- END FOOTER -- */

/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
    /* hide on mobile */
    .hide-mobile {
        display: none;
    }
}

/* do for desktop */
@media screen and (min-width: 768px) {
    /* hide on desktop */
    .hide-desktop {
        display: none;
    }
}

/* -- END RESPONSIVE -- */

/* -- CHECKLIST -- */

.checklist ul {
    margin: 0;
    padding: 0 !important;
    list-style: none;
}

.checklist ul li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
    margin-bottom: 30px !important;
}

@media (max-width: 638px) {
    .checklist-columns-2 ul li,
    .checklist-columns-3 ul li,
    .checklist-columns-4 ul li {
        margin-bottom: 20px !important;
    }
    .checklist-columns-2 ul li:last-child,
    .checklist-columns-3 ul li:last-child,
    .checklist-columns-4 ul li:last-child {
        margin-bottom: 0 !important;
    }
}

/* create columns of list items with this class */
@media (min-width: 639px) {
    .checklist-columns-2 ul::after,
    .checklist-columns-3 ul::after,
    .checklist-columns-4 ul::after {
        content: "";
        clear: both;
        display: table;
    }
    .checklist-columns-2 ul li,
    .checklist-columns-3 ul li,
    .checklist-columns-4 ul li {
        float: left;
        width: 50%;
        padding-right: 30px;
    }
    .checklist-columns-2 ul li:nth-child(odd),
    .checklist-columns-3 ul li:nth-child(odd),
    .checklist-columns-4 ul li:nth-child(odd) {
        clear: both;
    }
    .checklist-columns-2-alt > ul,
    .checklist-columns-3-alt > ul,
    .checklist-columns-4-alt > ul {
        column-count: 2;
        column-gap: 20px;
    }
    .checklist-columns-2-alt ul li,
    .checklist-columns-3-alt ul li,
    .checklist-columns-4-alt ul li {
        break-inside: avoid-column;
    }
}
@media (min-width: 981px) {
    .checklist-columns-3 ul li,
    .checklist-columns-4 ul li {
        float: left;
        width: 33.333333%;
    }
    .checklist-columns-3 ul li:nth-child(odd),
    .checklist-columns-4 ul li:nth-child(odd) {
        clear: none;
    }
    .checklist-columns-3 ul li:nth-child(3n + 1),
    .checklist-columns-4 ul li:nth-child(3n + 1) {
        clear: both;
    }
    .checklist-columns-3-alt ul,
    .checklist-columns-4-alt ul {
        column-count: 3;
    }
}
@media (min-width: 1199px) {
    .checklist-columns-4 ul li {
        float: left;
        width: 25%;
    }
    .checklist-columns-4 ul li:nth-child(odd) {
        clear: none;
    }
    .checklist-columns-4 ul li:nth-child(3n + 1) {
        clear: none;
    }
    .checklist-columns-4 ul li:nth-child(4n + 1) {
        clear: both;
    }
    .checklist-columns-4-alt ul {
        column-count: 4;
    }
}

.checklist ul li::before {
    font-family: "ETModules";
    content: "\4e";
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #32a709;
    /* set font size helps make icon sharper */
    font-size: 22px;
    font-weight: normal;
}
.pluslist ul li::before {
    content: "\e050";
}
.externallist ul li::before {
    content: "\e906";
}

/* -- END CHECKLIST -- */

/* -- DIVI HACKS -- */

/* make parallax image be centered at the start */
.et_parallax_bg {
    background-position: center center;
}

/* Divi was turning off bottom padding on last paragraphs, when it should be only if it's the last child */
p:last-of-type,
p:not(.has-background):last-of-type {
    padding-bottom: 1em;
}
p:last-child,
p:not(.has-background):last-child {
    padding-bottom: 0;
}

/* if there are more than one paragraphin the Fullwidth Header module, they should have padding */
.et_pb_fullwidth_header p:not(:last-child) {
    padding-bottom: 1em;
}

/* -- END DIVI HACKS -- */

/* -- PASSWORD PROTECTED -- */

/* set a max width to make it only as wide as most content */
.post-password-required .et_password_protected_form {
    width: 80%;
    margin: 10% auto;
    max-width: 1140px;
}

/* give the input a border */
.post-password-required .et_password_protected_form p input {
    border: 1px solid !important;
}

/* remove the arrow on hover of the submit button */
.post-password-required .et_password_protected_form .et_submit_button::after {
    display: none;
}

/* -- END PASSWORD PROTECTED -- */

/* -- TESTIMONIALS PLUGIN -- */

/* flip quote so it's an opening quote icon for grid and slider versions */
.b3_archive_testimonials_grid article .b3_quote.grid_quote::before,
.et_pb_module.et_pb_testimonial_slider .et_pb_slides_testi::before {
    transform: scale(-1, -1);
}

/* -- END TESTIMONIALS PLUGIN -- */

/* -- GRAVITY FORMS -- */

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 1.2rem;
    line-height: 1.5em;
    padding: 2rem;
    background: rgba(90, 90, 90, 0.1);
    text-align: center;
}

/* -- END GRAVITY FORMS -- */

/* -- HELPERS -- */

/* use the "fullwidth-section" class on a SECTION to make a "standard" SECTION truly be fullwidth 
(NOTE: the SECTION needs THIS class) */
.fullwidth-section.et_pb_section {
    padding: 0;
}
.fullwidth-section.et_pb_section > .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
}

/* use the "fullwidth-row" class on a SECTION to make a "full width" ROW truly be fullwidth 
(NOTE: the ROW module settings needs to be Gutter Width 1, and the SECTION needs THIS class,
and unlike the class above, THIS class will auto-add padding to the columns) */
.fullwidth-row.et_pb_section {
    padding: 0;
}
.fullwidth-row.et_pb_section .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* helps add padding to each column */
.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
    padding: 50px 10%;
}
@media (min-width: 767px) {
    .fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
        padding: 80px 6%;
    }
}
/* for some reason Divi removes bottom margin from modules if in column with no gutters, 
so we need to add margins back */
.fullwidth-row.et_pb_section
    .et_pb_row.et_pb_gutters1
    > .et_pb_column
    .et_pb_module:not(:last-child) {
    margin-bottom: 30px;
}
@media (min-width: 981px) {
    .fullwidth-row.et_pb_section
        .et_pb_row.et_pb_gutters1
        > .et_pb_column_2_3
        .et_pb_module:not(:last-child) {
        margin-bottom: 4.242%;
    }
    .fullwidth-row.et_pb_section
        .et_pb_row.et_pb_gutters1
        > .et_pb_column_1_3
        .et_pb_module:not(:last-child) {
        margin-bottom: 9.27%;
    }
}
/* reduce gap between toggles if in fullwidth row */
.fullwidth-row.et_pb_section
    .et_pb_row.et_pb_gutters1
    > .et_pb_column
    .et_pb_module.et_pb_toggle:not(:last-child) {
    margin-bottom: 3px;
}

@media (max-width: 980px) {
    /* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
    .stacked-flex {
        display: flex;
        flex-wrap: wrap;
    }
    /* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
    .stacked-order-negative-4 {
        order: -4;
    }
    .stacked-order-negative-3 {
        order: -3;
    }
    .stacked-order-negative-2 {
        order: -2;
    }
    .stacked-order-negative-1 {
        order: -1;
    }
    .stacked-order-1 {
        order: 1;
    }
    .stacked-order-2 {
        order: 2;
    }
    .stacked-order-3 {
        order: 3;
    }
    .stacked-order-4 {
        order: 4;
    }
    /* adds margin to former "last" column that otherwise wouldn't have it */
    .stacked-flex:last-child .et_pb_column:last-child {
        margin-bottom: 30px;
    }
}

/* -- END HELPERS -- */

/* -- BLOG -- */

/* sidebar recent posts */
.et_pb_widget.widget_recent_entries ul li {
    margin-bottom: 1em;
}

/* sidebar recent posts dates */
.et_pb_widget.widget_recent_entries ul li span.post-date {
    display: table;
    font-size: 0.85em;
}

/* -- END BLOG -- */

/************Common CSS Started************/
/****Common CSS****/

div#page-container {
    overflow-x: hidden !important;
}
header .container {
    width: 90% !important;
}
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

.equalHeight:not(.et_section_specialty) .et_pb_column,
.et_section_specialty.equalHeight
    > .et_pb_row
    > .et_pb_column.et_pb_specialty_column {
    margin: auto;
}
.equalHeight .et_pb_column:first-child {
    margin-left: 0;
}
/*place button modules next to each other in the same column*/

.r_inline_btn .et_pb_button_module_wrapper {
    display: inline-block;
}
.r_inline_btn {
    text-align: center !important;
}
.et_pb_scroll_top.et-pb-icon {
    background: #85bbec;
    bottom: 10%;
    right: 7%;
    padding: 10px 10px;
    font-size: 30px;
    border-radius: 50%;
}
div#page-container div#et-boc ul#top-menu .header_btn a {
    color: #fff !important;
}
@media (min-width: 981px) and (max-width: 1650px) {
    #page-container .cmn_h1 h1 {
        font-size: 55px !important;
    }
    #page-container .cmn_h2 h2 {
        font-size: 35px;
    }
    #page-container .secondery_h2 h2 {
        font-size: 28px;
    }
    #page-container .cmn_h3 h3 {
        font-size: 25px;
    }
    #page-container .cmn_h4 h4 {
        font-size: 22px;
    }
    #page-container .cmn_p p, #page-container .cmn_p ul li {
        font-size: 18px;
    }
    #page-container .cmn_btn {
        font-size: 25px !important;
        padding-right: 60px !important;
        padding-left: 60px !important;
    }
    #page-container .cmn_section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    #page-container .cmn_section_top {
        padding-top: 80px;
    }
    #page-container .cmn_section_btm {
        padding-bottom: 80px;
    }
    #page-container .cmn_row_btm {
        padding-bottom: 80px !important;
    }
    #page-container .cmn_row_top {
        padding-top: 60px !important;
    }
    .dfrnt_cmn_flex {
        display: flex;
    }
}
@media only screen and (min-width: 981px) {
    .cmn_flex {
        display: flex;
    }
    .clomn_items_center {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
/*Column reverse on mobile*/

@media only screen and (max-width: 980px) {
    .column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    .column-reverse .et_pb_column:first-child {
        margin-bottom: 0;
    }
    .column-reverse .et_pb_column:last-child {
        margin-bottom: 30px !important;
    }
}
/* ==================== End global css ================== */

#page-container #et-top-navigation {
    padding: 63px 0 0 0;
}
#page-container #et-top-navigation nav > ul > li > a {
    line-height: 1.18em;
}
#page-container .et-fixed-header #et-top-navigation {
    padding: 40px 0 0 0 !important;
}
#top-menu .menu-item-has-children:hover > a:first-child::after {
    transform: rotate(0deg);
}
#page-container .header_btn {
    background: #000000;
    border-radius: 5px;
}
#page-container .header_btn:hover {
    background: #d30a0a;
}
#page-container .header_btn a {
    padding: 0px 26px !important;
    color: #ffff !important;
    font-size: 16px;
    line-height: 60px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
#top-menu li a:hover {
    color: #000000;
    text-decoration: underline;
}
.current_page_item.menu-item-732 {
    background: #d30a0a !important;
}
#page-container .et-fixed-header #top-menu li a:hover {
    color: #000000 !important;
}
#top-menu a {
    opacity: 1 !important;
}
div#page-container div#et-boc ul#top-menu .header_btn a {
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
}
.nav li ul {
    background-color: #fff !important;
    border-radius: 5px;
    margin-top: -60px;
    margin-left: -50px;
    margin-right: -50px;
}
div#page-container .et-fixed-header .nav li ul {
    margin-top: -40px;
}
#top-menu li {
    padding-right: 18px;
}
#main-header .nav li ul a {
    color: #000 !important;
}
#main-header .nav li ul a:hover {
    color: #85bbec !important;
    background: none;
    text-decoration: underline;
}
#top-menu li li a {
    padding: 6px 0px;
    text-align: center;
    text-transform: none;
}
div#page-container .et-fixed-header #top-menu li .current_page_item > a {
    text-decoration: underline;
}
div#page-container .current-menu-item a {
    color: #000;
    text-decoration: underline;
}
div#page-container .sub-menu .current-menu-item a {
    color: #85bbec !important;
    text-decoration: underline;
}
#top-menu .menu-item-has-children > a:first-child::after {
    font-size: 25px;
    transform: rotate(-90deg);
    font-weight: 400;
    right: -4px;
}

@media only screen and (min-width: 1450px) and (max-width: 1750px) {
  
    div#page-container #logo {
        height: 75% !important;
    }
    span.logo_helper {
        margin-left: -20px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1640px) {
    #page-container #et-top-navigation {
        padding: 45px 0 0 0;
    }
    #page-container #et-top-navigation nav > ul > li > a {
        padding-bottom: 66px;
    }
    #page-container #et-top-navigation {
        padding-bottom: 0px;
    }
    .nav li ul {
        margin-top: -40px;
    }
}



@media only screen and (min-width: 1220px) and (max-width: 1640px) {
    #top-menu li {
        padding-right: 12px;
    }
    #page-container #et-top-navigation {
        padding-left: 50px !important;
    }
    div#page-container #logo {
        height: 70% !important;
    }
    span.logo_helper {
        margin-left: -10px;
    }
    #page-container .header_btn a {
        padding: 0px 16px !important;
    }
    header .container {
        width: 94% !important;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1400px){
	#top-menu li a {
    font-size: 12px !important;
}
}

@media only screen and (min-width: 981px) and (max-width: 1240px){
	div#page-container #logo {
    height: 58% !important;
}
}


@media only screen and (min-width: 981px) and (max-width: 1219px) {
    #top-menu li {
        padding-right: 5px;
    }
    #page-container #et-top-navigation {
        padding-left: 60px !important;
    }
    #top-menu li a {
        font-size: 10px !important;
    }
    div#page-container #logo {
        height: 48% !important;
    }
    span.logo_helper {
        margin-left: -10px;
    }
    #page-container .header_btn a {
        padding: 0px 16px !important;
    }
    header .container {
        width: 96% !important;
    }
    #page-container .header_btn a {
        line-height: 50px;
    }
}
@media only screen and (max-width: 980px) {
    #mobile_menu {
        background: #fff !important;
        border-color: #fff;
    }
    .mobile_menu_bar::before {
        color: #fff !important;
    }
    #page-container #et-top-navigation {
        padding: 27px 0 0 0 !important;
    }
    div#page-container #logo {
        height: 78px;
        max-height: 78px;
    }
    #main-header #mobile_menu.et_mobile_menu li.current-menu-item > a {
        font-weight: 500;
        color: #000;
    }
    div#page-container .et_mobile_menu li a {
        opacity: 1;
        color: #85bbec;
        font-size: 18px;
        font-weight: 400;
    }
    #mobile_menu.et_mobile_menu .menu-item-has-children > a {
        font-weight: 400 !important;
    }
    #page-container .header_btn {
        margin-top: 15px;
    }
    div#page-container div#et-boc ul#top-menu .header_btn a {
        color: #fff !important;
        text-decoration: none !important;
    }
    #page-container .header_btn a {
        text-align: center;
        text-transform: uppercase;
        text-decoration: none !important;
    }
}
@media only screen and (max-width: 767px) {
    div#page-container .et_mobile_menu li a {
        font-size: 16px;
    }
}
/* ==================== Start footer css ================= */
.wp-image-160 {
    position: relative;
    top: 4px;
}
#menu-footer-menu-1 {
    display: block;
}
#menu-footer-menu-2 {
    display: block;
}
#page-container #menu-footer-menu-1 .footer_row .current-menu-item a {
    font-weight: 600;
    color: #85bbec !important;
}

#page-container #menu-footer-menu-2 .footer_row .current-menu-item a {
    font-weight: 600;
    color: #85bbec !important;
}
#page-container .et_pb_menu_0_tb_footer.et_pb_menu ul li.current-menu-item a {
    text-decoration: none !important;
}
#page-container .et_pb_menu_1_tb_footer.et_pb_menu ul li.current-menu-item a {
    text-decoration: none !important;
}
#page-container .footer_row .et_pb_menu ul li a {
    opacity: 1;
}
@media only screen and (min-width: 1200px) {
    #menu-footer-menu-3 li {
        float: left;
        width: 50%;
        padding-right: 30px;
    }
}
@media only screen and (min-width: 981px) {
    body #page-container .footer_col_1 {
        width: 28%;
        margin-right: 5px !important;
    }
    .footer_col_1 .et_pb_module .et_pb_menu {
        width: 76%;
    }
    .footer_col_2 {
        width: 23% !important;
        margin-right: 2% !important;
        margin-left: -30px;
    }
    .footer_col_3 {
        width: 30% !important;
    }

    #menu-item-340 {
        padding-right: 0px !important;
        padding-left: 50px !important;
    }
    .footer_col_3 {
        position: relative;
        left: 85px;
    }
	
	.full_width_menu {
        padding-right: 0px !important;
    padding-left: 3% !important;
}
}

.full_width_menu {
    width: 100% !important;
}
@media only screen and (min-width: 1441px) and (max-width: 1650px) {
    #menu-footer-menu-3 li a {
        font-size: 16px;
    }
    #menu-footer-menu-3 li {
        padding-right: 18px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
/*     .footer_col_1 {
        margin-right: 2% !important;
    }
    
    .footer_col_3 {
        width: 59% !important;
    } */
	
	.footer_col_2 {
        width: 26% !important;
        margin-right: 2% !important;
    }
	
    #menu-item-340 {
        padding-left: 0px !important;
    }
    .full_width_menu {
        padding-left: 0px !important;
    }
    .footer_col_3 {
        position: relative;
        left: 30px;
    }
    #menu-footer-menu-3 li a {
        font-size: 16px;
    }
    .footer_row .et_pb_row_0_tb_footer {
        width: 93% !important;
    }
    #menu-footer-menu-3 li {
        padding-right: 18px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1199px) {
    .footer_col_1 {
        width: 23% !important;
        margin-right: 4% !important;
    }
    .footer_col_2 {
        width: 32% !important;
        margin-right: 0% !important;
    }
    .footer_col_3 {
        width: 40% !important;
    }
    .footer_col_3 {
        position: relative;
        left: 40px;
    }
    #menu-footer-menu-3 li a {
        font-size: 16px;
    }
    .footer_row .et_pb_row_0_tb_footer {
        width: 90% !important;
    }
    #menu-item-340 {
        padding-left: 10px !important;
    }
    .full_width_menu {
        padding-left: 10px !important;
    }
    #menu-footer-menu-3 li {
        float: left;
        width: 100%;
        padding-right: 0px;
    }
}
@media only screen and (max-width: 980px) {
    .pa-open-mobile-menu .et_pb_menu__menu {
        display: flex !important;
    }
    .pa-open-mobile-menu .et_mobile_nav_menu {
        display: none !important;
    }
    .footer_col_1 {
        width: 50% !important;
        margin-right: 0px !important;
    }
    .footer_col_2 {
        width: 50% !important;
        margin-right: 0% !important;
    }
    .footer_col_3 {
        width: 100% !important;
    }
    .footer_col_1 .et_pb_menu__wrap {
        justify-content: flex-start;
    }
    .footer_col_2 .et_pb_menu__wrap {
        justify-content: flex-start;
    }
    #menu-footer-menu-3 li {
        float: left;
        width: 50%;
        padding-right: 30px;
    }
    #menu-footer-menu-3 li a {
        font-size: 18px;
    }
}
@media only screen and (max-width: 910px) {
    #menu-footer-menu-3 li {
        float: left;
        width: 100%;
        padding-right: 0px;
    }
}
@media only screen and (max-width: 600px) {
    #page-container .footer_col_1 {
        width: 100% !important;
        margin-bottom: 0px !important;
    }
    #page-container .footer_col_2 {
        width: 100% !important;
    }
    #page-container .footer_menu_2 {
        margin-top: 0px !important;
    }
    #page-container .footer_row .et_pb_menu ul li a {
        line-height: 2em;
    }
    #menu-footer-menu-3 li a {
        font-size: 16px;
    }
    #menu-footer-menu-3 li {
        padding-right: 10px;
    }
}
/* ==================== End footer css ================= */

/* ==================== Start Home banner css ================== */

#page-container .hero_banner .et_pb_slide_description {
    display: grid;
}
#page-container .hero_banner .et_pb_slide_content {
    order: 1;
    text-shadow: none;
}
#page-container .hero_banner .et_pb_slide_title {
    order: 2;
    text-shadow: none;
}
.hero_banner::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 84%;
    left: 38.5%;
    background-image: Url(/wp-content/uploads/banner-shape.png);
    background-repeat: no-repeat;
    z-index: 1;
}
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    #page-container .hero_banner .et_pb_slide_description {
        padding-top: 65vh !important;
        padding-bottom: 8vh;
    }
    #page-container .hero_banner .et_pb_slider .et_pb_slide_0 {
        background-size: cover;
    }
    #page-container .hero_banner .et_pb_slide_content {
        font-size: 30px !important;
    }
    .hero_banner::before {
        top: 82%;
        left: 36.5%;
    }
}
@media only screen and (max-width: 980px) {
    .hero_banner::before {
        left: 38%;
        background-size: 25%;
    }
}
@media only screen and (max-width: 480px) {
    .hero_banner .et_pb_slider .et_pb_slide_0 {
        background-image: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.26) 66%,
                rgba(255, 255, 255, 0.45) 68%,
                #fff 76%
            ),
            url(/wp-content/uploads/home-banner...jpg);
    }
}
/* ==================== End Home banner css ================== */

/* ================ Start img slider css ================== */

.slider_section .n2-ss-slide {
    border-radius: 10px !important;
}
@media only screen and (max-width: 1880px) {
    #n2-ss-2-arrow-next {
        margin-left: 0px;
    }
    #n2-ss-2-arrow-previous {
        margin-right: 0px;
    }
}
@media only screen and (max-width: 870px) {
    #page-container .n2-ss-slider {
        width: 85%;
        margin: auto !important;
    }
}
@media only screen and (max-width: 767px) {
    #page-container .n2-ss-slider {
        width: 85%;
        margin: auto !important;
    }
}
@media only screen and (max-width: 540px) {
    #page-container .n2-ss-slider {
        width: 95%;
        margin: auto !important;
    }
}
/* ================ End img slider css ================== */

/* =================== Start About us css ================= */
.img_col_1 {
    margin-right: 0% !important;
    width: 25% !important;
}
#page-container .img_col_2 {
    width: 35% !important;
}
#page-container .img_col_3 {
    width: 40% !important;
}
/* .about_us_row::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 120.5%;
    left: 2.5%;
    background-image: Url(/wp-content/uploads/about-shape.png);
    background-repeat: no-repeat;
    background-size: 10%;
} */

.about_us_col::before {
    content: "";
    display: block;
    position: absolute;
    height: 375px;
    width: 100%;
    bottom: 360px;
    left: -14px;
    background-image: Url(/wp-content/uploads/About-advancedtherapyorg1-.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
	background-size: contain;
}
@media only screen and (min-width: 1201px) and (max-width: 1330px) {
    .about_us_col::before {
        bottom: 356px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1200px) {
    .about_us_row p {
        font-size: 16px;
    }
    #page-container .about_us_col_1 {
        padding-left: 50px;
    }
    .about_us_col::before {
        bottom: 352px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
    #page-container .about_img_col_1 .et_pb_image_0 {
        margin-top: 0% !important;
    }
    #page-container .img_col_2 {
        width: 50% !important;
        padding-right: 50px;
    }
    #page-container .img_col_3 {
        width: 50% !important;
    }
    .about_us_row::before {
        display: none;
    }
    .about_us_col::before {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    #page-container .about_img_col_1 .et_pb_image_0 {
        margin-top: 0% !important;
    }
    #page-container .img_col_2 {
        width: 100% !important;
        padding-right: 30px;
        padding-left: 30px;
    }
    #page-container .img_col_2 .et_pb_image_1 {
        left: 0px;
    }
    #page-container .img_col_3 {
        width: 100% !important;
    }
    #page-container .img_col_3 .et_pb_image_2 {
        padding-right: 30px;
        padding-left: 30px;
    }
    .about_us_row::before {
        display: none;
    }
    .about_us_col::before {
        display: none;
    }
}
/* =================== End About us css ================= */

/* =================== Start covid css ======================= */
@media only screen and (min-width: 981px) and (max-width: 1366px) {
    #page-container .covid_title h2{
        font-size: 35px !important;
    }
    .covid_row p {
        font-size: 25px;
    }
}
/* =================== End covid css ======================= */

/* ==================== Start service css ======================= */
.service_section::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 55.5%;
    left: 85.8%;
    background-image: Url(/wp-content/uploads/service-right-shape.png);
    background-repeat: no-repeat;
    background-size: initial;
}
#page-container .service_col_hover_1 .et_pb_image_wrap::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0px;
    background-image: Url(/wp-content/uploads/Evaluations..jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px !important;
    z-index: 3 !important;
}
#page-container .service_col_hover_1:hover .et_pb_image_wrap::before {
    height: 100%;
    width: 100%;
    transition: 0.7s;
}
#page-container .service_col_hover_1:hover .et_pb_text_inner h3 {
    color: #85bbec !important;
    transition: 0.5s;
    font-weight: 500;
}
#page-container .service_col_hover_2 .et_pb_image_wrap::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0px;
    background-image: Url(/wp-content/uploads/Pre-School..jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px !important;
    z-index: 3 !important;
}
#page-container .service_col_hover_2:hover .et_pb_image_wrap::before {
    height: 100%;
    width: 100%;
    transition: 0.7s;
}
#page-container .service_col_hover_2:hover .et_pb_text_inner h3 {
    color: #85bbec !important;
    transition: 0.5s;
    font-weight: 500;
}
#page-container .service_col_hover_3 .et_pb_image_wrap::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0px;
    background-image: Url(/wp-content/uploads/Special-Class..jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px !important;
    z-index: 3 !important;
}
#page-container .service_col_hover_3:hover .et_pb_image_wrap::before {
    height: 100%;
    width: 100%;
    transition: 0.7s;
}
#page-container .service_col_hover_3:hover .et_pb_text_inner h3 {
    color: #85bbec !important;
    transition: 0.5s;
    font-weight: 500;
}
#page-container .service_col_hover_4 .et_pb_image_wrap::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0px;
    background-image: Url(/wp-content/uploads/Early-Intervention-1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px !important;
    z-index: 3 !important;
}
#page-container .service_col_hover_4:hover .et_pb_image_wrap::before {
    height: 100%;
    width: 100%;
    transition: 0.7s;
}
#page-container .service_col_hover_4:hover .et_pb_text_inner h3 {
    color: #85bbec !important;
    transition: 0.5s;
    font-weight: 500;
}
#page-container .service_col_hover_5 .et_pb_image_wrap::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0px;
    background-image: Url(/wp-content/uploads/School-District..jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px !important;
    z-index: 3 !important;
}
#page-container .service_col_hover_5:hover .et_pb_image_wrap::before {
    height: 100%;
    width: 100%;
    transition: 0.7s;
}
#page-container .service_col_hover_5:hover .et_pb_text_inner h3 {
    color: #85bbec !important;
    transition: 0.5s;
    font-weight: 500;
}
@media only screen and (max-width: 1650px) {
    .service_section::before {
        left: 83.8%;
    }
}
#page-container .service_col_hover_6 .et_pb_image_wrap::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: 0px;
    background-image: Url(/wp-content/uploads/Sensory-Integration-1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px !important;
    z-index: 3 !important;
}
#page-container .service_col_hover_6:hover .et_pb_image_wrap::before {
    height: 100%;
    width: 100%;
    transition: 0.7s;
}
#page-container .service_col_hover_6:hover .et_pb_text_inner h3 {
    color: #85bbec !important;
    transition: 0.5s;
    font-weight: 500;
}
.service_row .et_pb_text {
    word-wrap: initial;
}
#page-container .service_row h3 {
    font-weight: 400;
}
@media only screen and (min-width: 981px) and (max-width: 1450px) {
    .service_section::before {
        left: 80.8%;
    }
    #page-container .service_section .et_pb_row {
        padding-bottom: 50px !important;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1200px) {
    #page-container .service_col_hover_1 {
        width: 30%;
        margin-right: 5%;
        margin-bottom: 20px;
    }
    #page-container .service_col_hover_2 {
        width: 30%;
        margin-right: 5%;
        margin-bottom: 20px;
    }
    #page-container .service_col_hover_3 {
        width: 30%;
        margin-right: 0px !important;
        margin-bottom: 20px;
    }
    #page-container .service_col_hover_4 {
        width: 30%;
        margin-right: 5%;
    }
    #page-container .service_col_hover_5 {
        width: 30%;
        margin-right: 5%;
    }
    #page-container .service_col_hover_6 {
        width: 30%;
        margin-right: 0px !important;
    }
}
@media only screen and (max-width: 980px) {
    .service_section::before {
        left: 73.8%;
    }
}
@media only screen and (max-width: 767px) {
    .service_section::before {
        display: none;
    }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
    #page-container .service_col_hover_1 {
        width: 50%;
        margin-right: 0%;
    }
    #page-container .service_col_hover_2 {
        width: 50%;
        margin-right: 0%;
    }
    #page-container .service_col_hover_3 {
        width: 50%;
        margin-right: 0px !important;
    }
    #page-container .service_col_hover_4 {
        width: 50%;
        margin-right: 0%;
    }
    #page-container .service_col_hover_5 {
        width: 50%;
        margin-right: 0%;
    }
    #page-container .service_col_hover_6 {
        width: 50%;
        margin-right: 0px !important;
    }
}
/* ==================== End service css ======================= */

/* ============== Start video section css =================== */
.et_pb_video_play::before {
    font-family: ETmodules;
    content: "I";
    background-image: Url(/wp-content/uploads/play-button.png) !important;
    background-size: 83%;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    top: 0px;
    left: 0;
    display: block;
}
@media only screen and (max-width: 980px) {
    .et_pb_video_play::before {
        height: 100px;
        width: 100px;
    }
}
@media only screen and (max-width: 767px) {
    .et_pb_video_play::before {
        height: 80px;
        width: 80px;
        top: -10px;
        left: -10px;
        position: relative;
    }
}
@media only screen and (max-width: 480px) {
    .et_pb_video_play::before {
        height: 70px;
        width: 70px;
        top: -10px;
        left: -10px;
        position: relative;
    }
}
/* ============== End video section css =================== */

/* =================== Start form css ===================== */
.gform_heading {
    display: none;
}
.contact_form
    .gform_wrapper
    input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not(
        [type="button"]
    ):not([type="image"]):not([type="file"]) {
    background-color: #f8f8f8;
    font-size: 18px;
    color: #707070 !important;
    border: 1px solid #acacac;
    border-radius: 40px;
    font-family: Montserrat;
    text-transform: uppercase;
    padding: 26px 38px;
    letter-spacing: 1.8px;
}

.contact_form .gform_wrapper textarea.textarea {
    background-color: #f8f8f8;
    font-size: 18px;
    color: #707070;
    border: 1px solid #acacac;
    border-radius: 40px;
    font-family: Montserrat;
    text-transform: uppercase;
    padding-left: 38px;
    letter-spacing: 1.8px;
    padding-top: 25px;
}
.contact_form .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 162px;
}
.contact_form .gform_wrapper .hidden_label .ginput_container > * {
    margin-top: 0px !important;
}
.contact_form .gform_wrapper .hidden_label textarea.textarea {
    margin: 0px !important;
    resize: none;
}

#page-container .contact_form .gform_wrapper .gform_footer input.button {
    background-color: #85bbec;
    border-color: #85bbec;
    border-radius: 50px;
    font-size: 18px;
    padding: 23px;
    text-transform: uppercase;
    font-weight: 500;
}
#page-container .contact_form .gform_footer.top_label {
    padding: 0px 0 !important;
}
#page-container .contact_form .gform_wrapper .gform_footer input.button:hover {
    color: #fff;
    background-color: #d30a0a;
    border-color: #d30a0a;
    border-radius: 50px;
}
.contact_blurb a:hover {
    color: #85bbec !important;
}
@media only screen and (min-width: 1300px) and (max-width: 1670px) {
    .contact_blurb p {
        font-size: 20px;
    }
    .contact_blurb span {
        font-size: 20px;
    }
    #page-container .contact_blurb_col {
        padding-left: 50px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1299px) {
    #page-container .contact_blurb_col {
        padding-left: 15px;
    }
    .contact_blurb p {
        font-size: 17px;
    }
    .contact_blurb span {
        font-size: 17px;
    }
    .contact_form
        .gform_wrapper
        input:not([type="radio"]):not([type="checkbox"]):not(
            [type="submit"]
        ):not([type="button"]):not([type="image"]):not([type="file"]) {
        padding: 22px 38px;
    }
    .contact_form .gform_wrapper.gravity-theme .gfield textarea.medium {
        height: 152px;
    }
    #page-container .contact_form .gform_wrapper .gform_footer input.button {
        padding: 18px;
    }
}
@media only screen and (max-width: 980px) {
    .contact_form
        .gform_wrapper
        input:not([type="radio"]):not([type="checkbox"]):not(
            [type="submit"]
        ):not([type="button"]):not([type="image"]):not([type="file"]) {
        padding: 22px 38px;
    }
    .contact_form .gform_wrapper.gravity-theme .gfield textarea.medium {
        height: 152px;
    }
    #page-container .contact_form .gform_wrapper .gform_footer input.button {
        padding: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .contact_form
        .gform_wrapper
        input:not([type="radio"]):not([type="checkbox"]):not(
            [type="submit"]
        ):not([type="button"]):not([type="image"]):not([type="file"]) {
        padding: 20px 38px;
    }
    .contact_form .gform_wrapper.gravity-theme .gfield textarea.medium {
        height: 132px;
    }
    #page-container .contact_form .gform_wrapper .gform_footer input.button {
        padding: 16px;
    }
    .contact_form
        .gform_wrapper
        input:not([type="radio"]):not([type="checkbox"]):not(
            [type="submit"]
        ):not([type="button"]):not([type="image"]):not([type="file"]) {
        font-size: 16px;
    }
    .contact_form .gform_wrapper textarea.textarea {
        font-size: 16px;
    }
}
/* =================== End form css ===================== */

/* ======= About page css start ======== */

/* ================== Start About banner css ============== */
#page-container .inner_banner .et_pb_slide_description {
    display: grid;
}
#page-container .inner_banner .et_pb_slide_content {
    order: 1;
    text-shadow: none;
}
#page-container .inner_banner .et_pb_slide_title {
    order: 2;
    text-shadow: none;
}
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    #page-container .inner_banner .et_pb_slider .et_pb_slide_0 {
        background-size: cover;
    }
}
@media only screen and (min-width: 1371px) and (max-width: 1690px) {
    #page-container .inner_banner .et_pb_slide_description {
        padding-top: 28vh !important;
    }
    #page-container .inner_banner p {
        font-size: 30px !important;
    }
}
@media only screen and (min-width: 1250px) and (max-width: 1370px) {
    #page-container .inner_banner .et_pb_slide_description {
        padding-top: 20vh !important;
        padding-bottom: 0px !important;
    }
    #page-container .btm_spacing {
        margin-bottom: 80px;
    }
    #page-container .inner_banner p {
        font-size: 28px !important;
    }
}
@media only screen and (min-width: 1150px) and (max-width: 1249px) {
    #page-container .inner_banner .et_pb_slide_description {
        padding-top: 16vh !important;
        padding-bottom: 0px !important;
    }
    #page-container .inner_banner p {
        font-size: 28px !important;
    }
    #page-container .inner_banner .et_pb_slider .et_pb_slide_0 {
        background-size: cover;
    }
    #page-container .btm_spacing {
        margin-bottom: 80px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1149px) {
    #page-container .inner_banner .et_pb_slide_description {
        padding-top: 15vh !important;
        padding-bottom: 0px !important;
    }
    #page-container .inner_banner p {
        font-size: 28px !important;
    }
    #page-container .inner_banner .et_pb_slider .et_pb_slide_0 {
        background-size: cover;
    }
    #page-container .btm_spacing {
        margin-bottom: 80px;
    }
}
@media only screen and (max-width: 550px) {
    #page-container .inner_banner .et_pb_slide_description {
        padding-top: 13vh !important;
    }
}
/* ================== End About banner css ============== */

/* ================= Start landing provider css =============== */

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    #page-container .landing_provider_row .et_pb_column {
        margin-right: 0%;
    }
    #page-container .landing_provider_row h2 {
        width: 90%;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1450px) {
    #page-container .landing_provider_col_1 {
        padding-right: 30px;
    }
}

/* ================= End landing provider css =============== */

/* ================= Start Our service section ================ */
@media only screen and (min-width: 981px) and (max-width: 1450px) {
    .our_service_row .et_pb_text_3 {
        width: 60%;
    }
}
/* ================= End Our service section ================ */

/* =================== Start FAQ css ==================== */
#page-container .toggle_row .et_pb_toggle_open {
    padding: 0px 0px;
}
#page-container .toggle_row .et_pb_toggle_open .et_pb_toggle_title {
    background: #85bbec;
    padding: 20px 20px;
    border-radius: 10px;
}
#page-container .toggle_row .et_pb_toggle_open .et_pb_toggle_title::before {
    right: 17px;
}
#page-container .toggle_row .et_pb_toggle_open .et_pb_toggle_content {
    padding-left: 20px;
    padding-right: 40px;
    padding-bottom: 13px;
}
@media only screen and (min-width: 981px) and (max-width: 1280px) {
    #page-container .toggle_row .et_pb_toggle_title {
        font-size: 16px !important;
        line-height: 1.5em !important;
    }
}
@media only screen and (max-width: 980px) {
    .faq_col_1 {
        margin-bottom: 0px;
    }
}
@media only screen and (max-width: 480px) {
    #page-container .toggle_row .et_pb_toggle_open .et_pb_toggle_content {
        padding-right: 20px;
    }
}
/* =================== End FAQ css ==================== */

/* Early Intervention page */

/* ================ Start service offer css ================= */

.early_list_right::before {
    content: "";
    display: block;
    position: absolute;
    height: 375px;
    width: 100%;
    bottom: 280px;
    left: -14px;
    background-image: Url(/wp-content/uploads/early-intervention-img-1.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
}

.school_right::before {
    content: "";
    display: block;
    position: absolute;
    height: 375px;
    width: 100%;
    bottom: 280px;
    left: -14px;
    background-image: Url(/wp-content/uploads/school-img-3.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
}

.early_list_left::before {
    content: "";
    display: block;
    position: absolute;
    height: 375px;
    width: 100%;
    bottom: 280px;
    left: 15px;
    background-image: Url(/wp-content/uploads/Special-Class-in-an-Integrated-Setting-SCIS-Special-Class-SC-3.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
	background-size:contain;
	background-position: bottom;
}
.pre-school_list_right::before {
    content: "";
    display: block;
    position: absolute;
    height: 375px;
    width: 100%;
    bottom: 280px;
    left: -14px;
    background-image: Url(/wp-content/uploads/slide-7.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
}

.pre-school_list_left::before {
    content: "";
    display: block;
    position: absolute;
    height: 375px;
    width: 100%;
    bottom: 280px;
    left: 15px;
    background-image: Url(/wp-content/uploads/1-to-1-consult-img-11.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
}
.list_item ul li::marker {
    color: #d30a0a;
    font-size: 35px;
}
.list_item_row .et-pb-arrow-prev::before {
    content: "4";
    background: #85bbecab;
    border-radius: 50%;
    font-size: 30px;
    padding: 5px;
    color: #fff;
    position: relative;
    left: 15px;
}
.list_item_row .et-pb-arrow-next::before {
    content: "5";
    background: #85bbecab;
    border-radius: 50%;
    font-size: 30px;
    padding: 5px;
    color: #fff;
    position: relative;
    right: 15px;
}
.list_item_row .et-pb-controllers a {
    background-color: #fff;
}
div#page-container .list_item_row .et-pb-active-control {
    background-color: #fff;
}
@media only screen and (min-width: 981px) and (max-width: 1399px) {
    div#page-container .list_item_row {
        padding-left: 0px !important;
    }
    div#page-container .list_item li {
        font-size: 18px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1250px) {
    div#page-container .list_item_col_1 {
        padding-left: 60px;
    }
}
@media only screen and (min-width: 1201px) and (max-width: 1330px) {
    div#page-container .early_list_right::before {
        bottom: 275px;
    }
    div#page-container .pre-school_list_right::before {
        bottom: 272px;
    }
    div#page-container .early_list_left::before {
        bottom: 275px;
    }
    div#page-container .pre-school_list_left::before {
        bottom: 272px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1200px) {
    div#page-container .early_list_left::before {
        bottom: 272px;
    }
    div#page-container .pre-school_list_left::before {
        bottom: 272px;
    }
    div#page-container .early_list_right::before {
        bottom: 272px;
    }
    div#page-container .pre-school_list_right::before {
        bottom: 272px;
    }
}
/* @media only screen and (min-width: 1201px) and (max-width: 1330px){
.early_list_left::before {
  bottom: 275px;
}
}
@media only screen and (min-width: 981px) and (max-width: 1200px){
.early_list_right::before {
  bottom: 272px;
}
} */
@media only screen and (max-width: 980px) {
    div#page-container .list_item_col_1 {
        margin-bottom: 0px;
    }
    div#page-container .list_item_col_1 ul {
        padding-bottom: 0em;
    }
    .early_list_right::before {
        display: none;
    }
    .early_list_left::before {
        display: none;
    }
    .approved_row {
        position: relative;
        top: -60px;
    }
    .pre-school_list_right::before {
        display: none;
    }
    .pre-school_list_left::before {
        display: none;
    }
	
	.school_right::before {
		display:none
	}
}
@media only screen and (max-width: 767px) {
    .list_item ul li::marker {
        font-size: 30px;
    }
    .approved_row {
        position: relative;
        top: -60px;
    }
}
/* ================ End service offer css ================= */

/* Preschool Program page */

/* ================= Start Qa tab css ==================== */

.qa_tab .et_pb_tabs_controls.clearfix {
    width: 12%;
    border-right: 1px solid #d9d9d9 !important;
}
.qa_tab .et_pb_tabs_controls li {
    border-right: 0px;
}
.qa_tab .et_pb_tabs_controls li a {
    padding: 22px 33px;
}
.qa_tab a {
    font-size: 20px;
    font-family: Fira Sans;
    font-weight: 600;
}
.qa_tab .et_pb_tabs_controls::after {
    border-top: none !important;
}
.qa_tab .et_pb_tab {
    padding: 40px 60px;
}

.qa_tab .et_pb_tab_active {
    background-color: #b7d7dc;
    width: 250px !important;
}
.qa_tab .et_pb_tabs_controls li {
    width: 250px;
    background: aliceblue;
}
.qa_tab ul.et_pb_tabs_controls {
    background-color: aliceblue;
}
.qa_tab h2 {
    font-size: 35px;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 20px;
}
.qa_tab .et_pb_tabs_controls li a {
    border-bottom: 1px solid #d9d9d9;
}
.qa_tab .et_pb_tabs_controls li a:nth {
    border-bottom: none;
}
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .qa_tab h2 {
        font-size: 30px;
    }
    .qa_tab p {
        font-size: 20px;
    }
}
@media (max-width: 980px) {
    #page-container .qa_tab .et_pb_tabs_controls li a {
        padding: 22px 18px;
    }
    .qa_tab h2 {
        font-size: 30px;
    }
    #page-container .qa_tab .et_pb_tab {
        padding: 40px 40px;
    }
}
@media (min-width: 768px) {
    .qa_tab {
        display: flex;
        flex-direction: row;
    }
}
@media (max-width: 767px) {
    .qa_tab .et_pb_tabs_controls.clearfix {
        width: 100% !important;
        border-right: none !important;
    }
    .qa_tab .et_pb_tab_active {
        width: 100% !important;
    }
    #page-container .qa_tab .et_pb_tabs_controls li a {
        padding: 15px 36px;
        border-bottom: none;
    }
    .qa_tab .et_pb_tabs_controls li {
        width: 100%;
    }
    .qa_tab h2 {
        font-size: 28px;
    }
    #page-container .qa_tab .et_pb_tab {
        padding: 40px 40px;
    }
}

/* ================= End Qa tab css ==================== */

/* Our staff page */

/* ==================== Start team css ======================= */
/* #page-container .team_col:hover .et_pb_blurb_description p, #page-container .team_col:hover .et_pb_blurb_description a {
    color: #fff !important;
    transition: 0.7s;
    font-weight: 500;
} */

/* .team_fix .et_pb_blurb_description:hover p, .team_fix .et_pb_blurb_description:hover a{
    color: #fff !important;
	transition: 0.7s;
    font-weight: 500;
} */

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    #page-container .team_col h2 {
        font-size: 20px;
    }
    #page-container .team_col .et_pb_blurb_container {
        padding: 0px 15px;
    }
}
@media only screen and (max-width: 980px) {
    #page-container .team_col img {
        width: 880px;
    }
    .team_col .et_pb_blurb_container {
        padding: 0px 20px;
    }
}

/* ==================== End team css ======================= */

/* Start Link page */

/* ================ Start Link data css ================ */
#page-container .wpdt-c label {
    font-weight: 500;
    font-size: 20px !important;
    text-transform: uppercase;
}
#page-container .wpDataTablesWrapper table.scroll {
    width: 100% !important;
}
#page-container .wpDataTablesWrapper table.wpDataTable > thead > tr > th {
    text-shadow: none;
    padding: 10px 15px;
}
#page-container .wpDataTablesWrapper table.wpDataTable td {
    padding: 5px 15px;
}
#page-container
    .wpDataTablesWrapper
    table.wpDataTable.wpDataTableID-2
    thead
    th {
    border-top: 0px !important;
}
#page-container .wpDataTablesWrapper div.wdtscroll {
    margin-bottom: 50px;
}
#page-container
    .wpDataTables.wpDataTablesFilter.wpDataTablesWrapper.wdt-skin-graphite.data-t {
    display: none;
}
.wpDataTablesWrapper .dataTables_info {
    display: none;
}
#page-container
    .wpDataTablesWrapper.wpdt-pagination-right
    .dataTables_paginate {
    float: none !important;
    width: fit-content;
    margin: auto;
}

@media only screen and (max-width: 980px) {
    #page-container .wpdt-c label {
        font-size: 18px !important;
    }
    #page-container .wpDataTablesWrapper table.wpDataTable > thead > tr > th {
        text-shadow: none;
        padding: 8px 12px;
    }
    #page-container .wpDataTablesWrapper table.wpDataTable td {
        padding: 8px 12px;
    }
}
@media only screen and (max-width: 767px) {
    #page-container .wpdt-c label {
        font-size: 16px !important;
    }
}
/* ================ Start Link data css ================ */

/* Login Page */

/* ================ Start login css ======================= */
#page-container .et_password_protected_form h1 {
    font-size: 45px;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 4.5px;
    line-height: 1.22em;
    text-transform: uppercase;
}
#page-container .et_password_protected_form p {
    font-size: 25px;
    line-height: 2em;
}
#page-container .et_password_protected_form p input {
    background-color: #f8f8f8;
    border: 1px solid #acacac !important;
    width: 100% !important;
    border-radius: 40px !important;
    font-size: 16px;
    color: #acacac !important;
    padding: 25px !important;
}
#page-container .et_password_protected_form .et_submit_button {
    font-family: Montserrat;
    padding: 15px 80px !important;
    border-radius: 50px;
    font-size: 22px;
    letter-spacing: 1.8px;
    background: #85bbec;
    border-color: #85bbec;
}
#page-container .et_password_protected_form .et_submit_button:hover {
    padding: 15px 80px !important;
    border-radius: 50px;
    font-size: 22px;
    letter-spacing: 1.8px;
    background: #d30a0a;
    border-color: #d30a0a !important;
}
#page-container .et_password_protected_form {
    margin: 5% auto;
}
#page-container .et_password_protected_form {
    margin-top: 0px;
}
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    #page-container .et_password_protected_form h1 {
        font-size: 40px;
    }
    #page-container .et_password_protected_form {
        margin-top: 1.5%;
    }
}
@media only screen and (max-width: 980px) {
    #page-container .et_password_protected_form h1 {
        font-size: 35px;
    }
    #page-container .et_password_protected_form p {
        font-size: 22px;
    }
    #page-container .et_password_protected_form p input {
        padding: 22px !important;
    }
    #page-container .et_password_protected_form .et_submit_button {
        font-family: Montserrat;
        padding: 14px 70px !important;
    }
    #page-container .et_password_protected_form .et_submit_button:hover {
        padding: 14px 70px !important;
    }
    #page-container .et_password_protected_form {
        margin-top: 0%;
    }
}
@media only screen and (max-width: 767px) {
    #page-container .et_password_protected_form h1 {
        font-size: 25px;
        letter-spacing: 2px;
    }
    #page-container .et_password_protected_form p {
        font-size: 18px;
    }
    #page-container .et_password_protected_form p input {
        padding: 20px !important;
    }
    #page-container .et_password_protected_form .et_submit_button {
        font-family: Montserrat;
        padding: 14px 60px !important;
        font-size: 18px;
    }
    #page-container .et_password_protected_form .et_submit_button:hover {
        padding: 14px 60px !important;
        font-size: 18px;
    }
    #page-container .et_password_protected_form {
        margin-top: 0%;
    }
}
@media only screen and (max-width: 480px) {
    #page-container .et_password_protected_form .et_submit_button {
        font-family: Montserrat;
        padding: 13px 40px !important;
        font-size: 16px;
    }
    #page-container .et_password_protected_form p input {
        padding: 18px !important;
    }
    #page-container .et_password_protected_form .et_submit_button:hover {
        padding: 13px 40px !important;
        font-size: 16px;
    }
    #page-container .et_password_protected_form h1 {
        font-size: 22px;
    }
}
/* ================ End login css ======================= */

/***** CSS edit by Hridoy 01-10-23 ******/

#page-container .hide_footer_link a {
    display: none !important;
}

.gform_wrapper .gform_validation_errors>h2 {
    letter-spacing: 0px;
}
@media only screen and (max-width: 980px){
	body #page-container .map_fix iframe{
	height: 345px !important;
}
}

.list_item.notification_list ul li::marker {
        font-size: 30px;
    }



@media all and (min-width: 981px) and (max-width: 1405px) {
	body #page-container .team_fix .et_pb_blurb_description a{
        font-size: 12px;
	}
}

@media all and (min-width: 981px) and (max-width: 1280px) {
	body #page-container .team_fix .et_pb_blurb_description a{
        font-size: 10px;
	}
}


/* column align middle */
@media (min-width: 981px) {
  .center-align {
    display: flex;
    align-items: center;
  }
	.bottom-align{
		display: flex;
    align-items: flex-end;
	}
}

/* Column reverse on tab and mobile devices */
@media (max-width: 980px) {
  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .column-reverse .et_pb_column:first-child {
    margin-bottom: 0;
  }
  .column-reverse .et_pb_column:last-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 479px) {
	.column-reverse .et_pb_column:last-child {
     margin-bottom: 30px !important;
     }
}

@media only screen and (max-width: 980px){
	body #page-container .pa-open-mobile-menu .et_pb_menu__wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
}
