*, body{
    margin: 0;
    padding: 0;
}
#logo{
    display: inline;
    top: 0;
    left: 0;
}
#logo img{
    height: 90px;
    /* border: 1px solid black; */
}
.toggle-btn{
    display: inline;
}
#sidebar, #navbar{
    display: inline;
}
table{
    /* border: 1px solid black; */
    border-collapse: collapse;
    width: 100%;
    background-color: transparent;
    position: absolute;
    z-index: 99;
}
table tr td img{
    height: 100px;
}
table tr, td{
    /* border: 1px solid black; */
}
.nav-item{
    text-align: center;
    padding: 0;
    width: 13%;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5em;
}
.nav-item a{
    text-decoration: none;
    color: black;
    transition: 1s;
}
.nav-item a:hover{
    color: red;
    font-size: 1.2em;
}
table tr td:nth-of-type(2){
    width: 12%;
}
table tr td:nth-of-type(3){
    width: 10%;
}
.nav-item i{
    display: none;
}
.nav-item a{
    text-decoration: none;
}
.welcome{
    height: 110vh;
}
.welcome img{
    float: right;
    background-color: white;
    width: 30%;
    margin-top: 5%;
    margin-right: 5%;
}
.quote{
    display: inline-block;
    font-size: 6em;
    font-family: 'Audiowide', cursive;
    font-variant: small-caps;
    margin: 250px 0 0 100px;
}
.quote span{
    display: block;
}
@keyframes dissappear{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    100%{
        transform: scale(0.5);
        opacity: 0;
    }
}
.red, .red1{
    color: #000000;
    /* transition: 1s; */
    opacity: 0;
}
.red{
    animation: animate 1s ease-in-out 1s forwards;
}
.red1{
    animation: animate 1s ease-in-out 3s forwards;
}
.cyan{
    opacity: 0;
    color: #40e1ff;
    animation: animate 1s ease-in-out 2s forwards;
}
@keyframes animate{
    0%{
        transform: translateX(-100%);
        opacity: 0;
    }
    100%{
        transform: translateX(0%);
        opacity: 1;
    }
}
#top {
    display: block;
    width: 100%;
    height: 150px;
    background: white;
}
.contents{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.contents section{
    margin: 0;
    padding: 80px 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    color: white;
    font-weight: bold;
}
#first{
    background-color: #900c3e;
}
#divone{
    display: block;
    width: 100%;
    height: 150px;
    background: #900c3e;
}
#second{
    background-color: gold;
}
#divtwo{
    display: block;
    width: 100%;
    height: 150px;
    background: gold;
}
#third{
    background-color: forestgreen;
}
#divthree{
    display: block;
    width: 100%;
    height: 150px;
    background: forestgreen;
}
#fourth{
    background-color: #f02e22;
}
#divfour{
    display: block;
    width: 100%;
    height: 150px;
    background: #f02e22;
}
#fifth{
    background-color: #408cff;
}
#divfive{
    display: block;
    width: 100%;
    height: 150px;
    background: #408cff;
}
.text:nth-child(1), .text:nth-child(3), .text:nth-child(5){
    margin-right: 50px;
}
.text:nth-child(2), .text:nth-child(4){
    margin-left: 70px;
}
.text{
    opacity: 0;
    /* background-color: red; */
    max-width: 400px;
}
.text h4{
    font-size: 2.5em;
    margin-bottom: 30px;
}
.text p{
    font-size: 1.5em;
}
.below{
    /* display: block; */
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.scrollTo span{
    width: 40px;
    height: 40px;
    /* background: #f02e22; */
    border-bottom: 2px solid grey;
    border-right: 2px solid grey;
    position: absolute;
    animation: glow 1s linear infinite;
}
.scrollTo span:nth-child(1){
    margin-top: 0px;
    transform: rotate(45deg);
    animation-delay: 0s;
}
.scrollTo span:nth-child(2){
    transform: translateY(20px) rotate(45deg);
    animation-delay: 0.2s;
}
.scrollTo span:nth-child(3){
    transform: translateY(40px) rotate(45deg);
    animation-delay: 0.4s;
}
@keyframes glow{
    0%{
        border-color: black;
    }
    20%{
        border-color: black;
    }
    20.1%, 100%{
        border-color: grey;
    }
}
#scrolltext{
    transform: rotate(0);
    border: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 100%;
}
.top{
    /* display: block; */
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.top span{
    width: 40px;
    height: 40px;
    border-top: 4px solid snow;
    border-left: 4px solid snow;
    position: absolute;
    animation: glow2 1s linear infinite;
}
.top span:nth-child(1){
    margin-top: 0px;
    transform: rotate(45deg);
    animation-delay: 0.4s;
}
.top span:nth-child(2){
    transform: translateY(20px) rotate(45deg);
    animation-delay: 0.2s;
}
.top span:nth-child(3){
    transform: translateY(40px) rotate(45deg);
    animation-delay: 0s;
}
@keyframes glow2{
    0%{
        opacity: 1;
    }
    20%{
        opacity: 1;
    }
    20.1%, 100%{
        opacity: 0.5;
    }
}