body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
}

p {
  margin-bottom: 10px;
  font-size: 1.6em;
  line-height: 1.3;
}

.under-c {
  color: #312f30;
  background-color: #fc9303;
  background-image: url('../images/bg.svg');
  background-position: 50% 0;
  background-size: 100%;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100svh;
  padding-top: 2rem;
  display: flex;
}

.under-c_inside {
  background-color: #312f30;
  padding: 1rem 1rem 20vh;
  font-size: 1em;
  position: relative;
}

.white-line {
  background-color: #fff;
  width: 100%;
  height: 1em;
  margin-left: auto;
  margin-right: auto;
}

.briks {
  width: 100%;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.under-c_top {
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: -4em;
  padding-top: 0;
  font-size: 1.2em;
  display: flex;
  position: relative;
}

.mascot {
  z-index: 2;
  width: 100%;
  max-width: 20em;
  margin-right: -3.125em;
  position: relative;
}

.brand {
  z-index: 1;
  width: 100%;
  max-width: 30em;
  position: relative;
}

.shape-bg {
  z-index: 0;
  text-align: center;
  margin-bottom: 4rem;
  position: absolute;
  inset: auto 0% 0%;
}

.shape-1 {
  width: 100%;
  max-width: 60vw;
}

.buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #fc9301;
  border-radius: 99rem;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding: 0 1rem;
  text-decoration: none;
  display: flex;
}

.content {
  text-align: center;
  width: 100%;
  max-width: 40rem;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media screen and (max-width: 991px) {
  .under-c {
    background-size: cover;
  }

  .white-line {
    height: .5em;
  }

  .under-c_top {
    font-size: 1em;
  }

  .shape-bg {
    margin-bottom: 3.3rem;
  }
}

@media screen and (max-width: 767px) {
  .under-c_top {
    font-size: .8em;
  }

  .content {
    font-size: .9em;
  }
}

@media screen and (max-width: 479px) {
  .under-c_top {
    font-size: .45em;
  }

  .buttons {
    flex-flow: column;
  }

  .button {
    width: 100%;
  }

  .content {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .6em;
  }
}


