/*MOBILE*/

/*Fonts*/

@font-face {
  src: url(../fonts/static/Inter-Black.ttf);
  font-family: Inter;
  font-weight: 600;
}

@font-face {
  src: url(../fonts/static/Inter-ExtraBold.ttf);
  font-family: Inter;
  font-weight: 500;
}

@font-face {
  src: url(../fonts/static/Inter-Bold.ttf);
  font-family: Inter;
  font-weight: 300;
}

@font-face {
  src: url(../fonts/static/Inter-SemiBold.ttf);
  font-family: Inter;
  font-weight: 200;
}

@font-face {
  src: url(../fonts/static/Inter-Medium.ttf);
  font-family: Inter;
  font-weight: 100;
}

@font-face {
  src: url(../fonts/static/Inter-Regular.ttf);
  font-family: Inter;
  font-weight: normal;
}


/*
********
General
********
*/

* {
  padding: 0;
  margin:0;
  box-sizing: border-box;
}

html {
  font-family: Inter;
  color: black;
  font-size: 1.8vh;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
}


/*
********
Header
********
*/

header {
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #EDEDED;
}

.header__logo {
  height: 70%;
}

.header__logo img {
  height: 100%;
}

.header__navigation {
  height: 30%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #ACD3A7;
  padding: 2% 0;
}

.navigation__link {
  margin: 0 5%;
  font-size: 1.5rem;
  font-weight: 200;
  text-decoration: none;
  color:#11322B;
  text-align: center;
  height: auto;
}

.navigation__link--bold {
  font-weight: 500;
}


/*
********
Main
********
*/

main {
  flex-direction: column;
  display: flex;
  background-color: #11322B;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 71vh;
  padding: 9% 0;
}

#banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width:90%;
}
#banner img {
  width: 100%;
}

#us {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}

#us p {
  font-size: 1.2rem;
  font-weight: 100;
  text-align: justify;
  color: #EDEDED;
  width: 80%;
  height: auto;
}

.main__text {
  font-size: 1.2rem;
  font-weight: 100;
  text-align: center;
  color: #EDEDED;
  text-decoration: none;
}



/*
********
Footer
********
*/

footer {
  background-color: #0c231f;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 9vh;
}

footer span {
  font-size: 0.9rem;
  color: white;
  width: 70%;
  text-align: center;
  font-weight: normal;
}


@media (orientation:landscape) {

  /*
  ********
  Header
  ********
  */

  .header__navigation {
    padding: 0;
  }
  .navigation__link {
    font-size: 1.3rem;
    padding: .8% 0;
  }
  .navigation__link:hover {
    text-decoration: underline;
  }

  /*
  ********
  Main
  ********
  */

  main {
    padding: 5% 0;
  }

  #banner {
    height: 60%;
    width: 90%;
  }
  #banner img {
    height: 100%;
    width: auto;
  }
}
