/*
0-600px: Phone
600-900px: Tablet portrait
900-1200px: Tablet landskape
[1200-1800px] - is where our normal styles apply
1800+px: Widescreen Laptop


$breakpoint argument choices
- phone
- tab-port
- tab-land
- wide-desktop

ORDER::afterBase + Typography -> General Layout + Grid -> Page Layout -> Components

*/
.ttf-ease {
  transition-timing-function: ease;
}
.ttf-linear {
  transition-timing-function: linear;
}
.ttf-ease-in {
  transition-timing-function: ease-in;
}
.ttf-ease-out {
  transition-timing-function: ease-out;
}
.ttf-ease-in-out {
  transition-timing-function: ease-in-out;
}
.ttf-steps {
  transition-timing-function: steps(3);
}
.ttf-cubic {
  transition-timing-function: cubic-bezier(0, 0.45, 0.55, 1);
}
.ttf:is(:hover, :focus) {
  width: 100%;
}

*:focus {
  outline-width: 3px;
  outline-style: solid;
  outline-color: rgb(168, 89, 19) !important;
}

.url:link, .url:visited {
  text-decoration: none;
  color: #e67e22;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: 2px;
  transition: all 300ms;
}
.url:hover, .url:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
}

ul,
ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}
li .icon {
  font-size: 3rem;
  color: #e67e22;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 60em) {
  html {
    font-size: 50%;
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  color: #343a40;
}

strong {
  font-weight: 500;
}

.typ-h01, .typ-h02, .typ-h03 {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #333;
}
.typ-h01 {
  font-size: 5.2rem;
  line-height: 1.05;
}
@media only screen and (max-width: 75em) {
  .typ-h01 {
    font-size: 4.4rem;
  }
}
.typ-h02 {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}
@media only screen and (max-width: 75em) {
  .typ-h02 {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 60em) {
  .typ-h02 {
    margin-bottom: 4.8rem;
  }
}
.typ-h03 {
  font-size: 3rem;
  line-height: 1.2;
}
@media only screen and (max-width: 75em) {
  .typ-h03 {
    font-size: 2.4rem;
  }
}
.typ-sh01 {
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 1.6rem;
}
.typ-a01 {
  color: #cf711f;
  font-weight: 700;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.6rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4.8rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-huge {
  margin-bottom: 10rem !important;
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.btn, .btn:link, .btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 300ms;
}
.btn_cta {
  background-color: #e67e22;
  color: #fff;
}
.btn_cta:hover, .btn_cta:active {
  background-color: #cf711f;
}
.btn_learn-more {
  background-color: #fff;
  color: #343a40;
}
.btn_learn-more:hover, .btn_learn-more:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
}
.btn_form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}
.btn_form:hover {
  background-color: #fff;
  color: #343a40;
}
.btn_nav-mobile {
  z-index: 100;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 60em) {
  .btn_nav-mobile {
    display: block;
  }
}
.btn_nav-mobile_icon {
  font-size: 4.8rem;
  color: #333;
}
.btn_nav-mobile_icon-close {
  display: none;
}
.img {
  width: 100%;
}

.logo {
  height: 2.2rem;
  width: auto;
}

.header {
  background-color: #fdf2e9;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9.6rem;
  padding: 0 4.8rem;
}
@media only screen and (max-width: 75em) {
  .header-container {
    padding: 0 3.2rem;
  }
}

.sticky .header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .section-hero {
  margin-top: 9.6rem;
}

.nav-header {
  position: relative;
}
@media only screen and (max-width: 60em) {
  .nav-header {
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-in;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .nav-header_open .nav-header {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0%);
  }
  .nav-header_open .btn_nav-mobile_icon-close {
    display: block;
  }
  .nav-header_open .btn_nav-mobile_icon-menu {
    display: none;
  }
}
.nav-header_list {
  flex-direction: row;
  gap: 4.8rem;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 75em) {
  .nav-header_list {
    gap: 3.2rem;
  }
}
@media only screen and (max-width: 60em) {
  .nav-header_list {
    flex-direction: column;
    gap: 4.8rem;
    font-size: 3rem;
  }
}
.nav-footer_list {
  font-size: 1.6rem;
  gap: 2.4rem;
}
.nav_list {
  flex-wrap: wrap;
}
.nav_list-item:link, .nav_list-item:visited {
  text-decoration: none;
  font-size: inherit;
  transition: all 300ms;
}
.nav_list-item_ftr {
  color: #767676;
}
.nav_list-item_ftr:hover, .nav_list-item_ftr:active {
  color: #343a40;
}
.nav_list-item_std {
  color: #343a40;
}
.nav_list-item_std:hover, .nav_list-item_std:active {
  color: #cf711f;
}
.nav_list-item_cta {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  background-color: #e67e22;
  color: #fff;
}
.nav_list-item_cta:hover, .nav_list-item_cta:active {
  background-color: #cf711f;
}

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}
.footer-container {
  grid-template-columns: 3fr 3fr 2fr 2fr 2fr;
}
@media only screen and (max-width: 45em) {
  .footer-container.grid {
    gap: 3.2rem 4.8rem;
  }
}
@media only screen and (max-width: 45em) {
  .footer-container {
    grid-template-columns: repeat(6, 1fr);
  }
}
.footer-logo {
  margin-bottom: 3.2rem;
}
@media only screen and (max-width: 45em) {
  .footer-col_nav {
    grid-row: 1;
    grid-column: span 2;
  }
}
.footer-col_connect {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 45em) {
  .footer-col_connect {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 45em) {
  .footer-col_contact {
    grid-column: span 3;
  }
}
.footer-col_heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
.footer-col_address {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}
.footer-col_address-address {
  margin-bottom: 2.4rem;
}

.social {
  flex-direction: row;
}
.social-icon {
  font-size: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  color: #767676;
  line-height: 1.6;
  margin-top: auto;
}

.section-cta {
  padding: 4.8rem 0 12.8rem 0;
}

.cta-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  overflow: hidden;
  background-image: linear-gradient(to right bottom, rgb(235, 152, 78), rgb(230, 126, 34));
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
}
@media only screen and (max-width: 60em) {
  .cta-container {
    grid-template-columns: 3fr 2fr;
  }
}
@media only screen and (max-width: 35em) {
  .cta-container {
    grid-template-columns: 1fr;
  }
}
.cta-box_text {
  color: #45260a;
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}
@media only screen and (max-width: 35em) {
  .cta-box_text {
    padding: 3.2rem;
  }
}
.cta-box_text-title_main {
  color: inherit;
  margin-bottom: 3.2rem;
}
.cta-box_text-description {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}
.cta-box_text-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 2.4rem;
}
@media only screen and (max-width: 60em) {
  .cta-box_text-form {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cta-box_text-form_label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 60em) {
  .cta-box_text-form_label {
    margin-bottom: 0.8rem;
  }
}
.cta-box_text-form_input, .cta-box_text-form_select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  background-color: #fdf2e9;
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cta-box_text-form_input::placeholder, .cta-box_text-form_select::placeholder {
  color: #aaa;
}
.cta-box_img {
  background-image: linear-gradient(to right bottom, rgba(235, 152, 78, 0.3), rgba(230, 126, 34, 0.3)), url("../img/eating.jpg");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 35em) {
  .cta-box_img {
    grid-row: 1;
    height: 32rem;
  }
}

.section-featured-in {
  padding: 4.8rem 0 3.2rem 0;
}

.featured-in-title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #999;
}
.featured-in-logo_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.featured-in-logo_img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 0.5;
}
@media only screen and (max-width: 60em) {
  .featured-in-logo_img {
    height: 2.4rem;
  }
}
@media only screen and (max-width: 45em) {
  .featured-in-logo_img {
    height: 1.8rem;
  }
}
@media only screen and (max-width: 35em) {
  .featured-in-logo_img {
    height: 1.2rem;
  }
}

.section-features {
  padding: 0 0 9.6rem 0;
}

.features-item_icon {
  color: #e67e22;
  font-size: 3.2rem;
  background-color: #fdf2e9;
  padding: 1.6rem;
  border-radius: 50%;
  margin-bottom: 3.2rem;
}
.features-item_title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.features-item_description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.section-hero {
  background-color: #fdf2e9;
  padding: 4.8rem 0 9.6rem 0;
}
@media only screen and (max-width: 35em) {
  .section-hero {
    padding: 2.4rem 0 6.4rem 0;
  }
}

.hero-container.grid {
  max-width: 130rem;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .hero-container.grid {
    gap: 4.8rem;
  }
}
@media only screen and (max-width: 60em) {
  .hero-container.grid {
    grid-template-columns: 1fr;
    gap: 6.4rem;
    padding: 0 8.4rem;
  }
}
@media only screen and (max-width: 35em) {
  .hero-container.grid {
    padding: 0 3.2rem;
  }
}
.hero-box-img, .hero-box-text {
  text-align: center;
}
@media only screen and (max-width: 60em) {
  .hero-img {
    width: 60%;
  }
}
@media only screen and (max-width: 35em) {
  .hero-img {
    width: 80%;
  }
}
.hero-title {
  margin-bottom: 3.2rem;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media only screen and (max-width: 60em) {
  .hero-cta {
    justify-content: center;
  }
}
.hero-delivered {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 60em) {
  .hero-delivered {
    justify-content: center;
    margin-top: 3.2rem;
  }
}
.hero-delivered_imgs {
  display: flex;
}
.hero-delivered_img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  border: 3px solid #fdf2e9;
  margin-right: -1.6rem;
}
.hero-delivered_img:last-child {
  margin: 0;
}
.hero-delivered_text {
  font-size: 1.8rem;
}

.section-how {
  padding: 9.6rem;
}
@media only screen and (max-width: 45em) {
  .section-how {
    padding: 9.6rem 0;
  }
}

.how-container {
  align-items: center;
}
.how-title_sub {
  display: block;
  color: #cf711f;
}
.how-step_img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.how-step_img::before, .how-step_img::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.how-step_img::before {
  width: 60%;
  padding-bottom: 60%;
  z-index: -2;
  background-color: #fdf2e9;
}
.how-step_img::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #fae5d3;
  z-index: -1;
}
.how-step_img-step {
  width: 35%;
}
@media only screen and (max-width: 35em) {
  .how-step_img {
    transform: translateY(2.4rem);
  }
}
@media only screen and (max-width: 35em) {
  .how-step_img-1 {
    grid-row: 1;
  }
}
@media only screen and (max-width: 35em) {
  .how-step_img-3 {
    grid-row: 5;
  }
}
.how-step_text-step_number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 60em) {
  .how-step_text-step_number {
    font-size: 7.4rem;
  }
}
.how-step_text-step_title {
  margin-bottom: 3.2rem;
}
.how-step_text-step_description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.section-meals {
  padding: 9.6rem 0;
}

.meals-title {
  text-align: center;
  justify-content: center;
}
.meals-title_sub {
  display: block;
  color: #cf711f;
}
.meals-card {
  max-width: 40rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 300ms;
}
.meals-card_left {
  justify-self: end;
}
.meals-card_right {
  justify-self: start;
}
@media only screen and (max-width: 60em) {
  .meals-card {
    max-width: 30rem;
  }
}
@media only screen and (max-width: 35em) {
  .meals-card {
    max-width: 40rem;
    justify-self: center;
  }
}
.meals-card:hover {
  transform: translate(0, -1.2rem);
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.06);
}
.meals-card_details {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}
@media only screen and (max-width: 60em) {
  .meals-card_details {
    padding: 2.4rem 3.2rem 3.2rem 3.2rem;
  }
}
.meals-card_tags {
  margin-bottom: 1.2rem;
}
.meals-card_tags-item {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}
.meals-card_tags-item_vegenarian {
  background-color: #51cf66;
}
.meals-card_tags-item_vegan {
  background-color: #94d82d;
}
.meals-card_tags-item_paleo {
  background-color: #ffd43b;
}
.meals-card_title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 3.2rem;
}
.meals-card_atributes {
  list-style: none;
  gap: 2rem;
}
.meals-card_atributes-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
}
.meals-card_atributes-item_icon {
  color: #e67e22;
  font-size: 2.4rem;
}
.meals-recepies {
  text-align: center;
  font-size: 1.8rem;
  text-decoration: none;
}
.meals-diets_title {
  margin-bottom: 3.2rem;
}
.meals-diets_list {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media only screen and (max-width: 45em) {
  .meals-diets {
    grid-column: 1/-1;
    justify-self: center;
  }
}

.section-pricing {
  margin: 9.6rem 0;
}

.pricing-title_sub {
  display: block;
  color: #cf711f;
}
.pricing-plans.grid {
  row-gap: 4.8rem;
}
.pricing-plans_card {
  border-radius: 11px;
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-plans_card-starter {
  justify-self: end;
  padding: 4.6rem;
  border: 2px solid #fdf2e9;
}
@media only screen and (max-width: 60em) {
  .pricing-plans_card-starter {
    padding: 3rem;
  }
}
.pricing-plans_card-complete {
  padding: 4.8rem;
  background-color: #fdf2e9;
  justify-content: start;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 60em) {
  .pricing-plans_card-complete {
    padding: 3.2rem;
  }
}
.pricing-plans_card-complete::after {
  content: "best value";
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg) translate(31%, -130%);
}
@media only screen and (max-width: 35em) {
  .pricing-plans_card {
    justify-self: center;
  }
}
.pricing-plans_card-attributes {
  margin-bottom: 4.8rem;
}
.pricing-plans_card-signup {
  text-align: center;
}
.pricing-plans_card-header {
  text-align: center;
  margin-bottom: 4.8rem;
}
.pricing-plans_card-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 3.2rem;
}
.pricing-plans_card-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}
.pricing-plans_card-price-symbol {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}
.pricing-plans_card-price-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}
.pricing-plans_details {
  grid-column: 1/-1;
}
.pricing-plans_details-text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.section-testimonials {
  background-color: #fdf2e9;
}

.testimonials-title_sub {
  display: block;
  color: #cf711f;
}
.testimonials-container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}
@media only screen and (max-width: 60em) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}
.testimonials-reviews {
  padding: 9.6rem;
}
@media only screen and (max-width: 75em) {
  .testimonials-reviews {
    padding: 9.6rem 3.2rem;
  }
}
.testimonials-reviews_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem 6.4rem;
}
@media only screen and (max-width: 35em) {
  .testimonials-reviews_grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-reviews_card-img {
  max-width: 6.4rem;
  max-height: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.testimonials-reviews_card-review {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.testimonials-reviews_card-author {
  font-size: 1.6rem;
  color: #6f6f6f;
}
.testimonials-gallery {
  padding: 1.6rem;
}
.testimonials-gallery_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media only screen and (max-width: 75em) {
  .testimonials-gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 60em) {
  .testimonials-gallery_grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (max-width: 35em) {
  .testimonials-gallery_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
}
.testimonials-gallery_item {
  overflow: hidden;
}
.testimonials-gallery_item-img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 400ms;
}
.testimonials-gallery_item-img:hover {
  transform: scale(1.1);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  gap: 9.6rem 6.4rem;
}
@media only screen and (max-width: 75em) {
  .grid {
    gap: 6.4rem 4.8rem;
  }
}
.grid_2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.grid_3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.grid_4-cols {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 45em) {
  .grid_3-cols, .grid_4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 35em) {
  .grid_2-cols, .grid_3-cols, .grid_4-cols {
    grid-template-columns: 1fr;
  }
}
.grid-center_v {
  align-items: center;
}
.grid-center_h {
  justify-items: center;
}/*# sourceMappingURL=style.css.map */