/*
font-family: lato,sans-serif;
font-weight: 900;
font-style: normal;

font-family: lato,sans-serif;
font-weight: 400;
font-style: normal;

font-family: source-sans-pro,sans-serif;
font-weight: 400;
font-style: normal;

font-family: source-sans-pro,sans-serif;
font-weight: 600;
font-style: normal;
*/

:root {
    --site-white: #ffffff;
    --site-dark: #0e215d;
    --site-highlight: #ffc617;
    --site-text: #414042;
    --site-grey: #e9eaea;

    --section-padding: 50px 0px 50px 0px;
}

body {
    font-family: source-sans-pro,sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    font-style: normal;
    color: var(--site-text);
}

.header-wrapper {
    color: var(--site-white);
    background-color: var(--site-dark);
}


h1 {
    font-family: lato, sans-serif;
    font-size: 24px;
    line-height: 1.28; 
    font-weight: 900;
    margin-top: 12px;
}

h1 span {
    font-weight: 400;
}


h2 {
    font-family : lato,sans-serif;
    font-size : 36px;
    line-height : 1.1;
    font-weight: 900;
    color : var(--site-dark);
}

h3 {
    font-family: source-sans-pro, sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--site-dark);
    margin-top: 20px;
}

p {
    font-family: source-sans-pro, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.subhead {
    font-family: source-sans-pro, sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--site-text);
    margin-top: 15px;
}

.nydot-btn {
    color: var(--site-dark);
    background-color: var(--site-highlight);
    text-transform: uppercase;
    padding: 15px 50px;
}

/* HEADER */

.logo-wrapper img {
    max-width: 197px;
    margin: 17px 0 0 40px;
    padding-right: 25px;
    border-right: 2px solid var(--site-white);
}

.logo-col {
    padding: 25px 0px 0px 0px;
}

.h1-image {
    max-width: 90px;
    float: left;
    margin: 0 10px 0 -22px;
}

h1 br {
    display: none;
}

.nydot-button a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--site-dark);
    background-color: var(--site-highlight);
    padding: 15px 50px;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    margin: 20px auto 0;
    transition: all 0.3s ease-in-out;
}

.nydot-button a:hover {
    background-color: var(--site-grey);
    text-decoration: none;
}

/* NAVBAR */

.navbar {
    height: 100%;
    align-items: flex-end;
    padding: 86px 0px 12px 0px;
}

.navbar > div:first-child {
    justify-content: flex-end;
}

.menu-item .nav-link {
    color: var(--site-white);
    transition: all 0.3s ease-in-out;
}

.menu-item button.nav-link {
    background-color: transparent;
    border: none;
}

.header-wrapper .navbar-expand-xl .navbar-nav .nav-link {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.menu-item .nav-link:hover {
    color: var(--site-highlight);
}

/* HERO */

.hero-wrapper {
    position: relative;
    background-image: url('/assets/Hero-Image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-overlay {
    position: relative;
    width: 298px;
    margin: 0 auto 100px 0;
    background-color: var(--site-dark);
    padding: 15px;
}

.hero-overlay * {
    color: var(--site-white);
}

.hero-overlay:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    border-top: 20px solid var(--site-dark);
    border-bottom: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
}

.hero-overlay h2 {
    font-family: source-sans-pro,sans-serif;
    font-weight: 600;
    font-size: 31px;
    line-height: 1.0;
    text-transform: uppercase;
}

.hero-overlay hr {
    border-color: var(--site-white);
    max-width: 108px;
    margin-left: 0;
    margin-right: auto;
}

.hero-overlay p {
    font-size: 16px;
}

.hero-overlay .month-year {
    margin-bottom: 0;
}

.hero-overlay .month-year,
.hero-overlay .description {
    font-size: 18px;
    font-weight: 600;
}

.hero-overlay-button {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.hero-overlay-button a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--site-dark);
    background-color: var(--site-highlight);
    padding: 7px 50px;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.hero-overlay-button a:hover {
    background-color: var(--site-grey);
    text-decoration: none;
}

.hero-logos {
    width: -moz-fit-content;
    width: fit-content;
    margin: 100px 0 0 auto;
}

.hero-logos img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

/* SECTIONS */

.section-wrapper {
    padding: var(--section-padding);
}

.section-wrapper > *:first-child {
    margin-top: 0;
}

/* SECTION - INCREASE */

.increase-section .section-wrapper {
    text-align: center;
}

/* SECTION - APPLY TODAY */

.apply-section .section-wrapper {
    background-color: var(--site-grey);
    text-align: center;
}

.apply-section .nydot-button a:hover {
    color: var(--site-white);
    background-color: var(--site-dark);
}

/* SECTION - CRITERIA */

.criteria-section .section-wrapper {

}

.criteria-section ul {
    list-style-type: disc;
    margin: 15px 0 15px 30px;
}

.criteria-section ul ul {
    list-style-type: circle;
    width: 100%;
    margin-top: 0;
}

.criteria-section ul ul > li:first-child {
    /* width: 100%; */
}

.criteria-section ul li.nested-list {
    width: 100%;
}

.two-col-wrapper {
    /* column-count: 2;
    -moz-column-fill: balance;
    column-fill: balance; */
}

.criteria-section ul li {
    width: 45%;
    float: left;
    margin: 25px 0 0 0;
}

/* BREAK BANNER */

.break-banner {
    background-color: var(--site-highlight);
    padding: 30px 0;
}

.break-banner span {
    display: block;
    color: var(--site-dark);
    font-weight: 600;
    text-align: center;
}

/* SECTION - SCHEDULE */

.schedule-section .section-wrapper {
    text-align: center;
}

.schedule-section table {
    width: 100%;
    max-width: 782px;
    margin: 50px auto 0;
}

.schedule-section table th,
.schedule-section table td {
    padding: 10px;
    border: 2px solid var(--site-grey);
    text-align: left;
}

.schedule-section table tr > td:first-child {
    text-align: center;
}

.schedule-section table th {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    background-color: var(--site-grey);
    padding: 15px 10px;
}

.schedule-section table td {
    font-weight: 600;
}

.schedule-section .number-column {
    width: 10%;
}

.schedule-section .date-column {
    width: 15%;
}

.schedule-section .time-column {
    width: 20%;
}

/* SECTION - INFRASTRUCTURE */

.infrastructure-section .section-wrapper {
    background-color: var(--site-grey);
}

.apply-today {
    font-size: 24px;
    color: var(--site-text);
    transition: all 0.3s ease-in-out;
}

.apply-today:hover {
    color: var(--site-dark);
    text-decoration: none;
}

/* SECTION - PURSUE */

.pursue-section .section-wrapper {
    text-align: center;
}

.icon-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    margin: auto;
}

.icon-block img {
    display: block;
    max-width: 70px;
    margin: 50px auto 0;
}

/* SECTION - TESTIMONIALS */

.testimonials-section .section-wrapper {
    text-align: center;
    color: var(--site-white);
    background-color: var(--site-dark);
}

.testimonials-section h2 {
    color: var(--site-white);
}

.testimonials-section .fa-quote-left {
    font-size: 45px;
}

.testimonials-section hr {
    border-color: var(--site-white);
    max-width: 582px;
    margin: 3rem auto 3rem auto;
}

.testimonials-section .quote {
    margin-bottom:6px;
}

.testimonials-section .source {
    font-weight: 600;
}

.testimonials-section h2 + p {
    margin-top: 20px;
}

/* SECTION - ABOUT */

.about-section .section-wrapper {
    background-color: var(--site-grey);
    text-align: center;
}

.about-section img {
    display: block;
    max-width: 339px;
    margin: 0 auto 20px;
}

.about-section .bottom-logo {
    max-width: 200px;
    margin: 30px auto 0;
}

/* SECTION - PARTNERS */

.partners-section h2 {
    font-size: 24px;
    color: var(--site-text);
    text-align: center;
    margin-top: 20px;
}

.logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
}

.footer-logo-wrapper img {
    height: auto;
}

.logos-wrapper .footer-logo-wrapper {
    margin: 1.5em 3.7em;
}

.logos-wrapper .footer-logo-1 {
    width: 7.9em;
}

.logos-wrapper .footer-logo-2 {
    width: 10.4em;
}

.logos-wrapper .footer-logo-3 {
    width: 12.4em;
}

.logos-wrapper .footer-logo-4 {
    width: 12.4em;
}

.logos-wrapper .footer-logo-5 {
    width: 16.1em;
}

.logos-wrapper .footer-logo-6 {
    width: 8.56em;
}

.logos-wrapper .footer-logo-7 {
    width: 16.14em;
}

.logos-wrapper .footer-logo-8 {
    width: 6.3em;
}

.logos-wrapper .footer-logo-9 {
    width: 12.7em;
}

.logos-wrapper .footer-logo-10 {
    width: 8.1em;
}

.logos-wrapper .footer-logo-11 {
    width: 17em;
}

/* MENU TOGGLE */

.toggle-col {
    display: flex;
    justify-content: flex-end;
}

.navbar-toggle {
    background-color: transparent;
    border: none;
}

.icon-bar {
    display: block;
    width: 45px;
    height: 7px;
    margin-bottom: 7px;
    background-color: var(--site-white);
}

/* MEDIA QUERIES */

@media only screen and (max-width: 1199px) {

    .header-wrapper {
        padding: 15px 0;
    }

    .outer-logo-col {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .logo-col {
        display: flex;
    }

    .h1-image-wrapper {
        display: flex;
        align-items: center;
    }

    .h1-image {
        margin: 0;
    }

    .logo-wrapper img {
        margin: 0;
    }

    .logo-col {
        padding: 0;
    }

    h1 {
        margin-top: 0;
        margin-left: 15px;
        font-size: 23px;
    }

    h1 br {
        display: inline;
    }

    .navbar {
        padding: 0;
    }

    .menu-item .nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        text-align: center;
        margin: auto;
    }
}

@media only screen and (max-width: 767px) {



    .criteria-section ul li {
        width: 100%;
        float: none;
    }

    .schedule-section table th {
        font-size: 22px;
    }

    .schedule-section table td {
        font-size: 16px;
    }

    .schedule-section .time-column {
        width: 27%
    }
}

@media only screen and (max-width: 575px) {

    .h1-image {
        max-width: 50px;
    }

    h1 {
        font-size: 16px;
    }

    .partners-section .logos-wrapper .footer-logo-wrapper {
        width: 50%;
        margin: 0;
        padding: 1rem;
    }
}