@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --crazy-green-color: #ccff02;
  --background-color: #121212;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  width: 1200px;
}

nav {
  position: fixed;
  display: flex;
  width: 1200px;
  height: 60px;
  background-color: white;
  z-index: 9999;
  align-items: center;
  top: 0;
  z-index: 25;
}

nav span {
  height: 25px;
  border-right: 1px solid #cfcfcf;
}

.nav-buttons-wrapper {
  margin-left: auto;
  z-index: 10;
}

.lang-toggle {
  border: none;
  outline: none;
  background-color: white;
  font-size: 1.5rem;
  color: black;
}

.active,
.lang-toggle:hover {
  color: var(--crazy-green-color);
  cursor: pointer;
}

.logo {
  width: 200px;
  height: 40px;
  float: left;
  z-index: 10;
}

.home {
  margin-left: 0;
  border: none;
}

.home:hover {
  border: none;
}

nav a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  border: solid white 2px;
  padding: 5px 15px;
  margin: 10px;
  z-index: 10;
}

nav a:hover {
  border: solid var(--crazy-green-color) 2px;
  color: black;
}
/* body.show-nav {
  /* Set it to height of nav */
/*transform: translateY(300px);
} */

.mobile-nav-wrapper {
  background-color: white;
  border-bottom: 2px solid var(--crazy-green-color);
  color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
}

.mobile-nav-wrapper ul {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 20px;
}

.hero-container {
  position: relative;
  background: var(--background-color);
  height: 975px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.hero-container h1 {
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-size: 5rem;
  font-weight: 200;
  letter-spacing: 25px;
  margin-bottom: 10px;
}

.hero-container h3 {
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-weight: 100;
}

.arrow,
.arrow:before {
  position: absolute;
  top: calc(100vh - 90px);
  left: 50%;
}

.arrow {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px var(--crazy-green-color) solid;
  border-bottom: 2px var(--crazy-green-color) solid;
}

.arrow:before {
  content: '';
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 1px var(--crazy-green-color) solid;
  border-bottom: 1px var(--crazy-green-color) solid;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
}

.toggle {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  display: none;
  z-index: 10;
}

.toggle:focus {
  outline: none;
}

/* Icon 4 */

#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 10px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: var(--crazy-green-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  left: 5px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 5px;
}

.second-container {
  height: 800px;
  width: 100%;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.content-container {
  width: 80%;

  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  position: relative;
  border-bottom: solid 1px var(--crazy-green-color);
}

.second-container a {
  margin-top: 85px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  border: solid var(--background-color) 2px;
  padding: 5px 15px;
}

.second-container a:hover {
  background-color: white;
  color: var(--background-color);
  font-size: 1.5rem;
  font-weight: 400;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 200px;
}

/* footer .logo {
  position: absolute;
  bottom: 0;
  right: 0;
} */

/* .stuff1 {
  position: absolute;
  height: 100px;
  right: 50px;
} */

.second-container h3,
.contact-container h3 {
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-weight: 100;
}

footer h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
}

#map {
  height: 400px;
  width: 100%;
}

.contact-container {
  background: var(--background-color);
  height: 575px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.hide {
  display: none;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .toggle {
    display: block;
    margin-left: auto;
    margin-right: 20px;
  }
  .nav-buttons-wrapper {
    display: none;
  }
  nav {
    width: 380px;
  }
  .container {
    width: 380px;
  }
  .hero-container {
    width: 380px;
    height: 800px;
  }
  .hero-container h1 {
    font-size: 2.25rem;
    letter-spacing: 10px;
  }
  .hero-container h3 {
    width: 300px;
  }
  h3 {
    width: 300px;
  }
  .second-container {
    height: 1500px;
  }
  footer {
    width: 380px;
  }
  footer h3 {
    width: 300px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  nav a {
    font-size: 1rem;
  }
  #en-btn,
  #ro-btn {
    font-size: 1rem;
  }
  nav {
    width: 700px;
  }
  .container {
    width: 700px;
  }
  .hero-container {
    width: 700px;
    height: 1000px;
  }
  .hero-container h1 {
    font-size: 3.5rem;
  }
  .hero-container h3 {
    width: 560px;
  }

  .second-container {
    height: 900px;
  }
  footer {
    width: 700px;
  }
}

@media only screen and (min-width: 1924px) {
  nav {
    width: 1800px;
    /* height: 100px; */
  }
  .container {
    width: 1800px;
  }
  .hero-container {
    width: 1800px;
    height: 1300px;
  }
  .second-container {
    height: 1200px;
  }
  footer {
    width: 1800px;
    height: 300px;
  }
  h3 {
    font-size: 1.5rem;
  }
  nav a,
  .second-container a,
  nav a:hover,
  .second-container a:hover {
    font-size: 2rem;
  }
}
