@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
@font-face {
  font-family: InterRegular;
  src: url(../fonts/Inter-Regular.ttf);
  font-weight: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "InterRegular", sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
button {
  border: none;
  background-color: transparent;
}
.desk_none {
  display: none !important;
}
@media (max-width: 1000px) {
  .mb_none {
    display: none;
  }
  .desk_none {
    display: inherit !important;
  }
}
.container {
  max-width: 1460px;
  padding-inline: 10px;
  margin: 0 auto;
}

nav .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav_logo {
  width: 192px;
  height: auto;
}
@media (max-width: 600px) {
  .nav_logo {
    width: 150px;
  }
}
.nav_btn {
  display: flex;
  padding: 12px 24px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}
@media (max-width: 520px) {
  .nav_btn {
    padding: 12px;
  }
}
@media (max-width: 400px) {
  .nav_btn {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.24px;
  }
}

.hero {
  width: 100%;
  min-height: 774px;
  position: relative;
}
.hero_img {
  background-color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero_img::before {
  content: "";
  background-image: url("../images/hero-img.webp");
  background-color: red;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.hero_content .container {
  width: 100%;
  min-height: calc(100% - 80px);
  height: auto;
  gap: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 815px) {
  .hero_content .container {
    gap: 50px;
  }
}
.elements {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 992px) {
  .elements {
    display: none;
  }
}
@media (max-width: 420px) {
  .elements {
    margin-top: 24px;
    row-gap: 24px;
    column-gap: 16px;
  }
}
.element_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}
.welcome h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}
@media (max-width: 600px) {
  .welcome h1 {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.64px;
  }
}
.welcome h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 444px;
}
@media (max-width: 1000px) {
  .welcome h2 {
    margin-bottom: 645px;
  }
}
@media (max-width: 600px) {
  .welcome h2 {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -0.32px;
  }
}
.footer_line {
  width: 100%;
  height: 80px;
  background-color: #000;
  background: linear-gradient(0deg, #000 0%, #22232b 100%);
  padding-top: 40px;
}
.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;
}
@media (max-width: 420px) {
  .footer_images img {
    height: 40px;
  }
}
.footer_text {
  background-color: #000;
  padding-bottom: 80px;
  padding-inline: 10px;
}
.footer_text p,
.footer_text a {
  color: rgba(255, 255, 255);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
}
@media (max-width: 420px) {
  .footer_text p {
    text-align: center;
  }
}
.footer_text a {
  text-decoration: underline;
}
.footer_nav {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer_nav {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.footer_nav div {
  display: flex;
  gap: 40px;
}
@media (max-width: 420px) {
  .footer_nav div {
    flex-direction: column;
  }
}

#pages {
  background: #22232b;
  min-height: 344px;
  color: #fff;
}
#pages h2 {
  padding-block: 30px;
}

#pages p,
#pages a,
#pages li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.02em;
  margin: 0px;
  padding-block: 5px;
}
#pages a {
  text-decoration: underline;
  color: #B1F9B3;
}
#pages ol,
#pages ul {
  margin-left: 15px;
  padding: 0px;
}
@media (max-width: 520px) {
  #pages p,
  #pages a,
  #pages li {
    font-size: 12px;
    line-height: 19px;
  }
}

/* COOKIE START */

.cookies {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 1%;
  transform: translate(-1%);
  max-width: 360px;
  width: max-content;
  background: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  text-align: center;
  z-index: 5;
}

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

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

.cookies h2 {
  font-size: 20px;
  margin: 0;
  padding-left: 5px;
}

.cookies .data p {
  margin: 0;
  padding-inline: 5px;
}

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

.cookies .buttons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.cookies .button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  margin: 0 10px;
}

.cookies #acceptBtn {
  background: #231414;
  color: #fff;
}

.cookies #declineBtn {
  background: #ccc;
  color: #333;
}
@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: #231414;
    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 */

.footer_rule {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}
.footer_rule p{
  font-size: 14px;
}
.footer_rule span {
  font-weight: bold;
  font-size: 16px;
}
.footer_rule a {
  font-size: 14px;
  text-decoration: none;
}
.footer_text a{
  color: #b1f9b3;
}