/* [project]/styles/component/_footer.scss.css [app-client] (css) */
.footer {
  border-top: 2px solid #4a89ff;
  border-top: 2px solid lab(57.5119% 11.7046 -70.3064);
}

.footer__container {
  justify-content: space-around;
  gap: 3.75rem 7.5rem;
  width: 100%;
  margin: 0 auto;
  padding-block: 30px;
  display: flex;
}

.footer__list {
  text-align: left;
  margin-block: 10px;
  font-weight: 600;
}

.footer__logo {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  bottom: 1.25rem;
  width: 220px !important;
  height: 100px !important;
}

.footer__text {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: .625rem;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .footer ul {
    margin-left: 30px;
  }

  .footer__container {
    color: #fff;
    color: lab(100% 0 0);
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
    display: flex;
  }
}

/* [project]/styles/component/_header.scss.css [app-client] (css) */
.logo {
  position: relative;
  width: 210px !important;
  height: 80px !important;
}

.header {
  z-index: 50;
  padding-bottom: 0;
}

.header_container {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
}

.header nav {
  margin-left: auto;
}

.header li {
  margin-right: 15px;
  display: inline-block;
}

.header li:nth-child(6) {
  color: #fff;
  background-color: #222323;
  width: 90px;
  margin-right: 0;
  padding: 5px 10px;
}

.header li a {
  transition: color .3s;
}

.header li a:hover {
  color: #4a89ff;
  color: lab(57.5119% 11.7046 -70.3064);
}

.header li {
  letter-spacing: .1em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.header_btn_contact {
  color: #fff;
  cursor: pointer;
  background-color: #4a89ff;
  background-color: lab(57.5119% 11.7046 -70.3064);
  border-radius: 20px;
  padding: 5px 10px;
  transition: color .3s;
  display: inline-block;
}

.header_btn_contact:hover {
  opacity: .7;
}

.humburger {
  display: none;
}

.hamburger-btn__parts {
  background-color: #000;
  width: 100%;
  height: .125rem;
  transition: transform .5s, opacity .5s;
  display: block;
  position: absolute;
}

.hamburger-btn__parts.-top {
  top: 0;
}

.hamburger-btn__parts.-middle {
  margin-inline: auto;
  top: 0;
  bottom: 0;
}

.hamburger-btn__parts.-bottom {
  bottom: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-top {
  transform: translateY(.625rem)rotate(-45deg);
}

.hamburger-btn.active .hamburger-btn__parts.-middle {
  opacity: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-bottom {
  transform: translateY(-4px)rotate(45deg);
}

.hamburger, .hamburger-btn {
  display: none;
}

@media screen and (max-width: 500px) {
  .hamburger {
    z-index: 10;
    background-color: #333;
    width: 100vw;
    height: 100vh;
    font-family: futura-pt-bold, sans-serif;
    font-size: 16px;
    transition: all .3s;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100vw);
  }

  .hamburger-btn {
    z-index: 20;
    width: 25px;
    height: 16px;
    display: block;
    position: relative;
  }

  .hamburger__lists {
    background-color: #fff;
    background-color: lab(100% 0 0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 0;
    display: flex;
  }

  .hamburger__list {
    color: #000;
    text-align: center;
    font-size: 1rem;
    list-style: none;
  }

  .hamburger__list + .hamburger__list {
    padding-top: 50px;
  }

  .hamburger__link {
    color: #000;
    font-family: futura-pt-bold, sans-serif;
    text-decoration: none;
  }
}

.hamburger.active {
  transform: translateX(0);
}

@media screen and (max-width: 1024px) {
  .header {
    background: #fff;
    width: 100%;
    padding: 10px;
    display: flex;
    position: fixed;
    top: 0;
  }

  .header nav {
    display: none;
  }

  .logo {
    position: relative;
    width: 140px !important;
    height: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .header {
    width: 100%;
    padding: 10px 20px;
  }

  .header_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .humburger {
    top: 5px;
    right: 20px;
  }

  .mobileLogo {
    width: 190px;
    height: 60px;
    top: 10px;
  }

  .logo {
    position: relative;
    width: 140px !important;
    height: 40px !important;
  }
}

