@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto:ital,wdth,wght@0,75,100..900;1,75,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 75;
}
b, b * { font-weight: 700; }
:root {
    --very-light-blue: #e7f9fe;
    --light-blue: #b6edfb;
    --blue1: #0BB0DB;
    --blue2: #3276b6;
    --blue3: #064E8E;
    --blue4: #063C71;
    --gray-blue: #6e7f95;
    --white: #ffffff;
    --light-gray1: #fafafa;
    --light-gray2: #f5f5f5;
    --light-gray3: #eee;
    --gray: #aaa;
    --readable-gray: #777;
    --dark-gray: #333;
    --dark-gray2: #222;
    --light-red: #fccfda;
    --red: #da0b3f;
    --yellow: #ffdd49;
    --dark-yellow: #715f11;
}
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 61px;
    background-color: var(--white);
    box-shadow: 0 0 4px #0003;
    border-bottom: 2px solid var(--blue1);
    z-index: 4;
}
.navbar .navbarcenter {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 200px);
    height: 60px;
}
.navbar .navbarright {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 60px;
    background-color: var(--blue1);
}
.navbar a {
    font-size: 1em;
    font-weight: 350;
    text-align: center;
    text-decoration: none;
    color: var(--dark-gray);
    padding: 0 15px;
    transition: 0.1s;
}
.navbar .navbarcenter a.navbarlogo img {
    height: 14px;
    margin-top: 3px;
}
.navbar .navbarcenter a:nth-child(n + 2) {
    margin-bottom: 1px;
    padding: 20.4px 15px;
}
.navbar .navbarcenter a:nth-child(n + 2):hover {
    font-weight: 600;
    background-color: var(--light-gray1);
}
.navbar .navbarcenter a.active {
    background-color: var(--light-gray2);
    font-weight: 600;
}
.navbar .navbarright a {
    margin-bottom: 1px;
    padding: 20.4px 0;
    background-color: var(--blue1);
    color: white;
    transition: 0.1s;
}
.navbar .navbarright a:hover {
    font-weight: 600;
}
#mobilenavbarleft { display: none; }
#mobilenavbarright { display: none; }
@media only screen and (max-width: 900px) {
    .navbar .navbarcenter {
        display: none;
    }
    .navbar .navbarright {
        display: none;
    }
    #mobilenavbarleft {
        display: inline-block;
        position: absolute;
        top: 20px;
        left: 8px;
        width: 80px;
        height: 60px;
    }
    #mobilenavbarleft img {
        height: 14px;
    }
    #mobilenavbarright {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 60px;
        background-color: var(--blue1);
    }
    #mobilenavbarright img {
        position: absolute;
        top: 10px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    #mobilenavbarright #mobilebackground {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: #0005;
    }
    #mobilenavbarright.active #mobilebackground {
        display: block;
    }
    #mobilenavbarright ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        list-style-type: none;
    }
    #mobilenavbarright.active ul {
        display: block;
    }
    #mobilenavbarright ul li {
        margin-top: 4px;
        width: 160px;
        text-align: center;
        background-color: var(--light-gray1);
    }
    #mobilenavbarright ul li a {
        display: block;
        width: 160px;
        padding: 10px;
    }
    #mobilenavbarright ul a.active {
        background-color: var(--light-gray2);
        font-weight: 600;
    }
}

.announcement {
    margin-top: 55px;
    padding: 23px 10% 17px 10%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 1.5;
    background-color: var(--yellow);
}
.announcement b { font-weight: 500; }
.announcement a {
    text-decoration-thickness: 0.05rem;
    color: var(--dark-yellow);
}

.section {
    position: relative;
    width: 100%;
    padding: max(40px, 5vw) max(20px, 5vw);
    overflow: hidden;
}
.navbar + .section {
    margin-top: 55px;
}
.fullsection { min-height: calc(100vh - 70px); }
.centersection { text-align: center; }
.lightgraysection {
    background-image: repeating-linear-gradient(135deg, var(--light-gray2) 0, var(--light-gray2) 1px, var(--white) 0, var(--white) 50%);
    background-size: 24px 24px;
    background-color: var(--white);
}
.lightsection {
    background-color: var(--light-gray1);
}
.whitesection {
    background-color: var(--white);
}
.darkgraysection {
    background-color: var(--dark-gray2);
    color: var(--white);
}
.darksection {
    background-color: var(--blue4);
    color: var(--white);
}
.lightgridsection {
    background-image: linear-gradient(var(--light-gray3) 1px, transparent 1px), linear-gradient(to right, var(--light-gray3) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #ffffff;
}
.videosection {
    background-color: #000;
    color: white;
}
.videosection video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
}
.photosection, .lightphotosection {
    background-color: #000;
    color: white;
}
.photosection .backgroundimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
}
.lightphotosection .backgroundimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.section h1 {
    font-size: max(2.5em, 6vw);
    font-weight: 100;
    line-height: 1;
}
.section h2 {
    font-size: max(2.25em, 4vw);
    font-weight: 100;
    line-height: 1;
}
.section h3 {
    font-size: max(1.75em, 3vw);
    font-weight: 100;
    line-height: 1;
}
.section h4 {
    font-size: max(1.22em, 2.10vw);
    font-weight: 100;
    line-height: 1;
}
.section h5 {
    font-size: max(1.15em, 1.5vw);
    font-weight: 100;
    line-height: 1;
}
.section h5 i {
    font-weight: 400;
    font-style: italic;
    font-family: 'DM Serif Display';
    color: var(--dark-gray);
}
.section h1 b, .section h2 b, .section h3 b, .section h4 b {
    font-weight: 1000;
}
.section h1 b span, .section h2 b span, .section h3 b span, .section h4 b span {
    color: var(--dark-gray);
}
.lightsection h1, .lightsection h2, .lightsection h3, .lightsection h4 { color: var(--blue4); }
.lightgraysection h1, .lightgraysection h2, .lightgraysection h3, .lightgraysection h4 { color: var(--blue4); }
.whitesection h1, .whitesection h2, .whitesection h3, .whitesection h4 { color: var(--blue4); }
.versesection {
    padding: max(40px, 3vw) max(40px, 5vw) max(40px, 3vw) max(40px, 5vw);
    font-size: 1.75em;
    font-family: 'DM Serif Display';
    text-align: center;
    color: var(--dark-gray);
    background-color: var(--light-gray3);
}
.versesection .verselocation {
    margin-top: 12px;
    font-size: 0.6em;
    font-weight: 350;
    color: var(--dark-gray);
    letter-spacing: 0.2em;
}
.section .sectionlifted {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}
.section .intextlogo {
    height: 1em;
}
.section .backgroundblueslash {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(120deg, var(--light-gray1) 0%, var(--light-gray1) 25%, var(--blue1) 25%, var(--blue1) 100%);
    z-index: 0;
}
.section .scrolldownicon {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    animation: upanddown 1.5s ease-in-out infinite alternate;
}
@keyframes upanddown {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-20px); }
}
.section .youtubevideo {
    width: min(88vw, calc(106.666vh));
    height: min(49.5vw, 60vh);
    border: none;
    box-shadow: 0 4px 24px #0007;
}
.sectionlifted.sectioncenter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.margintop {
    margin-top: max(40px, 5vw);
}
.bottombutton {
    position: absolute;
    bottom: max(40px, 5vw);
    padding: 15px 30px;
    border: 1px solid var(--white);
    background-color: #0003;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}
.bottombutton:hover {
    background-color: #0005;
}
.bottombutton h4 b {
    font-weight: 800;
}
@media only screen and (max-width: 600px) {
    .bottombutton {
        width: calc(100% - max(40px, 12vw));
        background-color: #0003;
        text-align: center;
    }
}
.centertable {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 800px);
    font-size: 0.9375em;
    text-align: center;
    color: var(--dark-gray);
    border-collapse: collapse;
}
.centertable td {
    width: 25%;
    padding: 2px;
    font-weight: 350;
    background-color: var(--white);
    border: 1px solid var(--gray);
}
.centertable th {
    padding: 6px;
}
.centertable tr:nth-child(1) th:nth-child(1) {
    background-color: var(--light-gray1);
    border: none;
}
.centertable td:nth-child(1), .centertable th {
    font-weight: 400;
    background-color: var(--light-gray2);
    border: 1px solid var(--gray);
}
.centertable tr.summaryrow, .centertable tr.summaryrow td {
    color: var(--blue4);
    background-color: var(--light-blue);
    /*border-top: 2px solid var(--blue1);
    border-bottom: 2px solid var(--blue1);*/
}
.centertable tr.gaprow {
    height: 12px;
}
.centertable i {
    font-style: italic;
    font-weight: 350;
}
.centertable tr:hover td {
    filter: brightness(90%);
}

.phonevisible {
    display: none;
}

@media only screen and (max-width: 600px) {
    .phonevisible {
        display: block;
    }
}

/*
.horizontalcontainer {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}
.horizontalcontainer .panel {
    padding: 30px 40px;
    width: 150px;
    max-width: 300px;
    flex-grow: 1;
    background-color: var(--white);
    font-weight: 350;
    box-shadow: 0 8px 16px #0005;
    color: var(--dark-gray);
}
.horizontalcontainer .panel:nth-child(1) { animation: floatUp1 1s ease-out; }
.horizontalcontainer .panel:nth-child(2) { animation: floatUp2 1.333s ease-out; }
.horizontalcontainer .panel:nth-child(3) { animation: floatUp3 1.667s ease-out; }
.horizontalcontainer .panel:nth-child(4) { animation: floatUp4 2s ease-out; }
.horizontalcontainer .panel .panelheader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px 0;
    background-color: var(--dark-gray);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.1em;
    box-shadow: none;
}
.horizontalcontainer .panel h4 {
    font-family: 'DM Serif Display';
}
*/

.verticalcontainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}
.verticalcontainer .panel {
    position: relative;
    padding: 54px 40px 30px 40px;
    width: min(100%, max(40%, 400px));
    flex-grow: 1;
    background-color: var(--white);
    font-weight: 350;
    color: var(--dark-gray);
    text-decoration: none;
    opacity: 0.9;
    box-shadow: 0 8px 16px #0005;
    animation: floatUp 1.2s ease-out;
    transition: 0.2s;
    cursor: pointer;
}
.verticalcontainer .panel:nth-child(1) { animation-delay: -0.6s;  }
.verticalcontainer .panel:nth-child(2) { animation-delay: -0.4s; }
.verticalcontainer .panel:nth-child(3) { animation-delay: -0.2s; }
.verticalcontainer .panel:nth-child(4) { animation-delay: 0s; }
.verticalcontainer .panel:hover {
    opacity: 1;
    transform: translateY(-4px);
}
.verticalcontainer .panel .panelheader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px 0;
    background-color: var(--light-gray3);
    font-weight: 350;
    letter-spacing: 0.1em;
    box-shadow: none;
}
.verticalcontainer .panel h4 {
    font-family: 'DM Serif Display';
    transition: 0.2s;
}
@keyframes floatUp {
    0% { transform: translateY(50px); opacity: 0; }
    50% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0.9; }
}
.verticalcontainer.darkcontainer .panel {
    color: var(--light-gray1);
    background-color: var(--light-gray2);
}
.verticalcontainer.darkcontainer .panel h4 {
    color: var(--blue4);
}
.verticalcontainer.darkcontainer .panel .panelheader {
    background-color: var(--blue4);
    color: var(--light-gray1);
}

.timeline {
    position: relative;
    text-align: left;
}
.timeline .circle {
    display: inline-block;
    margin-right: 10px;
    width: 1em;
    height: 1em;
    border: 1px solid var(--gray);
    border-radius: 50%;
    transform: translateY(2px);
    transition: 0.2s;
}
.timeline h5 {
    display: inline-block;
    font-weight: 700;
    font-size: 1em;
    letter-spacing: 0.2em;
}
.timeline .paragraph {
    margin: 10px 0 10px 0.5em;
    padding: 10px;
    padding-left: 20px;
    font-weight: 300;
    border-left: 1px solid var(--gray);
}
.timeline:hover .circle { background-color: var(--blue1); border: 1px solid var(--blue1); }


.footersection {
    padding: 0;
}
.footersection .footerflex {
    display: flex;
    align-items: center;
    padding: 0;/*max(20px, 3vw) 0;*/
    color: var(--white);
    background-color: var(--blue4);
    /*border-bottom: 10px solid var(--blue1);*/
}
@media only screen and (max-width: 600px) {
    .footersection .footerflex {
        display: block;
    }
    .footersection .footerflex .footeritem:nth-child(1) {
        display: none;
    }
}
.footersection .footerflex .footeritem {
    padding: max(40px, 3vw) 10px;
    flex-basis: calc(50% - 40px);
    flex-grow: 1;
    text-align: center;
    font-weight: 300;
}
.footersection .footerflex .footeritem:nth-child(1) {
    align-self: stretch;
    background: url('images/mountainpeak2.jpg');
    background-size: cover;
    background-position: center;
    
}
@media only screen and (max-width: 900px) {
    .footersection .footerflex .footeritem:nth-child(1) { display: none; }
}
.footersection .footerflex .footeritem:nth-child(2) {
    background-color: var(--white);
    color: var(--blue4);
}
.footersection .footerflex .footeritem:nth-child(3) h4 b {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    font-variation-settings: normal;
}
.footersection .footerlegalese {
    background-color: var(--light-gray3);
    padding: 20px max(40px, 5vw);
    font-size: 0.875em;
    font-weight: 300;
    font-style: italic;
    color: var(--black);
    /*border-bottom: 10px solid var(--blue1);*/
}
.footersection .footerlegalese a {
    font-weight: 500;
    font-style: italic;
    color: var(--blue4);
}

.formPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 80px 0;
}
.formBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray1);
    background: linear-gradient(120deg, var(--light-gray1) 0%, var(--light-gray1) 20%, var(--blue1) 20%, var(--blue1) 40%, var(--blue3) 40%, var(--blue3) 60%, var(--blue4) 60%, var(--blue4) 100%);
    z-index: -1;
}
.formPageLogo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 14px;
    width: auto;
    z-index: 3;
}
.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: max(50%, min(max(90%, 350px), 500px));
    margin: 10px 0;
    padding: 30px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 2px 36px #0004;
}
.formSwitch {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: max(50%, min(max(90%, 350px), 500px));
    margin: 10px 0;
    padding: 20px 30px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 2px 36px #0004;
    font-size: 2em;
    font-family: "DM Serif Display", serif;
    color: var(--blue4);
    transition: 0.2s;
    cursor: pointer;
}
.formSwitch:hover {
    transform: scale(1.01);
    background-color: var(--very-light-blue);
}
.form.waitingForm {
    filter: brightness(0.8);
}
.formTitle {
    font-size: 3em;
    font-family: "DM Serif Display", serif;
    margin-bottom: 24px;
    line-height: 1;
}
.formElementHalf {
    width: 100%;
}
@media screen and (min-width: 880px) {
    .formElementHalf {
        width: calc(50% - 10px);
    }
}
.formElementFull {
    width: 100%;
}
.formLabel {
    margin-top: 16px;
}
.form input {
    width: 100%;
    height: 30px;
    margin: 4px 0;
    padding: 4px 8px;
    font-weight: 350;
    background-color: var(--light-gray2);
    border-radius: 5px;
    border: none;
    outline: none;
}
.form input:hover, .form input:focus {
    background-color: var(--light-gray3);
}
.form input.problemInput {
    background-color: var(--light-red);
    color: var(--red);
}
.formProblemContainer {
    width: 100%;
    margin-top: 18px;
}
.formProblem {
    width: 100%;
    text-align: center;
    margin-top: 2px;
    padding: 4px;
    font-size: 0.875em;
    font-weight: 400;
    color: var(--red);
    background-color: var(--light-red);
    border: 1px solid var(--red);
    border-radius: 5px;
    transition: 0.2s;
}
.formProblem a, .formProblem a:active, .formProblem a:link, .formProblem a:visited {
    color: var(--red);
}
.formButton {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    font-size: 1em;
    color: white;
    background: var(--blue4);
    background: linear-gradient(120deg, var(--blue1) 0%, var(--blue1) 10%, var(--blue4) 10%, var(--blue4) 100%);
    border-radius: 5px;
    border: none;
    outline: none;
    transition: 0.2s;
    cursor: pointer;
}
.formButton:hover, .formButton:focus {
    transform: scale(1.01);
    filter: brightness(1.1);
}
.formFooter {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 4px;
    font-size: 0.75em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--blue1);
    background-color: var(--very-light-blue);
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.formFooter:hover {
    background-color: var(--light-blue);
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: var(--light-gray1);
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--gray);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--blue1);
}