:root {
  --dark-Blue: hsl(233, 26%, 100%);
  --lime-Green: hsl(136, 65%, 100%);
  --bright-Cyan: hsl(192, 70%, 100%);

  --grayish-Blue: hsl(233, 8%, 100%);
  --light-Grayish-Blue: hsl(220, 16%, 100%);
  --very-Light-Gray: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.f-col {
  display: flex;
  flex-direction: column;
}
.f-row {
  display: flex;
  flex-direction: row;
}

.f-center {
  justify-content: center;
  align-items: center;
}

.header {
  justify-content: center;
  padding: 0.5rem 2rem;
  background: #012826;
  position: relative;
  height: 80px;
}

.gap-md {
  gap:2rem;
  margin-top: 0.5rem;
}

.gap-lg {
  gap:4rem;
}

.nav__bar a {
  font-size: 1rem;
  color: #FFFFFF;
  padding: 0.5rem 0;
  font-weight: 400;
}
.nav__bar a:hover {
  color: #a5fdf7;
  border-bottom: 3px solid;
  border-color: #a5fdf7;
}

.nav__btn-req {
  background-image: linear-gradient(to right,#ff462d,#ffb22d);
  padding: 1.2rem 2rem;
  border-radius: 0rem 0rem 0rem 0rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.nav__btn-req:hover {
background-image: linear-gradient(to left,#ff462d,#ffb22d);
  color: #FFFFFF;
}

.nav__checkbox {
  display: none;
}

.nav__checkbox:checked ~ .nav {
  display: block;
}
.nav__btn-toggle {
  order: 1;
  text-align: center;
  margin-top: 2rem;
  display: none;
}

.nav__icon {
  position: relative;
}

.nav__icon,
.nav__icon::before,
.nav__icon::after {
  width: 3rem;
  height: 3px;
  background: var(--dark-Blue);
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.nav__icon::before,
.nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transform-origin: top;
}

.nav__icon::before {
  top: -0.8rem;
}
.nav__icon::after {
  top: 0.8rem;
}

.nav__checkbox:checked + .nav__btn-toggle .nav__icon {
  background-color: transparent;
}

.nav__checkbox:checked + .nav__btn-toggle .nav__icon::before {
  top: 0;
  transform: rotate(135deg);
}

.nav__checkbox:checked + .nav__btn-toggle .nav__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

/***************** MEDIA QUERIES **************************/

@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }

  .nav__btn-req {
    display: none;
  }
  .nav {
    display: none;
  }
  .nav__btn-toggle {
    display: inline-block;
    color: #FFFFFF;
  }
  .nav .nav__bar-mobile {
    background: #012826;
    flex-direction: column;
    position: absolute;
    top: 3.8rem;
    right: 0%;
    padding: 3rem 6rem;
    width: 100%;
    text-align: center;
    margin-left: 2rem;
    color: #ffffff;

  }

  .nav a {
    color: #ffffff;
     font-size: 1.2rem;
  }

  .nav__bar a:hover {
    color: #ffffff;
    border: none;
  }
}
