/*
Theme name: Hagerstown Aviation Museum
Author: Jared Muller
*/

body {
    font-family: 'Sora', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #22315D;
    background-color: #F6F6F6;
}

.h1 {
    font-size: 2rem;
    font-family: "Source Serif Pro", serif;
    margin: 10px 0;
}

.h2 {
    font-size: 1.5em;
    font-family: "Source Serif Pro", serif;
    margin: 10px 0;
}

.h3 {
    font-size: 1.25rem;
    font-family: "Source Serif Pro", serif;
}

.hide {
    display: none;
}

.tab-title.active {
    background-color: unset;
    color: #B1222D;
    border: none;
    border-bottom: 2px solid #B1222D;
}

.tab-title-container {
    display: grid;
    grid-template-columns: 30% 30%;
    grid-column-gap: 80px;
    justify-content: center;
    margin-top: 50px;
}

.tab-title {
    cursor: pointer;
    justify-self: left;
}

.tab-title:first-of-type {
    justify-self: end;
}

.post-title {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

article.post {
    padding: 30px 20px;
    max-width: 1000px;
    margin: auto;
}

.entry-content p {
    line-height: 1.5;
}

/*  ==========  STYLES FOR HEADER  ========== */

.skipLink {
    width: 1px;
    height: 1px;
    position: absolute;
    left: -5000px;
    top: auto;
    overflow: hidden;
}

.skipLink:focus {
    position: static;
    width: auto;
    height: auto;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
}

.header-logo {
    width: 150px;
    height: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: #22315D;
    margin: 10px 15px;
    font-size: 0.9em;
    transition: color 0.5s, font-weight 0.3s;
}

.nav-link-active {
    color: #B1222D;
    border-bottom: #B1222D solid 2px;
}

.nav-link:hover {
    color: #B1222D;
    font-weight: 600;
    /*border-bottom: #B1222D solid 2px;*/
}

.bolder {
    font-weight: 700;
}

.nav-arrow {
    width: 13px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F6F6F6;
    min-width: 140px;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 5;
    padding-top: 10px;
    border-radius: 2px;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-content2 {
    display: block;
    background-color: #e1e1e1;
    min-width: 140px;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    padding: 0 10px;
    border-radius: 2px;
}

.header-donate-btn {
    background-color: #B1222D;
    border: none;
    padding: 7px 21px;
    border-radius: 7px;
}

.header-donate-btn.yellow {
    background-color: #FBAF17;
    margin-right: 10px;
}

.header-donate-btn a {
    text-decoration: none;
    color: white;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.4em;
}

.mobile-menu {
    display: none;
}

.hamburger-icon {
    width: 25px;
    cursor: pointer;
}

.mobile-menu-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #F6F6F6;
    min-width: 140px;
    z-index: 10;
    padding: 10px 10px 15px 10px;
    border-radius: 2px;
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.1);
    animation: fadein 0.3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-menu:hover .mobile-menu-content {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1000px) {
    .nav-link {
        font-size: 1em;
        margin: 15px 8px;
    }

    .header-logo {
        width: 110px;
    }

    .header-donate-btn a {
        font-size: 1em;
    }
}

@media screen and (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    .nav-container {
        display: none;
    }

    .header-container {
        justify-content: space-between;
        width: 90%;
        margin: auto;
    }

    .hamburger-icon {
        padding-right: 15px;
    }
}

@media screen and (max-width: 500px) {
    .header-donate-btn {
        display: none;
    }

    .mobile-menu-content {
        width: 100%;
        box-sizing: border-box;
    }
}


/*  ==========  STYLES FOR ANNOUNCEMENT BAR  ========== */

.announcement-bar {
    background-color: #FBAF17;
    padding: 12px 0;
    width: 100%;
}

.announcement-bar-text {
    margin: 0;
    text-align: center;
    display: block;
    color: #22315D;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
}



/*  ==========  STYLES FOR SLIDER  ========== */

.imgAddRemoveBtn {
    display: none;
}

.imgSliderSlide {
    display: none;
}

.imgSliderSlide>img {
    width: 100%;
    height: 37vw;
    /* min-height:  50px;
    max-height:  400px; */
    vertical-align: middle;
}

.imgSliderSlide>a>img {
    width: 100%;
    /*min-height: auto;
    max-height: auto; */
    vertical-align: middle;
}

.imgSliderSlider {
    /* max-width: 50px;
    min-height: 100%; */
    position: relative;
    margin: auto;
    overflow: hidden;
}

.imgSliderTextContainer {
    position: absolute;
    margin: 0 auto;
    bottom: 30%;
    right: 7%;
    width: 23%;
    display: block;
}

.imgSliderHeader {
    font-family: 'Source Serif Pro', serif;
    font-size: 3.5em;
    font-weight: 600;
    position: relative;
    color: white;
    margin: 0;
}

.imgSliderText {
    color: white;
    font-family: 'Sora', Arial, sans-serif;
    font-size: 1.8em;
    font-weight: 300;
    position: relative;
    margin: 10px 0 30px 0;
}

.imgSliderBtn {
    position: relative;
    text-align: center;
    font-family: 'Source Serif Pro', serif;
    background-color: #FBAF17;
    border: none;
    padding: 10px 16px;
    border-radius: 7px;
}

.imgSliderBtn a {
    text-decoration: none;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.2em;
}

.imgSliderTextContainer2 {
    position: absolute;
    margin: 0 auto;
    bottom: 30%;
    width: 100%;
    display: block;
    text-align: center;
}

.imgSliderHeader2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 3.5em;
    font-weight: 600;
    position: relative;
    color: white;
    margin: 0;
}

.imgSliderText2 {
    color: white;
    font-family: 'Sora', Arial, sans-serif;
    font-size: 1.8em;
    font-weight: 300;
    position: relative;
    margin: 10px 0 30px 0;
}

.imgSliderBtn2 {
    position: relative;
    text-align: center;
    font-family: 'Source Serif Pro', sans-serif;
    font-weight: 600;
    font-size: 1em;
    color: #22315D;
    background-color: #FBAF17;
    border: none;
    padding: 10px 16px;
    border-radius: 7px;
}

.imgSliderBtn2 a {
    text-decoration: none;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.4em;
}

.imgSliderPrev {
    position: absolute;
    bottom: 43%;
    left: 0%;
    padding: 12px 12px 12px 12px;
    margin: auto;
    border-radius: 0 15px 15px 0;
    color: white;
    filter: drop-shadow(0 0 0.1rem black);
}

.imgSliderNext {
    position: absolute;
    bottom: 43%;
    right: 0%;
    padding: 12px 9px 12px 12px;
    margin: auto;
    border-radius: 15px 0 0 15px;
    color: white;
    filter: drop-shadow(0 0 0.1rem black);
}

@media only screen and (max-width: 1090px) {
    .imgSliderTextContainer {
        bottom: 25%;
        right: 9%;
        width: 30%;
    }

    .imgSliderHeader {
        font-size: 2.5em;
    }

    .imgSliderText {
        font-size: 1.2em;
        margin: 5px 0 15px 0;
    }

    .imgSliderText2 {
        font-size: 1.6em;
    }

    .imgSliderBtn {
        font-size: 0.7em;
        padding: 8px 14px;
    }
}

@media only screen and (max-width: 950px) {
    .imgSliderNext {
        bottom: 40%
    }

    .imgSliderPrev {
        bottom: 40%;
    }

    .imgSliderText2 {
        font-size: 1.2em;
        margin: 5px 0 20px 0;
    }

    .imgSliderHeader2 {
        font-size: 2.9em;
    }

    .imgSliderTextContainer2 {
        bottom: 25%;
    }
}

@media only screen and (max-width: 725px) {
    .imgSliderHeader2 {
        font-size: 2.2em;
    }

    .imgSliderText2 {
        font-size: 1em;
        margin: 0 0 15px 0;
    }

    .imgSliderBtn {
        padding: 5px 10px;
    }
}

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

    .imgSliderPrev {
        bottom: 35%
    }

    .imgSliderNext {
        bottom: 35%
    }

    .imgSliderTextContainer {
        bottom: 25%;
        right: 9%;
        width: 30%;
    }

    .imgSliderHeader {
        font-size: 1.7em;
    }

    .imgSliderText {
        font-size: 0.8em;
        margin: 5px 0 15px 0;
    }

    .imgSliderBtn {
        font-size: 0.6em;
        padding: 6px 11px;
    }
}

@media only screen and (max-width: 525px) {
    .imgSliderHeader2 {
        font-size: 2em;
    }

    .imgSliderText2 {
        font-size: 0.9em;
        margin: 0 0 10px 0;
    }

    .imgSliderBtn {
        padding: 5px 10px;
    }
}

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

    .imgSliderSlide>img {
        height: 42vw;
    }

    .imgSliderPrev {
        bottom: 30%
    }

    .imgSliderNext {
        bottom: 30%
    }

    .imgSliderText {
        margin: 0 0 7px 0;
    }

    .imgSliderTextContainer {
        right: 10%;
    }

    .imgSliderHeader2 {
        font-size: 1.7em;
    }
}


.imgSliderPrev:hover,
.imgSliderNext:hover {
    background-color: rgba(0, 0, 0, 0.10);
    cursor: pointer;
}

.imgSliderPrev,
.imgSliderNext {
    display: block;
    font-size: 3em;
}

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

    .imgSliderPrev,
    .imgSliderNext {
        display: block;
        font-size: 2.2em;
    }
}


.imgSliderDotContainer {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: 10%;
    display: block;
}

.imgSliderDotContainer>ul {
    list-style: none;
}

.imgSliderDotContainer>ul>li {
    display: inline;
}

.imgSliderDot {
    height: 20px;
    width: 20px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid white;
    transition: background-color 0.6s ease;
}

@media only screen and (max-width: 950px) {
    .imgSliderDot {
        height: 15px;
        width: 15px;
    }

    .imgSliderDotContainer {
        bottom: 8%;
    }
}

@media only screen and (max-width: 600px) {
    .imgSliderDot {
        height: 10px;
        width: 10px;
    }

    .imgSliderDotContainer {
        bottom: 5%;
    }
}

@media only screen and (max-width: 450px) {
    .imgSliderDot {
        height: 8px;
        width: 8px;
    }
}

.imgSliderDot:hover {
    cursor: pointer;
}

.activeSlide {
    display: block;
}

.active {
    background-color: #B1222D;
    border: 1px solid #B1222D;
}

/* .fade {
        -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s; 
} */

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


/*  ==========  STYLES FOR EVENT INFO SECTION  ========== */

.events-getInvolved-container {
    display: block;
    padding: 30px;
}

.events-getInvolved-title {
    display: grid;
    grid-template-columns: 30% 30%;
    grid-column-gap: 80px;
    justify-content: center;
}

#events {
    cursor: pointer;
    justify-self: end;
}

#involved {
    cursor: pointer;
    justify-self: baseline;
}

.active-title {
    color: #B1222D;
    border-bottom: #B1222D solid 2px;
}

.upcomingEvents-container {
    display: block;
    text-align: center;
}

.upcomingEvents-text {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 80px;
    justify-content: center;
}

.upcomingEvents-text-left {
    color: #22315D;
    text-align: right;
    line-height: 30px;
}

.upcomingEvents-text-right {
    color: #22315D;
    text-align: left;
    line-height: 30px;
}

.upcomingEvents-btn {
    background-color: #FBAF17;
    border: none;
    text-align: center;
    padding: 9px 14px;
    border-radius: 7px;
    margin: 15px auto 30px auto;
}

.upcomingEvents-btn a {
    text-decoration: none;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.4em;
}

.getInvolved-items-container {
    display: none;
    grid-template-columns: 25% 25% 25%;
    justify-content: center;
    margin-top: 1%;
}

.getInvolved-item {
    text-align: center;
    margin: 10px 20px;
}

.getInvolved-item h2 {
    font-family: 'Source Serif Pro', serif;
    letter-spacing: 0.05ch;
}

@media screen and (max-width: 1000px) {
    .getInvolved-items-container {
        grid-template-columns: 33% 33% 33%;
    }
}

@media screen and (max-width: 750px) {
    .getInvolved-items-container {
        grid-template-columns: 33% 33% 33%;
    }
}

@media screen and (max-width: 650px) {
    .events-getInvolved-title {
        grid-column-gap: 20px;
        grid-template-columns: 45% 45%;
    }

    .upcomingEvents-text {
        grid-column-gap: 15px;
        grid-template-columns: 55% 45%;
    }

    .events-getInvolved-container {
        padding: 30px 0;
    }

    .getInvolved-items-container {
        grid-template-columns: 45% 45%;
    }

    .spanned {
        grid-column: 2 span / 3;
        width: 65%;
        justify-self: center;
    }
}

@media screen and (max-width: 500px) {
    .events-getInvolved-title {
        grid-template-columns: 55% 45%;
    }

    .upcomingEvents-text {
        grid-template-columns: 50% 50%;
    }

    .getInvolved-items-container {
        grid-template-columns: 80%;
    }

    .spanned {
        grid-column: 1;
        width: 80%;
    }
}

@media screen and (max-width: 375px) {
    .upcomingEvents-text {
        font-size: 0.8em;
    }

    .upcomingEvents-text-left {
        line-height: 23px;
    }

    .upcomingEvents-text-right {
        line-height: 23px;
    }

    .events-getInvolved-title {
        font-size: 0.9em;
    }

    .upcomingEvents-btn {
        font-size: 0.7em;
    }
}


/* ==========  STYLES FOR CLOUDS/PLANE SECTION  ========== */

.plane-container {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.clouds-img {
    width: 100%;
    margin-top: -3px;
    filter: drop-shadow(4px 7px 3px rgba(0, 0, 0, .4));
}

.plane-static {
    width: 160px;
    padding: 0 0 25px 650px;
}

.plane-animated {
    display: block;
    width: 180px;
    padding: 100px 25px 100px 0;
    transform: translate(90vw, 150px) rotate(0deg);
    transition: all 2s ease-in;
}

.plane-animated.move {
    transform: translate(-225px, -25px) rotate(2deg);
}

.hangar-outline-img {
    width: 100%;
    margin-bottom: -8px;
    filter: drop-shadow(4px -3px 2px rgba(0, 0, 0, .4));
}

@media screen and (max-width: 900px) {
    .plane-animated {
        padding: 50px;
        width: 200px
    }

    .plane-static {
        padding: 25px 0 75px 450px;
    }
}

@media screen and (max-width: 650px) {
    .plane-static {
        padding: 25px 0 75px 325px;
    }
}

@media screen and (max-width: 500px) {
    .plane-animated {
        padding: 30px 0;
        width: 70px;
        transform: translate(81vw, 40px) rotate(0deg);
    }

    .plane-animated.move {
        transform: translate(-100px, -35px) rotate(5deg);
    }

    .plane-static {
        padding: 0 0 10px 250px;
        width: 75px;
    }
}


/*  ==========  STYLES FOR LEARN MORE SECTION  ========== */

.learn-container {
    background-color: #22315D;
}

.learn-title {
    display: grid;
    grid-template-columns: 20% 275px auto;
}

.line-top-L {
    height: 5px;
    border-radius: 0 4px 4px 0;
    margin: 18px 0;
    background-color: #FBAF17;
    width: 70%;
}

.line-middle-L {
    height: 5px;
    border-radius: 0 4px 4px 0;
    margin: 18px 0;
    background-color: #FBAF17;
    width: 80%;
}

.line-bottom-L {
    height: 5px;
    border-radius: 0 4px 4px 0;
    margin: 18px 0;
    background-color: #FBAF17;
    width: 90%;
}

.learn-text {
    font-family: 'Source Serif Pro', serif;
    color: white;
    letter-spacing: 0.1ch;
}

.learn-text-top {
    margin: 5px 0 5px -25px;
}

.learn-text-bottom {
    margin: 5px 0 5px 0;
}

.line-top-R {
    height: 5px;
    border-radius: 4px;
    margin: 18px 0 18px -50px;
    background-color: #FBAF17;
    max-width: 95%;
}

.line-middle-R {
    height: 5px;
    border-radius: 4px;
    margin: 18px 0 18px -10px;
    background-color: #FBAF17;
    max-width: 95%;
}

.line-bottom-R {
    height: 5px;
    border-radius: 4px;
    margin: 18px 0 18px 20px;
    background-color: #FBAF17;
    max-width: 95%;
}

.learn-inner {
    display: grid;
    grid-template-columns: 45% 45%;
    padding: 8% 0 8% 0;
    /* column-gap: 80px; */
    justify-content: center;
}

.learn-left {
    display: flex;
    justify-content: end;
    align-items: center;
}

.learn-left div {
    background-color: #F6F6F6;
    border-radius: 8px 8px 5px 5px;
}

.guy-in-hangar-img {
    margin-right: -1px;
    max-width: calc(100% + 1px);
}

.learn-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-left: 8%;
}

.learn-right-both {
    background-color: #F6F6F6;
    display: flex;
    border-radius: 8px;
    /* width: 80%; */
    max-width: 500px;
}

.learn-right-both img {
    max-width: 80%;
}

.learn-right-article-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.learn-article-title {
    font-weight: 300;
    margin: 20px
}

.learn-article-date {
    font-family: 'Source Serif Pro', serif;
    color: #C4C4C4;
    font-size: 0.8em;
    font-weight: 600;
    margin: 10px 20px 20px 20px;
}

.learn-logos {
    grid-column: 2;
    justify-self: center;
    margin-top: 12%;
}

.learn-logos img {
    padding: 0 10px
}

@media screen and (min-width: 1400px) {
    .learn-right-both img {
        max-width: 85%;
    }
}

@media screen and (max-width: 1250px) {
    .learn-right-both img {
        max-width: 65%;
    }
}

@media screen and (max-width: 1050px) {
    .learn-right-both img {
        max-width: 55%;
    }

    .line-bottom-R {
        margin-right: 10px;
        margin-left: 10px;
    }

    .line-middle-R {
        margin-left: -20px;
    }
}

@media screen and (max-width: 920px) {
    .learn-right-both img {
        max-width: 55%;
    }

    .learn-article-title {
        margin: 15px 15px 0 15px;
        font-size: 0.8em;
    }

    .learn-article-date {
        font-size: 0.6em;
    }

    .learn-text-bottom {
        margin-left: 5px;
    }

    .learn-text-top {
        margin-left: -20px;
    }
}

@media screen and (max-width: 850px) {
    .learn-right-both img {
        max-width: 55%;
    }
}

@media screen and (max-width: 650px) {
    .learn-inner {
        display: flex;
        width: 90%;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        padding: 10% 0 15% 0;
    }

    .learn-right {
        padding-left: 0;
        margin-top: 50px;
    }

    .learn-right-both {
        margin-bottom: 30px;
    }

    .learn-logos {
        text-align: center;
    }
}

@media screen and (max-width: 525px) {
    .line-top-L {
        width: 55%;
    }

    .line-middle-L {
        width: 70%;
    }

    .line-bottom-L {
        width: 85%;
    }

    .line-top-R {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .line-middle-R {
        margin-left: 7px;
        margin-right: 0;
        max-width: 100%;
    }

    .line-bottom-R {
        margin-left: 15px;
        margin-right: 0;
        max-width: 100%;
    }

    .learn-text {
        font-size: 0.9em;
        line-height: 27px;
        margin-top: 10px;
    }

    .learn-text-top {
        /* margin-left: -10px; */
        margin-left: 20px;
    }

    .learn-title {
        grid-template-columns: 20% 250px auto;
        padding-top: 15px;
    }
}

@media screen and (max-width: 375px) {
    .learn-title {
        grid-template-columns: 20% 225px auto;
        padding-top: 25px;
    }

    .learn-text {
        font-size: 0.8em;
    }

    .line-top-R {
        margin: 18px 0px 18px 0;
        border-radius: 4px 0 0 4px;
    }

    .line-middle-R {
        margin: 18px 0px 18px 10px;
        border-radius: 4px 0 0 4px;
    }

    .line-bottom-R {
        margin: 18px 0px 18px 20px;
        border-radius: 4px 0 0 4px;
    }

}




/*  ==========  STYLES FOR FEATURED EXHIBIT SECTION  ========== */

.featured-exhibit-container {
    display: grid;
    grid-template-columns: 60% 40%;
    padding-bottom: 110px;
}

.tank-img {
    margin-top: -40px;
    width: 90%;
}

.featured-exhibit-text {
    width: 80%;
}

.featured-exhibit-heading {
    font-family: 'Source Serif Pro', serif;
    margin: 70px auto 30px auto;
    letter-spacing: 0.1ch;
}

.featured-exhibit-text p {
    line-height: 2.3ch;
}

.featured-exhibit-btn {
    background-color: #FBAF17;
    border: none;
    padding: 9px 14px;
    border-radius: 7px;
    margin: 15px auto 30px auto;
}

.featured-exhibit-btn a {
    text-decoration: none;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.4em;
}


/*  ==========  STYLES FOR EMAIL SIGNUP SECTION  ========== */

.yellow-spacer {
    background-color: #FBAF17;
    height: 25px;
}

.vip-list-container {
    display: grid;
    grid-template-columns: 50% 50%;
}

.vip-list-info {
    width: 75%;
    margin: 10px auto 30px auto;
}

.vip-list-heading {
    font-family: 'Source Serif Pro', serif;
    margin: 30px auto 20px auto;
    letter-spacing: 0.1ch;
}

.vip-signupForm {
    width: 80%;
    margin: auto;
}

#vipListEmail {
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    width: 70%;
    margin-right: 2%;
}

#vipListEmail::placeholder {
    color: #C4C4C4;
    letter-spacing: 0.2ch;
}

.vip-signupForm-btn {
    background-color: #B1222D;
    border: none;
    padding: 12px 14px;
    border-radius: 7px;
}

.vip-signupForm-btn a {
    text-decoration: none;
    color: #F6F6F6;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1em;
}

@media screen and (max-width: 1100px) {
    #vipListEmail {
        width: 90%;
        margin: 0 2% 10px 0;
    }
}

@media screen and (max-width: 1000px) {
    .featured-exhibit-container {
        grid-template-columns: 55% 45%;
        padding-bottom: 100px;
    }

    .featured-exhibit-text {
        width: 90%
    }

    .vip-list-info {
        width: 85%;
        /* margin-left: 30px; */
    }
}

@media screen and (max-width: 800px) {
    .featured-exhibit-heading {
        margin: 60px auto 15px auto;
    }

    .vip-list-container {
        grid-template-columns: 55% 45%;
    }

    .featured-exhibit-container {
        grid-template-columns: 100%;
        justify-items: center;
        padding-bottom: 40px;
    }

    .tank-img {
        margin: 30px auto 0 auto;
        width: 85%;
    }

    .featured-exhibit-img {
        text-align: center;
    }

    .featured-exhibit-text {
        width: 85%;
    }
}

@media screen and (max-width: 700px) {
    .vip-list-container {
        grid-template-columns: 100%;
    }

    .vip-list-info {
        margin-bottom: 10px;
    }

    .vip-signupForm {
        width: 90%;
        margin-bottom: 30px;
        margin-left: 8%;
    }

    #vipListEmail {
        width: 50%;
    }
}


/*  ==========  STYLES FOR FOOTER  ========== */

.footer-container {
    background-color: #081439;
    color: #F6F6F6;
    padding: 60px 0;
    text-align: center;
}

.footer-container h2 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    letter-spacing: 0.1ch;
}

.footer-container p {
    font-weight: 200;
}

.copyright-container {
    text-align: center;
    color: #B1222D;
    font-weight: 300;
    padding: 15px 0 5px 0;
}

.copyright-container a {
    color: #B1222D;
}

.copyright-container p {
    margin-top: 5px;
}

@media screen and (max-width: 600px) {
    .footer-container {
        padding: 40px 0;
    }
}

@media screen and (max-width: 450px) {
    .footer-container h2 {
        font-size: 1.05em;
    }

    .footer-container p {
        font-size: 0.8em;
    }

    .copyright-container p {
        font-size: 0.7em;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "OUR BOARD" PAGE   ========== 
    ========== ========== ========== ========== */


/* the top section with the plane is reused from the home page: .plane-container */

.directors-container {
    background-color: #22315D;
    padding: 50px 30px;
}

.directors-heading {
    font-size: 3em;
    text-align: center;
    color: #F6F6F6;
    font-family: 'Source Serif Pro', serif;
    letter-spacing: 0.1ch;
}

.directors-subheading {
    font-size: 2em;
    text-align: center;
    color: #F6F6F6;
    font-family: 'Source Serif Pro', serif;
    letter-spacing: 0.1ch;
    margin: 60px auto 0 auto;
    font-weight: 500;
}

.directors-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 80%;
    margin: 50px auto 0 auto;
    padding-left: 8vw;
}

.director-item {
    display: flex;
    margin: 40px 0;
}

.director-item-img {
    width: 150px;
    height: 150px;
    padding: 0 50px 0 25px;
    align-self: center;
}

.director-item-text {
    justify-self: flex-start;
    color: white;
}

.director-item-text h2 {
    font-family: 'Source Serif Pro', serif;
    letter-spacing: 0.1ch;
    margin-top: 15px;
}

.director-item-text p {
    font-weight: 200;
}

@media screen and (max-width: 975px) {
    .director-item-img {
        width: 110px;
        height: 110px;
        padding: 0 30px 0 15px;
    }
}

@media screen and (max-width: 800px) {
    .director-item-img {
        width: 150px;
        height: 150px;
        padding: 0 20px 0 15px;
    }

    .director-item-text h2 {
        letter-spacing: 0.1ch;
        margin-bottom: 0;
        font-size: 1.1em;
    }

    .director-item-text p {
        font-size: 0.8em;
    }

    .directors-grid {
        padding-right: 0;
    }

    .directors-heading {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 600px) {
    .directors-grid {
        grid-template-columns: 100%;
        margin-top: 30px;
        padding-left: 0;
        width: 95%;
    }

    .director-item {
        margin: 25px 0;
    }

    .directors-heading {
        font-size: 2em;
    }

    .directors-subheading {
        font-size: 1.25em;
    }
}

@media screen and (max-width: 375px) {
    .directors-container {
        padding: 40px 20px 50px 20px;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "ABOUT US" PAGE   ========== 
    ========== ========== ========== ========== */


/* the top section with the plane is reused from the home page: .plane-container */

.about-us-heading {
    position: absolute;
    left: 16%;
    z-index: 1;
    font-family: 'Source Serif Pro', serif;
    font-size: 2.9em;
    letter-spacing: 0.07ch;
    margin-top: 1.3vw;
}

.about-text-container {
    width: 65%;
    margin: 80px auto 80px auto;
    text-align: center;
    line-height: 30px;
}

.about-text-small {
    font-size: 0.6em;
    line-height: 18px;
}

.about-ourTeam-header h3 {
    text-align: center;
    color: #B1222D;
    margin-bottom: 0;
}

.ourTeam-container {
    display: block;
}

.ourTeam-grid {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    width: 90%;
    margin: 30px auto 0 auto;
}

.ourTeam-item {
    margin: 40px auto;
}

.ourTeam-item-img {
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
}

.ourTeam-item-text {
    justify-self: flex-start;
    color: #22315D;
    text-align: center;
}

.ourTeam-item-text h2 {
    font-family: 'Source Serif Pro', serif;
    letter-spacing: 0.1ch;
    margin-top: 15px;
}

.ourTeam-item-text p {
    font-weight: 200;
}

.ourVolunteer-container {
    display: none;
}

.ourVolunteer-grid {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    margin: 40px 0 55px 0;
    padding-right: 15px;
}

#team {
    cursor: pointer;
    justify-self: end;
}

#volunteers {
    cursor: pointer;
    justify-self: baseline;
}

@media screen and (max-width: 1100px) {
    .about-us-heading {
        font-size: 2.5em;
        left: 15%;
        margin-top: 0;
    }
}

@media screen and (max-width: 975px) {
    .ourTeam-grid {
        width: 100%;
        max-width: 1100px;
    }
}

@media screen and (max-width: 800px) {
    .ourTeam-item-img {
        width: 90px;
        height: 90px;
        padding: 0 20px 0 15px;
    }

    .ourTeam-item-text h2 {
        letter-spacing: 0.1ch;
        margin-bottom: 0;
        font-size: 1.1em;
    }

    .ourTeam-item-text p {
        font-size: 0.8em;
    }

    .ourTeam-grid {
        padding-right: 0;
    }

    .about-us-heading {
        font-size: 2em;
        left: 14%;
    }
}

@media screen and (max-width: 650px) and (min-width: 600px) {
    .ourTeam-container {
        padding: 0 20px;
    }

    .about-us-heading {
        font-size: 1.5em;
        left: 15%;
    }
}

@media screen and (max-width: 600px) {
    .ourTeam-grid {
        grid-template-columns: 100%;
        margin-top: 30px;
    }

    .ourTeam-item {
        margin: 25px 0;
    }

    .about-us-heading {
        font-size: 1.2em;
    }

    .ourVolunteer-grid {
        grid-template-columns: 33% 33% 33%;
    }

    .about-text-container {
        width: 85%;
    }

    .ourTeam-item-img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 400px) {
    .about-us-heading {
        font-size: 1em;
    }

    .ourVolunteer-grid {
        grid-template-columns: 50% 50%;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "LOCATION" PAGE   ========== 
    ========== ========== ========== ========== */


/* the top section with the plane is reused from the home page: .plane-container */

.directions-container {
    padding: 50px;
}

.directions-item-heading {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.8em;
    margin: 25px 0 10px 75px;
    letter-spacing: 0.08ch;
}

.directions-item-address {
    margin: 0 0 80px 75px;
    font-size: 1.6em;
}

.directions-item-text {
    margin: 25px 0 10px 100px;
    letter-spacing: 0.08ch;
    margin-bottom: 80px;
    width: 80%;
}

.location-map {
    width: 100%;
}

.location-map img {
    width: 100%;
}

@media only screen and (max-width: 750px) {
    .directions-item-heading {
        margin-left: 5%;
    }

    .directions-item-text {
        margin-left: 6%;
    }

    .directions-item-address {
        margin-left: 6%;
    }

    .directions-container {
        width: 90%;
        margin: auto;
        padding: 0;
    }
}

@media only screen and (max-width: 450px) {
    .directions-item-text {
        margin: 25px auto 55px auto;
        width: 90%;
    }

    .directions-item-heading {
        margin: 45px auto 10px auto;
        width: 95%;
    }

    .directions-item-address {
        font-size: 1.2em;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "CONTACT US" PAGE   ========== 
    ========== ========== ========== ========== */


/* the top section with the plane is reused from the home page: .plane-container */

.contact-container {
    background-color: #22315D;
    padding: 0 40px 40px 40px;
}

.contact-header {
    text-align: left;
    padding-left: 13%;
    color: white;
    margin-top: 0;
    font-family: 'Source Serif Pro', serif;
    font-size: 3em;
    letter-spacing: 0.1ch;
}

.contact-content {
    display: flex;
    margin: 100px auto 100px auto;
    padding: 0 50px;
    justify-content: space-evenly;
}

.contact-text {
    color: white;
    /* padding: 0 100px 50px 50px; */
    max-width: 550px;
}

.contact-text p {
    font-weight: 200;
    margin-bottom: 50px;
}

.contact-text h2 {
    font-family: 'Source Serif Pro', serif;
}

.contact-text h3 {
    font-weight: 500;
}

.contact-form-container {
    text-align: end;
    width: 35%;
    padding-top: 20px;
}

.contactForm-form p {
    margin: 0px 5px 5px 5px;
}

.contactForm-form label {
    color: white;
}

.contactForm-form textarea {
    font-family: sans-serif;
}

.form-input-small {
    background: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    width: 40%;
    margin: 10px 0;
}

.contactForm-btn {
    background-color: #FBAF17;
    border: none;
    padding: 9px 14px;
    border-radius: 7px;
    margin: 0 auto 5px auto;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
    font-size: 1.2em;
    cursor: pointer;
}

.form-success {
    color: #4c7d19;
}

.form-error {
    color: red;
    width: 75%;
    font-weight: 700;
}

.email-wrapper {
    background-color: lightgray;
    padding: 30px;
}

.email-logo {
    height: 5vw;
    max-height: 50px;
}


@media screen and (max-width: 1125px) {
    .contact-text {
        max-width: 400px;
    }
}

@media screen and (max-width: 1050px) {
    .contact-header {
        font-size: 2.5em;
        padding-left: 11%;
    }
}

@media screen and (max-width: 850px) {
    .contact-text {
        max-width: 325px;
    }

    .contact-content {
        padding: 0;
    }

    .contact-container {
        padding: 0 20px 40px 20px;
    }
}

@media screen and (max-width: 775px) {
    .contact-header {
        font-size: 2em;
        padding-left: 8%;
    }

    .contact-content {
        padding: 0;
    }
}

@media screen and (max-width: 700px) {
    .contact-content {
        flex-wrap: wrap;
        padding: 0 30px;
    }

    .contact-form {
        text-align: left;
    }

    .contact-text p {
        font-size: 0.9em;
        font-weight: 200;
    }
}

@media screen and (max-width: 600px) {
    .contact-header {
        font-size: 1.8em;
        padding-left: 4%;
        padding-top: 50px;
    }

    .contact-form-container {
        width: 80%;
        text-align: left;
    }

    .contact-text {
        width: 80%;
    }
}

@media screen and (max-width: 450px) {
    .contact-content {
        padding: 0 5px;
    }
}

@media screen and (max-width: 375px) {
    .contact-container {
        padding: 0 25px 25px 25px;
    }

    .form-input {
        width: 65%;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "GET INVOLVED" PAGE   ========== 
    ========== ========== ========== ========== */

/* the top section with the plane is reused from the home page: .plane-container */

.getInvolved-container {
    padding: 0 20px 30px 20px;
    background-color: #22315D;
}

.getInvolved-header {
    text-align: left;
    color: #F6F6F6;
    font-family: 'Source Serif Pro', serif;
    margin-top: 0;
    font-size: 3em;
    padding-left: 12%;
}

.getInvolved-tiles-container {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    justify-content: center;
    margin: 70px auto 50px auto;
    max-width: 1300px;
}

.getInvolved-tile {
    text-align: center;
    padding: 20px 15px;
    margin: 20px;
    color: #F6F6F6;
    background-color: #081439;
    border-radius: 5px;
    max-width: 350px;
}

.getInvolved-tile h2 {
    font-family: 'Source Serif Pro', serif;
    margin-bottom: 5px;
    font-size: 2em;
}

.getInvolved-tile-btn {
    background-color: #FBAF17;
    border: none;
    padding: 9px 14px;
    border-radius: 7px;
    margin: 15px auto 15px auto;
}

.getInvolved-tile-btn a {
    text-decoration: none;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.4em;
}

.amazonSmile-container {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 100px 11%;
}

.amazonSmile-container p {
    font-size: 1.2em;
    max-width: 350px;
    margin-right: 40px;
    align-self: center;
}

.amazonSmile-img {
    width: 350px;
    height: 95px;
}

@media screen and (max-width: 900px) {
    .getInvolved-tiles-container {
        grid-template-columns: 50% 50%;
    }

    .spanned2 {
        grid-column: 2 span / 3;
        width: 65%;
        justify-self: center;
    }

    .amazonSmile-container {
        padding: 100px 0;
    }
}

@media screen and (max-width: 600px) {
    .spanned2 {
        grid-column: 1;
        width: 80%;
    }

    .getInvolved-tiles-container {
        grid-template-columns: 100%;
    }

    .getInvolved-tile {
        justify-self: center;
    }

    .amazonSmile-container {
        flex-wrap: wrap;
        padding: 75px 10px;
    }

    .amazonSmile-container p {
        margin-right: 0;
        text-align: center;
        font-size: 1em;
    }

    .amazonSmile-img {
        width: 300px;
        height: 80px;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "DONATE" PAGE   ========== 
    ========== ========== ========== ========== */

/* the top section with the plane is reused from the home page: .plane-container */

.donation-intro-container {
    display: flex;
    padding: 50px 60px 50px 60px;
    background-color: #ffffff;
}

.donation-hangar-img {
    margin: 10px 0;
    width: 45vw;
}

.donation-intro-text {
    padding-left: 4%;
    align-self: center;
}

.donation-intro-text p {
    line-height: 30px;
}

.donation-form-header {
    font-family: 'Source Serif Pro', serif;
    font-size: 3em;
    padding: 20px 0;
    text-align: center;
    background-color: #ffffff;
}

@media screen and (max-width: 1000px) {
    .donation-intro-container {
        padding: 50px 30px;
    }

    .donation-intro-text p {
        line-height: 25px;
    }
}

@media screen and (max-width: 750px) {
    .donation-intro-container {
        padding: 50px 20px;
    }

    .donation-intro-text p {
        line-height: 22px;
        font-size: 0.9em;
    }

    .donation-hangar-img {
        max-width: 38vw;
    }
}

@media screen and (max-width: 550px) {
    .donation-intro-container {
        flex-wrap: wrap;
    }

    .donation-intro-text p {
        line-height: 22px;
        font-size: 0.9em;
    }

    .donation-intro-images {
        text-align: center;
    }

    .donation-hangar-img {
        width: 80vw;
        max-width: 80vw;
    }

    .donation-form-header {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 400px) {
    .donation-form-header {
        font-size: 2em;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "EVENTS" PAGE   ========== 
    ========== ========== ========== ========== */

/* the top section with the plane is reused from the home page: .plane-container */

.eventSlide {
    position: relative;
}

.eventSlide img {
    width: 100%;
}

.events-WW-header {
    margin-bottom: 5%;
}

.events-container {
    display: grid;
    grid-template-columns: 35% 55%;
    grid-column-gap: 80px;
    justify-content: end;
    margin-bottom: 75px;
}

.event-days-container {
    /* padding-left: 25px; */
    text-align: right;
}

.events-header {
    font-family: 'Source Serif Pro', serif;
    padding: 40px 0 0;
    margin-bottom: 0;
}

.events-explained {
    padding-bottom: 50px;
}

.pi {
    width: 100%;
    height: 200px;
    background-color: darkgray;
}

.event-day-single p {
    color: #B1222D;
    margin: 10px 0 25px 0;
}

.event-day-single a {
    text-decoration: none;
    color: inherit;
}

.event-day-single h3 {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;

}

.event-info-container {
    margin-top: 180px;
}

.info-pic-1 {
    width: 100%;
    max-width: 800px;
}

.event-info-text {
    margin: 75px 0;
    padding-right: 100px;
}

.event-info-pics-bottom {
    display: flex;
}

.info-pic-2 {
    max-width: 300px;
    width: 35%;
}

.info-pic-3 {
    max-width: 550px;
    width: 65%;
}

@media screen and (max-width: 950px) {
    .event-info-text {
        padding-right: 50px;
    }
}

@media screen and (max-width: 750px) {
    .event-info-text {
        padding-right: 25px;
    }

    .events-container {
        grid-column-gap: 40px;
    }

    .events-WW-header {
        margin-bottom: 3%;
    }
}

@media screen and (max-width: 650px) {
    .events-container {
        grid-template-columns: 100%;
    }

    .event-days-container {
        text-align: center;
    }

    .event-day-single h3 {
        margin-bottom: 0;
    }

    .event-info-container {
        margin-top: 50px;
    }

    .event-info-text {
        text-align: center;
        padding: 0 30px;
    }
}




/*  ========== ========== ========== ========== 
    ==========    "WINGS & WHEELS" PAGE   ========== 
    ========== ========== ========== ========== */

/* the top section with the plane is reused from the home page: .plane-container */

.wings-wheels-heading {
    position: absolute;
    left: 12%;
    z-index: 5;
    font-family: 'Source Serif Pro', serif;
    font-size: 2.4em;
    letter-spacing: 0.07ch;
    margin-top: 1.3vw;
}

.wings-wheels-text {
    padding: 100px 120px;
    line-height: 30px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.wings-wheels-btn {
    background-color: #B1222D;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-top: 30px;
    line-height: 6;
    border-radius: 7px;
}

.wings-wheels-btn:hover {
    /* color: #22315D; */
}

.vendorSlider-heading {
    text-align: center;
}

.vendorSlider-container {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}


/* stuff for the vendor slider */

:root {
    --carousel-height: 100px;
    --slide-width: calc(100% / 3);
}

/** Wrapper **********************/
.carousel {
    position: relative;
    width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/** Previous/next buttons ********/
.vendor-previous,
.vendor-next {
    padding: 5px 10px;
    cursor: pointer;
    font-size: 50px;

    border: 0;
    background: none;
    color: black;
}

/** Slides track ***************/
.ww-vendor-slides-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 95%;
    overflow: hidden;
}

/** Individual slides ***********/
.ww-vendor-slide {
    flex: 0 0 calc(100% / 5.5);

    margin: 0 15px;
    padding: 20px;
    height: var(--carousel-height);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 26px;
    background-color: white;
}

/** Slide dots ******************/
.navigation {
    position: absolute;
    left: 0;
    bottom: -40px;

    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navigation li {
    display: inline-block;
}

.navigation li button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border: 0;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, .2);
    cursor: pointer;
}

.navigation li button:focus {
    outline-offset: 4px;
}

/** Active slide dot */
.navigation li button[aria-current="true"] {
    background-color: black;
    width: 15px;
    height: 15px;
}

.wings-wheels-images-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 150px auto 0 auto;
}

.wings-wheels-images-container img {
    width: 33.3%;
    object-fit: cover;
    height: 20vw;
}

.wings-wheels-video-container {
    margin-bottom: 100px;
}

.ww-video-spacer {
    background-color: #C4C4C4;
    width: 700px;
    height: 400px;
    margin: auto;
}

.ww-vendor-slide-extra {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    padding: 50px 0 0;
    margin: auto;
}

.ww-vendor-slide.extra a {
    background-color: #22315D;
    padding: 7px 20px;
    text-decoration: none;
    color: white;
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
}

@media screen and (max-width: 1200px) {
    .carousel {
        width: 800px;
    }

    .ww-vendor-slide {
        flex: 0 0 calc(100% / 4);
    }
}

@media screen and (max-width: 1150px) {
    .wings-wheels-heading {
        left: 12%;
        font-size: 2.1em;
    }
}

@media screen and (max-width: 850px) {
    .wings-wheels-heading {
        left: 11%;
        font-size: 1.5em;
    }

    .carousel {
        width: 550px;
    }

    .ww-vendor-slide {
        flex: 0 0 calc(100% / 2.8);
    }
}

@media screen and (max-width: 700px) {
    .wings-wheels-images-container img {
        height: 25vw;
    }

    .ww-video-spacer {
        width: 450px;
        height: 325px;
    }

    .wings-wheels-heading {
        left: 10%;
        font-size: 1.3em;
    }
}

@media screen and (max-width: 575px) {
    .carousel {
        width: 300px;
    }

    .ww-vendor-slide {
        flex: 0 0 calc(100% / 1.5);
    }
}

@media screen and (max-width: 450px) {
    .ww-video-spacer {
        width: 320px;
        height: 250px;
    }

    .wings-wheels-text {
        padding: 50px 40px;
    }

    .wings-wheels-images-container {
        flex-wrap: wrap;
    }

    .wings-wheels-images-container img {
        height: auto;
        width: 100%;
    }
}





/*  ========== ========== ========== ========== 
    ==========    "THE HANGAR" PAGE   ========== 
    ========== ========== ========== ========== */

/* the top section with the plane is reused from the home page: .plane-container */

.hangar-media-container {
    padding: 30px;
    background-color: #22315D;
}

.hangar-media-title {
    display: grid;
    grid-template-columns: 20% 20% 20%;
    grid-column-gap: 30px;
    justify-content: center;
    color: white;
}

#aircraft {
    cursor: pointer;
    justify-self: end;
}

#exhibits {
    cursor: pointer;
    justify-self: center;
    margin-bottom: 0;
}

#equipment {
    cursor: pointer;
    justify-self: baseline;
}

.active-hangar-title {
    color: #FBAF17;
    border-bottom: #FBAF17 solid 2px;
    font-size: 1.5em;
}

.hangar-aircraft-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 33%);
    justify-content: center;
    margin: 75px 0;
    grid-auto-flow: dense;
}

/*.aircraft-item {
    margin: 0 auto;
     position: relative; 
}*/

.aircraft-small-description {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 20px 0 20px;
    margin-top: -10px;
    border-radius: 0 0 5px 5px;
    /* cursor: pointer; */
}

.aircraft-small-text {
    margin: 10px 0;
    padding-right: 10px;
}

.description-chevron {
    transition: transform 0.5s;
    transform: rotate(0);
    cursor: pointer;
    padding: 4px;
    border: 2px solid #22315D;
    color: #22315D;
    border-radius: 5px;
    margin-top: 2px;

}

.yellow-indicator {
    position: absolute;
    height: 25px;
    width: 100%;
    background-color: #FBAF17;
    bottom: -20px;
    display: none;
    transition: 0.5s;
}

.aircraft-large-container {
    width: calc(100vw - 15px);
    height: 500px;
    position: absolute;
    display: none;
    left: 0;
    z-index: 5;
    background-color: white;
}

.full-width {
    grid-column: 1 / -1;
    height: fit-content;
    background-color: white;
    margin: 0 20px;
    display: flex;
    transition: height 0.75s;
    height: 0px;
    opacity: 0;
}

.is-hidden {
    display: none;
}

.hangar-exhibits-container {
    color: white;
}

.hangar-equipment-container {
    color: white;
}

/* took a break on the expand function of the page, so creating static image and title */
.aircraft-item {
    border-radius: 8px;
    margin: 20px;
    position: relative;
}

.aircraft-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.aircraft-item-title {
    margin-top: -15px;
    padding: 10px 15px;
    background-color: #F6F6F6;
    border-radius: 6px;
}

.aircraft-item-title h3 {
    margin: 0;
    padding-top: 10px;
    font-weight: 400;
}

@media only screen and (max-width: 1000px) {
    .hangar-aircraft-container {
        grid-template-columns: 50% 50%;
    }
}

@media only screen and (max-width: 550px) {
    .hangar-aircraft-container {
        grid-template-columns: 100%;
        margin: 50px 0;
    }
}


/* back at again with the expandable inner section details */
.full-width {
    gap: 7%;
    justify-content: center;
    font-size: 0.85em;
}

.aircraft-innerLeft {
    background-color: #F6F6F6;
    width: 30%;
    min-width: 250px;
    padding: 30px 20px 30px 40px;
    line-height: 1.6;
}

.aircraft-innerLeft h3 {
    font-style: italic;
    line-height: 1.4;
}

.aircraft-innerLeft span {
    font-weight: 600;
}

.aircraft-innerRight {
    padding: 35px 40px 25px 0;
    overflow-y: scroll;
}

.aircraft-innerRight img {
    width: 350px;
    height: auto;
    display: block;
    /* margin: auto; */
    margin-left: 25px;
}

.aircraft-innerRight-text {}

.aircraft-innerRight-text li {
    padding: 5px 0;
    line-height: 1.5;
}

@media screen and (max-width: 1200px) {
    /* something */
}

@media screen and (max-width: 1020px) {
    .full-width {
        gap: 4%;
    }
}

@media screen and (max-width: 860px) {
    .full-width {
        gap: 3%;
    }

    .aircraft-innerLeft {
        min-width: 185px;
        width: 20%;
        padding: 20px;
    }

    .aircraft-innerRight img {
        width: 275px;
    }
}

@media screen and (max-width: 680px) {
    .full-width {
        flex-wrap: wrap;
        overflow-y: scroll;
    }

    .aircraft-innerLeft {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .aircraft-innerRight {
        padding: 35px;
    }

    .aircraft-innerRight img {
        width: 60%;
        margin: auto;
    }
}

@media screen and (max-width: 500px) {
    .full-width {
        margin: 0;
    }

    .aircraft-item {
        margin: 20px 0;
    }

    .aircraft-innerRight img {
        width: 80%;
    }

    .aircraft-innerRight {
        padding: 20px;
    }
}



/*  ========== ========== ========== ========== 
    ==========    SHOP PAGE   ========== 
    ========== ========== ========== ========== */

.oops-wrapper {
    background-color: #22315D;
    padding: 100px 0;
}

.oops-content-container {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: auto;
    justify-content: space-around;
}

.oops-content-container img {
    padding: 0 20px;
}

.oops-text {
    padding: 20px;
    color: white;
    max-width: 400px;
    letter-spacing: 0.1ch;
    font-family: 'Source Serif Pro', serif;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .oops-content-container img {
        width: 300px;
        margin: auto;
    }
}

@media only screen and (max-width: 800px) {
    .oops-content-container {
        flex-wrap: wrap;
    }

    .oops-text {
        margin-top: 20px;
    }

    .oops-wrapper {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 500px) {
    .oops-content-container img {
        width: 65%;
    }
}


/*  ========== ========== ========== ========== 
    ==========    ARCHIVES PAGE   ========== 
    ========== ========== ========== ========== */



/*  ========== ========== ========== ========== 
    ==========    MEDIA PAGE   ========== 
    ========== ========== ========== ========== */

.media-wrapper {
    /* padding: 75px 25px; */
}

.media-content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    justify-content: center;
    margin: auto;
}

.media-content-item {}

.media-wrapper {
    padding: 75px 25px;
    max-width: 1300px;
    margin: auto;
}

.media-content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    justify-content: center;
    margin: auto;
}

.medias-item {
    display: grid;
    grid-template-columns: 30% 55%;
    column-gap: 5%;
    padding-bottom: 50px;
    justify-content: center;
}

.medias-item-img img {
    justify-self: center;
    width: 100%;
    height: auto;
}

.medias-item-text a {
    color: inherit;
    text-decoration: none;
}

.medias-item-text a:hover {
    text-decoration: underline;
}

.medias-item-link {
    grid-column-start: 2;
    justify-self: end;
    cursor: pointer;
}

.medias-item-link svg {
    margin: 0 3px -5px 0;
}

.medias-item-link a {
    color: #B1222D;
    border-bottom: 2px solid #B1222D;
    text-decoration: none;
    font-size: 0.9rem;
}

@media screen and (max-width: 760px) {
    .medias-item {
        grid-template-columns: 100%;
    }

    .medias-item-link {
        grid-column-start: 1;
    }
}


/*  ========== ========== ========== ========== 
    ==========    VOLUNTEERS PAGE   ========== 
    ========== ========== ========== ========== */


.volunteer-wrapper {
    padding: 50px 0;
}

.volunteer-header {
    font-family: 'Source Serif Pro';
    width: 75%;
    margin: auto;
    font-size: 2em;
}

.volunteer-text {
    width: 75%;
    margin: 20px auto 75px auto;
}

.volunteer-form {
    width: 75%;
    margin: auto;
    margin-bottom: 50px;
}

.volunteer-form p {
    display: inline-block;
    width: 45%;
    margin: 5px 15px 0 15px;
}

.volunteer-form-input {
    background: white;
    border: 1px solid lightgrey;
    padding: 10px 15px;
    border-radius: 5px;
    width: 95%;
    margin: 10px 0;
    font-family: sans-serif;
}

.volunteer-form-input::placeholder {
    color: #C4C4C4;
    letter-spacing: 0.15ch;
    font-family: sans-serif;
}

.volunteer-survey-text {
    display: block !important;
    width: 100% !important;
    margin: 0 0 30px 0 !important;
}

.volunteer-survey-item {
    margin: 10px 0;
    padding: 0 10px;
    display: inline-block;
    width: 45%;
}

@media only screen and (max-width: 850px) {
    .volunteer-form p {
        display: block;
        width: 75%;
        margin: 10px auto;
    }
}

@media only screen and (max-width: 500px) {
    .volunteer-form p {
        display: block;
        width: 95%;
        margin: 10px auto;
    }
}



.form-container {
    width: 50%;
    max-width: 500px;
    min-width: 300px;
    margin: auto;
}

.form-input input {
    background: white !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    width: 100% !important;
    /* margin: 10px 0 !important; */
}

.form-input textarea {
    background: white !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    width: 100% !important;
    height: 175px !important;
    margin: 10px 0 !important;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
    color: #C4C4C4 !important;
    letter-spacing: 0.15ch !important;
    font-family: sans-serif !important;
}

.form-submit-btn {
    background-color: #FBAF17 !important;
    border: none !important;
    padding: 8px 35px !important;
    border-radius: 7px !important;
    margin: 0 !important;
    cursor: pointer !important;

    text-decoration: none !important;
    color: #22315D !important;
    font-weight: 600 !important;
    font-size: 1.25em !important;
    font-family: 'Source Serif Pro', serif !important;
}

.wpforms-submit-container {
    padding-top: 0 !important;
}

.wpforms-field ul {
    padding: 0 !important;
    list-style-type: none !important;
}

.wpforms-field ul li {
    padding: 4px 0 !important;
}

/* Jared added styles 1/20/23 for forms */
.newsletter-form-container {}

.newsletter-form-container form {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

.newsletter-form-input input {
    background: white !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    width: 300px !important;
    margin: 10px 0 !important;
}

.newsletter-form-submitBtn {
    background-color: #B1222D !important;
    border: none !important;
    /* padding: 9px 14px !important; */
    border-radius: 7px !important;
    margin: 0 !important;
    cursor: pointer !important;

    text-decoration: none !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1em !important;
    font-family: 'Source Serif Pro', serif !important;
}




.media-items-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 75px 0;
}

.media-item {
    background-color: #FCFBFC;
    padding: 30px;
    width: 95%;
    border-radius: 5px;
    margin: 0 auto;
    box-sizing: border-box;
}

.media-item-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-main-img {
    display: block;
    margin: auto;
    width: 85%;
}

.media-logo {
    display: none;
}

.media-item-text img {
    display: block;
    margin: 20px auto 0 auto;
}

@media screen and (min-width: 500px) {
    .media-item {
        width: 75%;
    }

    .media-main-img {
        width: 75%;
    }
}

@media screen and (min-width: 680px) {
    .media-item {
        width: 575px;
        display: flex;
        flex-direction: row;
    }

    .media-main-img {
        /* width: 40%; */
    }

    .media-logo {
        display: block;
        width: 30px;
        height: 20px;
        margin: 0 20px;
    }

    .media-item-text {
        width: 65%;
    }

    .media-item-images {
        width: 40%;
    }

    .media-item-text img {
        margin-top: 10px;
    }
}

@media screen and (min-width: 860px) {}

@media screen and (min-width: 1020px) {}

@media screen and (min-width: 1200px) {
    .media-wrapper {
        padding-bottom: 70px;
    }

    .media-items-container {
        flex-direction: row;
        gap: 0;
        max-width: 1300px;
        margin: 0 auto;
        padding: 50px 0 125px 0;
    }
}

@media screen and (min-width: 1380px) {}


#cmplz-document {
    text-align: center;
    margin: 50px auto;
}



.plan-visit__btn {
    background-color: #FBAF17;
    border: none;
    color: #081439;
    text-decoration: none;
    font-family: 'Source Serif pro', serif;
    font-weight: 700;
    text-align: center;
    padding: 9px 14px;
    border-radius: 7px;
    margin: 35px auto 10px auto;
    display: block;
    width: fit-content;
}




/* henson page */

.goal-section {
    background-color: #F6F6F6;
    padding: 50px 0;
}

.goal-container {
    max-width: 1000px;
    margin: auto;
    padding: 0 25px;
}

.goal-container>h2 {
    font-family: 'Source Serif Pro', serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.button {
    display: block;
    text-decoration: none;
    color: #22315D;
    font-family: 'Source Serif Pro', serif;
    font-weight: 600;
    font-size: 1.4em;
    background-color: #FBAF17;
    margin: auto;
    width: fit-content;
    padding: 5px 20px;
    border-radius: 5px;
}

.goal-flex {
    display: flex;
    padding-top: 70px;
    /* flex-wrap: wrap; */
}

.goal-flex img {
    width: 40%;
    max-width: 550px;
    min-width: 300px;
    align-self: center;
}

.goal-flex-text {
    margin-left: 50px;
}

.goal-overall {
    margin: auto;
    width: 70%;
    display: block;
    max-width: 550px;
    min-width: 300px;
    margin-top: 75px;
}

.my-image {
    width: 40%;
    max-width: 425px;
    min-width: 250px;
    align-self: center;
}

.goal-bottom-text {
    text-align: center;
    margin-top: 75px;
}

.donation-intro-container.henson {
    max-width: 1200px;
    margin: auto;
}

.donation-intro-text h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 2rem;
}

@media screen and (max-width: 680px) {
    .goal-flex {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .goal-flex-text {
        margin-left: 0;
    }

    .donation-intro-container.henson {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}