/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*************************************************************************************************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  vertical-align: baseline;
  text-decoration: none;
  font-size: 100%;
}

/* A elements that don't have a class get default styles */
a:not {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.nav--shadow {
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}

.c-Nav {
  width: 90%;
  max-width: 1280px;
  display: block;
  background: #333;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  border-radius: 50px;
}
@media (max-width: 900px) {
  .c-Nav {
    height: 50px;
    display: flex;
    align-items: center;
  }
}
.c-Nav--down {
  display: flex;
  width: 50px;
  height: 40px;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.c-Nav--container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.c-Nav--brand {
  padding-right: 15%;
}
@media (max-width: 1200px) {
  .c-Nav--brand {
    padding-right: 5%;
  }
}
.c-Nav--brand a {
  margin-left: 30px;
  display: block;
}
.c-Nav--brand a img {
  width: 150px;
}
@media (max-width: 900px) {
  .c-Nav--list {
    display: none;
  }
}
.c-Nav--list nav {
  display: block;
}
.c-Nav--list nav ul {
  display: flex;
}
.c-Nav--list nav ul li {
  height: 60px;
  display: block;
}
.c-Nav--list nav ul li a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.c-Nav--list nav ul li a:hover span {
  padding: 7px;
  border-radius: 10px;
  background: white;
  color: #333;
  font-weight: bold;
}
.c-Nav--rrss {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .c-Nav--rrss {
    display: none;
  }
}
.c-Nav--rrss a {
  display: block;
  width: 25px;
  height: 25px;
  float: left;
  background: #fff;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  color: #333742;
  font-size: 13px;
  margin-right: 20px;
}
.c-Nav--rrss a:nth-child(3) {
  margin-right: 0;
}
.c-Nav--rrss a:hover {
  background: #333;
}
.c-Nav--lang {
  padding-right: 6%;
}
.c-Nav--lang a {
  color: #FFF;
}
@media (max-width: 900px) {
  .c-Nav--lang {
    display: none;
  }
}
.c-Nav--button-mobile {
  display: none;
}
@media (max-width: 900px) {
  .c-Nav--button-mobile {
    display: block;
  }
}
.c-Nav #sub-menu-holder {
  pointer-events: none;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
  padding: 1em;
  position: absolute;
  transition: opacity 2 ease-out;
  transform: rotateX(-25deg) scale(1);
  transform-origin: 50% 7em 0em;
  opacity: 0;
  box-sizing: border-box;
  top: 3rem;
  border-radius: 10px;
  background: white;
  display: block;
  height: 300px;
  width: calc(var(--menu-width) * 1.5);
}
.c-Nav .menu-item .sub-menu {
  position: absolute;
  top: 3.7em;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  width: 70%;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 999;
  margin-left: -5em;
  clip-path: inset(0 6em 6em 10em);
  opacity: 0;
  font-weight: initial;
  padding: 1em 0.5em;
  transition: all 0.5s ease-out, opacity 0.25s ease-in, margin-left 0.5s ease-out, clip-path 0.4s ease-out;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-Nav .menu-item:hover .sub-menu {
  pointer-events: all;
  clip-path: inset(0 0 0 0);
}
.c-Nav .menu-text:after {
  transition: bottom 0.4s ease-out, opacity 0.01s ease-out 0.01s;
  opacity: 0;
  content: "";
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: calc(50% - 10px);
  border-color: transparent transparent white transparent;
  border-width: 10px;
  border-style: solid;
}
.c-Nav .menu-item:hover .menu-text:after {
  bottom: 0.5em;
  opacity: 1;
  transition: bottom 0.5s ease-out, opacity 0.01s ease-out 0.15s;
}
.c-Nav .menu-item:hover .sub-menu {
  opacity: 1;
  margin-left: 0;
}
.c-Nav .menu-item:hover ~ #sub-menu-container #sub-menu-holder {
  transition: transform 0.5s ease-out, opacity 0.5s ease-out, clip-path 0.5s ease-out;
}
@keyframes clipPath {
  0% {
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg) scale(1);
    top: 4.5em;
    opacity: 1;
  }
}

.badge {
  padding: 0.6em 0.7em;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 1rem;
  display: inline-block;
  color: #fff;
}
.badge--bg--sweets {
  background: #5e2d5a;
}
.badge--bg--traditional {
  background: #363453;
}
.badge--bg--carbonated {
  background: #2a4d4c;
}
.badge--bg--gradient-sweets {
  background: linear-gradient(to right, #191733, #281d3e, #392349, #4b2852, #5e2d5a);
}
.badge--bg--gradient-traditional {
  background: linear-gradient(to right, #221e38, #27233f, #2c2945, #312e4c, #363453);
}
.badge--bg--gradient-carbonated {
  background: linear-gradient(to right, #080f0f, #141e1e, #1b2d2d, #223d3c, #2a4d4c);
}

.c-CardWines {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  flex: 1;
}
.c-CardWines--inner {
  background: #FFF;
  padding: 30px 30px 35px 30px;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  border-radius: 30px;
  width: 90%;
  color: #444;
  transition: background-image 1000ms linear;
}
.c-CardWines--inner h3 {
  margin: 0.3em 0 1em 0;
  display: block;
  font-size: 20px;
  max-width: 90%;
  height: 2em;
}
.c-CardWines--inner p {
  font-size: 0.9em;
  line-height: 25px;
  max-width: 75%;
}
.c-CardWines--inner .links {
  margin-top: 1em;
}
.c-CardWines--image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-CardWines--image img {
  width: auto;
  height: 230px;
  transition: all 0.3s ease-in-out;
}
.c-CardWines:hover .c-CardWines--inner {
  transition: background-image 1000ms linear;
  background-image: linear-gradient(to top, var(--mask-color, #ecf1f0), var(--mask-color-secondary, #f4f9f9) , #ffffff, #ffffff);
}
.c-CardWines:hover .c-CardWines--image img {
  height: 250px;
}

.c-CardNews {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
.c-CardNews--inner {
  background: #FFF;
  padding: 30px;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  border-radius: 30px;
  width: 100%;
  color: #444;
  margin-top: 20%;
}
.c-CardNews--inner .box--inner {
  margin-top: 45%;
}
.c-CardNews--inner h3 {
  margin: 10px 0;
  display: block;
  font-size: 20px;
  max-width: 100%;
  min-height: 50px;
}
.c-CardNews--inner p {
  font-size: 14px;
  line-height: 25px;
  max-width: 90%;
  min-height: 150px;
}
.c-CardNews--inner a {
  color: cadetblue;
  font-weight: 500;
  margin-top: 30px;
  display: block;
}
.c-CardNews--image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 30px;
  overflow: hidden;
}

.c-CardCategories {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.5s ease-out;
}
.c-CardCategories--inner {
  background: url(../img/bg--categories.webp) 100%;
  background-size: cover;
  padding: 40px 30px;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  border-radius: 30px;
  width: 90%;
  min-height: 200px;
  position: relative;
  color: #FFF;
  overflow: hidden;
}
.c-CardCategories--inner .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}
.c-CardCategories--inner h3 {
  margin: 10px 0;
  display: block;
  font-size: 20px;
  max-width: 90%;
  z-index: 9;
  position: relative;
}
.c-CardCategories--inner p {
  font-size: 14px;
  max-width: 90%;
  z-index: 9;
  position: relative;
  line-height: 25px;
  font-size: 12px;
}
@media (max-width: 1300px) {
  .c-CardCategories--inner p {
    max-width: 70%;
  }
}
.c-CardCategories--inner .button {
  margin-top: 20px;
}
.c-CardCategories--inner .button i {
  margin-left: 10px;
  transition: all 0.2s ease-out;
}
.c-CardCategories--image {
  position: absolute;
  top: 40%;
  right: 2em;
  transform: translateY(-50%);
}
.c-CardCategories--image img {
  width: auto;
  height: 230px;
}
.c-CardCategories:hover .button {
  margin-top: 20px;
}
.c-CardCategories:hover .button i {
  margin-left: 15px;
}
.c-CardCategories:hover .c-CardCategories--inner {
  opacity: 1;
}

.c-WineDetails {
  display: flex;
  position: relative;
  top: -50px;
  z-index: 99;
  min-height: 250px;
  justify-content: center;
}
@media (max-width: 900px) {
  .c-WineDetails {
    top: 0;
  }
}
.c-WineDetails--content {
  position: relative;
  width: 100%;
  display: flex;
}
.c-WineDetails--image {
  display: block;
  position: absolute;
  top: 5%;
  left: 3%;
}
.c-WineDetails--image img {
  width: 120px;
}
@media (max-width: 900px) {
  .c-WineDetails--image {
    display: none;
  }
}
.c-WineDetails--inner {
  display: block;
  width: 90%;
  min-height: 200px;
  border-radius: 20px;
  padding: 3em;
  background-color: #fff;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 900px) {
  .c-WineDetails--inner {
    width: 100%;
    padding: 3em 1em;
  }
}
.c-WineDetails--inner .box--inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1em;
  padding-left: 15%;
}
@media (max-width: 900px) {
  .c-WineDetails--inner .box--inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-left: 0;
  }
}
.c-WineDetails--items {
  border-left: 1px dotted #ccc;
  padding: 0 1.5em;
}
@media (max-width: 900px) {
  .c-WineDetails--items {
    border-left: 0;
    border-bottom: 1px dotted #ccc;
  }
}
.c-WineDetails--items ul {
  display: block;
  color: #333;
}
@media (max-width: 900px) {
  .c-WineDetails--items ul {
    margin-bottom: 2em;
  }
}
.c-WineDetails--items ul li {
  display: flex;
  margin-bottom: 2em;
}
.c-WineDetails--items ul li .ico {
  width: 30px;
  height: 30px;
  background: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-WineDetails--items ul li .ico i {
  color: #FFF;
}
.c-WineDetails--items ul li .legend {
  padding-left: 20px;
  width: 80%;
}
.c-WineDetails--items ul li .legend h3 {
  margin-bottom: 3px;
}
.c-WineDetails--items ul li .legend p {
  font-size: 13px;
}
.c-WineDetails--items ul li:last-child {
  margin-bottom: 0;
}

.c-Pairing {
  display: block;
}
.c-Pairing--content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.c-Pairing--items {
  width: 80%;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  height: auto;
  padding: 0.2em 1em;
  display: flex;
 /*  flex-wrap: wrap; */
  margin-bottom: 1em;
  border-radius: 15px;
  align-items: center;
  border: 1px solid #e7eff2;
}
.c-Pairing--items .ico {
  margin: 0.5em 1em 0.5em 0;
  max-width: 30px;
}
.c-Pairing--items .legend h4 {
  font-weight: 500;
}

.c-BannerPrincipal {
  background: #333;
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerPrincipal {
    height: auto;
  }
}
.c-BannerPrincipal--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 700px) {
  .c-BannerPrincipal--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerPrincipal--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  align-items: center;
  position: relative;
}
.c-BannerPrincipal--items:hover {
  cursor: pointer;
}
.c-BannerPrincipal--items:hover .box--figure--play #play {
  opacity: 1;
}
.c-BannerPrincipal--items:hover .box--figure--play #play .stroke-dotted {
  stroke-width: 4px;
  opacity: 1;
}
.c-BannerPrincipal--items:hover .box--figure--play #play .stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}
.c-BannerPrincipal--items:hover .box--figure--play #play .icon {
  transform: scale(1.05);
}
.c-BannerPrincipal--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 700px) {
  .c-BannerPrincipal--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerPrincipal--items .box--legend {
  width: 85%;
  color: #FFF;
  padding-left: 5%;
}
@media (max-width: 700px) {
  .c-BannerPrincipal--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
.c-BannerPrincipal--items .box--legend h1 {
  font-size: 35px;
  font-weight: 400;
}
.c-BannerPrincipal--items .box--legend h1 strong {
  font-weight: bold;
}
.c-BannerPrincipal--items .box--legend h1 span {
  display: block;
  font-size: 20px;
}
.c-BannerPrincipal--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerPrincipal--items .box--figure {
  width: 100%;
}
.c-BannerPrincipal--items .box--figure--play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 99;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.c-BannerPrincipal--items .box--figure--play .stroke-dotted {
  opacity: 0;
  stroke-dasharray: 4, 5;
  stroke-width: 1px;
  transform-origin: 50% 50%;
  animation: spin 4s infinite linear;
  transition: opacity 1s ease, stroke-width 1s ease;
}
.c-BannerPrincipal--items .box--figure--play .stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 4px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.c-BannerPrincipal--items .box--figure--play .icon {
  transform-origin: 50% 50%;
  transition: transform 200ms ease-out;
}
.c-BannerPrincipal--items .box--figure--play #play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
}
.c-BannerPrincipal--element--01, .c-BannerPrincipal--element--02 {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
}
.c-BannerPrincipal--element--01 img, .c-BannerPrincipal--element--02 img {
  display: block;
  width: auto;
  height: 100%;
}
@media (max-width: 700px) {
  .c-BannerPrincipal--element--01 img, .c-BannerPrincipal--element--02 img {
    opacity: 0.4;
  }
}
.c-BannerPrincipal--element--01 {
  left: 0;
}
.c-BannerPrincipal--element--02 {
  right: 0;
  transform: rotate(180deg);
}

.c-BannerSweets {
  background-image: linear-gradient(to bottom, #fedbdb, #f9f1f3, #f9f3f7, #ffffff, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerSweets {
    height: auto;
  }
}
.c-BannerSweets--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerSweets--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerSweets--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerSweets--bg {
  background: #FDA39F;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerSweets--bg {
    display: none;
  }
}
.c-BannerSweets--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
}
.c-BannerSweets--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerSweets--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerSweets--widget li .ico {
  background: #E16A79;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerSweets--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerSweets--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerSweets--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerSweets--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerSweets--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerSweets--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerSweets--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerSweets--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerSweets--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerSweets--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerSweets--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerSweets--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerSweets--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerSweets--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerSweets--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerSweets--items .box--legend {
    width: 100%;
  }
}
.c-BannerSweets--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerSweets--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerSweets--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerSweets--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerSweets--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerSweets--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerSweets--items .box--legend .data--sheet {
  background: #E16A79;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerSweets--items .box--figure {
  width: 100%;
}

.c-BannerSweets--elements--01, .c-BannerSweets--elements--02, .c-BannerSweets--elements--03, .c-BannerSweets--elements--04, .c-BannerSweets--elements--05, .c-BannerSweets--elements--06 {
  position: absolute;
}

.c-BannerSweets--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerSweets--elements--02 {
  top: 5%;
  right: 10%;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerSweets--elements--03 {
  bottom: -20%;
  right: 10%;
  z-index: 4;
  width: 500px;
}
@media (max-width: 1500px) {
  .c-BannerSweets--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--03 {
    display: none;
  }
}

.c-BannerSweets--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--04 {
    display: none;
  }
}

.c-BannerSweets--elements--05 {
  top: 55%;
  right: 35%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerSweets--elements--06 {
  top: 20%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerSweets--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--06 {
    top: 15%;
  }
}

.c-BannerDefault {
  background-image: linear-gradient(to top, #eff1f7, #f3f4f9, #f8f8fb, #fbfbfd, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerDefault {
    height: auto;
  }
}
.c-BannerDefault--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 15%;
  margin-bottom: 10%;
}
@media (max-width: 900px) {
  .c-BannerDefault--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerDefault--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerDefault--bg {
  background: #302E67;
  width: 31%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.c-BannerDefault--bg .mask {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .c-BannerDefault--bg {
    display: none;
  }
}
.c-BannerDefault--bg img {
  height: 100%;
  width: auto;
  max-width: inherit;
  position: absolute;
  mix-blend-mode: hard-light;
}
.c-BannerDefault--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerDefault--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerDefault--widget li .ico {
  background: #302E67;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerDefault--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerDefault--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerDefault--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerDefault--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerDefault--items:nth-child(2n) {
  margin-right: 0;
  justify-content: center;
}
@media (max-width: 900px) {
  .c-BannerDefault--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerDefault--items .box--image {
  width: 80%;
  display: flex;
  justify-content: center;
  position: relative;
  background: url(../img/bg--gallery.png) #eff1f7;
  padding: 2em;
  background-size: cover;
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerDefault--items .box--image {
    width: 100%;
  }
}
.c-BannerDefault--items .box--image .botle {
  width: 40%;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerDefault--items .box--image .botle {
    width: 40%;
  }
}
.c-BannerDefault--items .box--image .temperature--box {
  position: absolute;
  left: 2em;
  bottom: 0;
  width: 10em;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  height: auto;
  padding: 0.4em 1em;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7eff2;
  background: #FFF;
  z-index: 9;
}
.c-BannerDefault--items .box--image .temperature--box .ico {
  margin-right: 1em;
}
.c-BannerDefault--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerDefault--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerDefault--items .box--legend {
    width: 100%;
  }
}
.c-BannerDefault--items .box--legend .header--legend {
  display: flex;
  align-items: center;
  margin-bottom: 3em;
}
.c-BannerDefault--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerDefault--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerDefault--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerDefault--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerDefault--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerDefault--items .box--legend .data--sheet {
  background: #302E67;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerDefault--items .box--figure {
  width: 100%;
}

.c-BannerSweets--elements--01, .c-BannerSweets--elements--02, .c-BannerSweets--elements--03, .c-BannerSweets--elements--04, .c-BannerSweets--elements--05, .c-BannerSweets--elements--06 {
  position: absolute;
}

.c-BannerSweets--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerSweets--elements--02 {
  top: 5%;
  right: 10%;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerSweets--elements--03 {
  bottom: -20%;
  right: 10%;
  z-index: 4;
  width: 500px;
}
@media (max-width: 1500px) {
  .c-BannerSweets--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--03 {
    display: none;
  }
}

.c-BannerSweets--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--04 {
    display: none;
  }
}

.c-BannerSweets--elements--05 {
  top: 55%;
  right: 35%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerSweets--elements--06 {
  top: 20%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerSweets--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSweets--elements--06 {
    top: 15%;
  }
}

.c-BannerSweetsWhite {
  background-image: linear-gradient(to bottom, #C3D3D9, #e2eaed, #eff3f4, #ffffff, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerSweetsWhite {
    height: auto;
  }
}
.c-BannerSweetsWhite--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerSweetsWhite--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerSweetsWhite--bg {
  background: #446B7A;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--bg {
    display: none;
  }
}
.c-BannerSweetsWhite--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
}
.c-BannerSweetsWhite--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerSweetsWhite--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerSweetsWhite--widget li .ico {
  background: #618B9C;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerSweetsWhite--widget li .ico i {
  color: #ffffff;
  font-size: 20px;
}
.c-BannerSweetsWhite--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerSweetsWhite--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerSweetsWhite--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerSweetsWhite--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerSweetsWhite--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerSweetsWhite--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerSweetsWhite--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerSweetsWhite--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerSweetsWhite--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
.c-BannerSweetsWhite--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerSweetsWhite--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerSweetsWhite--items .box--legend .header--legend .box--medal {
  width: 12%;
}
@media (max-width: 700px) {
  .c-BannerSweetsWhite--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerSweetsWhite--items .box--legend {
    width: 100%;
  }
}
.c-BannerSweetsWhite--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerSweetsWhite--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerSweetsWhite--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerSweetsWhite--items .box--legend .data--sheet {
  background: #618B9C;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerSweetsWhite--items .box--figure {
  width: 100%;
}

.c-BannerSweetsWhite--elements--01, .c-BannerSweetsWhite--elements--02, .c-BannerSweetsWhite--elements--03, .c-BannerSweetsWhite--elements--04, .c-BannerSweetsWhite--elements--05, .c-BannerSweetsWhite--elements--06 {
  position: absolute;
}

.c-BannerSweetsWhite--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--elements--01 {
    top: 10%;
    left: 0;
    right: inherit;
    width: 25%;
  }
}

.c-BannerSweetsWhite--elements--02 {
  top: 0;
  right: 10%;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--elements--02 {
    top: -5%;
    right: -40%;
  }
}

.c-BannerSweetsWhite--elements--03 {
  bottom: -20%;
  right: 10%;
  z-index: 4;
  filter: blur(3px);
  width: 500px;
}
@media (max-width: 1500px) {
  .c-BannerSweetsWhite--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--elements--03 {
    display: none;
  }
}

.c-BannerSweetsWhite--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--elements--04 {
    display: none;
  }
}

.c-BannerSweetsWhite--elements--05 {
  top: 55%;
  right: 30%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--elements--05 {
    top: 30%;
    right: inherit;
    z-index: 1;
    width: 30%;
  }
}

.c-BannerSweetsWhite--elements--06 {
  top: 35%;
  right: 15%;
  z-index: 1;
  filter: blur(1px);
}
@media (max-width: 1500px) {
  .c-BannerSweetsWhite--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSweetsWhite--elements--06 {
    top: 15%;
  }
}

.c-BannerLambruscoRose {
  background-image: linear-gradient(to bottom, #fedbdb, #f9f1f3, #f9f3f7, #ffffff, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerLambruscoRose {
    height: auto;
  }
}
.c-BannerLambruscoRose--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerLambruscoRose--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerLambruscoRose--bg {
  background: #f9655d;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--bg {
    display: none;
  }
}
.c-BannerLambruscoRose--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
  right: 0;
}
.c-BannerLambruscoRose--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerLambruscoRose--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerLambruscoRose--widget li .ico {
  background: #E16A79;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerLambruscoRose--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerLambruscoRose--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerLambruscoRose--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerLambruscoRose--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerLambruscoRose--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerLambruscoRose--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerLambruscoRose--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerLambruscoRose--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerLambruscoRose--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerLambruscoRose--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerLambruscoRose--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerLambruscoRose--items .box--legend {
    width: 100%;
  }
}
.c-BannerLambruscoRose--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerLambruscoRose--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerLambruscoRose--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerLambruscoRose--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerLambruscoRose--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerLambruscoRose--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerLambruscoRose--items .box--legend .data--sheet {
  background: #E16A79;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerLambruscoRose--items .box--figure {
  width: 100%;
}

.c-BannerLambruscoRose--elements--01, .c-BannerLambruscoRose--elements--02, .c-BannerLambruscoRose--elements--03, .c-BannerLambruscoRose--elements--04, .c-BannerLambruscoRose--elements--05, .c-BannerLambruscoRose--elements--06 {
  position: absolute;
}

.c-BannerLambruscoRose--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerLambruscoRose--elements--02 {
  top: 5%;
  right: 10%;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerLambruscoRose--elements--03 {
  bottom: -20%;
  right: 10%;
  z-index: 4;
  filter: blur(2px);
  width: 400px;
}
@media (max-width: 1500px) {
  .c-BannerLambruscoRose--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--elements--03 {
    display: none;
  }
}

.c-BannerLambruscoRose--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--elements--04 {
    display: none;
  }
}

.c-BannerLambruscoRose--elements--05 {
  top: 45%;
  right: 30%;
  z-index: 1;
  width: 25%;
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerLambruscoRose--elements--06 {
  top: 20%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerLambruscoRose--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerLambruscoRose--elements--06 {
    top: 15%;
  }
}

.c-BannerLambrusco {
  background-image: linear-gradient(to bottom, #fedbdb, #f9f1f3, #f9f3f7, #ffffff, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerLambrusco {
    height: auto;
  }
}
.c-BannerLambrusco--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerLambrusco--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerLambrusco--bg {
  background: #f9655d;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--bg {
    display: none;
  }
}
.c-BannerLambrusco--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
  right: 0;
}
.c-BannerLambrusco--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerLambrusco--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerLambrusco--widget li .ico {
  background: #E16A79;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerLambrusco--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerLambrusco--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerLambrusco--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerLambrusco--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerLambrusco--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerLambrusco--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerLambrusco--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerLambrusco--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerLambrusco--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerLambrusco--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerLambrusco--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerLambrusco--items .box--legend {
    width: 100%;
  }
}
.c-BannerLambrusco--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerLambrusco--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerLambrusco--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerLambrusco--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerLambrusco--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerLambrusco--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerLambrusco--items .box--legend .data--sheet {
  background: #E16A79;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerLambrusco--items .box--figure {
  width: 100%;
}

.c-BannerLambrusco--elements--01, .c-BannerLambrusco--elements--02, .c-BannerLambrusco--elements--03, .c-BannerLambrusco--elements--04, .c-BannerLambrusco--elements--05, .c-BannerLambrusco--elements--06 {
  position: absolute;
}

.c-BannerLambrusco--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerLambrusco--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerLambrusco--elements--02 {
  top: 5%;
  right: 10%;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerLambrusco--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerLambrusco--elements--03 {
  bottom: -20%;
  right: 10%;
  z-index: 4;
  filter: blur(2px);
  width: 400px;
}
@media (max-width: 1500px) {
  .c-BannerLambrusco--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerLambrusco--elements--03 {
    display: none;
  }
}

.c-BannerLambrusco--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--elements--04 {
    display: none;
  }
}

.c-BannerLambrusco--elements--05 {
  top: 45%;
  right: 30%;
  z-index: 1;
  width: 25%;
}
@media (max-width: 900px) {
  .c-BannerLambrusco--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerLambrusco--elements--06 {
  top: 20%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerLambrusco--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerLambrusco--elements--06 {
    top: 15%;
  }
}

.c-BannerSpritzerMoscato {
  background-image: linear-gradient(to bottom, #feedcb, #ffecde, #fff1f3, #fff8ff, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerSpritzerMoscato {
    height: auto;
  }
}
.c-BannerSpritzerMoscato--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerSpritzerMoscato--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerSpritzerMoscato--bg {
  background: #5d5959;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--bg {
    display: none;
  }
}
.c-BannerSpritzerMoscato--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
}
.c-BannerSpritzerMoscato--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerSpritzerMoscato--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerSpritzerMoscato--widget li .ico {
  background: #E16A79;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerSpritzerMoscato--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerSpritzerMoscato--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerSpritzerMoscato--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerSpritzerMoscato--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerSpritzerMoscato--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerSpritzerMoscato--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerSpritzerMoscato--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerSpritzerMoscato--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerSpritzerMoscato--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerSpritzerMoscato--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerSpritzerMoscato--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerSpritzerMoscato--items .box--legend {
    width: 100%;
  }
}
.c-BannerSpritzerMoscato--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerSpritzerMoscato--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerSpritzerMoscato--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerSpritzerMoscato--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerSpritzerMoscato--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerSpritzerMoscato--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerSpritzerMoscato--items .box--legend .data--sheet {
  background: #E16A79;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerSpritzerMoscato--items .box--figure {
  width: 100%;
}

.c-BannerSpritzerMoscato--elements--01, .c-BannerSpritzerMoscato--elements--02, .c-BannerSpritzerMoscato--elements--03, .c-BannerSpritzerMoscato--elements--04, .c-BannerSpritzerMoscato--elements--05, .c-BannerSpritzerMoscato--elements--06 {
  position: absolute;
}

.c-BannerSpritzerMoscato--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerSpritzerMoscato--elements--02 {
  top: 5%;
  right: 0;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerSpritzerMoscato--elements--03 {
  bottom: -15%;
  right: 10%;
  z-index: 4;
  filter: blur(2px);
  width: 540px;
}
@media (max-width: 1500px) {
  .c-BannerSpritzerMoscato--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--elements--03 {
    display: none;
  }
}

.c-BannerSpritzerMoscato--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--elements--04 {
    display: none;
  }
}

.c-BannerSpritzerMoscato--elements--05 {
  top: 50%;
  right: 32%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerSpritzerMoscato--elements--06 {
  top: 20%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerSpritzerMoscato--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSpritzerMoscato--elements--06 {
    top: 15%;
  }
}

.c-BannerSpritzerRose {
  background-image: linear-gradient(to bottom, #ffd2e6, #fbdef2, #f9eafa, #faf5fe, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerSpritzerRose {
    height: auto;
  }
}
.c-BannerSpritzerRose--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerSpritzerRose--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerSpritzerRose--bg {
  background: #f92a5b;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--bg {
    display: none;
  }
}
.c-BannerSpritzerRose--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
}
.c-BannerSpritzerRose--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerSpritzerRose--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerSpritzerRose--widget li .ico {
  background: #E16A79;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerSpritzerRose--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerSpritzerRose--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerSpritzerRose--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerSpritzerRose--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerSpritzerRose--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerSpritzerRose--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerSpritzerRose--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerSpritzerRose--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerSpritzerRose--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerSpritzerRose--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerSpritzerRose--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerSpritzerRose--items .box--legend {
    width: 100%;
  }
}
.c-BannerSpritzerRose--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerSpritzerRose--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerSpritzerRose--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerSpritzerRose--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerSpritzerRose--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerSpritzerRose--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerSpritzerRose--items .box--legend .data--sheet {
  background: #E16A79;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerSpritzerRose--items .box--figure {
  width: 100%;
}

.c-BannerSpritzerRose--elements--01, .c-BannerSpritzerRose--elements--02, .c-BannerSpritzerRose--elements--03, .c-BannerSpritzerRose--elements--04, .c-BannerSpritzerRose--elements--05, .c-BannerSpritzerRose--elements--06 {
  position: absolute;
}

.c-BannerSpritzerRose--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerSpritzerRose--elements--02 {
  top: 5%;
  right: 0;
  z-index: 1;
  filter: blur(5px);
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerSpritzerRose--elements--03 {
  bottom: -15%;
  right: 10%;
  z-index: 4;
  filter: blur(2px);
  width: 450px;
}
@media (max-width: 1500px) {
  .c-BannerSpritzerRose--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--elements--03 {
    display: none;
  }
}

.c-BannerSpritzerRose--elements--04 {
  top: 37%;
  right: 40%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--elements--04 {
    display: none;
  }
}

.c-BannerSpritzerRose--elements--05 {
  top: 50%;
  right: 32%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerSpritzerRose--elements--06 {
  top: 40%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerSpritzerRose--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerSpritzerRose--elements--06 {
    top: 15%;
  }
}

.c-BannerRedWine {
  background-image: linear-gradient(to bottom, #fedbdb, #f9f1f3, #f9f3f7, #ffffff, #ffffff);
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .c-BannerRedWine {
    height: auto;
  }
}
.c-BannerRedWine--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 12%;
}
@media (max-width: 900px) {
  .c-BannerRedWine--content {
    flex-direction: column-reverse;
  }
}
@media (max-width: 700px) {
  .c-BannerRedWine--content {
    flex-wrap: wrap;
    margin-top: 30%;
  }
}
.c-BannerRedWine--bg {
  background: #FDA39F;
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 900px) {
  .c-BannerRedWine--bg {
    display: none;
  }
}
.c-BannerRedWine--bg img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute;
  mix-blend-mode: hard-light;
}
.c-BannerRedWine--widget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1em;
}
.c-BannerRedWine--widget li {
  display: flex;
  line-height: 1.25rem;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-BannerRedWine--widget li .ico {
  background: #E16A79;
  display: flex;
  align-items: center;
  padding: 0 1.2em;
  border-radius: 5px;
  margin-right: 1em;
}
.c-BannerRedWine--widget li .ico i {
  color: #fbedf6;
  font-size: 20px;
}
.c-BannerRedWine--widget li .legend h3 {
  font-size: 13px;
}
.c-BannerRedWine--widget li .legend p {
  margin: 0;
  font-size: 13px;
}
.c-BannerRedWine--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.c-BannerRedWine--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-BannerRedWine--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerRedWine--items .box--image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-BannerRedWine--items .box--image .botle {
  width: 290px;
  bottom: 25px;
  position: relative;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 900px) {
  .c-BannerRedWine--items .box--image .botle {
    transform: rotate(0);
    width: 40%;
  }
}
.c-BannerRedWine--items .box--image .splash {
  position: absolute;
  bottom: -6%;
  right: 15%;
  height: auto;
  width: 700px;
  z-index: 3;
}
@media (max-width: 900px) {
  .c-BannerRedWine--items .box--image .splash {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    bottom: 0;
    right: 0;
  }
}
.c-BannerRedWine--items .box--image .splash img {
  display: block;
}
@media (max-width: 900px) {
  .c-BannerRedWine--items .box--image .splash img {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 40%;
  }
}
.c-BannerRedWine--items .box--legend {
  width: 85%;
  color: #333;
  padding-left: 5%;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .c-BannerRedWine--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
@media (max-width: 700px) {
  .c-BannerRedWine--items .box--legend {
    width: 100%;
  }
}
.c-BannerRedWine--items .box--legend .header--legend {
  display: flex;
  align-items: center;
}
.c-BannerRedWine--items .box--legend .header--legend .box--title {
  margin-right: 10%;
}
.c-BannerRedWine--items .box--legend .header--legend .box--medal {
  width: 12%;
}
.c-BannerRedWine--items .box--legend h1 {
  font-size: 35px;
  font-weight: 700;
}
.c-BannerRedWine--items .box--legend h1 span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}
.c-BannerRedWine--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerRedWine--items .box--legend .data--sheet {
  background: #E16A79;
  margin: 40px 0;
  display: block;
  color: #FFF;
  max-width: 200px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
}
.c-BannerRedWine--items .box--figure {
  width: 100%;
}

.c-BannerRedWine--elements--01, .c-BannerRedWine--elements--02, .c-BannerRedWine--elements--03, .c-BannerRedWine--elements--04, .c-BannerRedWine--elements--05, .c-BannerRedWine--elements--06 {
  position: absolute;
}

.c-BannerRedWine--elements--01 {
  top: 20%;
  right: 35%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerRedWine--elements--01 {
    top: 10%;
    left: -12%;
    right: inherit;
  }
}

.c-BannerRedWine--elements--02 {
  top: 0;
  right: 2%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .c-BannerRedWine--elements--02 {
    top: 0%;
    right: -5%;
  }
}

.c-BannerRedWine--elements--03 {
  bottom: -20%;
  right: 10%;
  z-index: 4;
  width: 500px;
}
@media (max-width: 1500px) {
  .c-BannerRedWine--elements--03 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerRedWine--elements--03 {
    display: none;
  }
}

.c-BannerRedWine--elements--04 {
  top: 37%;
  right: 35%;
  z-index: 1;
  width: 300px;
}
@media (max-width: 900px) {
  .c-BannerRedWine--elements--04 {
    display: none;
  }
}

.c-BannerRedWine--elements--05 {
  top: 70%;
  right: 35%;
  z-index: 1;
}
@media (max-width: 900px) {
  .c-BannerRedWine--elements--05 {
    top: 20%;
    right: -6%;
    z-index: 1;
    width: 100px;
  }
}

.c-BannerRedWine--elements--06 {
  top: 35%;
  right: 14%;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 1500px) {
  .c-BannerRedWine--elements--06 {
    right: 0%;
  }
}
@media (max-width: 900px) {
  .c-BannerRedWine--elements--06 {
    top: 15%;
  }
}

.c-BannerCategory {
  background: #333;
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .c-BannerCategory {
    height: auto;
  }
}
.c-BannerCategory--bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: initial;
  width: 100%;
  z-index: 0;
}
.c-BannerCategory--bg .bg--sweets, .c-BannerCategory--bg .bg--traditional {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.c-BannerCategory--content {
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 10%;
}
@media (max-width: 700px) {
  .c-BannerCategory--content {
    flex-wrap: wrap;
    margin-top: 15%;
  }
}
.c-BannerCategory--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  align-items: center;
  position: relative;
}
.c-BannerCategory--items:hover #play .stroke-dotted {
  stroke-width: 4px;
  opacity: 1;
}
.c-BannerCategory--items:hover #play .stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}
.c-BannerCategory--items:hover #play .icon {
  transform: scale(1.05);
}
.c-BannerCategory--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 700px) {
  .c-BannerCategory--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-BannerCategory--items .box--legend {
  width: 85%;
  color: #FFF;
  padding-left: 5%;
}
@media (max-width: 700px) {
  .c-BannerCategory--items .box--legend {
    padding-left: 0;
    margin: 30px 0;
  }
}
.c-BannerCategory--items .box--legend h1 {
  font-size: 35px;
  font-weight: 400;
}
.c-BannerCategory--items .box--legend h1 span {
  font-weight: bold;
}
.c-BannerCategory--items .box--legend p {
  font-size: 14px;
  line-height: 25px;
  margin: 20px 0;
}
.c-BannerCategory--items .box--figure {
  width: 100%;
}
.c-BannerCategory--items .box--figure--play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 99;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.c-BannerCategory--items .box--figure--play .stroke-dotted {
  opacity: 0;
  stroke-dasharray: 4, 5;
  stroke-width: 1px;
  transform-origin: 50% 50%;
  animation: spin 4s infinite linear;
  transition: opacity 1s ease, stroke-width 1s ease;
}
.c-BannerCategory--items .box--figure--play .stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 4px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.c-BannerCategory--items .box--figure--play .icon {
  transform-origin: 50% 50%;
  transition: transform 200ms ease-out;
}
.c-BannerCategory--items .box--figure--play #play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
}
.c-BannerCategory--items .figure {
  padding: 3em;
}
.c-BannerCategory--element--01, .c-BannerCategory--element--02 {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
}
.c-BannerCategory--element--01 img, .c-BannerCategory--element--02 img {
  display: block;
  width: auto;
  height: 100%;
}
@media (max-width: 700px) {
  .c-BannerCategory--element--01 img, .c-BannerCategory--element--02 img {
    opacity: 0.4;
  }
}
.c-BannerCategory--element--01 {
  left: 0;
}
.c-BannerCategory--element--02 {
  right: 0;
  transform: rotate(180deg);
}

.c-Header {
  position: absolute;
  height: 95px;
  width: 100%;
  padding: 0;
  display: flex;
  background: #333;
  z-index: 999;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
@media (max-width: 900px) {
  .c-Header {
    background: transparent;
    box-shadow: none;
  }
}

.c-NavMobile {
  display: none;
}
.c-NavMobile::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  background: rgb(5, 0, 20);
  opacity: 0.9;
  top: 0;
  left: 0;
  z-index: 999;
}
.c-NavMobile--content {
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  z-index: 999;
  overflow: hidden;
  display: block;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 3em;
}
.c-NavMobile--close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 99;
  border-radius: 50%;
}
.c-NavMobile--header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  box-sizing: border-box;
  background: url(../img/bg--categories.webp);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
.c-NavMobile--header .brand {
  position: relative;
  z-index: 9;
  width: 200px;
}
.c-NavMobile--header .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.c-NavMobile--body {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 70%;
  border-radius: 60px 60px 0 0;
  box-sizing: border-box;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  z-index: 9;
}
.c-NavMobile--body .nav-mobile-links nav ul {
  padding: 4em 3em;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2em;
}
.c-NavMobile--body .nav-mobile-links nav ul li {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-NavMobile--body .nav-mobile-links nav ul li a {
  text-align: center;
  color: #333;
  padding: 1.5em 2em;
}
.c-NavMobile--body .nav-mobile-links nav ul li a i {
  margin-bottom: 0.4em;
  display: block;
}
.c-NavMobile--body .nav-mobile-categories nav ul {
  padding: 4em 1em;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2em;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items a {
  display: block;
  width: 100%;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items a .card {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items a .card .card--image {
  width: 30px;
  position: relative;
  top: -40px;
  left: 0;
  z-index: 9;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items a .card .card--inner {
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  padding: 1.5em 0em;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/bg--categories.webp);
  height: 80%;
  width: 100%;
  color: #fff;
  border-radius: 20px;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items a .card .card--inner h3 {
  position: relative;
  z-index: 10;
  padding-top: 40%;
  font-size: 12px;
  text-align: center;
}
.c-NavMobile--body .nav-mobile-categories nav ul .nav-mobile-categories--items a .card .card--inner .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  border-radius: 20px;
}
.c-NavMobile--footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #F0F2F8;
  width: 100%;
  height: 20%;
  border-radius: 60px 60px 0 0;
  box-sizing: border-box;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  z-index: 10;
}
.c-NavMobile--footer ul {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}
.c-NavMobile--footer ul li a {
  border-radius: 50%;
  background: #333;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  color: #fff;
}
.c-NavMobile--footer ul li a:hover {
  background: grey;
}
.c-NavMobile--footer p {
  text-align: center;
}

.open {
  display: block;
}

.c-Footer {
  background: url(../img/bg--footer.png) center center;
  position: relative;
  width: 100%;
  padding: 50px 0;
  color: #FFF;
}
.c-Footer:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(46, 46, 54, 0) 0%, rgba(46, 46, 54, 0.9) 100%);
}
.c-Footer:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(46, 46, 54, 0) 0%, rgba(46, 46, 54, 0.9) 100%);
}
.c-Footer__content {
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}
.c-Footer__items {
  width: 100%;
  display: block;
}
.c-Footer__items p, .c-Footer__items h3 {
  text-align: center;
}
.c-Footer__brand {
  width: 100%;
  display: flex;
  justify-content: center;
}
.c-Footer__brand img {
  max-width: 300px;
}
.c-Footer__rrss {
  display: block;
  width: 100%;
  justify-content: center;
  margin: 20px 0;
}
.c-Footer__rrss ul {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.c-Footer__rrss ul li a {
  border-radius: 50%;
  background: #FFF;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  color: #333;
}
.c-Footer__rrss ul li a:hover {
  background: grey;
}
.c-Footer__nav {
  display: block;
  width: 100%;
}
.c-Footer__nav nav {
  width: 100%;
}
.c-Footer__nav nav ul {
  display: flex;
  justify-content: center;
}
.c-Footer__nav nav ul li a {
  color: #FFF;
  margin: 10px;
}
.c-Footer__nav nav ul li a:hover {
  opacity: 0.7;
}
.c-Footer__medal {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.c-Footer__medal img {
  max-width: 300px;
  filter: contrast(0.2) saturate(1);
}

.c-FooterDown {
  background: #181818;
  color: #fff;
  padding: 8px 0;
  text-align: center;
  font-size: 11px;
}
.c-FooterDown a {
  color: aqua;
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

.c-WinesCategories {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  padding: 50px;
}
.c-WinesCategories--content {
  display: flex;
}
.c-WinesCategories--content {
  display: flex;
  flex-wrap: wrap;
}
.c-WinesCategories--items {
  width: 32%;
  margin-right: 2%;
}
.c-WinesCategories--items:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-WinesCategories--items {
    width: 49%;
    margin-right: 2%;
  }
  .c-WinesCategories--items:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  .c-WinesCategories--items {
    width: 100%;
    margin-right: 0;
  }
}

.c-WinesCatalog {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.c-WinesCatalog--content {
  display: flex;
}
.c-WinesCatalog--content {
  display: flex;
  flex-wrap: wrap;
}
.c-WinesCatalog--items {
  width: 23.5%;
  margin-right: 2%;
}
.c-WinesCatalog--items:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 1200px) {
  .c-WinesCatalog--items {
    width: 49%;
    margin-right: 2%;
  }
  .c-WinesCatalog--items:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  .c-WinesCatalog--items {
    width: 100%;
    margin-right: 0;
  }
}

.c-AboutHome {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  padding: 150px 0;
  background: url(../img/bg--about--home.webp);
}
@media (max-width: 700px) {
  .c-AboutHome {
    padding: 50px 0;
  }
}
.c-AboutHome--content {
  display: flex;
}
.c-AboutHome--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 700px) {
  .c-AboutHome--items {
    width: 100%;
  }
}
.c-AboutHome--items .box--legend h3 {
  font-size: 25px;
  letter-spacing: -2px;
}
.c-AboutHome--items .box--legend p {
  margin: 20px 0;
  line-height: 25px;
}
.c-AboutHome--img {
  position: absolute;
  top: 50%;
  right: 0;
  max-width: 40%;
  transform: translateY(-50%);
}
@media (max-width: 700px) {
  .c-AboutHome--img {
    width: 100%;
    top: 0;
    transform: none;
    position: relative;
    max-width: initial;
  }
  .c-AboutHome--img img {
    max-width: initial;
  }
}

.c-NewsHome {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.c-NewsHome--content {
  display: flex;
}
.c-NewsHome--content {
  display: flex;
  flex-wrap: wrap;
}
.c-NewsHome--items {
  width: 32%;
  margin-right: 2%;
}
.c-NewsHome--items:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 900px) {
  .c-NewsHome--items {
    width: 49%;
    margin-right: 2%;
  }
  .c-NewsHome--items:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  .c-NewsHome--items {
    width: 100%;
    margin-right: 0;
  }
}

.content-sticky {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 0;
  bottom: 100px;
  width: 50px;
  z-index: 99;
}
.content-sticky a:hover {
  opacity: 0.7;
}

.c-News {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.c-News .c-News--container {
  display: block;
  width: 100%;
}
.c-News .c-News--container .c-News--row {
  display: block;
  width: 69%;
  position: relative;
  margin-right: 2%;
  float: left;
}
.c-News .c-News--container .c-News--row:nth-child(2n) {
  margin: 0;
  width: 29%;
}
@media (max-width: 970px) {
  .c-News .c-News--container .c-News--row {
    width: 100%;
    margin: 0;
  }
  .c-News .c-News--container .c-News--row:nth-child(2n) {
    margin: 0;
    width: 100%;
  }
}
.c-News .c-News--container .c-News--items {
  display: block;
  margin-bottom: 70px;
}
.c-News .c-News--container .c-News--items .c-News--header {
  display: flex;
  margin-bottom: 40px;
}
.c-News .c-News--container .c-News--items .c-News--header .c-News--header--title {
  max-width: 700px;
  margin-top: 1px;
}
.c-News .c-News--container .c-News--items .c-News--header .c-News--header--title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 10px;
}
.c-News .c-News--container .c-News--items .c-News--header .c-News--header--title .new--date {
  display: flex;
  align-items: center;
}
.c-News .c-News--container .c-News--items .c-News--header .c-News--header--title .new--date .icon-date {
  width: 30px;
  height: 30px;
  background: #333742;
  color: #0189A2;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
}
.c-News .c-News--container .c-News--items .c-News--aside {
  display: block;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--search {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--search input {
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
  height: 45px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgb(243, 242, 251);
  box-sizing: border-box;
  padding: 15px;
  color: #333742;
  font-size: 13px;
  border: 0;
  appearance: none;
  outline: none;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--search button {
  background: #333742;
  appearance: none;
  outline: none;
  color: #FFF;
  border: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar {
  position: relative;
  position: sticky;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar .c-News--recents {
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 20px;
  height: 1%;
  align-items: center;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar .c-News--recents figure {
  height: 70px;
  border-radius: 50%;
  background: #d0d0d0;
  float: left;
  padding: 0;
  margin: 0 10px 0 0;
  width: 70px;
  overflow: hidden;
  display: flex;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar .c-News--recents figure img {
  display: block;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar .c-News--recents .legend {
  width: 70%;
  color: #333;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar .c-News--recents .legend h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.c-News .c-News--container .c-News--items .c-News--aside .c-News--sidebar .c-News--recents .legend p {
  font-size: 14px;
}
.c-News .c-News--container .c-News--items .c-News--body {
  display: flex;
}
@media (max-width: 970px) {
  .c-News .c-News--container .c-News--items .c-News--body {
    flex-wrap: wrap;
  }
}
.c-News .c-News--container .c-News--items .c-News--body .legends, .c-News .c-News--container .c-News--items .c-News--body .image {
  width: 49%;
  margin-right: 2%;
}
@media (max-width: 970px) {
  .c-News .c-News--container .c-News--items .c-News--body .legends, .c-News .c-News--container .c-News--items .c-News--body .image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4%;
  }
}
.c-News .c-News--container .c-News--items .c-News--body .legends p, .c-News .c-News--container .c-News--items .c-News--body .image p {
  margin-bottom: 20px;
  max-width: 80%;
  line-height: 25px;
}
.c-News .c-News--container .c-News--items .c-News--body .image {
  margin-right: 0;
}
.c-News .c-News--container .c-News--items .c-News--body .image figure {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -10px 7px 52px rgba(23, 101, 252, 0.15);
}
.c-News .c-News--container .c-News--items .c-News--body .image a {
  display: none;
}
@media (max-width: 767px) {
  .c-News .c-News--container .c-News--items .c-News--body .image a {
    display: flex;
    margin-top: 40px;
  }
}
.c-News .c-News--container .c-News--items .c-News--body--inner {
  display: block;
  max-width: 800px;
  margin-bottom: 200px;
}
.c-News .c-News--container .c-News--items .c-News--body--inner p {
  margin-bottom: 20px;
  line-height: 25px;
  font-size: 16px;
}
.c-News .c-News--container .c-News--items .c-News--body--inner img {
  margin-bottom: 40px;
}

.c-History {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.c-History--content {
  display: flex;
  flex-wrap: wrap;
}
.c-History--items {
  width: 49%;
  margin-right: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-History--items:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 700px) {
  .c-History--items {
    width: 100%;
    margin-right: 0;
  }
}
.c-History--items .legend h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.c-History--items .legend p {
  line-height: 30px;
}

.c-BrandAbout {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  height: 600px;
}
@media (max-width: 700px) {
  .c-BrandAbout {
    height: auto;
  }
}
.c-BrandAbout--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 700px) {
  .c-BrandAbout--bg {
    position: relative;
  }
}
.c-BrandAbout--bg img {
  object-fit: cover;
  position: relative;
  height: 100%;
}
.c-BrandAbout--legend {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  padding: 4em;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .c-BrandAbout--legend {
    position: relative;
    width: 100%;
    background: rgb(32, 32, 32);
  }
}
.c-BrandAbout--legend p {
  line-height: 30px;
}
.c-BrandAbout--legend .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 700px) {
  .c-BrandAbout--legend .brand {
    margin-bottom: 2em;
  }
}
.c-BrandAbout--legend .brand img {
  width: 300px;
}
@media (max-width: 700px) {
  .c-BrandAbout--legend .brand img {
    width: 200px;
  }
}

.AboutBrand {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.AboutBrand img {
  max-width: 70%;
  margin: 0 auto;
}
.AboutBrand p {
  text-align: center;
  font-size: 16px;
  width: 90%;
  margin: 50px auto 0 auto;
  max-width: 700px;
}

body {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
}

.c-container {
  width: 90%;
  max-width: 1336px;
  position: relative;
  margin: 0 auto;
  display: block;
}

.c-HeaderSection {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding-bottom: 40px;
}
.c-HeaderSection h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  width: 100%;
}

.gradient--carbonated {
  background-image: linear-gradient(to top, #080f0f, #141e1e, #1b2d2d, #223d3c, #2a4d4c);
}

.gradient--traditional {
  background-image: linear-gradient(to top, #221e38, #27233f, #2c2945, #312e4c, #363453);
}

.gradient--sweets {
  background-image: linear-gradient(to top, #191733, #281d3e, #392349, #4b2852, #5e2d5a);
}
