/*==================== General Settings ====================*/
@font-face {
  src: url(./fonts/graphik/Graphik-Semibold.ttf);
  font-family: graphik-semibold;
}
@font-face {
  src: url(./fonts/graphik/Graphik-Regular.ttf);
  font-family: graphik-regular;
}
@font-face {
  src: url(./fonts/baloo/balooregular.ttf);
  font-family: logo;
}/*======================================================================*/

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
}/*======================================================================*/

/* -- Overlay -- */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: white;
  overflow-y: hidden;
  transition: 0.4s;
}
.overlay-content {
  font-family: graphik-semibold;
  font-size: 6vh;
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
}
.overlay a {
  padding: 8px;
  text-decoration: none;
  color: black;
  display: block;
  transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
  color: grey;
}
.overlay .closebtn {
  position: absolute;
  color: black;
  font-size: 4vw;
  top: 1%;
  left: 93.5%;
}
#burger_menu{
  position: absolute;
  cursor: pointer;
  font-size: 5vh;
  top: 0.5%;
  left: 90%;
  color: black;
  display: none;
}/*======================================================================*/
/*======================================================================*/
/*============================== (Header) ==============================*/

.header{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.header li{
  float: right;
  font-family: graphik-semibold;
  font-size: 18px;
}
.header li a{
  display: block;
  color: black;
  text-align: center;
  padding: 25px 25px;
  text-decoration: none;
}
.header li a:hover{
  color: grey;
}
#logo{
  float: left;
  font-family: logo;
  font-size: 40px;
  padding-left: 40px;
}
#logo a{
  text-decoration: none;
}
#logo a:link{
  color: black
}
#logo a:visited{
  color: black
}
#logo a:hover{
  color: black;
}
#logo a:active{
  color: black
}
#burger-logo{
  color: black;
  position: absolute;
  float: left;
  font-family: logo;
  font-size: 40px;
  padding-left: 32px;
}/*======================================================================*/

.hero {
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  position: relative;
  border-bottom-style: solid;
  border-width: 1.5px;
}
#nav-section{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5)
  z-index: 2;
}
#hero-text{
  width: 100%;
  max-width: 70%;
  height: inherit;
  position: absolute;
  top: 40%;
  left: 5%;
  z-index: 2;
  font-family: graphik-semibold;
  color: black;
  font-size: 6vw;
}


@media (max-width: 1000px) {
  #hero-text{
    left: 15%;
    font-size: 6.5vw;
    top: 40%;
  }
}/*======================================================================*/
@media (orientation: portrait){
  #hero-text{
    left: 10%;
    font-size: 6vh;
    max-width: 80%;
    top: 45%;
  }
  #logo{
    padding-left: 20px;
  }
}/*======================================================================*/
@media (max-width: 780px){
  .header{
    display: none;
  }
  #burger_menu{
    display: block;
  }
  .overlay .closebtn {
  font-size: 5vh;
  top: 0.4%;
  left: 90%;
  }
}/*======================================================================*/
@media (max-width: 400px){
  .hero {
    height: 70vh;
  }
  #burger_menu{
    font-size: 5vh;
    top: 0.4%;
    left: 86%;
  }
  .overlay .closebtn {
  font-size: 5vh;
  top: 0.4%;
  left: 86%;
  }
  #hero-text{
    top: 40%;
  }
}
/*======================================================================*/
/*======================================================================*/
/*=============================== (Section 1) ==============================*/

.section1{
  width: 100vw;
  height: auto;
  min-height: 80vh;
}
.text-container{
  position: relative;
  width: 60%;
  height: 100%;
  left: 20%;
  right: 20%;
  margin-top: 3%;
  margin-bottom: 3%;
  font-family: graphik-regular;
  font-size: 1.4vw;
  line-height: 2;
  text-align: justify;
}
@media (max-width: 1000px) {
  .text-container{
    width: 70%;
    left: 15%;
    right: 15%;
    font-size: 1.5vw;
  }
}
@media (max-width: 780px) {
  .text-container{
    width: 80%;
    left: 10%;
    right: 10%;
    font-size: 1.5vw;
  }
}
@media (orientation: portrait){
  .text-container{
    width: 90%;
    left: 5%;
    right: 5%;
    font-size: 2.3vh;
  }
}
/*======================================================================*/
/*======================================================================*/
/*============================== Section 2 =============================*/

.section2{
  width: 100vw;
  height: 60vh;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #F6F6F6;
}
.sec2-container{
  width: 80%;
  height: 80%;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
  font-family: graphik-semibold;
  text-align: center;
}
#sec2-title{
  padding-top: 1%;
  font-size: 5vw;
  margin-bottom: 0;
  position: relative;
}
#sec2-subtitle{
  font-size: 1.5vw;
  padding-right: 15%;
  padding-left: 15%;
  position: relative;
}
#sec2-button{
  background-color: black;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: graphik-semibold;
  font-size: 1.2vw;
  transition-duration: 0.2s;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-top: 2.5%;
}
#sec2-button:hover{
  background-color: #939393;
  color: white;
}
@media (orientation: portrait){
  .section2{
    height: 50vh;
  }
  #sec2-title{
    padding-top: 0%;
    font-size: 4.2vh;
    top: -10%;
  }
  #sec2-subtitle{
    padding-top: 0%;
    top: -7%;
    font-size: 2.5vh;
  }
  #sec2-button{
    font-size: 2vh;
    margin-top: 0%;
  }

  .sec2-container{
    width: 90%;
    height: 80%;
    position: absolute;
    left: 5%;
    right: 5%;
  }
}
/*======================================================================*/
/*======================================================================*/
/*=============================== Footer ===============================*/

.footer{
  width: 100vw;
  height: 40vh;
  float: left;
  background-color: black;
  overflow: hidden;
  position: relative;
}

.footer-logo{
  font-family: logo;
  float: left;
  position: relative;
  width: 20%;
  height: 70%;
}

#footer-logo{
  color: white;
  font-size: 4vw;
  margin: 0;
  position: relative;
  left: 15%;
}

.footer-links{
  font-family: logo;
  float: right;
  position: relative;
  width: 80%;
  height: 70%;
}
.footer-links a{
  text-decoration: none;
}
.footer-links a:link{
  color: white;
}
.footer-links a:visited{
  color: white;
}
.footer-links a:hover{
  text-decoration: underline;
}
.footer-links a:active{
  color: black;
}
#footer-links{
  color: white;
  text-align: right;
  font-family: graphik-regular;
  position: relative;
  line-height: 35px;
  top: 10%;
  right: 6%;
}

.footer-copy{
  float: left;
  position: relative;
  width: 100%;
  height: 30%;
}
#footer-copy{
  color: grey;
  font-size: 1vw;
  margin-left: 5%;
  text-align: right;
  font-family: graphik-regular;
  position: relative;
  right: 5%;
}
@media (orientation: portrait){
  #footer-logo{
    font-size: 5vh;
    position: relative;
    left: 25%;
  }
  #footer-copy{
    font-size: 1.7vh;
  }
}
