@font-face {
  font-family: "raleway";
  src: url("fonts/raleway.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
*, *::before, *::after, *::placeholder {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  font-family: "raleway", arial, sans-serif;
  cursor: url("../images/cursor.png"), default;
  font-size: 1.6rem;
}

*::-webkit-scrollbar {
  height: 1.3rem;
  background-color: rgb(133, 146, 158);
}
*::-webkit-scrollbar-thumb {
  background-color: rgb(52, 73, 94);
  border-radius: 0.6rem;
  box-shadow: inset 0 -0.6rem 1rem rgb(133, 146, 158), 0 0.3rem 1rem rgba(0, 0, 0, 0.6);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: rgb(214, 219, 223);
}

a {
  text-decoration: none;
  color: #000;
}

.button-animation {
  position: relative;
  display: inline-block;
  margin: 0.6rem;
  padding: 1.6rem 5.6rem;
  border: none;
  border-radius: 3rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  color: #fff;
  font-weight: bold;
  background-image: radial-gradient(circle at top left, rgb(235, 237, 239) 10%, rgb(174, 182, 191) 30%, rgb(133, 146, 158) 60%, rgb(52, 73, 94) 90%);
  overflow: hidden;
  transition: 0.3s transform ease;
}
.button-animation > figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.button-animation > figure span {
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgb(52, 73, 94);
  transition: 0.3s padding ease;
}
.button-animation > picture {
  position: relative;
  z-index: 10;
}

.button-animation:hover {
  transform: scale(1.1);
}
.button-animation:hover > figure span {
  padding: 100%;
}

.button-animation.whats {
  vertical-align: bottom;
  background-image: radial-gradient(circle at top left, #4ada80 30%, #00a884 60%);
  padding: 1rem 3rem;
}
.button-animation.whats img, .button-animation.whats label {
  display: inline-block;
  margin: 0 0.3rem;
}
.button-animation.whats label {
  vertical-align: top;
  margin-top: 0.6rem;
}

.appear {
  display: inline-block;
  opacity: 0;
  animation: appear 0.2s linear normal forwards;
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.appear-bottom {
  display: inline-block;
  opacity: 0;
  animation: appear-bottom 0.2s linear normal forwards;
}
@keyframes appear-bottom {
  from {
    opacity: 0;
    transform: translateY(-200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.appear-top {
  display: inline-block;
  opacity: 0;
  animation: appear-top 1s linear normal forwards;
}
@keyframes appear-top {
  from {
    opacity: 0;
    transform: translateY(300%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.appear-left {
  display: inline-block;
  opacity: 0;
  animation: appear-left 1s linear normal forwards;
}
@keyframes appear-left {
  from {
    opacity: 0;
    transform: translateX(300%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.appear-right {
  display: block;
  opacity: 0;
  animation: appear-right 1s linear normal forwards;
}
@keyframes appear-right {
  from {
    opacity: 0;
    transform: translateX(-300%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scale {
  display: block;
  opacity: 0;
  animation: scale 1.5s linear normal forwards;
}
@keyframes scale {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loading {
  display: none;
  font-size: 1.8rem;
  color: rgb(52, 73, 94);
  letter-spacing: 0.1rem;
  user-select: none;
  vertical-align: top;
  margin-top: 2rem;
}

.arrow {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-top: 0.6rem;
}
.arrow > span {
  display: inline-block;
}
.arrow > span::before, .arrow > span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 1rem;
  background-color: #fff;
}
.arrow > span::before {
  transform: rotate(-322deg);
}
.arrow > span::after {
  top: 1rem;
  transform: rotate(322deg);
}

.inline-block {
  display: inline-block;
}

.mt-15 {
  margin-top: 1.5rem;
}

.a {
  color: #fff;
  text-decoration: underline;
}

.container-fixed {
  position: relative;
  z-index: 100;
}
.container-fixed .text {
  position: fixed;
  top: 60%;
  right: 0;
  background-color: transparent;
  width: 2rem;
  height: max-content;
  text-align: center;
}
.container-fixed .text > h6 {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 50%;
  height: 4rem;
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 3rem;
  color: rgb(241, 196, 15);
  letter-spacing: 0.2rem;
}

#idBtnToHeader {
  transition: 0.3s all ease;
}

.button-down {
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  padding: 0 2rem;
  border-radius: 10rem;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.2);
  user-select: none;
  transition: 0.3s background-color, color, border-color linear;
}
.button-down > h3 {
  display: inline-block;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
  vertical-align: top;
  margin-top: 2rem;
  color: #000;
  transition: 0.3s background-color, color, border-color linear;
}
.button-down > .btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1rem;
  border-radius: 50%;
  border: 0.2rem solid #000;
  transform: rotate(180deg);
  transition: 0.3s background-color, color, border-color linear;
}
.button-down > .btn > span, .button-down > .btn > span::before, .button-down > .btn > span::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 0.3rem;
  height: 2rem;
  background-color: #000;
  border-radius: 1rem;
}
.button-down > .btn > span::before, .button-down > .btn > span::after {
  position: absolute;
  height: 1.6rem;
  top: 0.9rem;
}
.button-down > .btn > span::before {
  transform: rotate(46deg);
  left: 0.5rem;
}
.button-down > .btn > span::after {
  transform: rotate(-46deg);
  left: -0.5rem;
}
.button-down:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.button-down:hover > h3 {
  color: rgb(241, 196, 15);
}
.button-down:hover > .btn {
  border-color: rgb(241, 196, 15);
}
.button-down:hover > .btn > span, .button-down:hover > .btn > span::before, .button-down:hover > .btn > span::after {
  background-color: rgb(241, 196, 15);
}

.header-page {
  position: relative;
  display: block;
  max-width: 100%;
  user-select: none;
}
.header-page > .carrousel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding: 1rem;
  overflow-x: hidden;
  user-select: none;
  width: 100%;
  height: 100vh;
}
.header-page > .carrousel > div {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100%;
  height: 100%;
  scroll-snap-align: center;
  filter: brightness(80%);
  background-image: url("../images/photo/sabritas.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: border-box;
}
.header-page > .carrousel > div:nth-child(1) {
  background-image: url("../images/photo/verduras.jpg");
}
.header-page > .carrousel > div:nth-child(2) {
  background-image: url("../images/photo/sodas.jpeg");
}
.header-page > .carrousel > div:nth-child(3) {
  background-image: url("../images/photo/cookies.jpg");
}
.header-page > .header-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
}
.header-page > .header-nav > ol {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 50%;
  height: 100vh;
  padding: 2rem;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.3s all ease;
}
.header-page > .header-nav > ol > a {
  color: #000;
}
.header-page > .header-nav > ol > a li {
  display: block;
  margin: 3rem 1.6rem;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
  transition: 300ms color linear;
}
.header-page > .header-nav > ol > a li:hover {
  color: rgb(241, 196, 15);
  font-weight: bold;
}
.header-page > .header-nav > ol.active {
  transform: translateX(0);
}
.header-page .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  padding: 0.6rem;
  text-align: center;
  transform: translate(-50%, -50%);
}
.header-page .main-title > span::before {
  font-size: 5rem;
  font-weight: lighter;
  letter-spacing: 0.1rem;
  color: #fff;
}

.burger {
  display: block;
  padding: 0.6rem;
  margin: 0 0.6rem;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 0.6rem;
}
.burger > span {
  display: block;
  width: 100%;
  height: 0.5rem;
  background-color: #000;
  margin: 0.6rem 0;
  border-radius: 1rem;
}

.logo > img {
  display: inline-block;
  vertical-align: middle;
}
.logo > h2 {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  vertical-align: middle;
}

.section-info > article:first-child {
  padding: 1rem;
  height: 100vh;
  text-align: center;
  color: #fff;
  background-color: #000;
}
.section-info > article:first-child > div {
  opacity: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35vh;
}
.section-info > article:first-child > div > hgroup > h2 {
  font-size: 2rem;
  margin: 1rem 0;
  font-weight: lighter;
}
.section-info > article:first-child > div > hgroup > h3 {
  font-size: 3rem;
  margin: 1rem 0;
  font-weight: lighter;
}
.section-info > article:first-child > div > p {
  margin: 2rem 0;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

hr {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  height: 16.6666666667vh;
  border: 0.1rem solid rgb(241, 196, 15);
  transform: translateX(-50%);
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1.6rem;
  font-weight: lighter;
  opacity: 0;
}

/**
 * Seccion de imagen e informacion estatica.
 */
.some-info {
  position: relative;
  background-color: #fff;
}
.some-info > dl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.some-info > dl > dt {
  display: block;
  width: 100%;
  height: 25rem;
  order: 2;
  background-image: url("../images/photo/coca-cola.jpeg");
  filter: saturate(1.3) brightness(1.1);
  background-origin: border-box;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.some-info > dl > dd {
  position: relative;
  order: 1;
  padding: 20vh 3rem;
}
.some-info > dl > dd hr {
  border-color: #000;
}

.items-info > li {
  list-style: none;
  display: block;
  width: 100%;
  margin: 6rem 0;
  text-align: center;
  opacity: 0;
}
.items-info > li > h3 {
  font-size: 1.8rem;
}
.items-info > li > p {
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 2.3rem;
  font-weight: lighter;
}

/**
 * Seccion de informacion e imagen.
 */
.some-products > dl {
  height: 100vh;
  position: relative;
  background-color: #202120;
}
.some-products > dl > dt {
  position: relative;
  display: block;
  color: #fff;
  padding: 20vh 3rem;
}
.some-products > dl > dd {
  position: relative;
}
.some-products > dl > dd > label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  margin: 1rem;
  color: #fff;
  background-color: rgba(52, 73, 94, 0.4);
  border-radius: 0.6rem;
  overflow: hidden;
}
.some-products > dl > dd > label > figure {
  display: block;
  width: 100%;
  padding: 1rem;
  backdrop-filter: blur(8px);
  font-weight: lighter;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.some-products > dl > dd > img {
  display: block;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.3);
}

.items > li {
  display: block;
  width: max-content;
  text-align: center;
  list-style: none;
  margin-top: 1.6rem;
  margin: 0 auto;
  font-size: 1.8rem;
  transition: 0.7s all ease;
  opacity: 0;
}
.items > li:hover {
  color: rgb(241, 196, 15);
  font-weight: bold;
}
.items > li:hover > .arrow {
  opacity: 1;
  transform: scale(1);
}
.items > li > .arrow {
  transition: 300ms all ease;
  opacity: 0;
  transform: scale(0.7);
  margin-left: 1rem;
}

.hidden {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: 0.3ms visibility linear;
}
.hidden.active .hidden-content {
  visibility: visible;
  opacity: 1;
}
.hidden .hidden-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #202120;
  padding: 3rem;
  opacity: 0;
  transition: 500ms opacity linear;
}
.hidden .hidden-content > button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  font-size: 1.8rem;
  border: none;
  color: #fff;
  transition: 300ms all ease;
}
.hidden .hidden-content > button > label:last-child {
  margin-left: 1rem;
}
.hidden .hidden-content > button > .arrow {
  margin-top: 0.4rem;
  margin-right: 0.3rem;
  transform: scale(0.7) rotateY(160deg);
  opacity: 0;
  transition: 300ms all ease;
}
.hidden .hidden-content > button:hover {
  font-weight: bold;
  color: rgb(241, 196, 15);
}
.hidden .hidden-content > button:hover > .arrow {
  transform: scale(1) rotateY(160deg);
  opacity: 1;
}
.hidden .hidden-content > p {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-top: 3rem;
}

.move-text {
  padding: 6rem 0;
  background-color: #fff;
}
.move-text > hgroup {
  display: block;
  max-width: 100%;
  overflow-x: hidden;
  user-select: none;
}
.move-text > hgroup h2, .move-text > hgroup h3 {
  white-space: nowrap;
  font-size: 7rem;
  font-weight: lighter;
  line-height: 4rem;
  margin: 16rem 0;
  transition: 0.3s transform ease;
}
.move-text > hgroup > h2 {
  transform: translateX(-100%);
}
.move-text > hgroup > p {
  transition: 0.3s transform ease;
}

.css-3d {
  display: block;
  background-color: rgb(248, 249, 249);
  overflow: hidden;
}
.css-3d h6 {
  font-size: 3rem;
  text-align: center;
  margin: 6rem 0;
}

.container-figures {
  position: relative;
  padding: 3rem 0;
}
.container-figures > div > figure {
  display: block;
  width: 50rem;
  height: 30rem;
  border-radius: 20rem 0rem;
  box-shadow: 0.3rem 0 1rem transparent, 0 0.3rem 1rem transparent, 0 0.3rem 1rem rgba(0, 0, 0, 0.1), 0 0.6rem 2rem rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to left, rgb(235, 237, 239) 10%, #fff 60%);
  margin: 1rem;
  transform: rotate(337deg) translate(-17.9rem);
}
.container-figures > div > figure:last-child {
  margin-top: 13rem;
  transform: rotate(-337deg) translate(30%);
}
.container-figures > span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 3rem;
  transform: translateY(-50%);
}
.container-figures > span h6 {
  opacity: 0;
}
.container-figures > span p {
  text-align: center;
  line-height: 3.3rem;
  padding: 0.6rem;
  opacity: 0;
}
.container-figures > span p:last-child {
  margin-top: 3rem;
}

.figure-3d {
  padding: 1rem 0;
}

.container-form {
  background-color: #fff;
  padding-bottom: 13rem !important;
}
.container-form > .form {
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}
.container-form > .form > div:first-child {
  padding: 3rem 1rem;
  background-color: rgb(52, 73, 94);
  color: #fff;
  opacity: 0;
  transition: 500ms all ease;
}
.container-form > .form > div:first-child > h6 {
  text-align: center;
  font-size: 3rem;
  margin-top: 3rem;
  letter-spacing: 0.3rem;
}
.container-form > .form > div:first-child > p {
  margin: 2rem;
  text-align: center;
  font-weight: lighter;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
.container-form > .form > div:first-child > ul > li {
  position: relative;
  display: block;
  width: max-content;
  font-size: 1.4rem;
  text-align: center;
  margin: 1rem auto 1rem 20%;
}
.container-form > .form > div:first-child > ul > li > span {
  display: inline-block;
  margin-left: 0.6rem;
}
.container-form > .form > div:first-child > ul > li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  padding: 1rem;
  background-color: #fff;
  border-radius: 50%;
  vertical-align: bottom;
}
.container-form > .form > div:first-child > ul > li::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-block;
  width: 0;
  height: 0;
  padding: 0.5rem;
  background-color: rgb(52, 73, 94);
  border-radius: 50%;
}
.container-form > .form > div:first-child.bottom {
  display: block;
  opacity: 0;
  animation: bottom 1.8s linear normal forwards;
}
@keyframes bottom {
  from {
    opacity: 0;
    transform: translateY(-200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container-form > .form > div:last-child {
  padding: 3rem 1rem;
  background-color: #fff;
  opacity: 0;
  transition: 500ms all ease;
}
.container-form > .form > div:last-child > h6 {
  text-align: center;
  font-size: 3rem;
  margin-top: 3rem;
  letter-spacing: 0.3rem;
}
.container-form > .form > div:last-child > .content {
  margin: 2rem 0;
}
.container-form > .form > div:last-child > .content > div:last-child {
  text-align: center;
  margin-top: 1rem;
}
.container-form > .form > div:last-child.top {
  display: block;
  opacity: 0;
  animation: top 1.8s linear normal forwards;
}
@keyframes top {
  from {
    opacity: 0;
    transform: translateY(200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-control {
  display: block;
  padding: 1rem 0;
  text-align: center;
}
.form-control > span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  font-weight: lighter;
}
.form-control input, .form-control textarea {
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 0.2rem;
  margin-top: 1rem;
  outline: 0.2rem solid rgb(235, 237, 239);
  letter-spacing: 0.1rem;
  line-height: 2.6rem;
}
.form-control input::placeholder, .form-control textarea::placeholder {
  color: rgb(174, 182, 191);
}
.form-control input:focus, .form-control textarea:focus {
  outline: 0.2rem solid rgb(174, 182, 191);
}

#idError {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  color: red;
  user-select: none;
  visibility: hidden;
}
#idError.visible {
  visibility: visible;
}

.grid {
  position: relative;
  display: block;
  padding: 2rem;
  background-color: rgb(52, 73, 94);
}
.grid > .grid-cols {
  position: relative;
  z-index: 10;
  display: block;
  margin: 3.6rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
}
.grid > .grid-cols > h2 {
  font-size: 4rem;
  letter-spacing: 0.1rem;
}
.grid > .grid-cols > h3 {
  margin-bottom: 1rem;
}
.grid > .grid-cols li {
  display: inline-block;
  margin: 0.6rem 0;
  list-style: none;
}
.grid > .grid-cols li a {
  color: #fff;
  font-size: 1.5rem;
}
.grid .figure-footer, .grid .figure-footer-1 {
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(52, 73, 94);
  z-index: 5;
}
.grid .figure-footer-1 {
  left: initial;
  right: 0;
  border-top-left-radius: 20%;
  border-top-right-radius: 35%;
  transform: rotate(307deg) skew(325deg, 58deg);
}

.address {
  position: relative;
  z-index: 10;
  padding: 2rem 3rem;
  text-decoration: none;
  font-style: normal;
  background-color: rgb(235, 237, 239);
  color: rgb(52, 73, 94);
  text-align: center;
}
.address > small {
  display: block;
  margin-bottom: 1rem;
}

@media screen and (min-width: 640px) {
  .button-down {
    margin: 2rem;
  }
  .address {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .header-page .main-title {
    font-size: 7rem;
  }
  .section-info > article:first-child > div {
    width: 50%;
  }
  .some-info > dl {
    flex-direction: row;
    align-items: stretch;
  }
  .some-info > dl > dt {
    background-size: contain;
  }
  .some-info > dl > dt, .some-info > dl > dd {
    width: 50%;
  }
  .some-info > dl > dd {
    order: 2;
    padding: 10rem;
  }
  .some-info > dl > dd > hr {
    height: 8rem;
  }
  .some-info > dl > dt {
    order: 1;
    height: auto;
  }
  .some-products > dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-columns: 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: stretch;
  }
  .some-products > dl > dt {
    padding: 25vh 10rem;
  }
  .some-products > dl > dt hr {
    height: 20vh;
  }
  .some-products > dl > dd > img {
    height: 100%;
  }
  .section-title {
    font-size: 3.6rem;
    margin: 2rem 0;
  }
  .items > li {
    margin-top: 2rem;
    font-size: 2rem;
  }
  .container-figures {
    width: 50%;
    margin: auto;
  }
  .container-figures > div > figure:last-child {
    transform: rotate(-337deg) translate(60%);
  }
  .container-figures > span p {
    font-size: 2rem;
  }
  .container-form {
    background-image: radial-gradient(at top left, #fff 30%, rgb(235, 237, 239) 55%, rgb(174, 182, 191) 80%);
    padding: 6rem 0;
  }
  .container-form > .form {
    width: 80%;
    margin: auto;
  }
  .container-form > .form > div:last-child {
    padding: 6rem;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: stretch;
    padding: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .header-page > .header-nav > h2 {
    font-size: 3rem;
  }
  .header-page > .header-nav > ol {
    position: static;
    transform: translateX(0);
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
  .header-page > .header-nav > ol > a {
    color: #fff;
  }
  .header-page > .header-nav > ol > a > li {
    display: inline-block;
  }
  .burger {
    display: none;
  }
  .section-info > article:first-child > div > hgroup > h2 {
    font-size: 3rem;
  }
  .section-info > article:first-child > div > hgroup > h3 {
    font-size: 4rem;
  }
  .section-info > article:first-child > div > p {
    margin: 3rem 0;
    font-size: 2.6rem;
    line-height: 3rem;
  }
  .section-title {
    font-size: 3.6rem;
    margin: 2rem 0;
  }
  .move-text > hgroup > h2, .move-text > hgroup > h3 {
    font-size: 9rem;
  }
  .container-figures {
    width: 60%;
    margin: auto;
  }
  .container-figures > div > figure:last-child {
    transform: rotate(-337deg) translate(100%);
  }
  .container-form {
    padding: 6rem 0;
  }
  .container-form > .form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    width: 90%;
  }
  .container-form > .form > div:first-child {
    padding: 12rem 8rem;
    border-top-left-radius: 13rem;
    border-bottom-left-radius: 3rem;
  }
  .container-form > .form > div:last-child {
    padding: 3rem 8rem;
    border-radius: 1rem;
  }
  .container-form > .form > div:last-child > h6 {
    font-size: 6rem;
    text-align: left;
  }
  .container-form > .form > div:last-child > .content > .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
  }
  .container-form > .form > div:last-child > .content > .flex > .form-control {
    margin: 0.6rem;
    width: 50%;
  }
  .form-control {
    text-align: left;
  }
  .grid .figure-footer, .grid .figure-footer-1 {
    transform: rotate(4deg) skewX(21deg);
    border-top-left-radius: 35%;
    border-top-right-radius: 20%;
  }
  .grid .figure-footer-1 {
    border-top-left-radius: 20%;
    border-top-right-radius: 35%;
    transform: rotate(4deg) skew(99deg, 344deg);
  }
}

/*# sourceMappingURL=global.css.map */
