* {
    margin: 0;
    padding: 0;
    clear: both;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #333333;
    overflow-x: hidden;
    overflow-y: auto;
}

.navFill{
    height: 4vw;
    width: 100%;
    background-color: transparent;
}

.banner {
    width: 100%;
    height: 30vw;
    padding: 0 16% 75px 16%;
    color: white;
    /* background: gray; */
    display: flex;
    align-items: center;
    background-image: url(../imgs/bg.png);
}

.bannerPic {
    width: calc(30vw - 75px);
    height: calc(30vw - 75px);
}

.bannerPic img {
    width: 100%;
}

.bannerNav {
    border-right: 2px solid #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerNavItem {
    padding: calc(1vh + 0.5vw) calc(1vh + 1vw);
    /* border-bottom: 1px solid white; */
    border-bottom-width: 5%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: right;
}

.bannerNavItem:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bannerNavItem .process {
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: 0;
    left: -100%;
}

.bannerMain {
    text-align: left;
}

.bannerMain p {
    margin: calc(1vh + 1vw);
}

.bannerButton {
    padding: 1vh 2vh;
    color: cornflowerblue;
    background: white;
    border: none;
    cursor: pointer;
}

.mainHead {
    width: 70%;
    background-color: white;
    padding: calc(1vh + 1vw);
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    max-height: 150px;
    min-width: 700px;
    user-select: none;
}

.mainHead .animNum {
    color: #0084ff;
    margin: 0.5rem 0;
    font-size: 28px;
}
.mainHead .blueColor{
    font-size: 28px;
}

.VLine {
    width: 1px;
    height: calc(2vw + 2vh);
    background-color: rgba(0, 0, 0, 0.1);
}

.blueColor {
    color: #0084ff;
}

.grayColor {
    color: #969696;
}

.whiteColor {
    color: #ffffff;
}


main {
    position: relative;
}

.largestFont {
    font-size: 40px;
}

.largeFont {
    font-size: 30px;
}

.middleFont {
    font-size: 24px;
}

.smallFont {
    font-size: 18px;
}

.miniFont {
    font-size: 15px;
}