@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Fira Sans";
  src: url("./fonts/FiraSans-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Iceberg";
  src: url("./fonts/Iceberg-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Russo One";
  src: url("./fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body,html {
 margin: 0;
min-height: 100vh;
}

body {
 margin: 0;
  min-height: 100vh;
  background-color: #1E241E;
  position: relative;

  display: flex;
  flex-direction: column;
}

body p , body a {
    color: #FFFFFF;
    font-family: "Fira Sans", sans-serif;
    text-decoration: none;
    margin: 0;
}

.bg {
      position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

.head {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1440px;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin: 0 auto;
}

.hstick {
  width: 2px;
  background-color: #C9D04B;
  height: 46px;
  flex-shrink: 0;
}

.btnset {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 56px;
}

.outbtns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.lng {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto;
    gap: 8px;
}

.lnglink {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0;
    line-height: 100%;
}

.lnglink.active {
    color: #BFC0BE;
    opacity: 50%;
}

.himg {
    max-width: 105px;
    max-height: 60px;
}

.himg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.menu {
    display: flex;
    flex-direction: row;
    width: auto;
    max-width: 614px;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
    gap: 40px;
}

.menu a {
    font-family: "Russo One", sans-serif;
    text-align: center;

}

.menu-btn {
 display: none;
}



.btnset {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.outbtn {
    outline: 1px solid #C9D04B;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    height: 56px;
    box-sizing: border-box;
}

.outbtn p {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 10%;
    color: #C9D04B;
}

.outbtn2 img{
    height: 40px;
    width: 40px;
}

.outbtn2 {
    outline: 1px solid #C9D04B;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 8px;
}

.outbtn3 {
    outline: 1px solid #C9D04B;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 8px 12px;
    height: 60px;
    box-sizing: border-box;
    gap: 8px;
}

.outbtn3 p {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 10%;
    color: #C9D04B;
}

.outbtn3 img {
  height: 44px;
  width: 44px;
}


.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #C9D04B;
    border-radius: 4px;
}

.btn p {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    letter-spacing: 10%;
    color: #111918;
    margin: 0;
    line-height: 100%;
}

.outbtn:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.outbtn2:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.outbtn3:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.menu a:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
  color: #C9D04B;
}

.lnglink:hover {
  transition: all 0.3s ease;
  opacity: 50%;
}

.lnglink.active:hover {
  transition: all 0.3s ease;
  opacity: 0.25;
}

.btn:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.inputbtn:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.fmenu a:hover{
  transition: all 0.3s ease;
  transform: scale(1.05);
  color: #C9D04B;
}

.cont a:hover {
  transition: all 0.3s ease;
  transform: scale(1.02);
  color: #C9D04B;
}

.flnglink:hover {
  transition: all 0.3s ease;
  opacity: 50%;
}

.flnglink.active:hover {
  transition: all 0.3s ease;
  opacity: 0.25;
}

.mobile-menu {
    display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease,
    display 0.35s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.authscreen {
    flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.auth {
  gap: 32px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
      width: 100%;
    max-width: 780px;
    align-items: center;
}

h1 {
    font-size: 72px;
    line-height: 100%;
    font-family: "Russo One", sans-serif;
    color: #fff;
    margin: 0;
}

h2 {
    font-size: 60px;
    line-height: 100%;
    font-family: "Russo One", sans-serif;
    color: #fff;
    margin: 0;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.inputG {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

input {
    width: 100%;
    height: 56px;
    padding: 16px 20px;
       background-color: rgba(201, 208, 75, 0.05);
  border: 1px solid #383B38;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
  font-size: 18px;
  color: #fff;
}

input::placeholder {
    font-family: "Fira Sans", sans-serif;
    font-size: 24px;
    color: rgba(201, 208, 75, 0.4);
}

input:focus {
    border: 1px solid #C9D04B;
outline: none;
transition: all 0.3s ease;
}

.inputbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: fit-content;
    padding: 16px 28px;
    border-radius: 4px;
    border: 1px solid #C9D04B;
    background: none;
    cursor: pointer;

}

.inputbtn p {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    letter-spacing: 10%;
    color: #C9D04B;
    margin: 0;
    line-height: 100%;
}

.profilescreen {
      flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding-top: 60px;
  justify-content: start;
}

.profilescreen > form {
  width: 100%;
  margin-top: 56px;
}

.tags {
    flex: 1;
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: center;
  justify-content: center;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 120px;
}

.tag {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-products-field {
  position: relative;
}

.profile-products-field input {
  width: 100%;
  padding-right: 44px;
  overflow-x: auto;
  text-overflow: clip;
}

.profile-products-field span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9d04b;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.profile-products-field span[hidden] {
  display: none;
}

[data-profile-fields],
[data-password-fields] {
  display: contents;
}

.profilescreen [hidden] {
  display: none !important;
}

.tag p {
  font-family: "Fira Sans", sans-serif;
  font-size: 24px;
  color: #c9d04b;
}

.btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-top: 20px;
}

.btndo {
  border: 1px solid #C9D04B;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 8px 12px;
  height: 60px;
  box-sizing: border-box;
  gap: 8px;
  background-color: transparent;
  cursor: pointer;
}

.btndo p {
    font-family: "Russo One", sans-serif;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #C9D04B;
}

.btndo:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.btndo img {
  width: 44px;
  height: 44px;
}

.btnred {
  border: 1px solid #FF2A0D;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 8px 12px;
  height: 60px;
  box-sizing: border-box;
  gap: 8px;
  background-color: transparent;
  cursor: pointer;
}

.btnred p {
    font-family: "Russo One", sans-serif;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FF2A0D;
}

.btnred:hover {
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.btnred img {
  width: 44px;
  height: 44px;
}

@media screen and (max-width: 1440px) {
  .menu {
    gap: 20px;
  }
}


@media screen and (max-width: 1080px) {
  h1 {
      font-size: 60px;
  }

    h2 {
      font-size: 52px;
  }

  .tags {
    grid-template-columns: 1fr;
  }

  .mobile-menu {
    
    position: fixed;
    inset: 0;
    z-index: 999;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
    background: rgba(12, 17, 14, 0.96);
    backdrop-filter: blur(10px);
  }
  
  body.menu-lock {
    overflow: hidden;
  }

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu__top img {
    width: 105px;
    height: 60px;
  }

  .mobile-menu__close {
    width: 52px;
    height: 52px;
    border: 1px solid #C9D04B;
    border-radius: 4px;
    background: transparent;
    color: #C9D04B;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding-bottom: 4px;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #383B38;
  }

  .mobile-menu__nav a {
    padding: 18px 0;
    border-bottom: 1px solid #383B38;
    text-align: center;
    font-family: "Russo One", sans-serif;
    font-size: 18px;
    color: #C9D04B;
  }

  .mobile-menu__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu .btnset {
    display: flex;
    width: 100%;
    height: auto;
  }

  .mobile-menu .outbtns {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-menu .outbtn3 {
    width: 100%;
  }

  .menu-btn {
  width: 52px;
  height: 52px;
  padding: 10px 0;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid #C9D04B;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-btn_lines {
  width: 32px;
  height: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.menu-btn_lines span {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #C9D04B;
}

.btnset {
  display: none;
}

.menu {
  display: none;
}
}


@media screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .profilescreen {

  padding-top: 8px;
  padding-bottom: 40px;
}

.tags {
  gap: 20px;
  align-content: start;
  justify-content: center;
  align-items: center;
  padding-left:20px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-top: 28px;
}

.tag {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag p {
  font-family: "Fira Sans", sans-serif;
  font-size: 24px;
  color: #c9d04b;
}

    .auth {
        gap: 20px;
          padding-left: 20px;
  padding-right: 20px;
    }

    form {
        gap: 20px;
    }

    input{
       text-align: center;
    }

    .inputbtn {
        width: 100%;
        height: 56px;
    }



    input {
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  color: #fff;
}

input::placeholder {
    font-size: 20px;
}

  .head {
    padding: 0 20px;
  }

  .outbtn {
    padding: 16px 24px;
    height: 48px;
}

.outbtn p {
    font-size: 14px;
}

.btn {
    padding: 16px 24px;
}

.btn p {
    font-size: 14px;
}

.btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.tag p {
  font-size: 20px;
}
}
