nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 15px;
}
.logo {
  max-height: 50px;
}
.nav_link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0em;
  text-decoration: none;
}
#nav_btn,
#nav_close_btn {
  display: none;
}
#nav_links {
  display: flex;
  align-items: center;
  gap: 58px;
}
@media (max-width: 500px) {
  #nav_btn,
  #nav_close_btn {
    display: block;
    background: transparent;
    border: none;
    color: #fff;
  }
  #overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: all 0.2s ease-in-out;
    z-index: 5;
  }
  #nav_links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    z-index: 6;
  }
}

header .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 40px;
}
.title {
  color: #f5f5f5;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0px;
}
.subtitle {
  color: #dedede;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0px;
}

@media (max-width: 745px) {
  header .container {
    padding-block: 16px;
  }
  .title {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 520px) {
  .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: -0.02em;
  }
  .subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 15px;
    letter-spacing: -0.02em;
  }
}

footer {
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: 10px;
}

.footer_line {
  width: 100%;
  height: 80px;
  padding-top: 80px;
}
.linear {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.24) 49.5%,
    rgba(255, 255, 255, 0) 100%
  );
}
.footer_images {
  padding-block: 40px;
  background-color: #000;
}
.footer_images .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 60%;
  margin: 0 auto;
}
.footer_images img {
  width: auto;
  height: 50px;
  object-fit: cover;
}
.footer_text {
  background-color: #000;
  padding-bottom: 80px;
}
.footer_text p,
.footer_text a,
.pages p,
.pages a,
.pages li {
  color: #dedede;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0px;
}
.pages p,
.pages a,
.pages li {
  text-align: start;
}
.pages ol,
.pages ul {
  margin-left: 15px;
  padding: 0px;
}
.pages p {
  padding-block: 10px;
}
.pages {
  padding-bottom: 32px;
}
.pages h2 {
  color: #fff;
  padding-block: 15px;
}
.footer_text a,
.pages a {
  text-decoration: underline;
}
.footer_nav {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_nav div {
  display: flex;
  gap: 30px;
}
.footer_text p {
  text-align: center;
}

@media (max-width: 520px) {
  .footer_text p,
  .footer_text a,
  .pages p,
  .pages a,
  .pages li {
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
    letter-spacing: -0.02em;
  }
}

@media screen and (max-width: 420px) {
  .footer_images img {
    height: 40px;
  }

  .footer_nav div {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .footer_nav {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.elements .container {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.elements p {
  border-radius: 80px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  padding: 8px 22px;
  box-shadow: 0px 2px 7px 0px rgba(255, 255, 255, 0.34);
  box-shadow: 0px -1px 7px 0px rgba(255, 255, 255, 0.34);
}


/* COOKIE START */

.cookies {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  background: #F1F1F1;
  box-shadow: 10px 10px 11px -4px rgba(16, 24, 40, 0.08), 4px 4px 8px -4px rgba(16, 24, 40, 0.07);
  padding: 16px;
  z-index: 5;
  width: max-content;
}

.cookies .header {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.cookies i {
  font-size: 24px;
  margin-right: 10px;
}

.cookies h2 {
  color: #2B2D31;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.cookies .data p {
  color: #686868;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 12px;
}

.cookies .data a {
  color: #04B800;
  text-decoration: none;
}

.cookies .buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cookies .button {
  width: 50%;
  padding: 6px 24px;
  cursor: pointer;
  border: none;
  color: #2B2D31;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.cookies #acceptBtn {
  color: #fff;
  background: #07B800;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.cookies #declineBtn {
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #2B2D31;
  border: 1px solid #686868;
  background: #FFF;
}
@media (max-width: 460px) {
  .cookies {
    left: 50%;
    transform: translate(-50%);
    max-width: 340px;
  }
  .cookies .header {
    margin-bottom: 1px;
  }
  .cookies i {
    font-size: 18px;
    margin-right: 10px;
  }
  .cookies h2 {
    font-size: 16px;
    margin: 0;
  }
  .cookies .data p {
    font-size: 14px;
    margin: 0;
  }
  .cookies .data a {
    color: #04B800;
    text-decoration: none;
  }
  .cookies .buttons {
    margin-top: 5px;
  }
  .cookies .button {
    padding: 7px 15px;
    font-size: 14px;
  }
}
@media (max-width: 340px) {
  .cookies {
    max-width: 100%;
  }
}
/* COOKIE END */

.wertqwe {
  padding-block: 30px;
  background: #393939;
}
.wertqwe .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wertqwe span {
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  color: #2be024;
  font-size: 20px;
  font-style: normal;
  font-family: Inter;
  margin-bottom: 10px;
}
.wertqwe p {
  text-align: center;
  margin-bottom: 15px;
}
.wertqwe p,
.wertqwe a {
  font-size: 17px;
  line-height: 28px;
  font-family: Inter;
  color: #e6e6e6;
  font-weight: 400;
  font-style: normal;
}
.oaisfaazc {
  background: #393939;
  padding-block: 32px;
}
.oaisfaazc .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oaisfaazc p {
  text-align: center;
  color: #8e8e8e;
  line-height: 20px;
  font-size: 15px;
  font-style: normal;
  font-family: Inter;
  font-weight: 700;
}
.oaisfaazc a {
  line-height: 20px;
  text-align: center;
  font-size: 15px;
  text-decoration: none;
  font-style: normal;
  margin-right: 20px;
  color: #2be024;
  font-weight: 400;
  font-family: Inter;
}
.oaisfaazc a:last-child {
  margin-right: 0;
}
.sjdinva {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
  margin-top: 48px;
}
.sjdinva h3 {
  line-height: 28px; /* 127.273% */
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-family: Inter;
  text-align: center;
  font-weight: 700;
}
.msafdijln {
  display: flex;
  align-items: center;
  gap: 8px;
}
.msafdijln input {
  width: calc(100% - 28px);
  height: 48px;
  padding-inline: 14px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
  font-family: Inter;
  font-size: 16px;
  color: #000;
  border: none;
  outline: none;
}
.msafdijln input::placeholder {
  color: #9a9a9a;
}
.msafdijln .joasifd,
.msafdijln .gsfiops {
  width: 158px;
  height: 48px;
  border-radius: 4px;
  background: #07b800;
  font-size: 18px;
  text-align: center;
  font-family: Inter;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  font-style: normal;
  border: none;
  outline: none;
  padding-inline: 24px;
  cursor: pointer;
}
.msafdijln .joasifd {
  border-radius: 4px;
  color: #07b800;
  background: #fff;
}
.msafdijln .joasifd.hidden,
.msafdijln .gsfiops.hidden{
  display: none;
}
.moaksmdas{
  padding-block: 48px;
  background: #EFEFEF;
}
.moaksmdas .container{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 72px;
  row-gap: 25px;
}
.moaksmdas img,
.moaksmdas .jioioagds{
  height: 74px;
}
@media (max-width: 500px) {
  .oaisfaazc .container{
    flex-direction: column;
    gap: 20px;
  }
  .moaksmdas .container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 52px;
    row-gap: 25px;
  }
  .moaksmdas img{
    height: 65px;
  }
}