@font-face {
    font-family: 'main';
    src: url('futura_book_font.ttf')  format('truetype'); /* Safari, Android, iOS */
}

@font-face {
    font-family: 'text';
    src: url('Montserrat-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
}

/* GLOBAL */

* {
    margin: 0;
    font-size: 100%;
    font-family: 'main';
}

.body {
    visibility: hidden;
    max-width: 1500px;
    margin: auto;
    background: #1e1e1e;
}

/* HEADER */

.header {
    width: 100%;
    padding: 1%;
    text-align: center;
    background: #1e1e1e;
    color: #dfda45;
}

.button {
    padding: 1%;
    text-align: center;
    font-size: 120%;
    color: #dfda45;
    background: #1e1e1e;
    border-color: #dfda45;
    border-style: groove;
    border-radius: 4px;
    border-width: 2px;
    cursor: pointer;
}

.button:hover {
    background-color: #292929;
}

.pulse {
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
      background-color: #1e1e1e;
    }
    50% {
      background-color: #868329;
    }
}

.button-tab {
    padding: 1%;
    text-align: center;
    font-size: 120%;
    color: #dfda45;
    background: #1e1e1e;
    border-top: none;
    border-left: none;
    border-right: none;
}

.otherButton {
    padding: 0.5%;
}

/* 
.shrink-on-hover {
    transition-duration: 0.2s;
}

.shrink-on-hover:hover
{
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
*/

/* FOOTER */

.footerRow {
    /* min-height: 5vh !important; */
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.footerColumn {
    text-align: center;
    float: left;
    margin-left: auto;
    margin-right: auto;
    flex: 100%;
    padding: 5px;
    font-size: 80%;
    color: #dfda45 !important;
}

/* FORMS */

.formPageContainer {
    min-height: 75vh !important;
    display: flex;
    flex-direction: column;
    animation: fadeIn 2.5s ease-in-out forwards;
}

.formTextLabel {
    font-family: 'text';
    font-size: 120%;
    color: white;
}

.formTextInput {
    font-size: 120%;
    width: 80%;
    color: black;
    background-color: white;
    font-family: 'text';
}

/* BODY */

.rowContainer {
    display: flex;
    flex-direction: column;
    padding: 1%;
    margin: 1%;
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.row {
    display: flex;
}

.rowReverse {
    flex-direction: row-reverse;
}

.column {
    text-align: center;
    flex: 1;
}

.full {
    flex: 100%;
}

.half {
    flex: 50%;
}

.wide {
    flex: 66%;
}

.thin {
    flex: 33%;
}

.columnContent {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dfda45;
}

.sectionTitle {
    font-size: 200%;
    margin-left: 8%;
    margin-right: 8%;
}

.sectionText {
    text-align: left;
    font-size: 150%;
    margin: 10%;
    font-family: 'text';
    color: white;
}

@media only screen and (max-width: 900px) {
    .sectionTitle {
        font-size: 150%;
    }
    .sectionText {
        font-size: 120%;
    }
}

.containCenterNoRepeatImage{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2%;
}

.containCenterRepeatImage{
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    margin: 2%;
}

.fixedCenterNoRepeatImage{
    background-attachment: fixed;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.fixedCoverImage {
    background-attachment: fixed;
    background-position: cover;
    background-size: 95%;
    border-radius: 35px;
    border: #dfda45;
    border-style: groove;
    border-radius: 35px;
    border-width: 2px;
}

@media only screen and (min-width: 1024px) {
    .responsiveElement {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .responsiveElement {
        display: flex;
    }
    .sideImage {
        display: none;
    }
    .rowContainer {
        min-height: none;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .topImage {
        min-height: 25vh;
    }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
    .topImage {
        min-height: 45vh;
    }
}

/* PROGRESS-BAR */

.progress-bar {
    width: 30%;
    height: 10px;
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    display: none;
}

.progress-bar-inner {
    height: 100%;
    width: 50%;
    background-color: #dfda45;
    animation: progress-bar-animation 2s linear infinite;
}

@keyframes progress-bar-animation {
    0% {
        margin-left: 0;
        margin-right: 100%;
    }

    50% {
        margin-left: 50%;
        margin-right: 50%;
    }

    100% {
        margin-left: 0;
        margin-right: 100%;
    }
}
