@import url(/styles/header.css);
@import url(/styles/main.css);
@import url(/styles/footer.css);
@import url(/styles/popup.css);


@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: 'Inter', sans-serif;
  min-height: 100vh;
  background-color: #2A2A2A;
  overflow-x: hidden;
}

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: 'Inter', sans-serif;
  background: #4C001B;
  padding-bottom: 30px;
  font-weight: 400;
  color: #ffffff;
}

h1 {
  color: #FBA300;
font-family: Inter;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

h2 {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h3 {
  color: #CA0148;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 400;
}



.standart {
  font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
}

.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: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.small {
  font-family: Inter;
font-size: 10px;
font-style: normal;
font-weight: 400;
}
.little {
  font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
}

.section {
  max-width: 1197px;
  width: 100%;
  padding: 10px 20px;
  margin: 40px 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;
    font-weight: 900;
    /* line-height: 23.9px; */
    text-align: center;
  }
  /* 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: 31px;
  }

  h2 {
    font-size: 14px;
  }
  h3 {
    font-size: 14px;
  }
  .big {
    font-size: 15px;
  }
}

@media (max-width: 580px) {
  .small {
    font-size: 9px;
  }
  .big {
    font-size: 16px;
  }
  h1 {
    font-size: 20px;
  }
}
