@font-face {
  font-family: Girfood;
  src: url('../fonts/Girfood.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overflow: clip;
}

h1 {
  color: #023e8a;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Girfood, Arial, sans-serif;
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

p {
  color: #363636;
  text-align: center;
  letter-spacing: .1rem;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
}

.bg-wrapper {
  background-image: linear-gradient(#0000000d, #0000000d), url('../images/bg-pina.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.section {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  display: flex;
  position: relative;
  overflow: clip;
}

.brick {
  object-fit: cover;
  width: 36.7rem;
  height: 100%;
}

.brick.is-left {
  object-position: 100% 50%;
}

.brick.is-right {
  object-position: 0% 50%;
  width: 47.7rem;
}

.container {
  max-width: 80rem;
}

.content-wrapper {
  z-index: 2;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.mascot {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.button_group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  display: flex;
  position: relative;
}

.text-wrap {
  text-align: center;
  width: 65rem;
}

.div-block {
  margin-top: 2rem;
}

.btn {
  color: #fff;
  letter-spacing: 1px;
  background-color: #ff6155;
  border: .2rem solid #ff6155;
  border-radius: .5rem;
  padding: .5rem 1.5rem;
  font-family: Girfood, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: transform .5s cubic-bezier(.68, -.55, .265, 1.55);
}

.btn:hover {
  position: relative;
  transform: scale(1.05);
}

.btn.secondary {
  color: #ff6155;
  background-color: #0000;
  border-color: #ff6155;
}

.logo-img {
  z-index: 2;
  width: 17rem;
  position: relative;
}

.logo-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.abs {
  width: auto;
  height: 120%;
  position: absolute;
  inset: 2% -11.2vw auto auto;
}

.logo-contain {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.paragraph {
  color: #030303;
}

.motto-wrap {
  width: 100vw;
  display: flex;
  position: absolute;
  inset: 30% auto auto;
  transform: rotate(-1.5deg);
}

.motto-pattern {
  background-image: url('../images/motto-pattern.webp');
  background-position: 0%;
  background-repeat: repeat-x;
  background-size: contain;
  flex: 1;
  width: 100%;
  margin-right: -1.5rem;
  position: static;
  inset: 0% auto 0% 100%;
}

.motto-pattern.is-2 {
  position: static;
  left: -870%;
  right: 100%;
  transform: skew(-11deg);
}

.motto-pattern.is-right {
  flex: 1;
  margin-left: -1.5rem;
  margin-right: 0;
}

.motto-image {
  object-fit: fill;
  width: 100%;
  height: 100%;
  position: absolute;
}

.motto-image.is-slogan {
  object-fit: contain;
  width: 70%;
}

.motto-content {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35rem;
  height: 4rem;
  margin-left: -18rem;
  display: flex;
  position: relative;
}

.heading {
  font-weight: 700;
}

.licence {
  z-index: 2;
  color: #000;
  justify-content: center;
  align-items: center;
  font-size: .92rem;
  line-height: 1.1;
  display: flex;
  position: absolute;
  inset: auto 0% 2.5%;
}

@media screen and (max-width: 991px) {
  .brick.is-left {
    width: 32.3rem;
  }

  .brick.is-right {
    display: none;
  }

  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mascot {
    width: 20rem;
  }

  .button_group {
    align-items: flex-start;
  }

  .text-wrap {
    width: 100%;
  }

  .logo-img {
    width: 25vw;
  }

  .motto-wrap {
    top: 28%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3.5rem;
  }

  p {
    font-size: 1.2rem;
  }

  .bg-wrapper {
    justify-content: space-between;
    align-items: flex-end;
  }

  .brick.is-left {
    object-position: 100% 100%;
    width: 16.6rem;
    height: 70%;
    display: none;
  }

  .container {
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .content-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    width: 100%;
  }

  .button_group {
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }

  .text-wrap {
    width: 100%;
    position: relative;
    bottom: auto;
  }

  .div-block {
    margin-top: 1.5rem;
  }

  .btn {
    font-size: 1.2rem;
  }

  .logo-img {
    width: 35vw;
  }

  .abs {
    right: -12.9rem;
  }

  .motto-wrap {
    top: 21%;
  }

  .motto-content {
    width: 19rem;
    height: 3rem;
    margin-left: -10rem;
  }

  .paragraph-2 {
    font-size: 1rem;
  }

  .licence {
    font-size: .7rem;
    bottom: .5%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: .9rem;
  }

  .brick.is-left {
    width: 9.2rem;
    height: 31%;
  }

  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button_group {
    flex-flow: column;
  }

  .btn {
    font-size: 1rem;
  }

  .logo-wrap {
    left: 0%;
  }

  .motto-wrap {
    position: relative;
    top: auto;
    bottom: 1.5rem;
  }

  .motto-image.is-slogan {
    width: 83%;
  }

  .motto-content {
    width: 90vw;
    height: 3.5rem;
    margin-left: 0;
  }
}


@font-face {
  font-family: 'Girfood';
  src: url('../fonts/Girfood.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}