*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
    color: white;
    overflow-x: hidden;
}

.body {
    overflow-x: hidden;
    position: relative;
}

h1 {
    font-size: 3em;
}

a {
    text-decoration: none;
    color:white;
}

body::-webkit-scrollbar {
    display: none;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: rgb(93, 111, 88);
}

.logo {
    color:white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links{
    display:flex;
    width: 40%;
    justify-content: space-around;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color:white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media(max-width: 1024px) {
    .nav-links{
        width: 50%;
    }
}

@media(max-width: 1024px){
    .body {
        overflow-x: hidden;
    }
   .nav-links{
       position: absolute;
       right: 0px;
       height: 92vh;
       top: 8vh;
       background-color: rgb(93, 111, 88);
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       width: 50%;
       transform: translateX(100%);
       transition: transform 0.5s ease-in;
       z-index: 99;
   }
   .nav-links li {
       opacity: 0;
       margin-bottom: 2vh;
   }
   .burger{
       display: block;
   }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.bg {
    /* The image used */
    background-image: url("/img/växjö doula.jpg");
  
    /* Full height */
    height: 92vh;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.h-100 {
      min-height: 100vh;
  }

  @media(max-width: 1024px) {
    .w-50 {
        width: 100%;
    }
}

@media(min-width: 1025px) {
    .w-50 {
        width: 50%;
    }
}

.w-100 {
    width: 100%;
}

.d-flex {
      display: flex;
      flex-wrap: wrap;
  }

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: start !important;
}

.align-content-center {
    align-content: center;
}

  .main {
    position: relative;
      top: 30%;
      left: 10%;
  }

  .title{ 
      font-size: 3.5vw;
      width: 50%;
      color:white
  }

  .pt-3 {
      padding-top: 20px;
  }

  .mb-3 {
      margin-bottom: 20px !important;
  }

  .mb-65 {
    margin-bottom: 65px !important;
  }

  .mt-3 {
      margin-top: 20px;
  }

  #btn {
    margin-top: 2vh;
    background-color: #5D4954;
    height: 50px;
    max-width: 30%;
    min-width: 175px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: bold;
    position: relative;
    transition: 1s;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-top: 5px;
  }
  
  #btn #circle {
    width: 5px;
    height: 5px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    overflow: hidden;
    transition: 500ms;
  }
  
  .noselect {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  }
  
  #btn:hover {
    background: transparent;
  }
  
  #btn:hover #circle {
    height: 50px;
    width: 100%;
    left: 0;
    border-radius: 0;
    border-bottom: 2px solid #eee;
  }

  .education {
    background-color: rgba(175, 159, 88, 0.336);
  }

  .gallery {
      background-color: rgba(155, 124, 66);
  }

  .color1 {
      background-color: #d58258;
  }

  .color2 {
      background-color: #963a2f;
  }

  .color3 {
      background-color: #306178;
  }

  .color4 {
      background-color: rgb(93, 111, 88);
  }

  .textarea {
      width: 60%;
      margin-left: 20%;
      margin-right: 20%;
  }

  .text-paragraph {
      font-size: 1.5em;
      padding-left: 25px;
      padding-right: 25px;
      margin-bottom: 3px;
  }

  .instagram-logo {
    background-image: url(img/instagram-brands.svg);
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
  }