:root {
    --primary-color: #fff;
    --secondary-color: #282829;
    --background-color: #000;
    --grey-color: #f5f5f5;
    --dark-grey-color: #D9D9D9;
    --border-color: #69696A;
    --red-color: #F27E79;
    --red-bright-color: #F26862;
    --blue-color: #C1E7EF;
    --blue-dark-color: rgba(64, 196, 224, 0.47);
    --green-color: #7AC7B8;
    --green-light-color: #A4DBDE;
    --yellow-color: #FCB645;
}

@font-face {
    font-family: 'proxima_novaregular';
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
        url('../fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novabold';
    src: url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
        url('../fonts/proximanova-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novasemibold';
    src: url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'),
        url('../fonts/proximanova-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 20px;
    font-family: 'proxima_novaregular';
    font-weight: 400;
    line-height: 1.4;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1766px;
    margin: 0 auto;
    padding: 0 36px;
    box-sizing: border-box;
}

h1 {
    font-size: 60px;
    margin-bottom: 30px;
    font-family: 'proxima_novabold';
    line-height: 1.15;
    letter-spacing: -1px;
}

.banner-block h1 {
    margin-bottom: 19px;
    line-height: 1.125;
}

h2 {
    font-size: 50px;
    margin-bottom: 70px;
    text-align: center;
    font-family: 'proxima_novabold';
    letter-spacing: -1px;
}

h3 {
    font-size: 40px;
    margin-bottom: 15px;
    font-family: 'proxima_novabold';
    line-height: 1.125;
    letter-spacing: -1px;
}

h4 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'proxima_novabold';
}

p {
    font-size: 20px;
    line-height: 1.5;
}

tr:first-child {
    background: var(--secondary-color);
    color: var(--primary-color);
}

td {
    padding: 5px;
}

.sub-title,
.pre-header {
    font-size: 22px;
    font-family: 'proxima_novabold';
    padding-bottom: 22px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.card .pre-header {
    margin-bottom: 20px;
}

.sub-title::after,
.pre-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 83px;
    height: 5px;
    background: var(--secondary-color);
}

.hexagon-btn {
    width: 59px;
    height: 51px;
    /* width*√3/2 */
    clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Color codes */
.red {
    background: var(--red-color);
}

.red-bright {
    background: var(--red-bright-color);
}

.blue {
    background: var(--blue-color);
}

.blue-dark {
    background: var(--blue-dark-color);
}

.green {
    background: var(--green-color);
}

.green-light {
    background: var(--green-light-color);
}

.yellow {
    background: var(--yellow-color);
}

.grey {
    background: var(--grey-color);
}

/* Form Styling */
.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
    flex: 1;
}

.form-group br {
    display: none;
}

.two-column .form-group p {
    margin-bottom: 0;
}

.form-group label {
    margin-bottom: 5px;
    display: block;
    font-size: 16px;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
}

.form-group input,
.form-group textarea {
    width: 100%;
}

.submit_btn {
    text-align: center;
    margin: 25px auto 0;
}

.submit_btn p {
    margin-bottom: 0;
}

input,
textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'proxima_novaregular';
    color: var(--secondary-color);
}

input[type="checkbox"] {
    width: auto;
}

input:focus,
textarea:focus {
    border-color: var(--secondary-color);
}

input:focus::placeholder {
    color: var(--secondary-color);
}

input::placeholder,
textarea::placeholder {
    color: var(--secondary-color);
}

textarea {
    resize: vertical;
    height: 120px;
    color: var(--secondary-color);
}

select {
    padding: 15px 22px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    appearance: none;
    background: var(--primary-color) url('../images/icon-arrow.svg') no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 35px;
    cursor: pointer;
    color: var(--secondary-color);
}

.wpcf7-list-item {
    margin: 0 !important;
}

.wpcf7-not-valid-tip {
    font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
    background-color: var(--primary-color);
    font-size: 14px;
}

.red .wpcf7-not-valid-tip {
    color: var(--primary-color);
}

.wpcf7-checkbox label {
    position: relative;
    cursor: pointer;
}

.wpcf7-checkbox input[type=checkbox] {
    /*position: relative;*/
    position: absolute;
    visibility: hidden;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.wpcf7-checkbox input[type=checkbox]+span {
    /* border: 3px solid red; */
}

.wpcf7-checkbox input[type=checkbox]+span:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 0;
    height: 19px;
    width: 19px;
    top: 0px;
    left: 0px;
    background-color: var(--primary-color);
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
}

.wpcf7-checkbox input[type=checkbox]+span:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 7px;
    width: 5px;
    height: 12px;
    border: solid var(--secondary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    visibility: hidden;
}

.wpcf7-checkbox input[type=checkbox]:checked+span:before {
    background: transparent;
}

.wpcf7-checkbox input[type=checkbox]:checked+span:after {
    visibility: visible;
}

.wpcf7-list-item-label {
    margin-left: 30px;
    display: inline-block;
}

/* Button Styling */
button,
.btn,
.blog-posts .btn,
.submit-btn,
#programs-list article a {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px 55px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 0px 1px var(--secondary-color) inset 0px 0px 0px 1px var(--secondary-color);
    text-decoration: none;
    font-family: 'proxima_novasemibold';
    display: inline-block;
    transition: all ease 0.3s;
}

.btn.header-btn {
    padding: 13px 52px;
}

.btn.red {
    background-color: var(--red-bright-color);
    color: var(--secondary-color);
    padding: 13px 52px;
}

.btn.yellow {
    background-color: var(--yellow-color);
    color: var(--secondary-color);
}

button {
    padding: 21px 40px;
}

.submit-btn {
    display: flex;
    text-align: center;
    margin: 0 auto;
}

.wpcf7-spinner {
    display: none;
}

button:hover,
.btn:hover,
.blog-posts .btn:hover,
.submit-btn:hover {
    background-color: #282829CC;
}

.btn.red:hover {
    background-color: #F27E79CC;
}

.btn.yellow:hover {
    background-color: #FCB645CC;
}

.arrow-link {
    font-family: 'proxima_novasemibold';
    font-size: 15px;
    background: url('../images/arrow_right-dark.svg') no-repeat right center;
    padding-right: 27px;
    color: var(--secondary-color);
    transition: all ease 0.3s;
}

.arrow-link:hover {
    color: #444;
    text-decoration: none;
}

/* Pagination */
.pagination {
    padding-bottom: 50px;
}

.page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding-bottom: 20px;
}

.page-numbers li a,
.page-numbers li span {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 20px;
    box-shadow: 0px 0px 0px 1px var(--secondary-color) inset 0px 0px 0px 1px var(--secondary-color);
    text-decoration: none;
    font-family: 'proxima_novasemibold';
    display: inline-block;
    transition: all ease 0.3s;
}

.page-numbers li a {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-numbers li span {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

/* Accessibility Widget STyling */
body .uwy.userway_p1 .userway_buttons_wrapper {
    top: 86px !important;
    left: calc(100vw - 27px) !important;
}

body .uwy.utb .uai,
body .uwy.utb .ulsti,
body .uwy.utb .ups {
    width: 54px !important;
    height: 54px !important;
}

.uwy.utb .uai img:not(.userway_check_on),
.uwy.utb .ulsti img:not(.userway_check_on),
.uwy.utb .ups img:not(.userway_check_on),
body .uwy.utb .uai img:not(.userway_check_on),
body .uwy.utb .ulsti img:not(.userway_check_on),
body .uwy.utb .ups img:not(.userway_check_on) {
    width: 44px !important;
    height: 44px !important;
}

/* Header */
.header {
    display: grid;
    grid-template-columns: minmax(120px, 144px) auto minmax(169px, 169px);
    align-items: center;
    gap: 64px;
    padding: 40px 0;
    position: relative;
}

#menu-toggle,
.hamburger-icon {
    display: none;
    /* Hidden by ,default, shown on mobile */
}

.bar {
    height: 3px;
    width: 30px;
    background-color: var(--border-color);
    /* Change to your preferred color */
    margin: 3px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: block;
}

.header-nav {
    display: flex;
}

.header-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    list-style: none;
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

.header-nav a {
    text-decoration: none;
    color: var(--background-color);
    font-size: 19px;
}

.header-nav li {
    position: relative;
}

.header-nav li a {
    position: relative;
    padding: 10px;
}

.header-nav li.current-menu-item>a::after,
.header-nav li.current_page_parent a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-light-color);
}

.header-nav li.menu-item-has-children>a {
    position: relative;
    padding-right: 24px;
    cursor: pointer;
    background: url('../images/icon-down_arrow.svg') no-repeat center right;
}

.header-nav li .sub-menu {
    display: none;
}

.header-nav li .sub-menu li.current-menu-item>a::after {
    display: none;
}

.header-nav li:hover .sub-menu {
    display: flex;
}

.header-links ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-link {
    display: none;
}

/* Dropdown Styles */
.sub-menu {
    position: absolute;
    top: 33px;
    left: 0;
    z-index: 2;
    background-color: var(--green-light-color);
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); */
    display: none;
    flex-direction: column;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 5px;
}

.sub-menu::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 12px 6px;
    border-color: transparent transparent var(--green-light-color) transparent;
}

.menu-item-has-children:hover .sub-menu {
    display: flex;
    gap: 0;
}

.sub-menu li {
    width: 100%;
    /* border-bottom: 1px solid var(--border-color); */
    margin-bottom: 10px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
    /* border-bottom: 4px solid #A4DBDE; */
}

.sub-menu a {
    white-space: nowrap;
    display: block;
    padding: 0 10px;
}


/* Banner */
.banner {
    padding: 40px 0;
    height: 877px;
    box-sizing: border-box;
}

.banner-block.two-column {
    padding: 0;
    height: auto;
}

.banner .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.banner-content {
    background-color: var(--primary-color);
    width: 595px;
    padding: 71px 36px 36px 71px;
    box-sizing: border-box;
}

.banner-content p {
    font-size: 24px;
    line-height: 1.5;
    margin-right: 140px;
}

.banner-content a {
    float: right;
}

.shortcode-section {
    width: 517px;
}

.shortcode-section .form-group {
    margin-bottom: 25px;
}

.shortcode-section .form-group.message-mrgn,
.shortcode-section .form-group.checkbox {
    margin-bottom: 10px;
}

.cta-block-form .submit_but {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.two-column.content-shortcode .text-section {
    flex: 1;
}

/* Focus Areas */
.focus-areas .container {
    text-align: center;
    padding: 178px 36px 188px;
    max-width: 1326px;
}

.focus-areas-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 40px;
}

.focus-area {
    text-align: center;
}

.focus-area img {
    margin-bottom: 15px;
    width: 166px;
}

/* Blog section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px;
}

.blog-card {
    overflow: hidden;
    text-align: center;
}

.blog-card img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.blog-title {
    margin-bottom: 25px;
}

.blog-description {
    margin-bottom: 40px;
}

/* Two Column layout */
.two-column .container {
    max-width: 1382px;
    display: flex;
    align-items: center;
    gap: 140px;
    padding: 116px 36px;
}

.two-column .container.programs {
    padding: 75px 36px;
}

.two-column .container.programs:first-child {
    padding-top: 120px;
}

.two-column .container.programs:last-child {
    padding-bottom: 120px;
}

.two-column.banner-block .container,
.text-only.banner-block .container {
    padding-top: 36px;
    padding-bottom: 0px;
    max-width: 1482px;
}

.two-column.banner-block p {
    font-size: 24px;
}

.text-only.banner-block .container {
    padding-bottom: 36px;
}

.text-only.banner-block .container h1,
.text-only.banner-block .container h2,
.text-only.banner-block .container h3 {
    margin-bottom: 0;
    text-align: left;
}

.two-column.content-shortcode .container {
    padding: 79px 36px;
    max-width: 1414px;
    gap: 167px;
}

.two-column.dir-right .container {
    flex-direction: row-reverse;
}

.two-column .text-section {
    flex: 1;
}

.two-column p {
    margin-bottom: 35px;
}

.two-column p:last-child {
    margin-bottom: 0px;
}

.two-column .image-section {
    width: 704px;
}

.two-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.two-column.stats-wrapper .container {
    max-width: 1530px;
}

.two-column.stats-wrapper .text-section {
    width: 42.86%;
}

.two-column.stats-wrapper .image-section {
    width: calc(57.14% - 95px);
}

.two-column .stats {
    max-width: 800px;
    background-color: var(--grey-color);
    border-radius: 20px;
    box-sizing: border-box;
    padding: 95px;
}

.stats .stat {
    display: flex;
    gap: 39px;
    align-items: center;
    margin-bottom: 45px;
}

.stats .stat:last-child {
    margin-bottom: 0;
}

.stat .number {
    width: 130px;
    height: 112px;
    /* width*√3/2 */
    clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'proxima_novabold';
    font-size: 40px;
    color: var(--primary-color);
    flex: none;
}

.stat p.description {
    font-size: 25px;
    margin-bottom: 0;
}

/* Carousel */
.owl-carousel {
    padding: 0 36px;
    box-sizing: border-box;
}

.two-column .owl-carousel .owl-item img {
    width: 100%;
}

.owl-item .text-section {
    padding-right: 100px;
    box-sizing: border-box;
}

.owl-nav {
    position: absolute;
    width: calc(100% - 40px);
    height: 89px;
    /* width*√3/2 */
    top: calc(50% - 45px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    box-sizing: border-box;
}

.two-column .owl-nav button {
    width: 101px;
    height: 89px;
    /* width*√3/2 */
    background: url('../images/carousel-arrow.svg') no-repeat center center !important;
    background-size: 100px 89px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border-radius: 0;
}

.two-column .owl-nav button.owl-next {
    transform: rotate(180deg);
}

button.owl-prev.disabled,
button.owl-next.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.two-column .owl-nav button span {
    display: none;
}

/* Newsletter */
.newsletter {
    padding: 66px 0;
    background: var(--green-light-color);
}

.newsletter .container {
    max-width: 1456px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.form-container {
    display: flex;
    gap: 31px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.form-container input {
    padding: 25px 34px;
    border: 1px solid #ccc;
    border-radius: 40px;
    outline: none;
    width: 341px;
    font-size: 20px;
    box-sizing: border-box;
}

/* Meet Our People */
.people {
    padding: 140px 0 150px;
}

.people .container {
    max-width: 1406px;
}

.people h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.people .section-header {
    max-width: 600px;
    margin: 0 auto 56px;
    text-align: center;
}

.people-group {
    margin-bottom: 120px;
}

.people-group:last-child {
    margin-bottom: 0px;
}

.people-group h3 {
    margin-bottom: 50px;
}

.people-in-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 52px;
}

.people-in-group .person {
    cursor: pointer;
}

.people-in-group .person img {
    max-width: 100%;
    height: 420px;
    display: block;
    margin-bottom: 40px;
    object-fit: cover;
}

.person h4 {
    font-size: 40px;
    line-height: 1.14;
    margin-bottom: 15px;
}

/* People popup */
.ui-widget-overlay {
    background: var(--background-color) !important;
}

.ui-dialog .ui-dialog-title {
    display: none;
}

.ui-dialog .ui-dialog-titlebar {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.ui-widget.ui-widget-content {
    border-radius: 20px;
    z-index: 2147483648 !important;
}

#person-modal {
    padding: 100px;
    box-sizing: border-box;
}

#person-modal .modal-content {
    display: flex;
    gap: 85px;
}

#modal-image {
    margin-bottom: 30px;
    width: 420px;
    height: 420px;
    object-fit: cover;
}

#modal-title {
    margin-bottom: 5px;
}

#modal-bio p {
    margin-bottom: 20px;
}

#modal-bio p:last-child {
    margin-bottom: 0px;
}

.ui-dialog .ui-dialog-titlebar-close {
    width: 59px !important;
    height: 51px !important;
    /* width*√3/2 */
    clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -29px 0 0 !important;
    right: -33px !important;
    border-radius: 0 !important;
}

.ui-button:hover,
.ui-button:focus {
    background: #444 !important;
    border: 0px !important;
}

.ui-button .ui-icon {
    background: url('../images/icon-close.svg') no-repeat 0 0 !important;
}

/* Detail Page */
.single-post-header {
    background: linear-gradient(to bottom,
            #A4DBDE 0%,
            #A4DBDE 50%,
            #ffffff 50%,
            #ffffff 100%);
    padding: 115px 0 0;
}

.single-post-header .container {
    max-width: 1527px;
}

.single-post-header h1 {
    font-size: 40px;
    margin-bottom: 100px;
}

.single-post-header .post-thumbnail img {
    width: 100%;
    height: 865px;
    object-fit: cover;
}

.post-content {
    max-width: 1527px;
    width: 100%;
    margin: 75px auto 100px;
    display: flex;
    gap: 110px;
    padding: 0 36px;
    box-sizing: border-box;
}

.post-content .left-column p {
    font-size: 16px;
    margin-bottom: 25px;
}

.post-content .right-column p,
.post-content ul,
.post-content ol {
    margin-bottom: 25px;
}

.post-content .right-column img {
    display: block;
    margin-bottom: 110px;
}

.post-content .right-column img.alignnone,
img.alignnone {
    display: inline-block;
    margin: 0 10px 20px 0;
}

.post-content .right-column img:last-of-type {
    margin-bottom: 0px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: var(--secondary-color);
    transition: all ease 0.3s;
}

.post-content a:hover {
    text-decoration: none;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    display: inline-block;
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    display: inline-block;
    float: left;
    margin: 5px 20px 20px 0;
}

p.wp-caption-text {
    font-size: 15px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Footer */
footer.container {
    max-width: 1448px;
    padding: 110px 36px;
    color: #1E1E1E;
}

.footer {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 55px;
}

.footer-cols {
    display: flex;
    gap: 55px;
    flex: 1;
    justify-content: space-between;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 10px;
}

.footer .widgettitle {
    font-size: 17px;
    margin-bottom: 12px;
    font-family: 'proxima_novabold';
    text-align: left;
    letter-spacing: normal;
}

.footer p,
.footer a {
    font-size: 15px;
    line-height: 1.5;
    color: #1E1E1E;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer a:hover {
    text-decoration: underline;
}

/* .footer-column {
    flex: 1;
    margin-right: 20px;
} */

.footer-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
}

.footer-bottom li a {
    border-right: 1px solid var(--secondary-color);
    line-height: 1;
    padding-right: 10px;
}

.footer-bottom li:last-child a {
    border-right: 0;
    padding-right: 0px;
}

.footer-address {
    width: 275px;
}

.footer-address address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.footer-address p {
    margin-bottom: 30px;
}

.footer-address ul {
    display: flex;
    gap: 15px;
}

.footer-address li a {
    border-right: 1px solid var(--secondary-color);
    padding-right: 15px;
    margin-bottom: 0;
    line-height: 1;
}

.footer-address li:last-child a {
    border-right: 0;
    padding-right: 0px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.footer-social .widgettitle {
    font-size: 15px;
    font-weight: 400;
    font-family: 'proxima_novaregular';
    margin-bottom: 0;
    letter-spacing: normal;
}

#menu-social-icons,
.social-icons {
    display: flex;
    gap: 10px;
    list-style: none;
}

#menu-social-icons a,
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-indent: -99999px;
}

#menu-social-icons li,
.social-icons a {
    border-radius: 50%;
}

#menu-social-icons .instagram {
    background: var(--yellow-color) url('../images/icon-instagram.svg') no-repeat center center;
}

.social-icons .linkedin {
    background: var(--yellow-color) url('../images/icon-linkedin.svg') no-repeat center center;
}

#menu-social-icons .facebook,
.social-icons .facebook {
    background: var(--red-color) url('../images/icon-facebook.svg') no-repeat center center;
}

#menu-social-icons .twitter,
.social-icons .twitter {
    background: #40C4E0 url('../images/icon-twitter.svg') no-repeat center center;
}

/* Our Stories */
.stories,
.related-posts {
    padding: 150px 0px;
    box-sizing: border-box;
}

.vacancies-block {
    padding: 118px 36px 134px 36px;
    box-sizing: border-box;
}

.stories .container,
.vacancies-block .container,
.testimonials-block .container,
.related-posts .container {
    max-width: 1525px;
}

.blog-posts,
.vacancies-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 60px;
}

.blog-posts article,
.vacancy {
    text-align: center;
}

.blog-posts .wp-post-image,
.vacancy img {
    max-width: 100%;
    height: 450px;
    margin-bottom: 40px;
    object-fit: cover;
}

.blog-posts h3,
.vacancy h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.blog-posts p,
.vacancy p {
    margin-bottom: 30px;
}

.blog-posts p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.file-link a {
    color: var(--background-color);
}


/* Get involved */
.cta-block {
    padding: 0 36px;
}

.cta-block .container {
    max-width: 1485px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 180px;
    padding: 120px 190px 60px 172px;
    background-color: var(--yellow-color);
    border-radius: 10px;
    margin: 115px auto;
    box-sizing: border-box;
}

.cta-block-content {
    flex: 1;
}

.cta-block-form {
    width: 530px;
}

/* Testimonials */
.testimonials-block {
    margin-bottom: 90px;
}

.testimonials-block h2 {
    max-width: 900px;
    margin: 0 auto 100px;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(372px, 1fr));
    gap: 84px;
}

.cards-wrapper h2 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: left;
}

.cards-wrapper a {
    color: var(--background-color);
    text-decoration: none;
}

.cards-wrapper .btn {
    color: var(--primary-color);
}

.cards-wrapper .description {
    margin-bottom: 30px;
}

.card {
    padding: 40px 34px;
    background-color: var(--dark-grey-color);
    border-radius: 10px;
}

.card-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.card-header .title {
    font-size: 22px;
    font-family: 'proxima_novabold';
    text-transform: uppercase;
}

.event.card p {
    margin-bottom: 15px;
    font-size: 16px;
}

.card p.date {
    margin-bottom: 30px;
}

.date,
.address,
.time {
    font-size: 14px;
    padding-left: 45px;
    display: flex;
    min-height: 31px;
    align-items: center;
    /* line-height: 2.2; */
}

.address {
    background: url('../images/icon-location.svg') no-repeat left center;
    background-size: 28px 31px;
}

.time {
    background: url('../images/icon-clock.svg') no-repeat left center;
}

.date {
    background: url('../images/icon-calendar.svg') no-repeat left center;
}

/* Events */
.events.container {
    padding: 100px 36px 130px;
    max-width: 1302px;
}

.events .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(365px, 1fr));
    gap: 65px;
}

.events .card {
    padding: 34px;
}

.events h1 {
    margin-bottom: 0;
}

.event-filter {
    display: flex;
    gap: 65px;
    align-items: center;
    margin-bottom: 95px;
}

/* Event Details Page */
.event-details {
    padding: 100px 0;
}

.event-details .container {
    max-width: 1300px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.event-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 0;
}

.event-content,
.event-detail {
    flex: 1;
}

.event-content p {
    margin-bottom: 20px;
}

.event-detail {
    background-color: var(--grey-color);
    border-radius: 10px;
    padding: 35px 48px 40px;
}

.event-detail img {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.event-info {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.acf-map {
    width: 100%;
    height: 400px;
    border: #ccc solid 1px;
    margin: 20px 0;
}

/* // Fixes potential theme css conflict. */
.acf-map img {
    max-width: inherit !important;
}

/* Our Values */
.values-block {
    margin-bottom: 100px;
}

.values-block .container {
    max-width: 1450px;
}

.values-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 125px;
    row-gap: 100px;
}

.value {
    flex: 0 1 calc(50% - 65px);
    display: flex;
    gap: 55px;
    align-items: flex-start;
}

.value-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Resources */
.resources {
    padding: 110px 0;
    max-width: 1485px;
    margin: 0 auto;
}

/* Find a Program form */
.program-filter {
    margin: 20px 0;
}

.program-filter .container {
    display: flex;
    gap: 117px;
    max-width: 1525px;
    align-items: center;
    padding: 52px 84px;
    border-radius: 40px;
}

.program-filter h3 {
    font-size: 43px;
    line-height: 1.275;
    margin-bottom: 25px;
}

.program-filter .text-section {
    flex: 1;
}

.program-filter .filter-form {
    width: 835px;
}

.filter-form h3 {
    font-size: 24px;
    line-height: 1.5;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 35px;
}

.filter-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 40px;
}

.filter-sec .filter-input {
    width: 120px;
}

.filter-sec .filter-search {
    width: 210px;
}

.filter-sec .filter-type {
    width: 250px;
}

.filter-sec .filter-age {
    width: 125px;
}

.days-wrapper {
    margin-bottom: 49px;
}

.days-wrapper>label {
    font-size: 22px;
    font-family: 'proxima_novabold';
    margin-bottom: 15px;
}

.filter-form .days-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.days-checkboxes .form-row {
    align-items: center;
}

.days-wrapper .form-row input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.days-wrapper .form-row label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.days-wrapper .form-row label:before {
    content: '';
    -webkit-appearance: none;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 13px;
    border-radius: 8px;
}

.days-wrapper .form-row input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 7px;
    width: 5px;
    height: 12px;
    border: solid var(--secondary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 23px;
}

.form-actions .clear-filter {
    font-size: 16px;
    font-family: 'proxima_novabold';
    color: var(--secondary-color);
}

/* Content Only Page */
.content-only {
    padding: 100px 0;
}

.content-only .container {
    max-width: 1300px;
}

.content-only ol {
    margin-bottom: 5px;
}

.content-only ol li {
    font-weight: 700;
}

.content-only a {
    color: var(--secondary-color);
}

.content-only a:hover {
    text-decoration: none;
}

.content-only p {
    margin-bottom: 25px;
}

/* Our partners */
.logos {
    padding: 100px 0;
}

.logos .container {
    max-width: 1325px;
}

.logos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.logo {
    height: 90px;
}

.logo img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
}