@import url("/styles/main.css");
@import url("/styles/privacy.css");
@import url("/styles/footer.css");
@import url("/styles/popup.css");


@font-face {
  font-family: 'Inter';
  src: url("/fonts/Inter-Black.woff2") format('woff2'),
       url("/fonts/Inter-Black.woff") format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("/fonts/Inter-Bold.woff2") format('woff2'),
       url("/fonts/Inter-Bold.woff") format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("/fonts/Inter-Regular.woff2") format('woff2'),
       url("/fonts/Inter-Regular.woff") format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("/fonts/Inter-SemiBold.woff2") format('woff2'),
       url("/fonts/Inter-SemiBold.woff") format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 1;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background:linear-gradient(90deg, rgba(39, 68, 93,0.4) 0%, rgba(113, 187, 178,0.7) 100%), url("/images/main.png");
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: hidden;
}


button {
  cursor: pointer;
  display: block;
  border: none;
}

button > a {
  color: #ffffff;
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

a {
  text-decoration: none;
  color: white;
}

li {
  list-style: disc;
  margin-left: 20px;
}

input:focus {
  outline: none;
}

.wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 25px;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}

h1 {
  font-family: Inter;
font-size: 40px;
font-style: normal;
font-weight: 900;
}

h2 {
  font-family: Inter;
font-size: 36px;
font-style: normal;
font-weight: 900;
}

h3 {
  font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 600;
}


.standart {
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.big {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 37.5px;
  text-align: left;
}
.bold {
  font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 700;
}
.little {
  font-family: Inter;
font-size: 11px;
font-style: normal;
font-weight: 400;
}
.small {
  font-family: Inter;
font-size: 13px;
font-style: normal;
font-weight: 400;
}

.section {
  max-width: 1160px;
  width: 100%;
  padding: 20px 10px;
  margin: auto;
}

.center {
  text-align: center;
}
.underline {
  text-decoration: underline;
}
.flex {
  display: flex;
}

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

.aligns-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: end;
}

.g-10 {
  gap: 10px;
}

.g-20 {
  gap: 20px;
}
.g-30 {
  gap: 30px;
}
.g-40 {
  gap: 40px;
}

.p-10 {
  padding: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}


