* {box-sizing: border-box;}
html{
    height:100%;
}
body {
    margin:0;
    min-height: 100%;
    display:flex;
    justify-content: space-between;
    flex-direction: column;
    font-family: 'Poppins'
}
h1, h2{
    text-align: center;
    margin:10px;
}
@media screen and (max-width: 700px){
    h1{font-size:1.5em;}
}

.center_img{
    margin-left: auto;
    margin-right: auto;
    width:100%;
}

.landing_img{
    height:100%;
    width:100%;
    object-fit: cover;
    position:absolute;
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
    opacity:0;
}
.opaque {
    opacity:0.95;
}

.nav_item { 
    text-align: center;
    transition: color 1s;   
    padding:10px;
}
a{
    color:black;
    text-decoration: none;
    transition: color 0.5s;   
}
a:hover{
    color:lightgray;
}
.hoverwhite:hover{
        color:white;
}
.drop_nav_item{
    text-align: center;
    position:relative;  
    padding:10px;
    animation: slideUp 0.5s;
}
@keyframes slideUp {
    from   {top:10px;}
    to  {top:0px;}
}

.flex_left{
    justify-content: flex-start;
}
.flex_right{
    justify-content: flex-end;
}
.flex_evenly{
    justify-content: space-evenly;
}
.flex_space_between{
    justify-content:space-between;
}
.flex_space_around{
    justify-content:space-around;
}

.row {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.inner_row{
    display:flex;
    align-items: center;
    width: 100%;        
}
.inner_row_stayrow{
    display:flex;
    align-items: center;
    width: 100%;  
}
.row_item { 
    display: flex;
    flex-direction: column;
    width: 45%;
    font-size: 15px;
    border-radius: 5px;
    min-height: 100px;
}
.narrow_row{
    width:25%;
}

.supernarrow_row{
    width:20%;
}
@media screen and (max-width: 700px){
    .inner_row{flex-direction: column;}
    .row_item{width:90%;}
}

.hiddenItem{
    opacity:0;
}

.showLeft{
    position:relative;
    animation: fadeInLeft 1.5s;
}
@keyframes fadeInLeft {
    from {opacity:0; left:-2%;}
    to {opacity:1; left:0;}
}
.showRight{
    position:relative;
    animation: fadeInRight 1.5s;
}
@keyframes fadeInRight {
    from {opacity:0; right:-2%;}
    to {opacity:1; right:0;}
}

.gray{
    background-color: gray;
}
.lightgray{
    background-color: lightgray;
}
.lightskyblue{
    background-color: lightskyblue;
}
.lightyellow{
    background-color: lightyellow;
}
.black{
    background-color: black;
}
.lightred{
    background-color: indianred;
}
.burlywood{
    background-color: burlywood;
}
.white_words{
    color:white;
}

.bigRow{
    height:90vh;
    width:100%;
}

@media screen and (min-width: 700px){
    .show_small{display:none;}
}
@media screen and (max-width: 700px){
    .show_big{display:none;}
}

.dropdown_content {
    display: none;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
    position: fixed;
    top: 70px;
    width:100%;
    height:100%;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
}

.show_dropdown{
    display:inline-block;
}
.stop_scroll{
    overflow:hidden;
}
.homepage_content{
    position:relative; 
    top:45%; 
    left:20%; 
    width:60%; 
    color:white; 
    font-size:2em;
}
@media screen and (max-width: 700px){
    .homepage_content{top:20%;font-size:1.5em;}
}
.homepage_learn_more{
    position:relative; 
    top:50%; 
    left:20%; 
    width:fit-content; 
    padding:5px;
    cursor: pointer;
}
@media screen and (max-width: 700px){
    .homepage_learn_more{top:30%;}
}
.slide_over{
    animation: slideOver 1.5s;
}
@keyframes slideOver {
    from {opacity:0;left:0;}
    to {opacity:1;left:20%;}
}

.learn_more{
    padding:5px;
    cursor: pointer;
    width:fit-content;
}

.height95{
    min-height:95vh;
    padding-top:2%;
    padding-bottom: 2%;
}

/* Next & previous buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  color: white;
  background-color: lightgray;
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 50%;
  width: 4%;
  text-align: center;
  opacity: 0.25;
  user-select: none;
}
.prev{
  left:2%;
}
.next {
  right: 2%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: black;
}