*, ::after, ::before {
    box-sizing: border-box; 
}
:root {
    --bg: #F7F3F1;
    --accent-color: #86A569;
    --color-two: #B59898;
    --bg-btn: #5D8239;
}

::-webkit-scrollbar {
    width: 10px;
  }
  
::-webkit-scrollbar-track {
    background: #F7F3F1;
  }
  
::-webkit-scrollbar-thumb {
    background-color: #B59898;
    border-radius: 4px;
    border: 1px solid #F7F3F1;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
    padding: 0;
    font-weight: normal;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
input, select, textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}
input:focus, select:focus, textarea:focus {
    outline: none;
}
input, textarea {
    border: none;
    background-color: #fff;
    border-radius: 10px;
    padding: 21px 22px;
    font-weight: 500;
    font-size: 14px;
    display: block;
    width: 100%;
    margin-bottom: 19px;
}
button {
    border: none;
}
nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    margin: 30px 0 35px;
}
table, th, td, .wp-block-table table, .wp-block-table th, .wp-block-table td {
    border: 5px solid #fff;
}
thead {
    background-color: var(--color-two);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}
thead th {
    padding: 13px 10px;
    font-size: 16px;
}
tbody td, .wp-block-table tbody td {
    background-color: var(--bg);
    font-size: 12px;
    font-weight: 500;
    padding: 13px 10px;
}
.container {
    width: 100%!important;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.text-center {
    text-align: center;
}
.titleSection, h2.wp-block-post-title {
    font-family: 'Timesquare', sans-serif;
    font-size: 38px;
    line-height: 45px;
    font-weight: bold;
    color: var(--bg-btn);
    margin: 0;
}
.subtitleSection, h3.wp-block-post-title {
    font-family: 'Timesquare', sans-serif;
    font-size: 26px;
    line-height: 33px;
    margin: 0;
    font-weight: normal;
}
.btn {
    background-color: var(--bg-btn);
    color: #fff;
    font-weight: 700;
    line-height: 12px;
    padding: 24px 35px;
    border-radius: 10px;
    transition: all .2s;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-btn);
}
.btn:hover {
    color: var(--bg-btn);
    background: none;
}
.btn-white {
    background-color: #fff;
    color: var(--bg-btn);
    border: 2px solid #fff;
}
.row {
    display: flex;
}
.col50 {
    width: 50%;
}
.col60 {
    width: 60%;
}
.col40  {
    width: 40%;
}
.main {
    overflow: hidden;
    min-height: calc(100vh - 115px - 164px);
}
@media(max-width: 769px) {
    .main {
        min-height: calc(100vh - 237px - 164px);
    }
}
.alignright, .wp-block-image .alignright {
    margin: 15px 0 30px 50px;
    float: right;
}
.alignleft, .wp-block-image .alignleft {
    margin: 15px 50px 30px 0;
    float: left;
}
.aligncenter, .wp-block-image .aligncenter {
    margin: 15px auto 35px;
    display: block;
}

/* HEADER */
.header {
    padding: 47px 0;
    background-color: #fff;
}
.headerWhite {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background: none;
}
.headerWhite:not(.active), .headerWhite:not(.active) a {
    color: #fff;
}
.header__wr {
    gap: 65px;
    justify-content: space-between;
    position: relative;
    z-index: 16;
}
.header__logo img {
    width: 200px;
}
.header__nav {
    flex-grow: 1;
}
.header__nav ul {
    display: flex;
    gap: 38px;
    justify-content: center;
}
.header__nav ul li.menu-item-has-children a::after {
    content:'';
    width: 4px;
    height: 7px;
    border: 4px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    right: -12px;
    top: 6px;
    transition: all .2s;
}
.headerWhite:not(.active) .header__nav ul li.menu-item-has-children a::after {
    border-top: 5px solid #fff;
}
.header__nav ul li.menu-item-has-children a:hover::after {
    border-top: 5px solid var(--accent-color);
}
.header__nav ul>li>a {
    border-bottom: 1px solid transparent;
    transition: all .2s;
    color: #000;
    font-weight: 500;
    position: relative;
    font-size: 13px;
}
.headerWhite:not(.active) .header__nav ul>li>a {
    color: #fff;
}
.headerWhite.active {
    background-color: #fff;
}
.header__nav ul>li>a:hover, .header__nav li.current-menu-item a {
    color: var(--accent-color);
}
.header__phone a {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    transition: all .2s;
}
.header__phone img {
    width: 18px;
}
.headerWhite:not(.active) .header__phone a {
    color: #fff;
}
.header.menuopen .header__phone a {
    color: #000;
}
.header .header__phone a:hover {
    color: var(--accent-color);
}

.header:not(.headerWhite) .header__phone img, .headerWhite.active .header__phone img, .header.menuopen  .header__phone img {
    filter: invert(1);
}
.header__menubtn {
    display: none;
    height: 30px;
    width: 35px;
    position: relative;
    cursor: pointer;
}
.header__menubtn span {
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: #000;
    border-radius: 20px;
    display: block;
    top: calc(50% - 3px);
}
.header__menubtn span::before, .header__menubtn span::after {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all .3s;
}
.headerWhite .header__menubtn span, .headerWhite .header__menubtn span::before, .headerWhite .header__menubtn span::after {
    background-color: #fff;
}
.header.fixed .header__menubtn span, .header.fixed .header__menubtn span::before, .header.fixed .header__menubtn span::after {
    background-color: #000;
}
.header.fixed .header__menubtn.open span {
    background: none;
}
.header__menubtn span::before {
    top: -11px;
}
.header__menubtn span::after {
    top: 11px;
}
.header__menubtn.open span {
    background: none;
}
.header__menubtn.open span:before {
    transform: rotate(45deg);
    top: 0;
}
.header__menubtn.open span:after {
    transform: rotate(-45deg);
    top: 0;
}
.header__right {
    gap: 20px;
}
.header__modmenuWr {
    display: none;
}
.header__modmenu {
    padding: 95px 25px 35px;
    background-color: #fff;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    position: fixed;
    z-index: 2;
    right: 0;
    top: 0;
    width: 450px;
    height: 100vh;
    color: #000;
    overflow: auto;
}
.header__modmenu-nav {
    margin-top: 50px;
    border-top: 1px solid #DBDBDB;
}
.header__modmenu-nav>nav>ul>li {
    border-bottom: 1px solid #DBDBDB;
}
.header__modmenu-nav>nav>ul>li {  
    padding: 17px 100px 17px 0;
    display: block;
}
.header .header__modmenu-nav>nav>ul>li>a {
    font-size: 16px;
    font-family: 'Timesquare', sans-serif;
    font-weight: bold;
}
.header .header__modmenu-nav a {
    color: #000;
}
.header__modmenu-nav>nav>ul>li.menu-item-has-children {
    position: relative;
}
.header__modmenu-nav>nav>ul>li.menu-item-has-children::before, 
.header__modmenu-nav>nav>ul>li.menu-item-has-children::after {
    content:'';
    width: 15px;
    height: 3px;
    background-color: var(--accent-color);
    position: absolute;
    top: 24px;
    right: 13px;
    transition: all .2s;
}
.header__modmenu-nav>nav>ul>li.menu-item-has-children::after {
    transform: rotate(90deg);
}
.header__modmenu-nav>nav>ul>li.menu-item-has-children.open::after {
    transform: rotate(0deg);
}
.header__modmenu-nav>nav>ul>li.menu-item-has-children.open>a {
    color: var(--accent-color);
}
.header__modmenu-nav>nav>ul>li>ul {
    padding-left: 15px;
    display: none;
}
.header__modmenu-nav>nav>ul>li.open>ul {
    display: block;
    padding-top: 12px;
}

.header__modmenu-nav>nav>ul>li>ul>li>a {
    font-size: 14px;
    font-family: 'Timesquare', sans-serif;
    font-weight: 700;
    padding: 10px 0;
    display: block;
}
.header__modmenu-nav>nav>ul>li>ul>li>a:hover {
    color: var(--accent-color);
}
.header__modmenu-nav a {
    color: #000;
    transition: all .2s;
}
.header__modmenu-close {
    position: absolute;
    cursor: pointer;
    top: 50px;
    right: 25px;
}
.header__modmenu-phone a {
    color: #000!important;
    display: flex;
    gap: 11px;
    font-size: 18px;
    font-weight: bold;
}
.header__modmenu-phone img {
    filter: invert(1);
}
.header__modmenu-btns {
    gap: 9px;
    margin-bottom: 45px;
}
.header__modmenu-btns a {
    font-size: 13px;
    width: 195px;
    padding: 10px;
    height: 60px;
}
.header__modmenu-btns a:first-child {
    background-color: #24C5C3;
    color: #fff;
    flex-wrap: wrap;
    gap: 0 4px;
}
.header__modmenu-btns a:last-child {
    background-color: #009997;
    color: #fff;
}
.header__modmenu-btns a:hover {
    filter: brightness(0.9);
}
.header__modmenu-footer-copy {
    margin-bottom: 17px;
    font-size: 12px;
    line-height: 20px;
}
.header__modmenu-soc {
    gap:14px;
}
.headerPopup {
    overflow: hidden;
    position: absolute;
    width: 100%;
    padding: 47px 0;
    color: #fff;
    top: 137px;
    left: 0;
    display: none;
    z-index: 3;
    background-color: var(--accent-color);
}
.headerPopup .container {
    position: relative;
    z-index: 2;
}
.headerPopup__bg {
    background-color: rgba(135, 165, 105,.9);
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
}
.headerPopup__bg img {
    width: 53%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
    z-index: -1;
}
.headerPopup__nav-title {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Timesquare', sans-serif;
    margin-bottom: 17px;
}
.headerPopup__nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.headerPopup__nav ul a {
    font-family: 'Timesquare', sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid;
    transition: all .2s;
    color: #fff;
}
.headerPopup__nav ul a:hover {
    border-bottom: 1px solid transparent;
    color: #007573;
}
.headerPopup__cont .titleSection {
    color: #fff;
}
.headerPopup__nav .twocol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 30px;
}
.headerPopup__nav .twocol li {
    width: calc(50% - 45px);
}
.headerPopup__nav ul>li>ul {
    list-style-type: disc;
    font-size: 12px;
    padding-left: 15px;
}
#therapies .headerPopup__bg img {
    width: 45%;
}
.titleSectionTwo {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Timesquare', sans-serif;
    font-weight: bold;
}
.headerPopup .titleSection {
    margin-bottom: 10px;
}
.header__logo-b, .headerWhite.active .header__logo-w {
    display: none;
}
.headerWhite.active .header__logo-b {
    display: block;
}
.header.fixed {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 4px 10px #0000002b;
    padding: 25px 0;
    transition: all .3s;
    width: 100%;
    z-index: 99;
    top: 0; 
    left: 0;
}
.header.fixed .headerPopup {
    top: 102px;
}

.header.fixed .header__nav ul>li>a,
.header.fixed .header__phone a {
    color: #000;
}
.header.fixed .header__nav ul li.menu-item-has-children a::after {
    border-top: 5px solid #000;
}
.header.fixed .header__phone img {
    filter: invert(1);
}
.header.fixed .header__logo-b, .header.menuopen .header__logo-b {
    display: block;
}
.header.menuopen:before {
    content: '';
    background-color: #fff;
    height: 146px;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    transition: all .3s;
}
.header.menuopen.fixed:before {
    height: 103px;
}
.header.fixed .header__logo-w, .header.menuopen .header__logo-w {
    display: none;
}
.header.menuopen 
.header.menuopen .header__menubtn span, .header.menuopen .header__menubtn span::before, .header.menuopen .header__menubtn span::after {
    background-color: #000;
}
body.mt:not(.home) {
    margin-top: 146px;
}

.header__btnCTA .btn {
    width: 158px;
    height: 42px;
    font-size: 14px;
    padding: 2px 8px;
}

@media(max-width: 1200px) {
    .header__menubtn {
        display: block;
    }
    .header__nav {
        display: none;
    }
}
@media(max-width: 769px) {
    .header__menubtn {
        display: none;
    }
    .header__wr {
        gap: 40px;
    }
    .header__btnCTA .btn {
        width: 110px;
    }
}
@media(max-width: 575px) {
    .header {
        padding: 30px 0;
    }
    .header__phone {
        display: none;
    }
    .header__modmenu {
        width: 100%;
        padding: 70px 15px 25px;
    }
    .header__modmenu-close {
        top: 33px;
        right: 15px;
        width: 25px;
    }
    body.mt:not(.home) {
        margin-top: 132px;
    }
    .header.menuopen:before {
        height: 128px;
    }
}
/* END HEADER */

/* HOME */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero__subtitle {
    font-family: 'Timesquare', sans-serif;
    font-size: 34px;
    line-height: 48px;
    margin: 0;
}
.hero__title {
    font-family: 'Timesquare', sans-serif;
    font-size: 48px;
    line-height: 46px;
    color: var(--accent-color);
    font-weight: bold;
    margin: 0 0 15px;
}
.hero__txt {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
    font-weight: 500;
}
.hero__cont {
    padding: 0 215px;
}
.hero__arrow {
    position: absolute;
    width: 36px;
    margin-left: -18px;
    left: 50%;
    margin-top: 50px;
}
.hero__btn .hero-btns, .hero__btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.hero-btns span {
    font-size: 18px;
}
.hero__btn-after {
    text-align: center;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}
.hero__btn .ctaHome__cont-btns {
    justify-content: center;
}
.hero__btn .ctaHome__cont-btns .btn:first-child {
    background-color: var(--bg-btn);
    color: #fff;
    border: 2px solid var(--bg-btn);
}
.ctaHome .hero__btn-after {
    width: 240px;
}
.aboutHome {
    padding: 150px 0;
}
.aboutHome__img {
    gap: 20px;
    align-items: start;
}
.aboutHome__img img:first-child {
    width: 280px;
    height: 517px;
    object-fit: cover;
}
.aboutHome__img img:last-child {
    width: 300px;
    height: 467px;
    margin-top: -15px;
    object-fit: cover;
}
.aboutHome__cont {
    padding: 20px 0 20px 75px;
}
.aboutHome__btn {
    margin-top: 28px;
}
.structureHome {
    padding-bottom: 40px;
    padding-top: 50px;
}
.structureHome__right {
    color: #9B9B9B;
    text-align: right;
    padding-left: 48px;
}
.structureHome__left {
    gap: 30px;
}
.structureHome__left-img img {
    width: 97px;
}
.structureHome__blocks {
    gap: 33px;
    flex-wrap: wrap;
    margin-top: 55px;
}
.structureHome__block {
    width: calc(100% / 3 - 22px);
}
.structureHome__block a, .programsHome__nolink .structureHome__block {
    color: #000;
    background-color: var(--bg);
    padding: 58px 26px;
    text-align: center;
    transition: all .2s;
    display: block;
    height: 100%;
}
.programsHome__nolink .structureHome__block {
    height: auto;
}
.structureHome__block a:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.structureHome__block a:hover .structureHome__block-title {
    color: #fff;
}
.structureHome__block-img {
    margin-bottom: 30px;
}
.structureHome__block-img img {
    width: 77px;
    height: 95px;
    object-fit: contain;
}
.structureHome__block a:hover .structureHome__block-img img {
    filter: brightness(0) invert(1);
}
.structureHome__block-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 26px;
}
.trustedHome {
    text-align: center;
}
.trustedHome__bg {
    padding: 74px 0;
    background: linear-gradient(180deg, rgb(255 255 255 / 72%) 0%, #ffffff 92.3%);

}
.trustedHome__img {
    margin-bottom: 25px;
}
.trustedHome__txt {
    width: 75%;
    margin: 10px auto;
}
.trustedHome__logos {
    margin-top: 50px;
    gap: 40px 65px;
    justify-content: center;
    flex-wrap: wrap;
}
.trustedHome__logos img {
    width: calc(100% / 6 - 60px);
}
.compHome {
    background: url('../img/home/comp-bg.svg') no-repeat top right;
    margin-top: 90px;
    padding: 80px 0 200px;
}
.compHome__txt {
    margin-top: 20px;
    width: 80%;
}
.compHome__blocks {
    margin-top: 100px;
}
.compHome__block-cont {
    padding: 20px 60px 20px 78px;
}
.compHome__block-cont-title {
    font-weight: bold;
    font-size: 24px;
    font-family: 'Timesquare', sans-serif;
    margin-bottom: 11px;
    margin-top: 0;
    line-height: 31px;
    color: var(--color-two);
}
.compHome__block-cont-txt {
    margin-bottom: 20px;
}
.compHome__block-cont-txt p:not(:last-child) {
    margin: 0 0 20px;
}
.compHome__block-cont-txt p:last-child {
    margin: 0;
}
.arr-link {
    color: var(--bg-btn);
    font-weight: bold;
    padding-right: 14px;
    position: relative;
    display: inline-block;
}
.arr-link::after {
    content:'';
    background: url('../img/home/copm-icon.svg') no-repeat center/contain;
    width: 7px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 6px;
    transition: all .2s;
}
.arr-link:hover::after {
    right: -5px;
}
.compHome__block-img {
    height: 100%;
}
.compHome__block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
    max-height: 460px;
    height: 400px;
}
.compHome__block {
    align-items: center;
}
.compHome__block:nth-child(2n) {
    flex-direction: row-reverse;
    text-align: right;
}
.ctaHome {
    background-color: var(--accent-color);
    color: #fff;
}
.ctaHomeRev .row {
    flex-direction: row-reverse;
}
.ctaHome__cont {
    padding: 30px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.ctaHome .titleSection {
    color: #fff;
    margin-bottom: 8px;
}
.ctaHome__cont-txt {
    margin-bottom: 28px;
}
.ctaHome__cont-btns, .hero-btns {
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-btns {
    justify-content: center;
}
.hero-btns {
    justify-content: center;
}
.ctaHome__cont-btns a:first-child {
    background-color: #fff;
    color: var(--accent-color);
    border: 2px solid #fff;
}
.ctaHome__cont-btns a:last-child {
    background-color: var(--bg-btn);
    color: #fff;
    border: 2px solid var(--bg-btn);
}
.ctaHome__cont-btns a:last-child:hover, .ctaHome__cont-btns a:first-child:hover {
    background: none;
    border: 2px solid #fff;
    color: #fff;
}
.ctaHome__cont-btns a.btn-white {
    background-color: #fff;
    color: var(--bg-btn);
    border: 2px solid #fff;
}
.ctaHome__img {
    height: 100%;
}
.ctaHome__img img {
    margin-bottom: -7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
}
.mentalHome {
    padding: 170px 0 35px;
}
.mentalHome__blocks {
    gap: 30px;
    margin-top: 40px;
    width: max-content;
}
.mentalHome__block {
    width: 373px;
}
.mentalHome__block-img {
    margin-bottom: 25px;
}
.mentalHome__block-img img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}
.mentalHome__block-title {
    font-family: 'Timesquare', sans-serif;
    color: var(--bg-btn);
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}
.mentalHome__block-txt {
    margin-bottom: 20px;
}
.programsHome__top {
    text-align: center;
}
.faq {
    padding: 65px 0 160px;
}
.faq__blocks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.faq__blocks.faq-block {
    margin: 20px 0;
}
.faq__blocks.faq-block .faq__block-txt p {
    margin-top: 0;
}
.faq__block {
    background-color: #F7F3F1;
}
.faq__block-title {
    padding: 25px 100px 25px 35px;
    font-size: 16px;
    font-family: 'Timesquare', sans-serif;
    font-weight: bold;
    position: relative;
    transition: all .3s;
    cursor: pointer;
}
.faq__block-txt {
    padding: 0 100px 25px 35px;
    display: none;
}
.faq__block-title::before, .faq__block-title::after {
    content: '';
    width: 17px;
    height: 3px;
    background-color: var(--color-two);
    position: absolute;
    top: 36px;
    right: 26px;
    transition: all .2s;
}
.faq__block-title::after {
    transform: rotate(90deg);
}
.faq__block.open .faq__block-title::after {
    transform: rotate(0deg);
}
.faq__block.open .faq__block-title {
    color: var(--color-two);
    padding-bottom: 15px;
}
.programsHome {
    padding: 50px 0 170px;
}
.trendsHome__blocks {
    margin-top: 45px;
}
.trendsHome__block {
    background-color: var(--bg);
    height: auto;
}
.trendsHome__block-img {
    height: 190px;
}
.trendsHome__block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trendsHome__block-cont {
    padding: 25px;
}
.trendsHome__block-title a {
    font-size: 18px;
    font-weight: bold;
    color: var(--bg-btn);
    margin: 0 0 8px;
    display: block;
}
.trendsHome {
    padding: 150px 0 100px;   
}
.googleReviews {
    margin-bottom: 200px;
}
.googleReviews__m {
    display: none;
}
.mentalHome_block-wr {
    overflow-x: auto;
}
.mentalHome_block-wr .mentalHome__blocks {
    padding-bottom: 30px;
}

.videoAbout {
    padding: 60px 0;
}


@media(max-width: 1200px) {
    .hero__cont {
        padding: 0 120px;
    }
    .compHome__block-cont {
        padding: 20px 40px 20px 30px;
    }
    .ctaHome__img img {
        max-height: initial;
    }
    .aboutHome__img img:first-child, .aboutHome__img img:last-child {
        width: 50%;
    }
    .aboutHome__img {
        justify-content: center;
    }
}
@media(max-width: 991px) {
    .compHome__block-cont {
        padding: 20px 40px 20px 30px;
    }
    .compHome {
        margin-top: 20px;
        padding: 30px 0 100px;
    }
    .ctaHome__img-wr {
        display: none;
    }
    .ctaHome .col50 {
        width: 100%;
    }
    .ctaHome__cont {
        text-align: center;
        align-items: center;
        padding: 50px 102px;
    }
    .structureHome__blocks {
        gap: 20px;
    }
    .structureHome__block {
        width: calc(100% / 3 - 14px);
    }
    .hero__cont {
        padding: 0;
    }
    .structureHome__top .row, .aboutHome .row {
        flex-wrap: wrap;
    }
    .structureHome__top .col50, .aboutHome .col50 {
        width: 100%;
    }
    .structureHome__right {
        text-align: left;
        padding-left: 0;
        margin-top: 20px;
    }
    .aboutHome__cont {
        padding: 0;
        margin-top: 40px;
    }
    .aboutHome {
        padding: 80px 0 120px;
    }
    .compHome__txt {
        width: 100%;
    }
    .trustedHome__logos img {
        width: calc(100% / 3 - 100px);
    }
}
@media(max-width: 768px) {
    .compHome__block, .compHome__block:nth-child(2n) {
        flex-direction: column;
        text-align: left;
        width: 290px;
        margin-bottom: 10px;
    }
    .compHome__block .col50 {
        width: 100%;
    }
    .compHome__block-cont {
        padding: 20px 0 20px 0;
    }
    .compHome__block-cont-txt {
        margin-bottom: 13px;
    }
    .compHome__block-cont-title, .mentalHome__block-title {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 4px;
    }
    .compHome__block-cont-txt, .mentalHome__block-txt {
        font-size: 12px;
    }
    .compHome__block-img img, .mentalHome__block-img img {
        height: 200px;
    }
    .compHome__blocks {
        display: flex;
        gap: 24px;
        width: max-content;
        padding: 0 20px;
        margin-top: 40px;
    }
    .compHome__blocks-wr {
        overflow: auto;
    }
    .structureHome__left {
        flex-direction: column;
        gap: 10px;
    }
    .compHome__txt {
        text-align: center;
    }
    .structureHome__left-cont {
        text-align: center;
    }
    .ctaHome__cont-btns .btn{
        width: 100%;
    }
    .mentalHome__blocks {
        width: max-content;
        padding-bottom: 30px;
    }
    .mentalHome__block, .structureHome__block {
        width: 290px;
    }
    .mentalHome {
        padding: 80px 0 65px;
    }
    .trustedHome__txt {
        width: 100%;
    }
    .structureHome__blocks {
        flex-wrap: nowrap;
        width: max-content;
        padding-bottom: 30px;
    }
    .trendsHome__block {
        width: 290px;
    }
    .trendsHome {
        padding: 70px 0 100px;
    }
    .googleReviews__m {
        display: block;
    }
    .googleReviews__d {
        display: none;
    }
    .googleReviews {
        margin-bottom: 100px;
    }
    .hero__subtitle {
        font-size: 21px;
        line-height: 38px;
    }
    .hero__title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .hero__txt {
        font-size: 14px;
        line-height: 23px;
    }
    .subtitleSection, .titleSection, .aboutHome__txt, .aboutHome__btn {
        text-align: center;
    }
    .aboutHome__btn {
        margin-top: 20px;
    }
    .titleSection {
        font-size: 32px;
        line-height: 38px;
    }
    .subtitleSection {
        font-size: 22px;
    }
    .structureHome__right {
        text-align: center;
    }
    .hero__btn .ctaHome__cont-btns {
        gap: 15px;
    }
}
@media(max-width: 575px) {
    .structureHome__left-img img {
        width: 86px;
    }
    .subtitleSection {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    .titleSection {
        font-size: 26px;
        line-height: 34px;
    }
    .ctaHome__cont {
        padding: 51px 20px 30px;
        align-items: normal;
    }
    .ctaHome__cont-btns {
        gap: 15px;
    }
    .faq__block-title {
        font-size: 14px;
        padding: 25px 60px 25px 25px;
        line-height: 20px;
    }
    .faq__block-txt {
        font-size: 12px;
        padding: 0 25px 25px 25px;
        line-height: 19px;
    }
    .faq {
        padding: 50px 0;
    }
    .programsHome {
        padding: 50px 0 100px;
    }
    .aboutHome__img {
        gap: 18px;
    }
    .aboutHome__img img {
        width: calc(100% / 2 - 9px);
    }
    .aboutHome {
        padding: 50px 0 80px;
    }
    .structureHome {
        padding-bottom: 100px;
    }
    .trustedHome__img {
        margin-bottom: 15px;
    }
    .trustedHome__bg {
        padding: 60px 0;
    }
    .structureHome__blocks {
        margin-top: 33px;
    }
    .structureHome__block a, .programsHome__nolink .structureHome__block {
        padding: 45px 20px;
    }
    .trustedHome__logos img {
        width: calc(50% - 40px);
    }
    .aboutHome__img img:first-child {
        height: 245px;
        width: 133px;
    }
    .aboutHome__img img:last-child {
        height: 207px;
        width: 133px;
        margin-top: 0;
    }
    .ctaHome .hero__btn-after {
        width: 100%;
    }
    .hero__btn .hero-btns  {
        flex-direction: column;
        gap: 15px;
    }
    .hero-btns .btn {
        width: 300px;
        padding: 20px 10px;
    }
}
/* END HOME */


.gallery {
    padding: 80px 0 140px;
    max-width: initial!important;
}
.gallery__btn {
    text-align: right;
}
.gallery__images {
    margin-top: 35px;
}
.gallery__image {
    width: 289px!important;
    height: 224px;
    position: relative;
}
.gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery__image-bg {
    position: absolute;
    background-color: var(--accent-color);
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
}
.gallery__image-bg::before {
    content:'';
    background: url('../img/gall.svg') no-repeat center/contain;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}
.gallery__image a:hover .gallery__image-bg {
    opacity: .8;
}
.bannerTwo {
    padding: 47px 0;
    color: #fff;
    position: relative;
}
.bannerTwo .titleSection {
    color: #fff;
}
.bannerTwo .ctaHome__cont-btns {
    justify-content: end;
}
.bannerTwo .container {
    position: relative;
    z-index: 1;
}
.bannerTwo .ctaHome__cont-txt {
    margin-bottom: 20px;
    display: none;
}
.storyServices {
    padding: 150px 0;
}
.bannerTwo__bg {
    background-color: var(--accent-color);
    opacity: .9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.googleReviewsServ {
    padding-top: 170px;
}
.gallery__mobBtn {
    display: none;
}
@media(max-width: 991px) {
    .gallery__image {
        height: 155px;
    }
    .bannerTwo .row {
        flex-wrap: wrap;
        text-align: center;
    }
    .bannerTwo .ctaHome__cont-btns {
        justify-content: center;
        margin-top: 20px;
    }
    .contentService__right {
        display: none;
    }
    .contentService__left {
        padding: 0;
    }
    .contentService__blocks {
        gap: 20px;
    }
    .contentService__block {
        padding: 30px 20px;
        width: calc(100% / 3 - 14px);
    }
    .bannerTwo .ctaHome__cont-txt {
        display: block;
    }
}
@media(max-width: 769px) {
    .gallery__image {
        width: 187px;
    }
    .contentService__block {
        width: calc(100% / 2 - 10px);
    }
    .heroPage {
        padding: 50px 0;
        margin-bottom: 30px;
    }
    .contentService__txt p, .contentService__txt ul {
        font-size: 12px;
        line-height: 22px;
    }
    .contentService__blocks {
        margin: 30px 0;
    }
    .gallery__btn {
        display: none;
    }
    .gallery .col50 {
        width: 100%;
    }
    .gallery .row {
        flex-wrap: wrap;
    }
    .gallery__images {
        margin-top: 22px;
    }
    .gallery__mobBtn {
        display: block;
        margin: 30px 20px 0;
        text-align: center;
    }
    .gallery {
        padding: 50px 0;
    }
    .contentService__banner {
        margin-left: 50px;
        margin-bottom: 30px;
    }
}
@media(max-width: 575px) {
    .contentService__banner {
        display: none;
    }
    .contContact__right .contentService__banner {
        display: block;
    }
    .contentService__block {
        padding: 20px 10px;
        width: calc(100% / 2 - 5px);
    }
    .contentService__block:last-child {
        width: 100%;
    }
    .storyServices {
        padding: 80px 0;
    }
    .googleReviewsServ {
        padding-top: 60px;
    }
    .contentService__blocks {
        gap: 10px;
    }
}

.teamHome {
    padding: 120px 0;
}
.teamHome__blocks {
    margin-top: 34px;
    gap: 21px;
    flex-wrap: nowrap;
    width: max-content;
    padding-bottom: 50px;
}
.teamHome__block-cont {
    background-color: #F7F3F1;
    padding: 22px;
}
.teamHome__block-title {
    font-weight: 700;
    font-size: 18px;
}
.teamHome__block {
    width: 284px;
}
.teamHome__block-img img {
    width: 100%;
    height: 291px;
    object-fit: cover;
}
.teamHome__blocks-wr {
    overflow: auto;
}
.teamHome .compHome__txt {
    width: 100%;
}

@media(max-width: 575px) {
    .teamHome {
        padding: 70px 0;
    }
    .teamHome__blocks {
        padding-bottom: 30px;
    }
}

.reviewsHome {
    margin-bottom: 80px;
}
.reviewsHome__cod {
    margin-top: 25px;
}

/*FOOTER*/
.footer {
    background-color: var(--bg-btn);
    padding: 50px 0;
    color: #fff;
}
.footer__wr {
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__copy {
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
}
.footer__right {
    gap: 10px;
    font-weight: 500;
}
.footer__right .btn {
    padding: 17px 27px;
}
.footer__phone a {
    color: #fff;
}

@media(max-width: 575px) {
    .footer__wr {
        justify-content: center;
    }
    .footer__right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* FORM PAGE */
.heroForm {
    padding: 0;
}
.heroForm__fromwr {
    width: 480px;
    min-height: 485px;
    padding: 30px;
    background-color: var(--accent-color);
    color: #fff;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
}
.heroForm__cont {
    padding-right: 90px;
    width: 60%;
}
.heroForm__cont .hero__subtitle {
    font-size: 26px;
    line-height: 38px;
}
.heroForm__cont .hero__title {
    font-size: 46px;
}
.heroForm__txt {
    line-height: 24px;
}
.heroForm__txt ul {
    list-style-type: none;
    padding: 0;
}
.heroForm__txt ul li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 7px;
}
.heroForm__txt ul li::before {
    content:'';
    background: url('../img/check.svg') no-repeat center/contain;
    width: 16px;
    height: 11px;
    position: absolute;
    top: 6px;
    left: 0;
}
.heroForm__from-top-subtitle {
    font-family: 'Timesquare', sans-serif;
    font-size: 16px;
}
.heroForm__from-top-title {
    font-family: 'Timesquare', sans-serif;
    font-weight: bold;
    font-size: 21px;
}
.form-control {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.form-control input {
    margin-bottom: 0;
}
.heroForm__from-r {
    gap: 17px;
}
.heroForm__from-radio {
    justify-content: space-between;
    margin-bottom: 10px;
}
.heroForm__from-next, .heroForm__from-btns a, .heroForm__from-btns .btn {
    width: 100%;
    background-color: #5e8239;
    border: 2px solid #5e8239;
    display: block;
    margin-top: 25px;
}
.heroForm__from-btns .btn {

}
.heroForm__from-next:hover, .heroForm__from-btns .btn:hover, .heroForm__from-btns .btn-white:hover {
    background: none;
    border: 2px solid #fff;
    color: #fff;
}
.form-input span {
    font-weight: 500;
}
.form-input span b {
    color: red;
    font-weight: normal;
}
.form-input .d-flex, .form-group {
    gap: 10px;
}
.heroForm__from-btns .btn-white {
    width: 100%;
    margin-top: 10px;
}
.heroForm__from-link a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #fff;
    text-decoration: underline;
}
.heroForm__from-step:not(.active) {
    display: none;
}
input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 19px;
    height: 19px;
    padding: 3px;
    border: 0.15em solid currentColor;
    border-radius: 50%;
}
input[type="radio"]::before {
    content: "";
    display: block;
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: var(--accent-color);
}
input[type="radio"]:checked::before {
    transform: scale(1);
}
.faqForm .contentService__txt h2 {
    font-size: 24px;
    margin-bottom: 24px;
}
.reviews {
    padding: 80px 0;
}
.reviews__blocks {
    gap: 20px;
    margin-top: 30px;
}
.reviews__block {
    background-color: var(--bg);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}
.reviews .titleSection {
    text-align: center;
}
.reviews__block-date {
    font-size: 12px;
    color: #797979;
}
.reviews__block-stars {
    justify-content: center;
    margin-bottom: 10px;
}
.reviews__block-stars img {
    width: 20px;
}
.reviews__block-stars img.gray {
    filter: grayscale(1);
}
.reviews__block-txt {
    margin-bottom: 5px;
    height: 50px;
    overflow: hidden;
}
.reviews__block-txt.more {
    height: auto;
}
.reviews__block-more {
    color: var(--accent-color);
    border-bottom: 1px dashed;
    display: inline-block;
    margin-bottom: 15px;
    cursor: pointer;
}
.reviews__block-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.reviews__block-name {
    font-family: 'Timesquare', sans-serif;
    font-weight: bold;
    font-size: 15px;
}
@media(max-width: 991px) {
    .heroForm__wr {
        flex-direction: column;
        gap: 30px;
    }
    .heroForm {
        padding: 50px 0;
    }
    .heroForm__cont {
        padding-right: 0;
        width: 100%;
    }
    .heroForm__fromwr {
        width: 100%;
    }
    .form-input {
        width: 100%;
    }
}
@media(max-width: 769px) {
    .reviews__block {
        width: 290px;
    }
    .reviews {
        padding: 50px 0;
    }
    .heroForm__cont .hero__title {
        font-size: 26px;
    }
    .heroForm__cont .hero__subtitle {
        font-size: 18px;
        line-height: 20px;
    }
    .heroForm__fromwr {
        padding: 30px 15px;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    .heroForm {
        padding: 50px 0 0;
    }
    .faqForm .contentService__txt h2 {
        font-size: 21px;
    }
}
/* END FORM PAGE */

.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 12px;
    width: max-content;
}
.wpcf7-not-valid {
    background-color: #ffe3e3;
}
.heroForm__from .wpcf7 form.sent .wpcf7-response-output {
    border-color: #fff;
    background-color: #5e8239;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}
.wpcf7-radio label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.heroForm label .wpcf7-not-valid-tip {
    top: -3px;
    left: 5px;
    color: #ffe2e2;
}
.heroForm__from .fusion-alert .alert-icon, .heroForm__from .fusion-alert .fusion-alert-content {
    color: #ffffff;
}

.heroForm__from .wpcf7 .wpcf7-form.sent .wpcf7-response-output {
    color: #fff;
}
.heroForm__from .fusion-alert.awb-alert-close-boxed .close {
    border: none;
}

.logosHome {
    padding: 70px 0;
}
.logosHome__blocks {
    justify-content: space-between;
    gap: 35px;
}
.logosHome__blocks img {
    max-height: 125px;
    max-width: 216px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width: 991px) {
    .logosHome__blocks {
        flex-wrap: wrap;
    }
}
@media(max-width: 575px) {
    .logosHome__blocks {
        justify-content: center;
    }
}