:root {
  --font-family-base: Arial, sans-serif;
}
html {
  scroll-padding-top: 240px;
}
body {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
  color: #000;
  background-color: #fff;
}

h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.main__wrapper {
  display: flex;
  gap: 30px;
  padding-top: 60px;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;

  main {
    flex-grow: 1;
  }
}

.container {
  max-width: 1136px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}

.highlight {
  color: #f90000;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 570px;
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(90deg, #870000 0%, #000098 100%);
  box-shadow: 0 4px 19px 0 rgba(62, 0, 0, 0.65);
  cursor: pointer;

  transition:
    scale 0.3s,
    transform 0.3s;

  &:hover {
    scale: 1.03;
    transform: translateY(-3px);
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

/* #region MEDIA QUERIES */

@media (width < 1024px) {
  .container {
    max-width: 100%;
  }
  .main__wrapper {
    flex-direction: column;
    padding-top: 40px;
    gap: 50px;
  }
}

@media (width < 744px) {
  .main {
    .container {
      padding-inline: 0;
    }
  }
}

/* #endregion MEDIA QUERIES */
