[data-tab-content] {
    display: none;
}

.img-fluid {
    max-width: 200px !important;
}

.active[data-tab-content] {
    display: block;
}
@font-face {
    font-family: 'Nautilus Pompilus';
    src: url('./fonts/Nautilus.otf');
}

body {
    margin: 0;
}
h1 {
    position: relative;
    text-align: center;
    font-size: 8vw;
    font-family: 'Calibri';
    color: white;
    font-weight: lighter;
    /*
    animation: fadeIn 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
    visibility: hidden;
    */
}

.tab-content {
    background-color: rgba(86,111,122,.85);
    width: auto;
    margin: 30px;
    padding: 30px;
    border-radius: 20px;
}

ul, p {
    color: white;
    font-size: max(18px, 1vw);
    font-family: 'Gill Sans', sans-serif;
}

ul {
    list-style-type: none;
    text-align: center;
}

/*
.footer {
    display: block;
    position: fixed;
    color: white;
    text-align: center;
    width: 100%;
    bottom: 0;
}
*/

.hidden {
    display: none;
}

.logos {
    text-align: center;
}

.logos img {
    display: inline-block;
    position: relative;
    align-self: center;
    margin: auto;
    width: 72px;
    height: 72px;
    animation: fadeIn 1s;
    animation-delay: 2s;
    animation-fill-mode: both;
    visibility: hidden;
}

img.resize {
    display: flex;
    justify-content: center;
    height: auto;
    width: 100%;
    margin: auto;
    max-width: 840px;
    align-self: center;
    border-radius: 20px;
    margin-bottom: 100px;
}

.flex-row {
    display: flex;
    align-items: center;
}

img.max {
    display: flex;
    justify-content: center;
    height: auto;
    width: 100%;
    max-width: 2160px;
    margin: auto;
    align-self: center;
    border-radius: 20px;
    margin-bottom: 100px;
}

.icon {
    max-width: 60px;
    display: flex;
    align-self: center;
}

img.resize50 {
    display: flex;
    justify-content: center;
    height: auto;
    width: 75%;
    margin: auto;
    max-width: 420px;
    align-self: center;
    border-radius: 20px;
}

.button {
    display: flex;
    justify-content: center;
    color: white;
    margin: auto;
    width: 100px;
    font-size: 24px;
    background-color: #366531;
    border-radius: 5px;
}

.parallax-container {
    /*  this is where the magic happens:  */
    background-image: url('./images/landscape-background.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;

    /* dimensions are important, ensure it is tall enough to scroll */ 
    min-height: 100vh;

    /* you are free to lay out the container items with flexbox or whatever means you wish */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-device-width: 1366px) {
    .parallax-container {
        background-attachment: scroll;
    }
} 

.seal {
    position: relative;
    display: block;
    margin: auto;
    padding-top: 60px;
    width: 20%;
    /*
    animation: fadeIn 1s;
    animation-delay: 250ms;
    animation-fill-mode: both;
    visibility: hidden;
    */
}

@media screen and (max-device-width: 720px){
    img {
        position: relative;
        display: block;
        margin: auto;
        padding-top: 60px;
        width: 700px;
        /*
        animation: fadeIn 1s;
        animation-delay: 250ms;
        */
    }
/*
    h1 {
        position: relative;
        text-align: center;
        font-size: 100px;
        font-family: 'Nautilus Pompilus';
        color: white;
        font-weight: lighter;
        animation: fadeIn 1s;
        animation-delay: 1s;
        animation-fill-mode: forwards;
        visibility: hidden;        
    }
        */
    
}

/*
@keyframes fadeIn {
    0% { 
        opacity: 0;
        top: 30px
    }
    100% {
        opacity: 1; 
        visibility: visible;
        top: 0px
    }
}
    */