/* =Ace Digital Theme Overrides
-------------------------------------------------------------- */

:root {
    --top-bar-height: 50px;
    --header-height: 100px;

    --color-orange: #F36912;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: #292929;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

h1 {
    font-size: 80px;
}

h2.h2-large {
    font-size: 58px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 35px;
}

h5 {
    font-size: 30px;
}

h6 {
    font-size: 25px;
}

p:last-child {
    margin-bottom: 0;
}

.font-roboto {
    font-family: "Roboto", sans-serif;
}

.font-body-large {
    font-size: 20px;
}

.font-weight-regular {
    font-weight: 400;
}

.font-weight-medium {
    font-weight: 500;
}

.font-weight-semi-bold {
    font-weight: 600;
}

.font-weight-extra-bold {
    font-weight: 800;
}

.container {
    padding-left: 40px;
    padding-right: 40px;
}

.c-1700 {
    max-width: 1700px;
}

.c-1500 {
    max-width: 1500px;
}

.c-1200 {
    max-width: 1200px;
}

.c-1000 {
    max-width: 1000px;
}

.background-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-orange {
    background-color: var(--color-orange);
}

.button {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 15px;
    border-width: 2px;
    border-style: solid;
    padding: 16px 35px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.button svg {
    margin-right: 15px;
}

.button-orange {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}

.button-orange-outline {
    background-color: transparent;
    border-color: var(--color-orange);
    color: var(--color-orange)
}

.button-white-text-orange {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-orange);
}

.button-white-text-orange:hover {
    background-color: transparent;
    color: #fff;
}

.button-orange:hover {
    background-color: transparent;
    color: var(--color-orange);
}

.button-orange-outline:hover {
    background-color: var(--color-orange);
    color: #fff;
}

.button-hover-white-outline:hover {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.badge {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
}

.badge-program,
.badge-media {
    background-color: #F36912;
}

.badge-event,
.badge-news,
.badge-current {
    background-color: #2086C6;
}

.badge-post {
    display: none;
}

.grid-box {
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease-in-out;
}

.grid-box:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.grid-box .box-image {
    background-color: #005C8C;
    height: 220px;
}

.grid-box .box-image img {
    object-fit: cover;
}

.grid-box .label {
    color: #fff;
    font-size: 13px;
    padding: 8px 18px;
    left: 35px;
    bottom: -15px;
    border-radius: 5px;
}

.grid-box .label-program,
.grid-box .label-media {
    background-color: var(--color-orange)
}

.grid-box .label-event,
.grid-box .label-news {
    background-color: #2086C6
}

.grid-box h6 {
    margin: 0 0 20px;
}

.grid-box .box-info {
    font-size: 15px;
    padding: 30px 35px;
}

.grid-box .description {
    margin: 20px 0 0;
}

#banner {
    background-color: #0070AA;
    height: 500px;
    padding: 0 0 140px;
}

#banner.banner-small {
    height: 230px;
    padding: 0;
}

#banner.has-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(18, 79, 118, .8);
}

#banner_column .section-column {
    background-color: #0070AA;
    height: calc(100vh - var(--header-height));
    padding: 50px 30px;
}

#banner_column .column-text > div {
    max-width: 650px;
    width: 100%;
    padding: 0 20px;
    margin: auto;
}

#banner_column .column-text img {
    width: 85px;
}

#banner_column .column-text > div h2,
#banner_column .column-text > div .description {
    margin: 30px 0 0;
}

#top_bar {
    font-size: 12px;
    background-color: #124F76;
    height: var(--top-bar-height);
}

#top_bar ul {
    margin: 0;
    padding: 0;
}

#top_bar ul li {
    display: inline-block;
}

#top_bar .menu li a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
    height: var(--top-bar-height);
    padding: 10px;
}

#top_bar .menu li.current-menu-item a,
#top_bar .menu li a:hover {
    background-color: #F36912;
}

#top_bar .social {
    margin: 0 0 0 20px;
}

#top_bar .social li {
    margin: 0 5px;
}

#top_bar .social li a {
    font-size: 20px;
}

#header_main {
    height: var(--header-height);
}

header .header-right .button {
    margin: 0 0 0 55px;
}

#home_hero {
    height: calc(100vh - var(--header-height) - var(--top-bar-height));
}

#home_hero .slider-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #1E5274, transparent);
}

#home_hero .slider-item > div {
    padding-bottom: 160px;
}

#home_hero .slider-content {
    max-width: 625px;
    width: 100%;
}

#home_hero .slider-content:hover svg {
    left: 5px;
}

#home_hero .button-container {
    margin: 10px 0 0;
}

#home_hero .button-container svg {
    font-size: 40px;
    left: 0;
    transition: all 0.3s ease-in-out;
}

#home_hero .slider-pagination {
    left: 50%;
    bottom: 200px;
    transform: translateX(-50%);
}

#home_hero .slider-pagination ul {
    margin: 0;
    padding: 0;
}

#home_hero .slider-pagination ul li {
    display: inline-block;
    margin: 0 2px;
}

#home_hero .slider-pagination ul li span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    opacity: 0.7;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#home_hero .slider-pagination ul li span.active {
    opacity: 1;
}

#home_search {
    top: -160px;
}

#home_search .main-container {
    background-color: #f1f1f1;
    box-shadow: 0 30px 40px rgb(0 0 0 / 16%);
}

#home_search .main-programs {
    padding: 5px;
}

#home_search .main-program-item {
    width: calc( 33.33% - 5px );
    height: 150px;
    padding: 20px 50px;
    background-color: #2086C6;
    transition: all 0.3s ease-in-out;
}

#home_search .main-program-item img {
    width: 60px;
    margin-right: 20px;
    object-fit: cover;
}

#home_search .main-program-item:hover {
    background-color: #124F76;
}

#home_search .programs {
    padding: 70px 80px 50px;
}

#home_search .programs-mobile {
    display: none;
    padding: 30px;
}

#home_search .programs-mobile select {
    width: 100%;
    font-size: 18px;
    height: 60px;
    padding: 10px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 18px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

#home_search .program-item > a {
    background-color: transparent;
    box-shadow: 0 0 15px rgba(0, 0, 0, .16);
    border-radius: 20px;
    height: 95px;
    padding: 20px;
    margin: 0 0 20px;
    transition: all 0.3s ease-in-out;
}

#home_search .program-item > a:hover {
    background-color: #fff;
}

.search-box {
    background-color: #fff;
    padding: 55px 80px;
}

.search-box .field-input {
    width: calc(100% - 270px);
}

.search-box input {
    background-color: #F1F1F1;
    width: 100%;
    height: 90px;
    border: none;
    border-radius: 10px;
    padding: 20px 70px;
}

.search-box svg {
    position: absolute;
    font-size: 30px;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.search-box button {
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    width: 250px;
    height: 90px;
}

#home_intro {
    background-color: #005C8C;
    padding: 100px 0;
}

#home_intro .description {
    margin: 30px 0 0;
}

#home_intro .button-container {
    margin: 40px 0 0;
}

#home_events {
    padding: 0 0 150px;
}

#home_events h3 {
    color: #124F76;
}

#home_events .events-list {
    margin: 60px 0 0;
}

#home_pages {
    padding: 0 0 150px;
}

#home_pages .page-item {
    background-color: rgb(0 92 140 / 50%);
    height: calc(100vh - var(--header-height));
    transition: all 0.3s ease-in-out;
}
/*
#home_pages .page-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0 92 140 / 50%);
}
*/
#home_pages .page-item:hover {
    background-color: #124F76;
}

#home_pages .page-item .page-image {
    background-color: rgb(0 92 140);
}

#home_pages .page-item .page-image img {
    object-fit: cover;
    filter: sepia(0) saturate(2);
    mix-blend-mode: multiply;
}

#home_pages .page-item > div > div {
    max-width: 450px;
    width: 100%;
    padding: 140px 30px;
}

#home_pages .page-item .description {
    margin: 15px 0 0;
}

#home_pages .page-item .button-container {
    font-size: 40px;
    margin: 25px 0 0;
}

#home_pages .page-item .button-container svg {
    left: 0;
    transition: all 0.3s ease-in-out;
}

#home_pages .page-item:hover .button-container svg {
    left: 5px;
}

#home_news {
    padding: 0 0 150px;
}

#home_news h5 {
    color: #2086C6;
}

#home_news .news-list {
    margin-top: 60px;
}

#home_news .news-item {
    margin: 0 0 30px;
}

#home_programs {
    padding: 150px 0 220px;
}

#home_programs h3 {
    color: #124F76;
}

#home_programs h6 {
    margin: 25px 0 0;
}

#home_programs .description,
#home_programs .button-container {
    margin: 40px 0 0;
}

#home_volunteer {
    background-color: #124F76;
    padding: 140px 0 100px;
}

#home_volunteer .volunteer-content {
    max-width: 480px;
    width: 100%;
    margin: auto;
}

#home_volunteer .volunteer-image {
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
}

#home_volunteer .volunteer-name {
    font-size: 15px;
    margin: 25px 0 0;
}

#home_volunteer .description {
    font-size: 14px;
    margin: 10px 0 0;
}

#mailing {
    background-color: #F1F1F1;
    padding: 120px 0;
}

#mailing h5 {
    color: #2086C6;
}

#mailing form {
    margin: 25px 0 0;
}

#mailing form input {
    color: #124F76;
    font-size: 16px;
    width: 445px;
    max-width: 100%;
    height: 45px;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 0 5px 0 0;
}

#mailing form input::placeholder {
    color: #124F76;
}

#mailing form button {
    padding: 10px 55px;
}

#about_cards {
    background-color: #2086C6;
    padding: 140px 0;
}

#about_cards .card-item {
    background-color: #fff;
    width: 33.33%;
    min-height: 580px;
    padding: 70px 65px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease-in-out;
}

#about_cards .card-item:nth-child(2) {
    height: 700px;
}

#about_cards .card-item:last-child {
    background-color: #124F76;
}

#about_cards .card-item img {
    width: 100px;
}

#about_cards .card-item h6 {
    color: #2086C6;
    margin: 35px 0 0;
}

#about_cards .card-item .description {
    margin: 40px 0 0;
}

#about_cards .card-item .button-container {
    margin: 35px 0 0;
}

#about_cards .card-item:last-child h6,
#about_cards .card-item:last-child .description {
    color: #fff;
}

#about_vision,
#about_mission {
    padding: 150px 0;
}

#about_vision h3 {
    color: #124F76;
}

#about_vision h6,
#about_vision .description {
    margin: 40px 0 0;
}

#about_mission {
    background-color: #124F76;
}

#about_mission h6,
#about_mission .description {
    margin: 40px 0 0;
}

#faqs {
    background-color: rgba(243, 105, 18, 0.15);
    padding: 150px 0;
}

#faqs .faq-list {
    margin: 70px 0 0;
}

#faqs .faq-item:not(:last-child) {
    margin: 0 0 25px;
}

#faqs .faq-item .question {
    background-color: #fff;
    width: calc( 100% - 100px );
    padding: 33px 40px;
}

#faqs .faq-item .icon {
    background-color: #F36912;
    width: 100px;
    height: 100px;
}

#faqs .faq-item .icon svg {
    font-size: 30px;
}

#faqs .faq-item .answer {
    padding: 35px 40px;
}

#volunteer_roles {
    background-color: #f1f1f1;
    padding: 200px 0;
}

#volunteer_roles h5 {
    color: #007CBE;
}

#volunteer_roles .role-list {
    margin: 45px 0 0;
}

#volunteer_roles .role-item {
    width: calc(33.33% - 30px);
    margin: 0 15px 30px;
}

#volunteer_roles .description {
    max-width: 800px;
    width: 100%;
    margin: 40px auto 0;
}

#volunteer_roles .button-container {
    margin: 45px 0 0;
}

#volunteer_roles .button-container a {
    margin: 0 0 10px;
}

#volunteer_text {
    padding: 140px 0;
}

#volunteer_text.volunteer-text-2 {
    background-color: #007CBE;
}

#volunteer_text.volunteer-text-3 {
    background-color: #F1F1F1;
}

#volunteer_text h3 {
    color: #124F76;
}

#volunteer_text h6,
#volunteer_text .description {
    margin: 40px 0 0;
}

#testimonials {
    padding: 235px 30px 65px;
}

#testimonials .testimonial-image {
    width: 312px;
    height: 312px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 65px;
}

#testimonials .testimonial-image ~ .testimonial-text {
    width: calc(100% - 312px - 65px);
}

#testimonials .testimonial-image img {
    object-fit: cover;
}

#testimonials .testimonial-text {
    width: 100%;
}

#testimonials .testimonial-text .message {
    font-size: 15px;
}

#testimonials .testimonial-text .name {
    color: #007CBE;
    margin: 30px 0 0;
}

#testimonials .testimonial-pagination {
    max-width: 465px;
    width: 100%;
    margin: 210px auto 0;
}

#testimonials .testimonial-pagination a {
    background-color: #007CBE;
    width: calc( calc( 100% / 5 ) - 5px );
    height: 15px;
    opacity: 0.2;
    transition: all 0.3s ease-in-out;
}

#testimonials .testimonial-pagination a.current {
    opacity: 1;
}

#documents {
    background-color: #FEE8DB;
    padding: 180px 0;
}

#documents .document-list {
    margin: 70px 0 0;
}

#documents .document-item {
    background-color: #fff;
}

#documents .document-item:not(:last-child) {
    margin: 0 0 20px;
}

#documents .document-item .heading {
    width: calc(100% - 100px);
    padding: 30px 40px;
}

#documents .document-item .heading span {
    display: inline-block;
    font-size: 20px;
    margin-left: 5px;
}

#documents .document-item .icon {
    width: 100px;
    height: 100px;
    background-color: #F36912;
    transition: all 0.3s ease-in-out;
}

#documents .document-item:hover .icon {
    background-color: rgba(243, 105, 18, .6);
}

#post_box .main-box {
    position: relative;
    top: -140px;
    background-color: #F1F1F1;
    padding: 60px 30px;
}

#post_box .main-box > div {
    max-width: 500px;
    width: 100%;
    margin: auto;
}

#post_box .post-schedule {
    margin: 30px 0 0;
}

#post_box .post-schedule p {
    margin: 0;
}

#post_box .location {
    margin: 40px 0 0;
}

#post_body {
    padding: 0 0 160px;
}

#post_body .post-body-content *:not(:last-child) {
    margin: 0 0 40px
}

#post_body .button-container {
    margin: 60px 0 0;
}

#related {
    background-color: #F1F1F1;
    padding: 200px 0;
}

#related h5 {
    color: #2086C6;
}

#related .related-list {
    margin: 45px 0 0;
}

#related .list-item {
    margin: 0 0 30px;
}

#location_list {
    background-color: #f1f1f1;
}

#location_view {
    top: -135px;
}

#location_view .view-buttons a {
    color: #fff;
    background-color: #2086C6;
    width: 50%;
    height: 140px;
    border: 5px solid #F1F1F1;
}

#location_view .view-buttons a.active {
    background-color: #f1f1f1;
    color: #292929;
}

#house_grid {
    padding: 0 0 130px;
}

#house_grid .location-item a {
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    padding: 20px;
    margin: 0 0 30px;
}

#house_grid .location-item a:hover {
    color: #fff;
    background-color: #124F76;
}

#featured_post {
    padding: 120px 0 150px;
}

#featured_post h5 {
    color: #2086C6;
}

#featured_post .featured-list {
    margin: 35px 0 0;
}

#featured_post .featured-item {
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

#featured_post .featured-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .20);
}

#featured_post .featured-item:not(:last-child) {
    margin: 0 0 40px;
}

#featured_post .featured-item-mobile {
    display: none;
}

#featured_post .featured-item-large {
    height: 450px;
    padding: 60px;
}

#featured_post .featured-item-large::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

#featured_post .featured-item-small .featured-image {
    width: 380px;
    max-width: 100%;
    height: 287px;
}

#featured_post .featured-item-small .featured-image img {
    object-fit: cover;
}

#featured_post .featured-item-small .info-box {
    width: 420px;
    max-width: 100%;
    min-height: 287px;
    padding: 35px 40px;
}

#featured_post .featured-item-small .info-box .meta,
#featured_post .featured-item-small .info-box .excerpt {
    font-size: 15px;
    margin: 20px 0 0;
}

#post_list {
    background-color: #f1f1f1;
    padding: 170px 0;
}

#post_list .post-item {
    margin: 0 0 30px;
}

#single_post {
    top: -140px;
}

#single_post .single-post-box {
    background-color: #fff;
    padding: 90px 0;
}

#single_post .single-post-box > div > *:not(:last-child) {
    margin: 0 0 40px;
}

#single_house {
    margin: 0 0 130px;
}

#single_house .house-image {
    width: 100%;
    height: 600px;
    top: -140px;
}

#single_house .house-image img {
    object-fit: cover;
}

#single_house .description {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

#single_house .description > *:not(:last-child) {
    margin: 0 0 45px
}

#single_house .meta {
    font-size: 15px;
    max-width: 1000px;
    width: 100%;
    margin: 100px auto 0;
}

#single_house .meta .contact-item {
    width: 320px;
    max-width: 100%;
}

#single_house .meta .contact-item:not(:last-child) {
    margin: 0 0 15px;
}

#single_house .meta .contact-item .icon {
    color: #2086C6;
}

#single_house .meta .contact-item .details {
    max-width: 275px;
    width: 100%;
}

#single_house .links .link-item:not(:last-child) {
    margin: 0 0 10px;
}

#single_house .links a {
    text-decoration: underline;
}

#single_house .icon {
    color: #2086C6;
    width: 20px;
    margin-right: 30px;
}

#single_house .logo {
    max-width: 300px;
    width: 100%;
}

#single_house_pagination {
    background-color: #f1f1f1;
    padding: 120px 0;
}

#single_house_pagination .pagination-item a {
    height: 300px;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

#single_house_pagination .pagination-item a:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
}

#single_house_pagination .pagination-item svg {
    font-size: 25px;
    color: #2086C6;
}

#single_house_pagination .pagination-prev .icon {
    margin-right: 40px;
}

#single_house_pagination .pagination-next .icon {
    margin-left: 40px;
}

#page_featured_image {
    top: -140px;
}

#page_featured_image .image-wrapper img {
    object-fit: cover;
}

#page_content {
    top: -70px;
    color: #292929;
    padding: 0 0 70px;
}

#page_content .content-item:not(:last-child) {
    margin: 0 0 100px
}

#page_content .content-item .image {
    margin: 75px 0 0;
}

#page_content .content-item .desc-2 {
    margin: 75px 0 0;
}

#page_content .content-item .desc-2 strong,
#page_content .content-item .desc-2 b {
    font-weight: 600;
}

#page_content .content-item .sponsor {
    margin: 40px 0 0;
}

#page_content .content-item h6 {
    font-weight: bold;
    margin: 0 0 40px;
}

#page_content .content-item p {
    font-weight: 500;
}

#page_content .content-item p:not(:last-child) {
    margin: 0 0 40px;
}

#page_content .content-item .link-container {
    margin: 40px 0 0;
}

#page_content .content-item a {
    color: #F36912;
    font-weight: 600;
    word-break: break-all;
    transition: all 0.5s ease-in-out;
}

#page_content .content-item a:hover {
    opacity: 0.7;
}

#resources {
    background-color: #f1f1f1;
    padding: 150px 0;
}

#resources .resource-item:not(:last-child) {
    margin: 0 0 130px;
}

#resources .resource-item h5 {
    color: #0070AA;
}

#resources .files {
    margin: 40px 0 0;
}

#resources .file-item:not(:last-child) {
    margin: 0 0 20px;
}

#resources .file-item .name {
    background-color: #fff;
    width: calc(100% - 100px);
    height: 100px;
    padding: 30px 40px;
}

#resources .file-item h6 span {
    font-size: 20px;
}

#resources .file-item .name span {
    margin-left: 10px;
}

#resources .file-item .icon {
    background-color: #F36912;
    width: 100px;
    height: 100px;
    transition: all 0.3s ease-in-out;
}

#resources .file-item:hover .icon {
    background-color: rgba(243, 105, 18, .6);
}

#page_career {
    padding: 150px 0;
}

#page_career h5 {
    color: #007CBE;
}

#page_career .role-list {
    margin: 45px 0 0;
}

#page_career .role-item {
    margin: 0 0 40px;
}

#contact_form .form-container {
    background-color: #fff;
    top: -140px;
    padding: 85px 100px 0;
}

#contact_form .description {
    margin: 0 0 70px;
}

#contact_form input,
#contact_form select,
#contact_form textarea {
    color: #292929;
    font-size: 18px;
    font-weight: 500;
    background-color: #F0F0F0;
    padding: 20px 30px;
    border: none;
    border-radius: 0;
}

#contact_form input,
#contact_form select {
    height: 60px;
}

#contact_form input::placeholder,
#contact_form textarea::placeholder {
    color: #292929;
}

#contact_form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 17px;
}

#contact_form .gform_footer {
    text-align: right;
}

#contact_networks {
    background-color: #f1f1f1;
    padding: 140px 0;
}

#contact_networks .networks-list {
    column-count: 4;
    column-gap: 30px;
}

#contact_networks .network-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    width: 100%;
    padding: 35px 45px;
    margin: 0 0 30px;
    word-break: break-word;
}

#contact_networks .network-item .network-contact-details {
    margin: 35px 0 0;
}

#contact_networks .network-item .network-contact-details > div {
    font-size: 15px;
    font-weight: 500;
}

#contact_networks .network-item .icon {
    color: #2086C6;
    width: 20px;
    margin-right: 30px;
}

#contact_networks .network-item .details {
    max-width: 250px;
    width: 100%;
}

#house_map {
    padding: 0 0 140px;
}

#house_map h6 {
    font-family: "Montserrat", sans-serif;
    color: #2086C6;
}

#map {
    height: 800px;
}

#map .gm-style-iw-d > div {
    padding: 15px;
}

#cta {
    padding: 70px 0;
}

footer {
    font-size: 13px;
}

footer a {
    transition: all 0.3s ease-in-out;
}

footer a:hover {
    opacity: 0.7;
}

footer .footer-left {
    background-color: #007CBE;
    width: 70%;
    padding: 110px 7% 40px;
}

footer .footer-left .footer-menu {
    margin-right: 30px;
}

footer .footer-left ul {
    padding: 0;
    margin: 0;
}

footer .footer-left ul > li {
    display: inline-block;
}

footer .footer-left ul > li a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

footer .footer-left .menu {
    margin: 0;
    padding: 0;
}

footer .footer-left .menu li:not(:first-child) {
    margin-left: 40px;
}

footer .footer-left .social li:not(:first-child) {
    margin-left: 5px;
}

footer .footer-left .social li a {
    font-size: 16px;
}

footer .footer-left .main {
    margin: 85px 0 0;
}

footer .footer-left .main .logo {
    max-width: 450px;
    width: 100%;
}

footer .footer-left .main .logo a:hover {
    opacity: 1;
}

footer .footer-left .main .logo img {
    width: 135px;
}

footer .footer-left .main .logo a:not(:first-child) {
    margin: 0 0 0 45px;
}

footer .footer-left .main .logo a:not(:first-child) img {
    width: 260px;
}

footer .footer-left .main .about {
    width: calc(100% - 500px);
}

footer .footer-left .flags img {
    width: 50px;
    margin: 0 5px 0 0;
}

footer .footer-right {
    background-color: #005C8C;
    width: 30%;
    padding: 130px 7%;
}

footer .footer-right > div {
    max-width: 320px;
    width: 100%;
}

footer .footer-right img {
    width: 250px;
}

footer .footer-right .description {
    margin: 40px 0 0;
}

footer .copyright {
    margin: 70px 0 0;
}

footer .copyright span:not(:first-child) {
    margin-left: 50px;
}

@media (max-width: 1800px) {
    footer .footer-left {
        padding: 110px 5% 40px;
    }
}

@media (max-width: 1700px) {
    h1 {
        font-size: 70px;
    }
}

@media (max-width: 1500px) {
    nav ul li a {
        padding: 0 20px;
    }

    nav ul li a::before {
        width: calc(100% - 40px);
    }

    header .header-right .button {
        margin: 0 0 0 20px;
    }
}

@media (max-width: 1400px) {
    h1 {
        font-size: 60px;
    }

    header .header-right .button {
        padding: 16px 25px;
        margin: 0 0 0 10px;
    }

    nav ul li a {
        font-size: 14px;
    }

    footer .footer-left .menu li:not(:first-child) {
        margin: 0 0 0 20px;
    }

    footer .footer-left .main .logo {
        max-width: 100%;
    }

    footer .footer-left .main .about {
        width: 100%;
        margin: 30px 0 0;
    }
}

@media (max-width: 1350px) {
    header .header-right .button {
        display: none;
    }
}

@media (max-width: 1300px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 45px;
    }

    h3 {
        font-size: 35px;
    }

    h4 {
        font-size: 30px;
    }

    h5 {
        font-size: 28px;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 26px;
    }

    h6 {
        font-size: 22px;
    }

    nav ul li a {
        padding: 0 15px;
    }

    nav ul li a::before {
        width: calc(100% - 30px);
    }

    #about_cards .card-item {
        max-width: 620px;
        width: 100%;
        min-height: auto;
        margin: auto;
    }

    #about_cards .card-item:nth-child(2) {
        min-height: auto;
        height: auto;
    }

    #featured_post {
        padding: 100px 0 0;
    }

    #post_list {
        padding: 70px 0;
    }

    #featured_post .featured-item {
        margin: 0 0 40px;
    }

    #contact_networks .networks-list {
        column-count: 3;
    }

    footer .footer-column {
        width: 100%;
    }

    footer .footer-left {
        order: 2;
    }
}

@media (max-width: 1199px) {
    #home_events .event-item {
        padding: 0;
    }
}

@media (max-width: 1100px) {
    #home_search .main-programs {
        flex-wrap: wrap;
    }

    #home_search .main-program-item {
        width: 100%;
    }

    #home_search .main-program-item:not(:last-child) {
        margin: 0 0 5px;
    }

    #home_search .programs {
        padding: 50px 40px;
    }
}

@media (max-width: 991px) {
    .button {
        font-size: 14px;
    }

    #banner {
        height: 400px;
    }

    #banner_column .section-column {
        height: calc(50vh - var(--header-height));
    }

    #banner_column .column-text {
        height: auto;
    }

    .search-box .field-input {
        width: calc(100% - 220px);
    }

    .search-box button {
        font-size: 25px;
        width: 200px;
    }

    #home_pages {
        padding: 0;
    }

    #featured_post .featured-item-small .info-box {
        min-height: auto;
        padding: 20px 30px;
    }

    #home_news,
    #related {
        padding: 100px 0;
    }

    #single_house .meta {
        flex-wrap: wrap;
    }

    #volunteer_roles {
        padding: 100px 0;
    }

    #testimonials {
        padding: 100px 30px 65px;
    }

    #testimonials .testimonial-pagination {
        margin: 100px auto 0;
    }

    #volunteer_roles .role-item {
        width: calc(50% - 30px);
    }

    #documents {
        padding: 100px 0;
    }

    #resources .file-item .name {
        padding: 15px 20px;
    }

    #resources .file-item h6 span {
        font-size: 15px;
    }

    #contact_networks .networks-list {
        column-count: 2 ;
    }
}

@media (max-width: 900px) {
    #top_bar .top-bar-left {
        display: none;
    }
}

@media (max-width: 800px) {
    #single_house .meta > div {
        width: 100%;
    }

    #single_house .meta > div:not(:first-child) {
        margin: 20px 0 0;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 24px;
    }

    h6 {
        font-size: 20px;
    }

    .grid-box .label {
        left: 20px;
    }

    .grid-box .box-info {
        padding: 30px 20px;
    }

    #home_search {
        height: 540px;
    }

    #home_search .main-program-item {
        height: 100px;
    }

    #home_search .programs {
        display: none;
    }

    #home_search .programs-mobile {
        display: block;
    }

    .search-box {
        padding: 30px;
    }

    .search-box > div {
        flex-wrap: wrap;
    }

    .search-box .form-field {
        width: 100%;
    }

    #home_search .search-box .field-input {
        margin: 0 0 10px;
    }

    .search-box input {
        height: 60px;
        padding: 20px 50px;
    }

    .search-box svg {
        font-size: 20px;
        left: 20px;
    }

    .search-box button {
        font-size: 20px;
        width: 100%;
        height: auto;
        padding: 13px 20px;
    }

    #home_pages .page-item {
        height: 500px;
    }

    #featured_post .featured-item-desktop {
        display: none;
    }

    #featured_post .featured-item-mobile {
        display: flex;
    }

    #featured_post .featured-item-large {
        padding: 40px 30px  ;
    }

    #featured_post .featured-item-small {
        flex-wrap: wrap;
    }

    #featured_post .featured-item-small .featured-image {
        width: 100%;
    }

    #featured_post .featured-item-small .info-box {
        width: 100%;
        height: auto;
        padding: 40px 30px;
    }

    #about_courses_events .container,
    #related .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    #testimonials .testimonial-image {
        margin-right: 0;
    }

    #testimonials .testimonial-image ~ .testimonial-text {
        width: 100%;
        margin: 30px 0 0;
    }

    #documents {
        padding: 70px 0;
    }

    #documents .document-item .heading {
        width: calc(100% - 70px);
        height: 70px;
        padding: 20px 30px;
    }

    #documents .document-item .heading span {
        font-size: 15px;
    }

    #documents .document-item .icon,
    #faqs .faq-item .icon {
        width: 70px;
        height: 70px;
    }

    #faqs .faq-item .question {
        width: calc( 100% - 70px );
    }

    #faqs .faq-item .question,
    #faqs .faq-item .answer {
        padding: 20px 30px;
    }

    #faqs .faq-item .icon svg {
        font-size: 20px;
    }

    #location_view {
        top: -65px
    }

    #location_view .view-buttons a {
        height: 70px;
    }

    #house_grid,
    #house_map {
        padding: 0 0 70px;
    }

    #single_house {
        margin: 0 0 70px;
    }

    #single_house .description {
        position: relative;
        top: -80px;
    }

    #single_house .meta {
        margin: 0 auto;
    }

    #single_house .meta > div:last-child {
        margin: 40px 0 0;
    }

    #page_career .role-item-wrapper {
        padding: 0;
    }

    #contact_form .form-container {
        padding: 50px;
    }

    #contact_form input,
    #contact_form select,
    #contact_form textarea {
        font-size: 16px;
    }

    #contact_networks {
        padding: 70px 0;
    }

    #contact_networks .networks-list {
        column-count: 1;
    }

    footer .footer-left {
        text-align: center;
        padding: 110px 40px 40px;
    }

    footer .footer-left .nav {
        justify-content: center;
    }

    footer .footer-left .footer-menu,
    footer .footer-left .social {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    footer .footer-left .social {
        margin: 15px 0 0;
    }

    footer .copyright span:not(:first-child) {
        margin-left: 30px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 90px;
    }

    h2.h2-large {
        font-size: 38px;
    }

    #banner {
        height: 300px;
    }
	
	#home_hero {
		height: auto;
	}
	
	#home_hero .slider-content {
		padding: 70px 0;
	}

    #mailing form {
        flex-wrap: wrap;
    }

    #mailing form input {
        width: 100%;
        margin: 0 0 5px;
    }

    #mailing form button {
        width: 100%;
    }

    #volunteer_roles {
        padding: 70px 0;
    }

    #volunteer_roles .role-item {
        width: 100%;
        margin: 0 0 30px;
    }

    #documents .document-item .heading h6 {
        font-size: 16px;
    }

    #documents .document-item .heading span {
        font-size: 12px;
    }

    #house_grid .location-item a {
        height: 150px;
    }

    #map {
        height: 600px;
    }

    #page_featured_image .image-wrapper {
        height: 300px;
    }

    #page_career,
    #resources {
        padding: 50px 0;
    }

    footer .footer-left .menu li {
        display: block;
    }

    footer .footer-left .menu li:not(:first-child) {
        margin: 15px 0 0;
    }

    footer .footer-left .main .logo a {
        display: block;
        margin: 0 auto 25px;
    }

    footer .footer-left .main .logo a:last-child {
        margin: 0 auto 40px;
    }

    footer .copyright span {
        display: block;
        text-align: center;
        margin-left: 0 !important;
    }

    footer .copyright span:not(:last-child) {
        margin: 0 0 15px;
    }
}

@media (max-width: 600px) {
    #top_bar .social {
        display: none;
    }
}

@media (max-width: 575px) {
    #single_house_pagination .pagination-item a {
        height: 150px;
    }
}

@media (max-width: 520px) {
    :root {
        --top-bar-height: 0px;
    }

    #top_bar {
        display: none !important;
    }
}

@media (max-width: 500px) {
    #testimonials .testimonial-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }

    h6 {
        font-size: 18px;
    }

    .button {
        font-size: 13px;
    }

    .grid-box .box-info {
        font-size: 14px;
    }

    logo img {
        max-width: 120px;
    }

    #home_search .main-program-item {
        padding: 20px 30px;
    }

    #about_cards .card-item {
        padding: 50px 30px;
    }

    #documents .document-item .heading {
        padding: 10px 20px;
    }

    #documents .document-item .heading span {
        display: none;
    }

    #featured_post .featured-item-large {
        height: 250px;
    }

    #featured_post .featured-item-small .info-box {
        min-height: auto;
    }

    #location_view .container {
        padding-left: 0;
        padding-right: 0;
    }

    #house_map,
    #house_map .container {
        padding: 0;
    }

    #map {
        height: 500px;
    }

    #single_house .house-image {
        height: 400px;
    }

    #contact_form .container {
        padding-left: 0;
        padding-right: 0;
    }

    #contact_form .form-container {
        padding: 50px 40px;
    }

    #contact_form input,
    #contact_form select,
    #contact_form textarea {
        font-size: 14px;
    }

    footer .footer-right .image img {
        width: 180px;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 21px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 17px;
    }

    .button {
        padding: 16px 20px;
    }

    logo img {
        max-width: 100px;
    }

    #home_search .main-program-item img {
        width: 40px;
    }

    #map {
        height: 400px;
    }

    #contact_networks .network-item {
        padding: 30px;
    }

    #contact_networks .network-item .icon {
        margin-right: 10px;
    }
}

@media (max-width: 374px) {
    #home_search {
        height: 440px;
    }

    #home_search .main-program-item {
        height: 60px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h5 {
        font-size: 17px;
    }
}