.header {
  height: 60px;
  background-color: rgba(245, 245, 245, 0.96);
  position: sticky;
  top: 0;
  z-index: 10000;
}

.header__logo {
  width: 75px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.header__logo img,
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__link {
  font-size: 18px;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 10px 0px;
}

.header__link::after {
  content: '';
  width: 100%;
  height: 2px;
  margin-top: 10px;
  background-color: currentColor;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.25s ease;
}

.header__link:hover {
  color: #000000;
}

.header__link:hover::after {
  opacity: 1;
}

.burger-menu {
  width: 24px;
  aspect-ratio: 1/1;
  padding: 5px 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: #430d4b;
  transition: 0.3s;
  flex-shrink: 0;
}
.bar:after,
.bar:before {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  left: 0;
  background: #430d4b;
  transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.bar.animate {
  background: rgba(255, 255, 255, 0);
}
.bar:before {
  bottom: 6px;
}
.bar:after {
  top: 6px;
}
.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}
.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.footer {
  padding-block: 40px 20px;
}

.footer__logo {
  width: 70px;
  height: auto;
  aspect-ratio: 1;
}

.footer__copyright {
  font-size: 12px;
  line-height: 2;
}

.form__title {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}

.form__title::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: currentColor;
}

.form__desc {
  max-width: 600px;
}

.form {
  background-color: #430d4b;
}
.form .form-group {
  display: flex;
  flex-direction: column;
}

.form .form-group label,
.form .input-group label {
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
}

.form .form-group .form-control {
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  outline: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 0;
}

.form .btn {
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  background: #d35400;
  border-radius: 0;
}

@media (max-width: 991px) {
  .header__logo {
    width: 50px;
    position: static;
  }

  .header__nav {
    padding: 1em;
    background-color: #ffffff;
    position: fixed;
    inset: 0;
    top: 60px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-menu {
    flex-direction: column;
  }

  .header__link {
    font-size: 18px;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    padding-block: 10px 0px;
  }

  .header__link::after {
    content: '';
    width: 100%;
    height: 2px;
    margin-top: 10px;
    background-color: currentColor;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.25s ease;
  }

  .header__link:hover {
    color: #000000;
  }

  .header__link:hover::after {
    opacity: 1;
  }

  .burger-menu {
    width: 24px;
    aspect-ratio: 1/1;
    padding: 5px 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
}
