﻿body {
    background-color: rgb(0,2,42);
}

@media(min-width: 600px) {
    .bannerImage {
        width: 100%;
        height: auto;
    }

    .header {
        font-size: 65px;
        color: white;
        padding-top: 57px;
        font-weight: bold;
        text-align: center;
    }
}

@media(max-width: 600px) {
    .bannerImage {
        width: 100vw;
        height: auto;
        padding-top: 75px;
    }

    .header {
        font-size: 35px;
        color: white;
        padding-top: 40px;
        padding-bottom: 40px;
        font-weight: bold;
        text-align: center;
    }
}

@media(min-width: 600px) {
    .teamText {
        margin-left: 10%;
        margin-right: 10%;
        padding-top: 50px;
        padding-bottom: 50px;
        color: white;
        font-size: 20px;
        line-height: 1.5;
    }
}

@media(max-width: 600px) {
    .teamText {
        margin-left: 10%;
        margin-right: 10%;
        padding-bottom: 50px;
        color: white;
        font-size: 100%;
        line-height: 1.5;
        width:80%;
        text-align: justify;
    }
}

.TeamContainer {
    width: 100%;
    text-align: center;
}

.partnerContainer {
    background-color: white;
    padding-bottom: 50px;
}

@media(min-width: 600px) {
    .headerPartner {
        font-size: 65px;
        color: rgb(0,2,42);
        padding-top: 57px;
        font-weight: bold;
        text-align: center;
    }
}

@media(max-width: 600px) {
    .headerPartner {
        font-size: 35px;
        color: rgb(0,2,42);
        padding-top: 40px;
        padding-bottom: 40px;
        font-weight: bold;
        text-align: center;
    }

    .partnerContainer {
        margin-top: 50px;
    }
}

.Partner {
    width: 25%;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 5%;
    vertical-align: top;
}

.TeamMember {
    width: 25%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
}

    .TeamMember img {
        border-radius: 50%;
        width: 100%;
        height: auto;
    }

    .TeamMember .CaptionHeader {
        color: white;
        text-align: center;
        padding-top: 20px;
        font-size: 20px;
    }

    .TeamMember .CaptionTitle {
        color: white;
        text-align: center;
        padding-top: 10px;
        font-size: 15px;
    }

@media only screen and (min-width: 900px) {
    .TeamContainer {
        display: flex;
    }
}

@media only screen and (max-width: 900px) {
    .Partner {
        width: 96%;
    }

    .TeamMember {
        width: 90%;
    }

        .TeamMember .CaptionHeader {
            color: white;
            text-align: center;
            padding-top: 20px;
            font-size: 30px;
        }

        .TeamMember .CaptionTitle {
            color: white;
            text-align: center;
            padding-top: 10px;
            font-size: 15px;
        }
}

.heading-primary {
    font-size: 2em;
    padding: 2em;
    text-align: center;
}

.accordion dl, .accordion-list {
    border: 1px solid rgb(0,2,42);
    margin-block-start: 0;
    margin-block-end: 0;
}

    .accordion dl:after, .accordion-list:after {
        content: "";
        display: block;
        width: 100%;
        background-color: rgb(0,2,42);
    }

.accordion dd, .accordion__panel {
    background-color: rgb(0,2,42);
    font-size: 15px;
    line-height: 1.5em;
    color: white;
    overflow: auto;
}

.accordion p {
    padding-right: 5px;
}

.accordion {
    position: relative;
    background-color: rgb(0,2,42);
}

.accordionContainer {
    max-width: 100%;
    margin: 0 auto;
}

.accordionTitle, .accordion__Heading {
    background-color: rgb(0,2,42);
    text-align: center;
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 5px;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.5s ease-in-out;
    border-bottom: 1px solid rgb(0,2,42);
}

    .accordionTitle:before, .accordion__Heading:before {
        content: "+";
        font-size: 1.5em;
        /*line-height: 0.5em;*/
        float: left;
        transition: transform 0.3s ease-in-out;
    }

    .accordionTitle:hover, .accordion__Heading:hover {
        background-color: rgb(0,2,42);
    }

    .accordionTitleActive, .accordionTitle.is-expanded {
        background-color: rgb(0,2,42);
    }

        .accordionTitleActive:before, .accordionTitle.is-expanded:before {
            transform: rotate(-225deg);
        }

.accordionItem {
    height: auto;
    overflow: hidden;
    max-height: 50em;
    transition: max-height 1s;
}

@media only screen and (max-width: 900px) {
    .accordionTitle, .accordion__Heading {
        font-size: 15px;
    }

    .accordion dd, .accordion__panel {
        font-size: 12px;
        text-align: justify;
    }

    .accordion p {
        padding: 1em 3em 1em 0em;
    }
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: 15em;
        transition: max-height 0.5s;
    }
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: auto;
}

.animateIn {
    animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
    animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
    }
}