.header {
  width: 100%;
  height: 400px;
  position: relative;
  /* overflow: hidden; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/DSC_2395.jpg);
}

.header-fader {
  height: 100%;
  width: 100%;
  background-color: rgba(102, 102, 102, 0.282);
}

.header-menu {
  display: flex;
  justify-content: center;
}

.header-link {
  margin: 10px;
  transition: 0.2s linear;
}

.header-link > a {
  color: rgb(234, 230, 230);
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  /* transition: 0.4s ease-in-out; */
  /* text-shadow:0 0 3px #050505;  */
}

.header-link:hover {
  /* font-style: italic; */
  /* transition: 0.4s ease-in-out; */
  /* font-size: 18px; */
 

  transform: scale(1.05);
    
  
}

.title-container {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  top: 25%;
}
.header-title {
  font-size: 55px;
  font-weight: 800;
  /* text-shadow:0 0 3px #050505;  */
  color: rgb(234, 230, 230);
}

.header-title-link {
  text-decoration: none;
}
.header-subtitle {
  color: rgb(234, 230, 230);
  font-size: 25px;
  /* text-shadow:0 0 3px #050505;  */
}

/*                            navigation menu mobile                             */

.navigation-mobile {
  height: fit-content;
  width: 35%;
  background-color: #89C1BB;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  padding: 10px;
  font-size: 15px;
  visibility: collapse;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 0 0 0 10px;
  z-index: 999;
}

.navigation-mobile.active {
  visibility: visible;
}

.menu_closed {
  background-image: url("../img/icon-burger.png");
  background-size: contain;
  transition: 0.3s;
  rotate: 180deg;
}

.menu_open {
  background-image: url("../img/icon-cross.png");
  background-size: contain;
  transition: 0.3s;
}

.burger-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  visibility: collapse;
}
.nav-mobile-link {
margin-top: 10px;

}


.nav-mobile-link > a {
    text-decoration: none;
    color: #395569;
    font-weight: 700;
}

@media only screen and (max-width: 900px) {
  /* .header {
        display: flex;
        flex-direction: column;
        align-items: center;
    } */
  .title-container {
    text-align: center;

    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 700px) {
  .header {
    height: 200px;
  }

  .header-title {
    font-size: 27px;
    font-weight: 800;
  }
  .header-subtitle {
    font-size: 16px;
  }

  .title-container {
    top: 10px;
  }

  .nav-container {
    display: none;
  }

  .burger-icon {
    visibility: visible;
  }
  
}
