* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Josefin", sans-serif;
}

p {
  color: rgb(210, 210, 210);
}

body {
  background-color: rgb(14, 14, 14);
}
body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: rgb(14, 14, 14); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #00b7ff; /* color of the scroll thumb */
  border-radius: 5px; /* roundness of the scroll thumb */
  border: 3px solid rgb(14, 14, 14); /* creates padding around scroll thumb */
}
a {
  text-decoration: none;
  color: rgb(210, 210, 210);
}
a:visited {
  text-decoration: none;
}
.hero {
  max-height: 100vh;
  min-height: 50vh;
  width: 100%;
  background-image: url(../img/backgroundimage-4-darkend.png);
  background-size: cover;
  background-position: center;
}
#new-logo {
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}
.logo {
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
}
#nav-link {
  text-decoration: none;
  color: rgb(210, 210, 210);
  text-decoration: none;
  font-weight: bold;
}
#nav-link:visited {
  color: rgb(210, 210, 210);
}
#nav-link:hover {
  color: #00b7ff;
  transform: scale(1.3);
  transition: 0.3s;
}
#nav-link:active a {
  color: #00b7ff;
}
span {
  color: #00b7ff;
}
nav ul li {
  list-style-type: none;
  display: inline-block;
  padding-left: 6vh;
  padding-right: 6vh;
}
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border: none;
  background: #00b7ffc5;
  padding: 12px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;
  color: rgb(236, 236, 236);
  font-weight: bold;
  font-size: 15px;
  transition: 0.4s;
}
.button:hover {
  transform: scale(1.05);
  cursor: pointer;
}

#mobile-brand {
  display: none;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
  width: 35px;
  transition: 0.4s;
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  list-style-type: none;
  background-color: rgba(0, 0, 0, 0.418);
  backdrop-filter: blur(7px);
  position: absolute;
  /* Height of the header */
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
}
.mobile-hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* Hide content when navigating*/
.content {
  display: block;
  width: 1900px;
  max-width: 85%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 10%;
}
.no-content {
  display: none;
}
.content-mobile {
  display: none;
  width: 1900px;
  max-width: 85%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 10%;
}
#home-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10%;
  height: 100%;
  min-height: 50vh;
  padding-bottom: 10%;

  @media screen and (max-width: 900px) {
    padding-top: 20%;
  }
}

#home-image {
  display: flex;
  align-items: center;
  width: 30%;
  max-width: 500px;
  margin-right: 5%;
  margin-left: 0px;
}

#home-image img {
  width: 100%;
  height: auto;
  filter: brightness(0.7);
}

#info-head {
  position: relative;
  color: rgb(210, 210, 210);
  text-transform: capitalize;
  font-size: 4em;
}

#info-head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: #00b7ff;
  height: 4px;
  box-sizing: border-box;
  width: 400px;
  max-width: 50%;
}

#info-content {
  color: rgb(210, 210, 210);
  padding-top: 5%;
  font-size: 20px;
}

#info-box {
  max-width: 50%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-right: 15%;
  margin-left: 10%;
}

.general-info {
  padding-top: 5%;
  display: flex;
  align-items: center;
  padding-bottom: 2%;
}
.general-info div {
  width: 50%;
}
.general-info div img {
  width: 100%;
}
.general-info-text {
  padding-left: 5%;
  padding-right: 5%;
  color: rgb(210, 210, 210);
  width: 40%;
}

.general-info-text h2 {
  font-size: 2em;
}
.general-info-text p {
  padding-top: 5%;
  text-align: justify;
  font-size: 1.2em;
}
.general-info-text button {
  margin-top: 5%;
}
.header-scrolled {
  background-color: rgb(20, 20, 20);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1%;
  padding-left: 10%;
  padding-right: 10%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  padding-bottom: 1%;
  transition: all 0.5s;
}

.navbar-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-top: 2%;
  padding-left: 3%;
  padding-right: 3%;
  position: fixed;
  width: 100%;
  z-index: 1;
  padding-bottom: 2%;
  transition: all 0.5s;
}

.newsletter form {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.newsletter form input:first-child {
  outline: none;
  width: 100%;
  padding: 14px 130px 14px 15px;
  border: 2px solid #00b7ff;
  border-radius: 5px;
}
.newsletter form input:last-child {
  position: absolute;
  /*display: inline-block;
  
  outline: none;
  border: none;
  */
  padding: 10px 30px;
  border-radius: 5px;
  background-color: #00b7ff;
  color: rgb(210, 210, 210);
  /*box-shadow: 0px 0px 5px #000, 0px 0px 15px #858585;*/
  /*box-shadow: 2px 2px rgb(196, 196, 196);*/
  top: 5px;
  right: 5px;
}

#info-content button {
  font-size: 18px;
}

@media only screen and (max-width: 1520px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2%;
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    padding-bottom: 1%;
    transition: all 0.5s;
  }

  #info-head {
    font-size: 3.5em;
    line-height: 1.3em;
  }

  #info-head::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #00b7ff;
    height: 4px;
    box-sizing: border-box;
    width: 200px;
    max-width: 50%;
  }

  #info-box {
    margin-left: 5%;
    margin-right: 5%;
    width: 70%;
  }

  #info-content button {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1290px) {
  .navbar {
    display: none;
  }
  .navbar-mobile {
    display: flex;
  }
  #hamburger-icon {
    display: block;
    width: 30px;
  }
  #mobile-brand {
    display: block;
  }
  header {
    display: flex;
    justify-content: space-between;
  }
  li {
    margin: 25px;
  }
  #nav-link {
    font-size: 25px;
  }

  #info-box {
    max-width: 70%;
  }
}

@media screen and (max-width: 900px) {
  .content {
    display: none;
  }
  .content-mobile {
    display: block;
  }
  .general-info {
    display: block;
  }
  .general-info div {
    width: 100%;
  }
  .general-info-text {
    padding-top: 5%;
    width: 100%;
  }
  #home-image {
    display: none;
  }
  #info-box {
    max-width: 100%;
    width: 100%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 600px) {
  .navbar {
    display: none;
  }
  .navbar-mobile {
    display: flex;
  }
  #hamburger-icon {
    display: block;
    width: 30px;
  }
  #mobile-brand {
    display: block;
  }
  header {
    display: flex;
    justify-content: space-between;
  }
  li {
    margin: 25px;
  }
  #nav-link {
    font-size: 25px;
  }

  #info-head {
    padding-top: 10%;
    font-size: 3em;
    line-height: 1.3em;
  }

  #info-head::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #00b7ff;
    height: 4px;
    box-sizing: border-box;
    width: 110px;
    max-width: 30%;
  }

  #info-content {
    padding-top: 5%;
  }
}
