@charset"UTF-8";

/*fade in animation*/

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    background-color: #11181c;
}

/*font */
a,
p,
h1,
h2,
h3,
h4 {
    font-family: 'Times New Roman', serif;
    font-weight: 100;
    color: white;
}

a:hover {
    color: white;
}

/*Nav css*/
#nav-right {
    margin: 2vh 4vh 0vh 0vh;
    display: flex;
    justify-content: space-around;
}

#nav-right a {
    font-size: 24px;
    margin: 0.5vh 0vh 0vh 4vh;
    color: white;
}

nav {
    background-color: #11181c;
}

nav #ja-logo {
    width: auto;
    height: 8vh;
    padding: 1vh 0vh 1vh 3vh;

}

nav #lstc-logo {
    width: auto;
    height: 6vh;
    padding: 0vh 0vh 0vh 2vh;
}

.nav-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-img {}

/*body css*/

/*intro section*/
.jumbo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url(../img/intro-bg.png);
    height: 90vh;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    background-attachment: fixed;
    width: 100%;
}

.jumbo-container {
    width: 100%;
    display: flex;
    align-self: center;
}

.intro-logo img {
    width: auto;
    height: 53.5vh;
    padding-bottom: 10vh;
    padding-left: 10vh;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

/*introduction section*/

.intro-container-mid {
    display: flex;
    justify-content: center;
}

.intro-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3vh;
}

#introduction {
    background-color: #11181c;
    padding: 2vh 0vh 0vh 0vh;
}

#introduction h2 {
    color: white;
    font-size: 30px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: sans-serif;
}

#introduction h3 {
    color: white;
    font-size: 40px;
    font-weight: 500;
    padding-top: 0px;
    padding-bottom: 10px;
    font-family: sans-serif;
}

#introduction p {
    color: white;
    font-size: 25px;
    font-family: sans-serif;
    line-height: 22px;
}

#introduction #text {
    padding-bottom: 1vh;
}

#intro-r,
#intro-mid,
#intro-l {
    padding-left: 1vh;
    padding-right: 1vh;
}

#icon {
    color: white;
    font-size: 5vh;
}


/* footer */
.footer-container {
    background-color: #11181c;
    display: flex;
    justify-content: center;
    padding-top: 3vh;
}

#footer-p {
    color: white;
    font-size: 2vh;
}

/*media css*/
@media only screen and (max-width:1145px) {
    .nav-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #nav-right a {
        font-size: 30px;
        margin: 0.5vh 0vh 0vh 2vh;
        color: white;
    }

    #nav-right {
        margin: 2vh 4vh 2vh 0vh;
        display: flex;
        justify-content: space-around;
    }

    nav #ja-logo {
        width: auto;
        height: 8vh;
        padding: 1vh 0vh 1vh 3vh;

    }

    nav #lstc-logo {
        width: auto;
        height: 5vh;
        padding: 0vh 0vh 0vh 2vh;
    }

    #nav-left {
        display: flex;
        justify-content: space-evenly;
    }

    .jumbo {
        background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url(../img/intro-bg-mobile.png);
        height: 90vh;
        display: flex;
        background-size: cover;
        background-repeat: no-repeat;
        align-items: center;
        background-attachment: fixed;
        width: 100%;
    }

    #introduction h2 {
        color: white;
        font-size: 40px;
        font-weight: 500;
        padding-top: 10px;
        padding-bottom: 10px;
        font-family: sans-serif;
    }
}

@media only screen and (max-width:1000px) {

    .jumbo {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url(../img/intro-bg-mobile2.png);
        height: 80vh;
        display: flex;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        width: 100%;
    }

    .jumbo-container {
        width: 100%;
        display: flex;
    }

    .intro-logo img {
        width: 100%;
        height: auto;
        padding-bottom: 15%;
        padding-top: 15%;
        padding-left: 2vh;
        animation: fadeInAnimation ease 3s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .intro-container {
        display: flex;
        flex-direction: column;
        padding-left: 0%;
        padding-right: 0%;
        padding-top: 1vh;
        padding-bottom: 1vh;
        text-align: center;
    }

    #introduction p {
        color: white;
        font-size: 30px;
        font-family: sans-serif;
        line-height: 25px;
    }
}
}
