* { margin:0; padding:0 }

:root {
    --blue-bg: #98c5ff;
    --blue-font: #013366;
    --blue-bg-opacity: rgb(152 197 255 / 20%);
    --green-bg: #d9e8be;
    --green-font: #009b01;
    /* --green-font: #008600; */
    --footer-bg: #12a732;
    /* --footer-bg: #0f8528; */
    --bg-image-height: 650px;
    --font-rubik: 'Rubik', sans-serif;
    --rubik-regular: 400;
    --rubik-medium: 500;
    --rubik-bold: 700;

    --nunito-bold: 700;
    --montserrat-light: 300;
    --montserrat-regular: 400;
    --montserrat-medium: 500;
    --montserrat-semi-bold: 600;
    --montserrat-bold: 700;

    --swiper-navigation-color: #1876be;
}

@media (min-width: 1700px) {
    :root {
        --bg-image-height: 800px;
    }
}

body {
    font-family: var(--font-rubik);
}

header {
    color: var(--green-font);
    display: block;
    justify-content: center;
}

header a {
    color: var(--green-font);
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}
header .site-pages .active:hover {
    text-decoration: none;
}

header .content {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    position: relative;
}

header .logo-and-site-pages {
    padding: 20px;
    display: flex;
    align-items: flex-end;
}

header .logo-link {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    align-items: center;
}

header .logo-link:hover {
    text-decoration: none;
}

header .logo {
    width: 60px;
    margin-right: 20px;
}

header .company {
    font-size: 1.5em;
    font-weight: bold;
    white-space: nowrap;
}
@media (max-width: 600px) {
    header .company {
        white-space: pre-wrap;
        margin-right: 80px;
    }
}

header .company span {
    color: #1174bd;
}

/* header .title {
    transform: translate3d(10px, 5px, 0);
    font-size: 1.4em;
    margin-right: 20px;
    display: inline-block;
    font-family: var(--font-rubik);
    font-weight: var(--rubik-bold);
} */

header .site-pages {
    margin-left: 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .site-pages ul {
    list-style-type: none;
    display: block;
}

header .site-pages ul li {
    display: inline-block;
}

header .site-pages ul li a {
    padding: 5px 10px;
    margin: 0 5px;
    font-size: 18px;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    font-weight: var(--montserrat-semi-bold);
}

header .site-pages ul li a:hover {
    text-decoration: none;
}

header .site-pages ul li a:not(.active):hover {
    border-bottom: 2px solid var(--green-font);
    color: var(--green-font);
}

header .site-pages ul li a.btg-text { font-style: italic; }

header .site-pages ul li a.btg-text span { 
    color: #1876be;
    display: inline-block;
    margin-right: 4px;
}

@media (max-width: 1200px) {
    header .site-pages {
        /* width: calc(100% - 220px); */
        /* margin: 40px 20px 0 70px; */
        margin-top: 40px;
        text-align: center;
    }
    header .site-pages ul {
        margin-right: 50px;
    }
    header .site-pages a {
        margin: 5px;
    }
    header .logo-and-site-pages .logo-link {
        align-self: flex-start;
        margin-top: 10px;
    }
}

header .site-pages .active {
    border-bottom: 2px solid hsl(120deg 100% 20%);
    color: hsl(120deg 100% 20%);
}

header .action-links {
    font-size: .8em;
    margin: 20px;
    text-align: right;
    position: absolute;
    right: 0;
    font-weight: var(--montserrat-medium);
}

header .action-links a,
header .action-links span {
    padding-left: 30px;
    display: inline-flex;
    color: #000;
}
header .action-links a::before,
header .action-links span::before {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: center;
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 8px;
    margin-top: -4px;
}

header .mobile-links .action-links a {
    display: flex;
}
header .mobile-links .action-links a::before {
    margin-top: 0;
}

header .action-links ul {
    list-style-type: none;
    display: flex;
}


/* header .action-links a.phone::before { background-image: url(img/phone_icon.webp); width: 28px; height: 31px; }
header .action-links a.demo::before { background-image: url(img/demo_icon.webp); width: 34px; height: 27px; }
header .action-links a.login::before { background-image: url(img/login_icon.webp); width: 33px; height: 29px; } */

header .action-links a.phone::before { background-image: url(img/phone_icon.webp); }
header .action-links a.demo::before { background-image: url(img/demo_icon.webp); }
header .action-links a.login::before { background-image: url(img/login_icon.webp); }


header .mobile-menu {
    display: none;
    width: 100vw;
    max-width: 1300px;
    height: 85px;
    position: relative;
    align-items: center;
}

header.show-mobile-menu-only .mobile-menu {
    display: flex;
}

header .mobile-menu .logo {
    height: 70px;
    width: auto;
    margin: 10px 20px;
}

/* header .mobile-menu .title {
    transform: none;
    padding-right: 60px;
} */

header .hamburger-menu {
    height: 26px;
    width: 32px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background-color: #fff;
}

header .hamburger-menu.desktop {
    position: initial;
    width: 18px;
    height: 16px;
    margin-left: 20px;
}

header .hamburger-menu .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: var(--green-font);
}

header .hamburger-menu.desktop .line {
    height: 2px;
    border-radius: 2px;
}

header .hamburger-menu.desktop .line2 {
    width: 14px;
}

header .hamburger-menu .line1 {
    transform-origin: 0% 0%;
    /* transition: transform 0.4s ease-in-out; */
}

/* header .hamburger-menu .line2 {
    transition: transform 0.2s ease-in-out;
} */

header .hamburger-menu .line3 {
    transform-origin: 0% 100%;
    /* transition: transform 0.4s ease-in-out; */
}

header .hamburger-menu.open .line1 {
    transform: rotate(45deg);
}

header .hamburger-menu.open .line2 {
    transform: scaleY(0);
}

header .hamburger-menu.open .line3 {
    transform: rotate(-45deg);
}

header .desktop-icon-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

header .search-menu a {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    color: var(--green-font);
    border: 2px solid var(--green-font);
    display: block;
    position: relative;
}

header .search-menu a::after {
    content: '';
    display: block;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--green-font);
    position: absolute;
    transform: rotate(45deg);
    top: 11px;
    left: 8px;
}

header .mobile-menu .page-links {
    display: flex;
}

header .mobile-links {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    z-index: 3;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 50%);
}

header .mobile-links ul {
    list-style-type: none;
    display: block;
}

header .mobile-links li {
    display: block;
    padding-bottom: 16px;
}

@media (min-width: 820px) {
    header .mobile-links {
        display: none;
    }
    header.show-mobile-menu-only .mobile-links {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 100px;
    }
}

header .mobile-links.hidden {
    display: none;
}

header .mobile-links a {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: var(--montserrat-semi-bold);
    display: block;
}

header .mobile-links span {
    color: hsl(140deg 100% 40%);
    cursor: default;
}

header .mobile-links .page-links .active {
    border-bottom: 2px solid #009934;
    padding-bottom: 8px;
}
header .mobile-links .page-links .active:hover {
    text-decoration: none;
}

header .mobile-links .action-links {
    position: initial;
    text-align: left;
    flex-direction: column;
    padding-top: 50px;
    /* align-self: flex-start; */
}

header .mobile-links .action-links a,
header .mobile-links .action-links span {
    font-size: 1.4em;
}

header .mobile-links .action-links span {
    color: hsl(0deg 0% 50%);
}

header .mobile-links .action-links a.active {
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
}
header .mobile-links .action-links a.active:hover {
    text-decoration: none;
}

@media (max-width: 820px) {
    header .action-links { display: none; }
    header .site-pages { display: none; }
    header .logo-and-site-pages { display: none; }
    header .mobile-menu { display: flex; }
    header .mobile-links .action-links { display: flex; }
}

header.show-mobile-menu-only .action-links,
header.show-mobile-menu-only .site-pages,
header.show-mobile-menu-only .logo-and-site-pages {
    display: none;
}

header.show-mobile-menu-only .mobile-links .action-links {
    display: flex;
}

main {
    display: flex;
    flex-direction: column;
}

.page-top {
    padding: 50px;
    padding-bottom: 0;
}

.page-top .content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
}
.page-top .content.img-right {
    gap: 60px;
}
@media (max-width: 1000px) {
    .page-top .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    .page-top .content.img-right {
        flex-direction: column-reverse;
    }
}

.learning-img {
    width: 500px;
}
@media (max-width: 1000px) {
    .learning-img {
        width: 100%;
        max-width: 500px;
    }
}

.page-top .content div {
    max-width: 700px;
}
@media (max-width: 1000px) {
    .page-top .content div {
        max-width: 100%;
    }
}

.page-top .content h1 {
    font-size: 3em;
    font-weight: var(--rubik-medium);
}

.page-top .content h1 div {
    font-size: 1.3em;
    font-weight: var(--rubik-bold);
}

.page-top .content p {
    margin: 20px auto;
    font-size: 1.4em;
    line-height: 1.4em;
}

.page-top .lets-talk {
    margin-top: 10px;
    display: inline-block;
    font-size: 2em;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-content h2 {
    margin: 60px 40px 40px;
    font-size: 3em;
    text-align: center;
    font-weight: var(--montserrat-bold);
}

.page-content h3,
.page-content h4 {
    font-size: 1.75em;
    font-weight: var(--montserrat-medium);
    margin-bottom: 20px;
}

.page-content p {
    font-size: 1.5em;
    line-height: 1.5em;
}

.content-layout-0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.content-layout-0 p {
    margin: 20px;
    padding: 20px;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    max-width: 1300px;
    text-align: center;
    font-size: 1.3em;
    line-height: 1.4em;
}
/* @media (max-width: 1000px) {
    .content-layout-0 p {
        width: 80%;
    }
} */

.content-layout-1 {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
    margin: 20px;
    padding: 20px;
}

.content-layout-1 p {
    width: 100%;
    max-width: 600px;
}

.content-layout-1 img {
    margin-left: 40px;
}

.content-layout-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1300px;
    margin: 20px;
    padding: 20px;
}

.content-layout-2 div {
    width: calc(100% - 600px);
    padding: 20px;    
}

@media (max-width: 1000px) {
    .content-layout-2 {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .content-layout-2 div {
        width: 80%;
    }
}

.content-layout-2 p,
.content-layout-2 ul {
    font-size: 1.3em;
    line-height: 1.4em;
}

.content-layout-2 ul li {
    margin: 20px 0;
}

.content-layout-3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 20px 20px;
    padding: 0 20px 20px;
    width: 100%;
    max-width: 1300px;
}

.content-layout-3 div {
    width: 30%;
    padding: 20px;
}
@media (max-width: 650px) {
    .content-layout-3 div {
        width: 80%;
    }
}

.content-layout-3 p {
    font-size: 1.25em;
    line-height: 1.4em;
}

footer .partners {
    margin: 40px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .partners h2 {
    color: #0976c2;
    font-size: 3em;
    margin-bottom: 60px;
}

footer .partners .testimonials {
    padding: 20px 40px;
    background-color: #f3f7fb;
    position: relative;
    font-size: 1.5em;
    margin-bottom: 40px;
}
@media (max-width: 1000px) {
    footer .partners .testimonials {
        font-size: 1.25em;
    }
}
@media (max-width: 650px) {
    footer .partners .testimonials {
        padding: 10px;
    }
}


footer .partners .testimonials .swiper {
    max-width: 900px;
    max-height: 400px;
}
@media (max-width: 1000px) {
    footer .partners .testimonials .swiper {
        max-width: 600px;
    }
}
@media (max-width: 650px) {
    footer .partners .testimonials .swiper {
        max-width: 400px;
        max-height: 500px;
    }
}

footer .partners .testimonials .quote-circle {
    background-color: #87b5d8;
    color: white;
    position: absolute;
    left: 120px;
    top: -30px;
    font-size: 3.5em;
    line-height: 1.2em;
    font-family: arial;
    height: 60px;
    width: 60px;
    border-radius: 30px;
    text-align: center;
}

footer .partners .testimonials .swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .partners .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 600px;
    height: 350px;
}
@media (max-width: 1000px) {
    footer .partners .testimonial {
        width: 400px;
    }
}
@media (max-width: 650px) {
    footer .partners .testimonial {
        width: 300px;
        height: 450px;
    }
}

footer .partners .testimonial .quote {
    color: #2894c9;
    font-weight: var(--montserrat-medium);
}

footer .partners .testimonial .person {
    margin-top: 20px;
    color: #1876be;
    font-style: italic;
}

/*
footer .partners .schools {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
}

footer .partners .school {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

footer .partners .school img {
    width: 150px;
    height: 150px;
}

footer .partners .school h3 {
    margin-left: 170px;
    margin-bottom: 10px;
    font-size: 1.6em;
    font-weight: var(--montserrat-medium);
}

footer .partners .school p {
    margin-left: 20px;
    font-size: 1.4em;
}

footer .partners .school .info {
    display: flex;
    justify-content: flex-start;
}
*/

.footer-border-curve {
    margin-bottom: -5px;
    background-color: rgb(222 222 222);
    color: white;
    text-align: center;
}

.footer-border-curve.white-bg {
    background-color: white;
    color: black;
}

.footer-border-curve div {
    margin-top: 40px;
    display: inline-flex;
    flex-direction: column;
}

.footer-border-curve h2 {
    color: #0470b9;
    font-size: 3em;
}
@media (max-width: 650px) {
    .footer-border-curve h2 {
        font-size: 2em;
    }
}

.footer-border-curve .lets-talk {
    align-self: flex-end;
    margin-top: 40px;
    display: inline-block;
    background-color: #0470b9;
    color: white;
    font-size: 2em;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}
@media (max-width: 650px) {
    .footer-border-curve .lets-talk {
        align-self: center;
    }
}

footer .career-section {
    max-width: 900px;
    padding-bottom: 40px;
    align-items: center;
}
@media (max-width: 1000px) {
    footer .career-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

footer .career-section h2 {
    color: #0976c3;
    font-weight: var(--montserrat-medium);
}

footer .career-section h3 {
    color: #20ac4a;
    text-align: left;
    margin-top: 30px;
    font-size: 1.6em;
    line-height: 1.5em;
    font-weight: var(--montserrat-medium);
}

footer .career-section p {
    text-align: left;
    margin: 30px 0;
    font-size: 1.4em;
    line-height: 1.4em;
}

footer .career-section .explore-career {
    background-color: #0976c3;
    color: white;
    margin-top: 20px;
    display: inline-block;
    font-size: 1.75em;
    font-weight: var(--montserrat-medium);
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
}

.footer-bottom {
    background-color: #0470b9;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .content {
    width: 100%;
    max-width: 1300px;
}

.footer-links {
    display: flex;
    align-items: center;
}
@media (max-width: 800px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-links .logo-and-contact {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 60px;
}

.footer-links .logo-and-contact img {
    margin-right: 20px;
}

.footer-links ul {
    list-style-type: none;
    display: block;
    max-width: 550px;
}
@media (max-width: 800px) {
    .footer-links ul {
        text-align: center;
    }
}

.footer-links ul li {
    display: inline-block;
    margin: 10px 20px;
}

.footer-links ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    justify-content: end;
}

.social-media ul {
    list-style-type: none;
    display: block;
}

.social-media ul li {
    display: inline-block;
    margin: 10px 20px;
}

.social-media img {
    max-height: 50px;
}

footer .ferpa {
    padding: 20px 20px 0;
    border-top: 2px solid white;
    margin-top: 20px;
}

footer .ferpa h2 {
    margin-bottom: 20px;
}

footer .ferpa p {
    margin-bottom: 60px;
}

/* Helper Classes */
.flex { display: flex; }
.flex.column { flex-direction: column; }


/* Until new logo is ready */
img[src="img/excelsior_logo.webp"],
img[src="img/excelsior_logo_white.webp"] {
    visibility: hidden;
}
