/*!******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/app.scss ***!
  \******************************************************************************************************************************************************/
/* By Athlon Front-End Team */
/* Core variables */
/**
 * Variables
*/
/* Colour palette */
/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: none;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Fonts */
/**
 * Fonts
*/
@font-face {
  font-family: "Helvetica";
  src: url(../fonts/Helvetica-Bold.ed57ac.ttf) format("truetype");
  font-weight: bold;
}
/* Mixins, helpers and functions */
/**
 * Helper mixins
*/
/* Header */
header {
  background-color: #14267B;
  color: white;
}
header .header-container {
  max-width: 1200px;
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1215px) {
  header .header-container {
    width: 90%;
  }
}
@media (max-width: 880px) {
  header .header-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .header-container .logo {
  float: left;
  margin-top: -12px;
}
@media (max-width: 880px) {
  header .header-container .logo {
    float: none;
    margin-bottom: 15px;
    margin-top: 0px;
  }
}

/* Body */
body {
  margin: 0 auto;
  padding: 0;
  background-color: white;
  font-family: "Helvetica", Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
  font-size: 1.4rem;
}
@media (max-width: 880px) {
  h1 {
    text-align: center;
    font-size: 1.3rem;
  }
}

h2 {
  font-size: 1.3rem;
  color: #14267B;
  position: relative;
  text-align: center;
}
@media (max-width: 880px) {
  h2 {
    font-size: 1.2rem;
  }
}
h2::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: calc(50% - 50px);
  width: 100px;
  height: 4px;
  background-color: #14267B;
}

img {
  display: block;
}

.wrapper {
  max-width: 1200px;
  margin: 50px auto;
  display: grid;
  row-gap: 100px;
  grid-template: "bevande cereales" "crema dessert"/1fr 1fr;
}
@media (max-width: 1215px) {
  .wrapper {
    row-gap: 100px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media (max-width: 880px) {
  .wrapper {
    grid-gap: 100px;
    grid-template: "bevande" "cereales" "crema" "dessert";
  }
}
.wrapper .product-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.wrapper .product-type .product-info {
  max-width: 500px;
}
.wrapper .product-type .product-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.wrapper .product-type .product-info ul li {
  width: 230px;
}
@media (max-width: 1215px) {
  .wrapper .product-type .product-info ul li {
    width: 185px;
  }
}
.wrapper .bevande {
  grid-area: bevande;
}
.wrapper .cereales {
  grid-area: cereales;
}
.wrapper .crema {
  grid-area: crema;
}
.wrapper .crema-2 {
  grid-area: dessert;
}

/* Footer */
footer {
  background-color: #14267B;
  height: 60px;
  color: white;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer a {
  color: white;
}
footer .footer-container {
  max-width: 1200px;
  text-align: right;
  text-align: center;
  line-height: 16pt;
}
