:root {
  --font-family-base: 'Inter', sans-serif;
}

body {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #252432;
  background-color: #f5f8fe;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 0.95;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;

  main {
    flex-grow: 1;
  }
}

.container {
  max-width: 1340px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition:
    scale 0.3s,
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;

  &:hover {
    scale: 1.03;
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}

.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;
}

.bg-wrapper {
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    width: 1027px;
    height: 1027px;
    z-index: -1;
    border-radius: 1027px;
    background: #bfd8ff;
    filter: blur(92px);
  }

  &::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30%;
    width: 1254px;
    height: 1244px;
    z-index: -1;
    border-radius: 737px;
    background: #e3d3ff;
    filter: blur(92px);
  }
}

.bg-circle {
  position: absolute;
  bottom: 0%;
  left: -25%;
  width: 1378px;
  height: 1368px;
  z-index: -1;
  border-radius: 1378px;
  background: #cdc1ff;
  filter: blur(161px);

  &::after {
    content: '';
    position: absolute;
    top: 21%;
    right: -34%;
    width: 793px;
    height: 793px;
    z-index: -1;
    border-radius: 737px;
    background: #bfd8ff;
    filter: blur(92px);
  }
}

/* #region MEDIA QUERIES */

@media (width <= 1200px) {
  .container {
    max-width: 100%;
  }
}

@media (width <= 744px) {
  .container {
    padding-inline: 16px;
  }
  h1 {
    font-size: 48px;
    line-height: 1.3;
  }
  h2 {
    font-size: 40px;
    line-height: 1.6;
  }
}

/* #endregion MEDIA QUERIES */
