/* Summary
* HEADER
  * Navbar
  * Banner
*/

body {
  font-family: Roboto;
  margin: 0;
  padding: 0;
}

/**********/
/* HEADER */
/**********/
.header{
  width: 100%;
  background-color: #fff;
  height: 70px;
}

/* Navbar */
.navbar-container {
  position: fixed;
  z-index: 100;
  background-color: #ffffff;
  width: 100%;
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  align-items: center;
  justify-items: center;
  box-sizing: border-box;
  min-height: 70px;
  padding: 10px;
  border-bottom: 1px solid #78c72e;
}

.navbar-container .logo-container {

}

.navbar-container .logo-container img {
  height: 42px;
}

.navbar-container .navbar {
  display: flex;
}

.navbar-container .navbar .navbar-button{
  margin-left: 15px;
  margin-right: 15px;
}

.navbar-container .navbar .navbar-button a{
  font-weight: bold;
  font-size: 20px;
  color: #888;
}

.navbar-container .navbar .navbar-button a:hover {
  text-decoration: none;
  color: #78c72e;
}
/***/

.navbar-container .lang-container {
  justify-self: right;
}

.navbar-container .lang-container option:hover{
  color: #78c72e;
}

/* Banner */
.banner {
  width: 100%;
  position: relative;
  background-color: #eee;
}
.banner img{
  width: 100%;
}

.banner h2 {
  position: absolute;
  top: 15%;
  left: 0;
  padding: 10px;
  padding-right: 30px;
  background-color: #19193799;
  color: white;
  font-size: 3vw;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
/***/
/**********/

/**************/
/* RESPONSIVE */
/**************/
@media screen and (max-width: 1300px) {
  .header .banner h2 {
    font-size: 27px;
  }
}

@media screen and (max-width: 1100px) {
  .navbar-container {
    grid-template-columns: 250px 1fr 50px;
  }
  .header .banner h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 820px) {
  .navbar-container {
    grid-template-columns: 50px 1fr 50px;
  }
  .navbar-container .logo-container {
    grid-column: 2;
  }
  .navbar-container .logo-container img {
    height: 30px;
  }

  .navbar-container .navbar {
    display: none;
  }

  .navbar-container .navbar-opened {
    display: block!important;
    width: 100%;
    grid-column: 1/4;
    grid-row: 2;
    border-top: 1px solid rgb(85, 85, 85);
    border-bottom: 1px solid rgb(85, 85, 85);
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 20px;
  }

  .navbar-opened .navbar-button {
    display: block;
    margin: 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #888;
  }

  .navbar-opened .navbar-button:last-child {
    border: none;
  }

  .navbar-container .burger-button {
    cursor: pointer;
    display: block!important;
    height: 100%;
    width: 100%;
    font-size: 30px;
    display: flex!important;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    justify-content: center;
  }

  .navbar-container .burger-button-selected {
    background: #555;
    color: white;
    border-radius: 4px 4px 0 0;
    padding-bottom: 20px;
    align-self: start;
  }
}
@media screen and (max-width: 600px) {
  .gce-ipx-container { padding: 0; }
}
/**************/
