:root {
  --black-bg: #181819;
  --title-color: #E9ECEF;
  --text-gray-color: #D6D6D6;
  --placeholder-text-color: #47474E;
  --active-yellow: #EBBD84;
  --bg:#0f1013;
  --card:#16171b;
  --text:#E9ECEF;
  --muted:#A7ABB3;
  --title:#ffffff;
  --brand-1:#EBBD84;
  --brand-2:#3353A8;
  --accent:#ffb85c;
  --radius:12px;
}

html{
  overflow-x: hidden;
}

.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

body {
  background-color: var(--black-bg);
  font-family: Lexend, sans-serif;
  color: #D6D6D6;
  margin: 0;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

input:focus-visible {
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.5s;
}

img {
  width: 100%;
  transition: all 0.5s;
}

.gradient-text {
    font-family: "Manrope", sans-serif;
    background: linear-gradient(257.3deg, #EBBD84 6.28%, #3353A8 102.93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 4px;
    width: max-content;
}
@media (max-width: 768px) {
  .gradient-text {
    font-size: 14px;
  }
}

.btn-border-gradient {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--title-color);
  border-radius: 32px;
  background-color: transparent;
  position: relative;
  padding: 16px 33px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  min-width: 223px;
}
.btn-border-gradient:hover {
  background: linear-gradient(274deg, #EBBD84 -3.28%, #3353A8 132.5%);
}
.btn-border-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(274.43deg, #EBBD84 -3.28%, #3353A8 132.5%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-gradient-full {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--title-color);
  border-radius: 32px;
  background: linear-gradient(274.43deg, #EBBD84 -3.28%, #3353A8 132.5%);
  position: relative;
  padding: 16px 33px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  min-width: 223px;
}
.btn-gradient-full:hover {
  background: transparent;
}
.btn-gradient-full::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(274.43deg, #EBBD84 -3.28%, #3353A8 132.5%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

@media (max-width: 768px) {
  .mob-hidden {
    display: none;
  }
}

.desk-hidden {
  display: none;
}
@media (max-width: 768px) {
  .desk-hidden {
    display: block;
  }
}



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;      
  -webkit-box-shadow: 0 0 0 1000px #00000000 inset; 
  box-shadow: 0 0 0 1000px #00000000 inset;         
  border: 1px solid #cccccc;               
  transition: background-color 5000s ease-in-out 0s;
}

input::placeholder{
  color: #fff;
}