.bg_img_container {
  position: relative;
}
.bg_img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_img img {
  padding-top: 150px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bg_img_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.84);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 15px;
}
nav .container div {
  width: 40%;
}
nav .container .logo img{
    max-height: 50px;
}
nav .container div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 58px;
}
nav .container a {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 35px;
  gap: 24px;
}
header .container h1 {
  margin: 0px;
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}
header .container h2 {
  margin: 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}
.elements .container {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.elements p {
  margin: 0px;
  border-radius: 80px;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
}

main .container {
  padding-top: 49px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer {
  background-color: #000;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}
.footer_images {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 90px;
  justify-content: center;
  align-items: center;
}
.footer_images img {
  max-height: 60px;
}
.footer_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}
@media screen {
  .footer_text {
    width: 100%;
    word-break: break-word;
  }
}
.footer_text a{
  color: #FDC401;
}
.footer_bottom {
  width: 100%;
}
.footer_bottom .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.footer_bottom .links {
  margin-block: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_bottom .links a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
}
.copyright {
  margin-top: 32px;
  margin-bottom: 42px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  color: #fff;
}
@media (max-width: 1000px) {
  nav .container div {
    width: 100%;
  }
  nav .container .logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  header .container h1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0em;
  }
  header .container h2 {
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    letter-spacing: 0em;
  }
  header .container {
    padding-top: 18px;
    gap: 16px;
  }
  main .container {
    padding-top: 16px;
  }
  .footer_bottom .links {
    flex-direction: column;
    gap: 20px;
  }
  .footer_images img {
    max-height: 50px;
  }
}

#mbNavList {
  display: none;
}
#mbNavBtn {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

@media (max-width: 500px) {
  .deskNavLink {
    display: none;
  }
  #mbNavBtn {
    display: block;
  }
  #mbNavList {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.2s ease-in;
    width: 100%;
    height: 100vh;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 2;
  }
  #mbNavCloseBtn {
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  #mbNavCloseBtn img {
    width: 30px;
    height: 30px;
  }
  #mbNavList a {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }
  .remove_scrolling {
    height: 100%;
    overflow: hidden;
  }
}
