* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* GLOBAL */
.page-container {
    margin-bottom: 60px;
    font-size: 18px;
}

font {
    font-size: inherit;
}

.page-container.frontpage-container {
    margin-bottom: 0;
}

.page-container h2 {
    background: linear-gradient(90deg, #7eb544 0%, #3199fc 25.08%, #1459b7 100%);
    font-size: 3rem;
    font-weight: 300;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-btn {
    background-color: #1b69c3;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    text-decoration: none;
}

.custom-btn .btn {
    padding: 5px 42px;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
}

.custom-btn .btn:active {
    color: #fff;
    border: none;
}

.custom-divider {
    width: 100%;
    height: 6px;
    background-color: #fff;
    position: relative;
}

.custom-divider .dots {
    display: flex;
    position: absolute;
    top: -28px;
}

.custom-divider .dots .dot:nth-child(1) .inner {
    background-color: #1a68c5;
}

.custom-divider .dots .dot:nth-child(2) .inner {
    background-color: #FF9800;    
}

.custom-divider .dots .dot:nth-child(3) .inner {
    background-color: #68C47C;
}

.custom-divider .dots .dot {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-divider .dots .dot .inner {
    height: 48px;
    width: 48px;
    border-radius: 50%;
}

.custom-divider .dots.right {
    right: 0;
}

.custom-divider .dots.right .dot:nth-child(3) {
    height: 60px;
    width: 30px;
    border-radius: 0;
    border-bottom-left-radius: 60px;
    border-top-left-radius: 60px;
    justify-content: flex-end;
}

.custom-divider .dots.right .dot:nth-child(3) .inner {
    height: 48px;
    width: 24px;
    border-radius: 0;
    border-bottom-left-radius: 54px;
    border-top-left-radius: 54px;
}

.custom-divider .dots.left {
    left: 0;
}

.custom-divider .dots.left .dot:nth-child(1) {
    height: 60px;
    width: 30px;
    border-radius: 0;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 60px;
    justify-content: flex-start;
}

.custom-divider .dots.left .dot:nth-child(1) .inner {
    height: 48px;
    width: 24px;
    border-radius: 0;
    border-bottom-right-radius: 54px;
    border-top-right-radius: 54px;
}

.gt_switcher_wrapper {
    top: 10px !important;
}

.gt_switcher_wrapper a.glink img {
    width: 50px !important;
}

/* ANIMATIONS */

.js-scroll {
    opacity: 0;
    transition: opacity 500ms;
}

.scrolled.slide-left {
    animation: slide-from-left 1s ease-in-out both;
}

@keyframes slide-from-left {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.scrolled.slide-right {
    animation: slide-from-right 1s ease-in-out both;
}

@keyframes slide-from-right {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.scrolled.fade-in {
    animation: fade-in 500ms ease-in-out both;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.scrolled.fade-in-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
}

@keyframes fade-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



/* HEADER */

.mobile-nav {
    display: none;
}

header {
    height: 124px;
    padding: 12px 0;
    -webkit-box-shadow: 0px 6px 22px 1px rgba(0,0,0,0.39); 
    box-shadow: 0px 6px 22px 1px rgba(0,0,0,0.39);
}

header .container,
header .row,
header .col-12 {
    height: 100%;
}

header .logo a {
    display: inline-block;
    height: fit-content;
    width: fit-content;
}

header .logo a img {
    max-height: 100px;
    width: auto;
}

header .head-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* NAV */

header .menu-container {
    display: flex;
    align-items: center;
}

header .nav .menu-main-menu-container {
    width: 100%;
}

header .nav #menu-main-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0;
    padding: 0;
}

header .nav #menu-main-menu .menu-item a {
    color: #000;
    text-decoration: none;
}

header .head-cta .custom-btn {
    background-color: #4a90e2;
}

header .head-cta .custom-btn .btn {
    height: 40px;
}

header .head-cta .trp-language-switcher:hover .trp-ls-shortcode-current-language {
    background-color: #4a90e2;
    color: #fff !important;
    font-weight: 700;
    height: 40px;
    border-radius: 40px;
    border: none;
}

.trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language {
    background-color: #4a90e2;
    color: #fff;
    font-weight: 700;
    height: 40px;
    border-radius: 40px;
    border: none;
    padding: 0;

}

header .head-cta .trp-ls-shortcode-current-language, 
header .head-cta .trp-ls-shortcode-current-language {
    background-color: #4a90e2;
    color: #fff;
    font-weight: 700;
    height: 40px;
    border-radius: 40px;
    border: none;
}

header .head-cta .trp-ls-shortcode-current-language:hover {
    background-color: #4a90e2;
    color: #fff;
    font-weight: 700;
    height: 40px;
    border-radius: 40px;
    border: none;
}

header .head-cta .trp-ls-shortcode-current-language .trp-ls-shortcode-disabled-language {
    height: 100%;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;

}


/* FOOTER */

footer .contact {
    padding: 3.125rem 0;
    background-color: #68c47c;
}

footer .contact .col-lg-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .contact .col-lg-4 h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    background: none;
    -webkit-text-fill-color:#fff;
    line-height: 60px;
}

footer .contact p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 38px;
}

footer .contact .col-12 {
    display: flex;
    justify-content: center;
}

footer .wpcf7 {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 35px 20px;
    max-width: 80%;
}

footer .wpcf7 h2 {
    background: linear-gradient(90deg, #7eb544 0%, #3199fc 25.08%, #1459b7 100%);
    font-size: 3rem;
    font-weight: 300;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .wpcf7 form .wpcf7-spinner {
    display: none;
}

footer .wpcf7 form .row {
    margin: 0;
    padding: 0;
}

footer .wpcf7 form .row .col-lg-6 {
    padding: 0;
    margin: 0;
}

footer .wpcf7 form .row .col-lg-6 p {
    width: 100%;
}

footer .wpcf7 form .row .col-lg-6:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    padding-right: .5rem;
}

footer .wpcf7 form .row .col-lg-6:nth-child(2) {
    display: flex;
    justify-content: flex-end;
    padding-left: .5rem;
}

footer .wpcf7 form .row,
footer .wpcf7 form label,
footer .wpcf7 form span,
footer .wpcf7 form input[type='text'],
footer .wpcf7 form input[type='email'],
footer .wpcf7 form textarea {
    width: 100%;
}

footer .wpcf7 form input[type='text'],
footer .wpcf7 form input[type='email'],
footer .wpcf7 form textarea {
    background-color: #f1f1f1;
    color: #808080;
    border: none;
    border-radius: 5px;
    padding: 0 18px;
}

footer .wpcf7 form input[type='text'],
footer .wpcf7 form input[type='email'] {
    height: 50px;
}

footer .wpcf7 form textarea {
    height: 150px;
    line-height: 1.5rem;
    padding-top: .75rem;
}

footer .wpcf7 form .submit-container {
    display: flex;
    justify-content: flex-end;
}

footer .wpcf7 form .submit-container p {
    width: fit-content;
}

footer .wpcf7 form .wpcf7-submit {
    background-color: #1b69c3;
    height: 50px;
    padding: 5px 42px;
    color: #fff;
    font-size: 1rem;
    border-radius: 25px;
    border:none;
}




footer .logos {
    padding: 2rem 0;
}

footer .logos .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .logos .col-12 img {
    max-width: 210px;
}

footer .bottom {
    background-color: #4a90e2;
    padding: 1rem 0;
    color: #fff;
}

footer .bottom .menu-footer-menu-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

footer .bottom #menu-footer-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 75%;
    padding: 0;
}

footer .bottom #menu-footer-menu .menu-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

footer .bottom .disclaimer {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    margin-top: 1rem;
}

/* PAGE BANNER */

section.page-banner {
    /*height: 600px;*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 60px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 3rem;
}

section.page-banner .cta {
    height: 200px;
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(226deg, #4a90e2 0%, #68c47c 100%);
    opacity: 0.95; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.page-banner .cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.page-banner .cta h1 {
    font-size: 2.25rem;
    font-weight: 600;
}

section.page-banner .cta p {
    font-size: 18px;
}

/* FRONTPAGE */

.frontpage-container {
    overflow-x: hidden;
}

.frontpage-container section.page-banner .cta {
    background: rgba(49,153,252,0.9);;
}

/* HOMEPAGE CARDS */

section.homepage-cards {
    padding: 50px 0;
}

section.homepage-cards .col-12 {
    margin-top: 1.5rem;
}

section.homepage-cards .custom-card {
    background-color: #fff;
    border-radius: 8px;
    min-height: 410px;
    height: 100%;
}

section.homepage-cards .custom-card .card-head {
    height: 137px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    background-color: #68c47c;
}

section.homepage-cards .custom-card .card-head .icon {
    width: 114px;
    height: 114px;
    border-radius: 50%;
    border: 6px solid #76b258;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.homepage-cards .custom-card .card-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 300px;
    height: calc(100% - 167px);
}

section.homepage-cards .custom-card .card-content h2 {
    margin-bottom: 20px;
}

section.circle-image {
    max-height: 440px;
    max-width: 440px;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: auto 1 / 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

section.circle-image .bar {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #cecece 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

section.circle-image.left .bar {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #cecece 100%);
    right: 50%;
}

section.circle-image.right .bar {
    background: linear-gradient(90deg, #cecece 0%, rgba(255,255,255,0) 100%);
    left: 50%;
}

/* TEAM ARCHIVE */

.department {
    margin: 3rem 0;
}

.team-member {
    padding: 10px 20px;
    box-shadow: 0px 1.5px 4px rgba(100,100,100,0.5);
    border-radius: 8px;
    margin: 12px 0;
    /*cursor: pointer;*/
}

.team-member .headshot {
    max-width: 160px;
    max-height: 160px;
    aspect-ratio: auto 1 / 1;
    width: 100%;
    border: 6px solid #4a90e2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-color: #4a90e2;
}

.team-member .col-12:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member .name {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    width: fit-content;
}

.team-member .title {
    text-transform: uppercase;
    color:#4a90e2;
    font-size: 1rem;
    font-weight: 700;
    width: fit-content;
}

.team-member .content {
    display: none;
}

#memberModal .modal-dialog {
    max-width: 577px;
    width: 100%;
}

#memberModal .modal-dialog .modal-content {
    padding: 0 24px 40px 24px;
}

#memberModal .modal-dialog .modal-content .modal-header {
    border-bottom: 0.5px solid #4E4E4E;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 90px 0 0 0;
}

#memberModal .modal-dialog .modal-content .modal-header .headshot {
    position: absolute;
    width: 160px;
    height: 160px;
    background: linear-gradient(180deg, #76b258, #4eb99e 48.24%, #265a9d);
    padding: 6px;
    border-radius: 50%;
    top: -80px;
}

#memberModal .modal-dialog .modal-content .modal-header .headshot .headshot-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

#memberModal .modal-dialog .modal-content .modal-header .name {
    background: linear-gradient(90deg, #7eb544 0%, #3199fc 40.08%, #1459b7 100%);
    font-size: 2.25rem;
    font-weight: 300;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    text-align: center;
}

#memberModal .modal-dialog .modal-content .modal-header .title {
    font-weight: 700;
    text-align: center;
}

#memberModal .modal-dialog .modal-content .modal-header #close {
    position: absolute;
    right: 0px;
    top: 20px;
    border: none;
    padding: 0;
    margin: 0; 
    background-color: transparent;
}

#memberModal .modal-dialog .modal-content .modal-header #close::after {
    display: inline-block;
    content: "\00d7";
    font-size: 3rem;
    font-weight: 200;
    line-height: 3rem;
    color: #757575;
}

#memberModal .modal-dialog .modal-content .modal-body {
    padding: 1rem 0 0 0;
    color: #4e4e4e;
    font-weight: 300;
}


/* RESOURCE SECTION */
section.resource-section {
    margin: 20px 0 60px 0;
}

section.resource-section .resource-card {
    box-shadow: 0px 1.5px 4px rgba(100,100,100,0.5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    min-height: 130px;
    border-radius: 8px;
    margin: 1.5rem 0;
    padding: 10px 10px 25px 10px;
}

section.resource-section .resource-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

section.resource-section .resource-card .custom-btn {
    position: absolute;
    bottom: -25px;
}