header {
  display: flex;

  align-items: center;
  height: 120px;
  background-color: var(--White);
}
nav {
  font-family: Poppins;
  display: grid;
  grid-template-columns: 2fr 2fr;

  width: 400px;
  align-items: center;
}

.head-logo {
  grid-column: 1/2;

  margin-left: 10px;
}

.hamburger {
  position: relative;
  display: block;
  width: 40px;
  cursor: pointer;
  appearance: none;
  background: none;
  outline: none;
  border: none;
  float: right;
  margin-right: 50px;
  margin-top: 8px;
}
.hamburger .bar,
.hamburger:after,
.hamburger:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0150fd;
  margin: 6px 0px;
  transition: 0.4s;
}
.hamburger.is-active::before {
  transform: rotate(-45deg) translate(-8px, 6px);
}
.hamburger.is-active::after {
  transform: rotate(45deg) translate(-8px, -4px);
}
.hamburger.is-active .bar {
  opacity: 0;
}
.mobile-nav {
  position: fixed;
  top: 20%;
  left: 100%;
  width: 400px;
  min-height: 100vh;
  display: block;
  z-index: 98;
  background-color: var(--dark-beige);
  padding-top: 150px;
}
.mobile-nav a {
  display: block;
  width: 100%;

  margin-bottom: 16px;
  text-align: center;
  padding: 12px 16px;
  background-color: rgb(159, 159, 214);
  max-width: 200px;
  margin: 0 auto 16px;
  color: var(--White);
  text-decoration: none;
}
.mobile-nav.is-active {
  left: 0;
}

.header-menu {
  background-color: var(--White);

position: relative;
right: 200px;
left: 30px;

}

.header-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  padding-right: 60px;
}

.header-links a {
  text-decoration: none;

  color: var(--Black);
}

a:active,
a:hover,
a:visited {
  color: var(--Royal-blue);
}

.active {
  color: var(--Royal-blue);
}

.header-links {
  display: none;
}

.head-square {
  display: block;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #0150fd;
  margin-left: 10px;
}

.head-logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo-title {
  display: block;
  padding-bottom: 15px;

  line-height: 4px;
}

#title {
  font-size: 0.8rem;
}

.logo-title h1 {
  padding-top: 30px;

  display: flex;
  align-items: center;
  color: var(--Black);
  font-size: 1rem;
}

#slash-head {
  display: none;
}

@media screen and (min-width: 580px) {
  nav {
    width: 100%;
  }
  .logo-title,
  .head-logo,
  #title,
  #slash-head,
  .head-square {
    display: flex;

    align-items: center;
    float: left;
  }

  .logo-title h1 {
    font-size: 15px;
    float: left;
  }

  #slash-head,
  #title {
    padding-top: 30px;
    margin-left: 2px;
    font-size: 15px;
  }

  .head-square {
    margin-top: 15px;
  }

  .header-links {
    display: none;
  }
}

@media screen and (min-width: 900px) {

  header,
  nav {
    width: 100%;
    position: fixed;
  }
  .header-links {
    display: flex;
  }

  .header-l-span {
    display: none;
  }

  .logo-title h1 {
    font-size: 1.8rem;
    float: left;
  }

  #title {
    font-size: 1rem;
  }
  .hamburger {
    display: none;
  }
}


.footer-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.caption {
  font-weight: bold;
}

.social-menu {
  display: flex;
  gap: 0.5rem;
}


@media (min-width: 768px) {
  .footer-container {
      flex-direction: row;
      justify-content: space-between;
  }

  .contact-details {
      flex-direction: row;
      gap: 1rem;
  }
}




