@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Raleway";
  margin: 0;
  padding: 0;
  font-family: Raleway;
}

a {
  color: black;
  text-decoration: none;
}

/* START OF HEADER */
header {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  z-index: 9999;
  top: 0;
  position: fixed;
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  display: grid;
  grid-template-columns:
    minmax(10rem, 1fr) repeat(7, minmax(min-content, 16rem))
    minmax(10rem, 1fr);
  grid-gap: 2rem;
  z-index: 100;
  padding-left: 4rem;
  padding-right: 4rem;
  align-items: center;
  justify-content: center;
  background-color: #2fa8d2;
}

nav {
  grid-column: 7 / 10;
  grid-row: 1 / 2;
}

.nav-list {
    margin: 0px -40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.nav-item {
  list-style: none;
}

.nav-link {
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: Raleway;
}

.nav-item .current {
  font-weight: 900;
}
.nav-link:hover {
  font-weight: 900;
}

.logo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 1rem;
  padding-left: 3rem;
}

.logo img {
  width: 15rem;
  height: auto;
}

/* END OF HEADER */

/* HERO */
.hero {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  position: relative;
  width: 100%;
  height: 90vh;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
}
.image img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
.content {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 6rem;
  left: 6rem;
  right: 6rem;
  max-width: 40rem;
  padding: 5rem;
}
.content h1 {
  font-size: 4.2rem;
}
.content p {
  margin: 1rem 0;
  font-size: 1.3rem;
  padding-bottom: 1rem;
}

#slide {
  position: absolute;
  left: -800px;
  -webkit-animation: slide 0.5s forwards;
  -webkit-animation-delay: 0.1s;
  animation: slide 0.5s forwards;
  animation-delay: 0.1s;
}

@-webkit-keyframes slide {
  100% {
    left: 0;
  }
}

@keyframes slide {
  100% {
    left: 6em;
  }
}
.btn {
  font-size: 1.2rem;
  border: 2px solid #2fa8d2;
  padding: 10px;
  text-transform: uppercase;
  border-radius: 25px;
  text-decoration: none;
  color: #2fa8d2;
}

.btn:hover {
  cursor: pointer;
  background-color: #2fa8d2;
  transition: all 0.3s;
  color: white;
}

.vejen {
  background-color: #2fa8d2;
  padding: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vejen h2 {
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: Raleway;
  padding-bottom: 1rem;
}
.vejen p {
  color: white;
  text-align: center;
  font-family: Raleway;
  font-size: 1.2rem;
}












/* NY  */

.some-page-wrapper {
    margin: 6%;
  }
  
  .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }
  
  .double-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2;
  }
  
  .blue-column {
    height: 100%;
  }
  
  .green-column {
      height: 100%;
      padding-left: 3%;
  }
  .green-column h2 {
    color: #2fa8d2;
    font-size: 3rem;
    padding-bottom: 1rem;
  }
  
  .green-column h3 {
    color: #2fa8d2;
    position: relative;
    display: flex;
  }
  .green-column p {
    position: relative;
    padding-bottom: 1rem;
}
    .green-column p:nth-child(7){
        margin-bottom:1% ;
    }
    .green-column p:nth-child(13){
        margin-bottom: 1%;
    }
  .hold-image{
      height: auto;
      width: 100%;
  }



/* ny */








.btn-2 {
  font-size: 1.2rem;
  border: 2px solid #2fa8d2;
  background-color: #2fa8d2;
  padding: 10px;
  text-transform: uppercase;
  border-radius: 25px;
  text-decoration: none;
  color: white;
}

.btn-2:hover {
  cursor: pointer;
  background-color: white;
  transition: all 0.3s;
  color: #2fa8d2;
}

/* FOOTER START */

footer {
  
  background-color: #2fa8d2;
  grid-column: 1 / -1;
  grid-row: 4 / 5;
  display: flex;
  justify-content: space-around;
  padding-top: 5rem;
}

.footer-wrapper h3 {
  font-size: 2.5rem;
  color: white;
}

.footer-nav li {
  list-style: none;
  margin: 1rem 0;
}

.footer-nav li a {
  color: black;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav li a:hover {
  color: #8c8c8c;
}

.under-footer {
  padding-bottom: 2rem;
}
.under-footer p {
  font-weight: bold;
}
/* STOP AF FOOTER CSS */
