@import url(header.css);
@import url(main.css);
@import url(footer.css);
@import url(popup.css);

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&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;
} */


* {
  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: 'Lexend', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background-position: center top;
  background-size: 100%;
  background-color: #246600;
}

button {
  cursor: pointer;
  display: block;
  border: none;
}

a {
  text-decoration: none;
  color: white;
}

li {
  list-style: none;
  margin-left: 20px;
}

input:focus {
  outline: none;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  font-family: 'Lexend', sans-serif;
  padding-bottom: 30px;
  font-weight: 400;
  color: #ffffff;
}

h1 {
  font-size: 50px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}

h2 {
  font-family: Lexend;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
}

h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}


.color{
  background: #ffc100;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.standart {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.bold{
  font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 700;
}
.red{
  color: #CA0148;
}
.beige {
  color: #FFF3DA;
}
.yellow {
  color: #FBA300;
}
.orange {
  color: #FBA300;
}
.uppercase{
  text-transform: uppercase;
}

.big {
  font-family: Lexend;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.small {
  font-family: Lexend;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.little {
  font-family: Lexend;
font-size: 14px;
font-style: normal;
font-weight: 400;
}

.section {
  max-width: 1280px;
  width: 100%;
  padding: 10px 20px;
  margin: 80px auto;
}

.center {
  text-align: center;
}
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.aligns-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
  padding: 10px;
}
.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;
}

.green {
  color: #8CD32A;
}
.yellow {
  color: #FFCC32;
}

@media (max-width: 1010px) {
  h1 {
    font-size: 40px;
  }
  /* h2 {
    font-size: 33px;
  } */
  h3 {
    font-size: 21px;
  }
}

@media (max-width: 800px) {
  .big{
    font-size: 14px;
  }
}


@media (max-width: 680px) {
  .standart {
    font-size: 12px;
  }
  h1 {
    font-size: 28px;
    text-align: left;
  }

  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .big {
    font-size: 15px;
  }
}

@media (max-width: 580px) {
  .small {
    font-size: 12px;
  }
  .little {
    font-size: 12px;
  }
  .big {
    font-size: 16px;
  }
  body{
    background-size: 680px;
    background-position: 100% top;
  }
}
