@font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/spartan/v18/l7gAbjR61M69yt8Z8w6FZf9WoBxpoolrGFuV6HABTdfw.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/spartan/v18/l7gAbjR61M69yt8Z8w6FZf9WoBxpoolrGFuV6JABQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
body {
  height: 100%;
  font-family: 'Spartan', sans-serif;
  font-size: 22px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    color:rgba(255, 255, 255, 0.90);
    font: 20px/22px 'Spartan';
    font-family: 'Spartan'; 
    font-size: 20px/22px;
    background-color: #000000;
}
a{
    color: inherit;
    text-decoration: none;
    transition: .4s;
}
ul li,
ol li{
    list-style-type: none;
    padding: 0;
}
img{
  max-width: 100%;
  height: auto;

}
.container{
    width: 100vw;
    max-width: 160rem;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.container-header{
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

/*  HEADER  */
.header-section{
    padding: 0 0;
    background-color: #000000;
}
.line1 {
    border-bottom: 2px solid #C1A875;/* Параметры линии */
}
.header,
.nav-main,
.logo1,
.nav-main__list
{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.nav-main{
    flex-grow: 1;
}
.nav-main__list{
    gap: 0px;
    font: 400 16px 'Spartan'
}
.nav-main__link{
    color: #C1A875;
    background: #000000; 
    padding: 23px 30px; /* Расстояние от текста до края */
    transition: 0.5s; /* Время перехода */
}
.nav-main__link:hover {
    color: #C1A875;
background: #D9D9D9; /* Цвет фона */
}
.logo1{
    gap: 67px;
}
.svg-container-translate{
  background-color: #000000;
}
#replacementt-svg {
  display: none;
}

.svg-container-translate:hover #originalt-svg {
  display: none;
}

.svg-container-translate:hover #replacementt-svg {
  display: inline;
}
.translate-btn{
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}
/* Стили для мобильного меню */
.mobile-menu {
  display: none;
}
.img-mobile-button{
  align-items: center;
  width: 45px;
  height: 45px;
}
.mobile-menu-btn {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #000000;
  cursor: pointer;
  margin-left: 875px;
  margin-top: -25px;
}
.mobile-menu-content {
  display: none;
  position: absolute;
  top: 90px;
  left: 0px;
  width: 100%;
  width: 430px;

  background-color: #f8f8f8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.mobile-menu-content.active {
  display: block;
}

/* MAIN */
.card{
    display:flex;
    justify-content: space-between;
    padding: 0px 0 300px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
.banner-info{
    max-width: 1650px
}
.card-section{
  position: relative;
  height:100%;
  text-align:center;  
}
.container-card{
  width: 100%;
  max-width:1600px;
  position: absolute;
  left:0;
  right:0; 
  top:508px;
  margin:0 auto;
  transform:translateY(-50%);   
  box-sizing: border-box;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.error-message {
  color: red;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  display: none; /* Скрываем по умолчанию */
}

.button-go {
    color: #1F1F1F;
    text-align: center;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 700;
    width: 300px;
    font-size: 18px;
    cursor: pointer;
    height: 62px;
    text-align:center;
    border: none;
    cursor: pointer;
    border: none;
    background-size: 300% 100%;
    background: white;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  
  .button-go:hover {
    box-shadow: 0 5px 15px rgba(255, 233, 152, 1);
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  
  .button-go:focus {
    outline: none;
  }
  .button-go {
    background: linear-gradient(180deg, #FFE998 0%, #57370D 100%);
  }
.button-go{
    width: 455px;
    height: 45px;
    flex-shrink: 0;
    margin-top: 162px;
    margin-left: -1px;
    border-radius: 4px;
}
.form-control1{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 455px;
    height: 42px;
    position: absolute;
    top: 50px;
    right: 23px;
    border-radius: 4px;
    padding-left: 5px;
    border: none;
}
.form-control2{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 455px;
    height: 42px;
    position: absolute;
    top: 115px;
    right: 23px;
    border-radius: 4px;
    padding-left: 5px;
    border: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 30px #1a1a1a inset; /* Цвет фона */
  -webkit-text-fill-color: #fefefe;     /* Цвет текста */
}

.card-form {
    text-align: center;
}
.logo4{
    width: 195px;
    height: 60px;
    flex-shrink: 0;
    position: absolute;
    top: -145px;
    left: 170px;
    margin: auto; /* Добавлено для центрирования по горизонтали */
}
.no-account{
    color: rgba(255, 255, 255, 0.50);
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    margin-top: 15px;
    font-size: 15px;
}
.no-account:hover{
    text-decoration-line: underline;
}
.registration{
  background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 15px 'Ubuntu';
  text-align: center;
  position: relative;
  top: 100%;
  left: 0;
}
.registration:hover{
  background: var(--ggg, linear-gradient(134deg, #7C4B00 12.35%, #DCAA00 27.89%, #F8F8F8 42.26%, #6B3401 42.47%, #D5B300 57.12%, #FFF383 65.06%, #543200 74.53%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.container-card {
    width: 500px;
    height: 280px;
    flex-shrink: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 20px;
    margin-top: -30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}




@media screen and (width>1000px) {
    .logo3{
      display: none;
    }
    .mobile-menu {
      display: none;
  }
  }
@media screen and (max-width: 1512px) {
    .banner-header{
      text-align: center;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      font-family: Spartan;
      margin-left: 20px;
      margin-top: 0px;
      background: linear-gradient(180deg, #FCAC08 0%, rgba(254, 210, 122, 0.90) 23.44%, rgba(235, 197, 120, 0.78) 46.88%, rgba(227, 192, 120, 0.73) 57.29%, rgba(193, 168, 117, 0.51) 99.99%, #DF9909 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .logo3{
      display: none;
    }
}
@media screen and (width<1000px) {
  .logo3{
    display: flex;
  }
}
@media screen and (max-width:440px) {
  
  .header-section{
    max-width: 440px;
    width: 100%;
  }
  .adaptive {
    max-width: 440px;
    width: 100%;
  }
  .adaptive-banner {
    max-width: 440px;
    width: 100%;
  }
  .container-card{
    width: 400px;
    height: 240px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .no-account{
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    margin-top: 15px;
}
.registration{
  background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 12px 'Ubuntu';
  text-align: center;
  position: relative;
  top: 100%;
  left: 0;
}
.logo4{
  width: 195px;
  height: 60px;
  flex-shrink: 0;
  position: absolute;
  top: -143px;
  left: 120px;
}
.button-go{
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  width: 375px;
  height: 45px;
  flex-shrink: 0;
  margin-top: 125px;
  margin-left: -7px;
  border-radius: 4px;
}
.form-control1{
  color: #f8f8f8;
  font-size: 20px;
  background: #191919;
  width: 375px;
  height: 42px;
  position: absolute;
  top: 25px;
  right: 12px;
  border-radius: 4px;
}
.form-control2{
  color: #f8f8f8;
  font-size: 20px;
  background: #191919;
  width: 375px;
  height: 42px;
  position: absolute;
  top: 85px;
  right: 12px;
  border-radius: 4px;
}
.nav-main {
  display: none; /* Скрываем навигацию на десктопе */
}
.nav-main__list{
  gap: 0px;
  font: 400 18px 'Spartan';
  flex-direction: column;
  flex-wrap: wrap;
  }
  .mobile-menu {
    display: block;
    margin-left: -530px;
    margin-bottom: 0px;
    margin-top: -100px;
  }
  .mobile-menu-content{
  margin-top: -18px;
  width: 430px;
  height: 100px;
  }
  .img-mobile-button{
    margin-top: 55px;
  }
  .svg-container-translate{
    margin-left: 303px;
    margin-top: 20px;
  }
  .nav-main__link{
    position: relative;
  background: #000000; 
  padding: 5px 5px; /* Расстояние от текста до края */
  transition: 0.5s; /* Время перехода */
  display:flex;
  z-index:1000
  }
  .nav-main__link:hover {
  color: #C1A875;
  }
  .nav-main__list{
  gap: 0px;
  }
  .nav-main__item{
  width: 430px;
  height: 30px;
  }
.no-account{
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  margin-top: 15px;
}
.logo3{
  margin-left: -15px;
}
}
@media screen and (max-width:430px) {
  .header-section{
    max-width: 430px;
    width: 100%;
  }
  .adaptive {
    max-width: 430px;
    width: 100%;
  }
  .adaptive-banner {
    max-width: 430px;
    width: 100%;
  }
  .container-card{
    width: 400px;
    height: 240px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .no-account{
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    margin-top: 15px;
}
.registration{
  background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 12px 'Ubuntu';
  text-align: center;
  position: relative;
  top: 100%;
  left: 0;
}
.logo4{
  width: 195px;
  height: 60px;
  flex-shrink: 0;
  position: absolute;
  top: -143px;
  left: 125px;
}
.button-go{
  width: 375px;
  height: 45px;
  flex-shrink: 0;
  margin-top: 125px;
  margin-left: -7px;
  border-radius: 4px;
}
.form-control1{
  color: #f8f8f8;
  font-size: 20px;
  background: #191919;
  width: 375px;
  height: 42px;
  position: absolute;
  top: 25px;
  right: 12px;
  border-radius: 4px;
}
.form-control2{
  color: #f8f8f8;
  font-size: 20px;
  background: #191919;
  width: 375px;
  height: 42px;
  position: absolute;
  top: 85px;
  right: 12px;
  border-radius: 4px;
}
.nav-main {
  display: none; /* Скрываем навигацию на десктопе */
}
.nav-main__list{
  gap: 0px;
  font: 400 18px 'Spartan';
  flex-direction: column;
  flex-wrap: wrap;
  }
  .mobile-menu {
    display: block;
    margin-left: -530px;
    margin-bottom: 0px;
    margin-top: -100px;
  }
  .mobile-menu-content{
  margin-top: -18px;
  width: 430px;
  height: 100px;
  }
  .img-mobile-button{
    margin-top: 55px;
  }
  .svg-container-translate{
    margin-left: 303px;
    margin-top: 20px;
  }
  .nav-main__link{
    position: relative;
  background: #000000; 
  padding: 5px 5px; /* Расстояние от текста до края */
  transition: 0.5s; /* Время перехода */
  display:flex;
  z-index:1000
  }
  .nav-main__link:hover {
  color: #C1A875;
  }
  .nav-main__list{
  gap: 0px;
  }
  .nav-main__item{
  width: 430px;
  height: 30px;
  }
.no-account{
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  margin-top: 15px;
}
.logo3{
  margin-left: -15px;
}
}
@media screen and (max-width: 414px) {
  .container-card{
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .header-section{
    max-width: 414px;
    width: 100%;
  }
  .adaptive {
    max-width: 414px;
    width: 100%;
  }
  .adaptive-banner {
    max-width: 414px;
    width: 100%;
  }
  .body {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    margin:0;
    padding: 0;
    height:100%
  }
.mobile-menu-content{
  margin-top: -23px;
  width: 414px;
}
.nav-main__link{
  position: relative;
  background: #000000; 
  padding: 5px 5px; /* Расстояние от текста до края */
  transition: 0.5s; /* Время перехода */
  display:flex;
  z-index:1000
}
.nav-main__link:hover {
  color: #C1A875;
}
.nav-main__list{
  gap: 1px;
}
.registration{
  background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 12px 'Ubuntu';
  text-align: center;
  position: relative;
  top: 100%;
  left: 0;
}
html body{
    overflow-x: hidden;
    -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
  }
  .nav-main__list{
    text-align: center;
    left: -200px;
    display:flex;
      justify-content: space-between;
      align-items: center;
  }
    .img-mobile-button{
      margin-left: -15px;
    }
    .svg-container-translate{
      margin-left: 290px;
      margin-top: 20px;
    }
    .logo3{
      margin-top: -5px;
    }
  }
@media screen and (max-width: 412px) {
  .container-card{
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .header-section{
    max-width: 412px;
    width: 100%;
  }
  .adaptive {
    max-width: 412px;
    width: 100%;
  }
  .adaptive-banner {
    max-width: 412px;
    width: 100%;
  }
  .body {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    margin:0;
    padding: 0;
    height:100%
  }
.mobile-menu-content{
  margin-top: -23px;
  width: 412px;
}
.nav-main__link{
  position: relative;
  background: #000000; 
  padding: 5px 5px; /* Расстояние от текста до края */
  transition: 0.5s; /* Время перехода */
  display:flex;
  z-index:1000
}
.registration{
  background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 12px 'Ubuntu';
  text-align: center;
  position: relative;
  top: 100%;
  left: 0;
}
.nav-main__link:hover {
  color: #C1A875;
}
.nav-main__list{
  gap: 1px;
}
html body{
    overflow-x: hidden;
    -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
  }
  .nav-main__list{
    text-align: center;
    left: -200px;
    display:flex;
      justify-content: space-between;
      align-items: center;
  }
    .img-mobile-button{
      margin-left: -15px;
    }
    .svg-container-translate{
      margin-left: 290px;
      margin-top: 20px;
    }
    .logo3{
      margin-top: -5px;
    }
  }
@media screen and (max-width:393px){
  .header-section{
    max-width: 393px;
    width: 100%;
  }
  .adaptive {
    max-width: 393px;
    width: 100%;
  }
  .adaptive-banner {
    max-width: 393px;
    width: 100%;
  }
  .container-card{
    width: 360px;
    height: 240px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .logo4{
    width: 195px;
    height: 60px;
    flex-shrink: 0;
    position: absolute;
    top: -143px;
    left: 100px;
  }
  .button-go{
    width: 335px;
    height: 45px;
    flex-shrink: 0;
    margin-top: 125px;
    margin-left: -7px;
    border-radius: 4px;
  }
  .registration{
    background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 12px 'Ubuntu';
    text-align: center;
    position: relative;
    top: 100%;
    left: 0;
  }
  .form-control1{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 335px;
    height: 42px;
    position: absolute;
    top: 25px;
    right: 12px;
    border-radius: 4px;
  }
  .form-control2{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 335px;
    height: 42px;
    position: absolute;
    top: 85px;
    right: 12px;
    border-radius: 4px;
  }
  .nav-main {
    display: none; /* Скрываем навигацию на десктопе */
  }
  .mobile-menu {
    display: block;
    margin-left: -553px;
    margin-bottom: 0px;
    margin-top: -100px;
}
.mobile-menu-content{
  margin-top: -23px;
  width: 390px;
}
.nav-main__link{
  position: relative;
  background: #000000; 
  padding: 5px 5px; /* Расстояние от текста до края */
  transition: 0.5s; /* Время перехода */
  display:flex;
  z-index:1000
}
.nav-main__link:hover {
  color: #C1A875;
}
.nav-main__list{
  gap: 1px;
}
html body{
    overflow-x: hidden;
    -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
  }
  .nav-main__list{
    text-align: center;
    left: -200px;
    display:flex;
      justify-content: space-between;
      align-items: center;
  }
  .logo3{
    position: absolute;
    top: 5px;
    left: 15px;
  }
  .svg-container-translate{
    margin-left: 265px;
    margin-top: 18px;
  }
  .line1{
    margin-top: 60px;
  }
  .no-account{
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin-top: 15px;
  }
  .nav-main__item{
  width: 393px;
  height: 30px;
  }
  .logo3{
    margin-left: -10px;
  }
}
@media screen and (max-width:390px){
  .header-section{
    max-width: 390px;
    width: 100%;
  }
  .adaptive {
    max-width: 390px;
    width: 100%;
  }
  .adaptive-banner {
    max-width: 390px;
    width: 100%;
  }
  .container-card{
    width: 360px;
    height: 240px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .logo4{
    width: 195px;
    height: 60px;
    flex-shrink: 0;
    position: absolute;
    top: -143px;
    left: 100px;
  }
  .button-go{
    width: 335px;
    height: 45px;
    flex-shrink: 0;
    margin-top: 125px;
    margin-left: -7px;
    border-radius: 4px;
  }
  .registration{
    background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 12px 'Ubuntu';
    text-align: center;
    position: relative;
    top: 100%;
    left: 0;
  }
  .form-control1{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 335px;
    height: 42px;
    position: absolute;
    top: 25px;
    right: 12px;
    border-radius: 4px;
  }
  .form-control2{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 335px;
    height: 42px;
    position: absolute;
    top: 85px;
    right: 12px;
    border-radius: 4px;
  }
  .nav-main {
    display: none; /* Скрываем навигацию на десктопе */
}
  .nav-main {
    display: none; /* Скрываем навигацию на десктопе */
}
  .mobile-menu {
    display: block;
    margin-left: -554px;
    margin-bottom: 0px;
    margin-top: -100px;
}
.mobile-menu-content{
  margin-top: -23px;
  width: 390px;
}
.nav-main__link{
  position: relative;
  background: #000000; 
  padding: 5px 5px; /* Расстояние от текста до края */
  transition: 0.5s; /* Время перехода */
  display:flex;
  z-index:1000
}
.nav-main__link:hover {
  color: #C1A875;
}
.nav-main__list{
  gap: 1px;
}
html body{
    overflow-x: hidden;
    -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
  }
  .nav-main__list{
    text-align: center;
    left: -200px;
    display:flex;
      justify-content: space-between;
      align-items: center;
  }
  .svg-container-translate{
    margin-left: 265px;
    margin-top: 18px;
  }
  .logo3{
    position: absolute;
    top: 5px;
  }
  .line1{
    margin-top: 60px;
  }
  .no-account{
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin-top: 15px;
  }
  .nav-main__item{
  width: 390px;
  height: 30px;
  }
  .logo3{
    margin-left: -10px;
  }
}
@media screen and (max-width:375px){
  .container-card{
    width: 360px;
    height: 240px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      margin-top: -95px;
      box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 2px 8px rgba(255, 255, 255, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .logo4{
    width: 195px;
    height: 60px;
    flex-shrink: 0;
    position: absolute;
    top: -143px;
    left: 100px;
  }
  .button-go{
    width: 335px;
    height: 45px;
    flex-shrink: 0;
    margin-top: 125px;
    margin-left: -7px;
    border-radius: 4px;
  }
  .registration{
    background: linear-gradient(90deg, #C1A875 0%, #5B4F37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 12px 'Ubuntu';
    text-align: center;
    position: relative;
    top: 100%;
    left: 0;
  }
  .form-control1{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 335px;
    height: 42px;
    position: absolute;
    top: 25px;
    right: 12px;
    border-radius: 4px;
  }
  .form-control2{
    color: #f8f8f8;
    font-size: 20px;
    background: #191919;
    width: 335px;
    height: 42px;
    position: absolute;
    top: 85px;
    right: 12px;
    border-radius: 4px;
  }
  .nav-main {
    display: none; /* Скрываем навигацию на десктопе */
  }
  .nav-main__list{
    gap: 0px;
    font: 400 18px 'Spartan';
    flex-direction: column;
    flex-wrap: wrap;
    }
    .mobile-menu {
      display: block;
      margin-left: -570px;
      margin-bottom: 0px;
      margin-top: -100px;
    }
    .mobile-menu-content{
    margin-top: -22.6px;
    width: 375px;
    height: 100px;
    }
    .img-mobile-button{
      margin-top: 55px;
      margin-left: -14px;
    }
    .svg-container-translate{
      margin-left: 253px;
      margin-top: 20px;
    }
    .nav-main__link{
      position: relative;
    background: #000000; 
    padding: 5px 5px; /* Расстояние от текста до края */
    transition: 0.5s; /* Время перехода */
    display:flex;
    z-index:1000
    }
    .nav-main__link:hover {
    color: #C1A875;
    }
    .nav-main__list{
    gap: 0px;
    }
    .nav-main__item{
    width: 375px;
    height: 30px;
    }
  .svg-container-translate{
    margin-left: 255px;
    margin-top: 18px;
  }
}


.margin-0 {
    margin: 0rem !important;
    }
    .padding-0 {
    padding: 0rem !important;
    }
    .spacing-clean {
    padding: 0rem !important;
    margin: 0rem !important;
    }
    .margin-top {
    margin-right: 0rem !important;
    margin-bottom: 0rem !important;
    margin-left: 0rem !important;
    }
    .padding-top {
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    }
    .margin-right {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
    margin-left: 0rem !important;
    }
    .padding-right {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    }
    .margin-bottom {
    margin-top: 0rem !important;
    margin-right: 0rem !important;
    margin-left: 0rem !important;
    }
    .padding-bottom {
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    }
    .margin-left {
    margin-top: 0rem !important;
    margin-right: 0rem !important;
    margin-bottom: 0rem !important;
    }
    .padding-left {
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    }
    .margin-horizontal {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
    }
    .padding-horizontal {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    }
    .margin-vertical {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
    }
    .padding-vertical {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    }
  