html {
   margin: 0px;
   height: 100%;
   width: 100%;
}

body {
   margin: 0px;
   min-height: 100%;
   width: 100%;
}
.wrapper{
    height: 100%;
    overflow-x: hidden;
}

.header_section{
    display: flex;
    position:relative;
    width: 100%;
    align-items: center;
    flex-direction: column;
}

.site_loader{
    width: 100%;
    height: 100%;
    position:absolute;
    background: grey;
    z-index: 1000;

}
.section_row,
.slide{
    height: min-content;
    position:relative;
    /*max-width: 1200px;*/
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12,1fr);
    justify-items: center;
    align-items: center;
    justify-content: center;
    margin:auto;
    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0;
    padding: 20px;
    /*border: 1px solid #c3c3c3;*/
    border-radius: 5px;
}

.section_text{
    grid-column: span 5;
}

.section_text.text_right{
    grid-column: span 7
}

.section_title{
    font-weight: 700;
    font-size: 30px;
}

.section_content{
    max-width: 300px;
}


.section_image{
    /*width: 40vw;*/
    grid-column: span 7;
}
.section_image.image_left{
    /*width: 40vw;*/
    grid-column: span 5;
}

.section .right{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section .left{
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section_wrapper{
    width: 100%;
}

.section_wrapper.dark{
    background: #f6f6f6;
}

.bottom_section{
    background: #23272a;
    height: 10vh;
    color: rgba(255, 255, 255, 0.75)
}

.footer_row{
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1fr, 12);
}
.slides-container {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
}

.slide {
  position: absolute;
  font-size: 90px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  width: calc(100% / 3);
  width: 100%;
}

.slides-inner {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.slideshow {
    white-space: no-wrap;
}

.about_container{
    width: 100%;
    height: 100%;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    grid-column-gap: 30px;
    font-size: calc(12px + 0.2vw);
}

.footer{
    z-index:999;
}

@media only screen and (max-width: 600px){
    .about_image{
        grid-column: 1/-1 !important;
        grid-row: 1;
    }
    .about_text{
        margin: 10px 0 10px 0;
        grid-column: 1/-1 !important;
    }
    .about_slide_image{
        transform: rotate(270deg);
        height: 400px;
        grid-column: 1/-1;
    }
    .about_slide_text{
        grid-column: 1/-1;
    }
}

h3{
    text-align: center;
}
#promo_video{
    display: block;
    width: 100vw;
    margin:auto;
    visibility: hidden;
    opacity: 0;
}