.v-select {
  position: relative;
  font-family: inherit; }

.v-select,
.v-select * {
  box-sizing: border-box; }

/* KeyFrames */
@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Dropdown Default Transition */
.vs__fade-enter-active,
.vs__fade-leave-active {
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1); }

.vs__fade-enter,
.vs__fade-leave-to {
  opacity: 0; }

/** Component States */
/*
 * Disabled
 *
 * When the component is disabled, all interaction
 * should be prevented. Here we modify the bg color,
 * and change the cursor displayed on the interactive
 * components.
 */
.vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
  cursor: not-allowed;
  background-color: #f8f8f8; }

/*
 *  RTL - Right to Left Support
 *
 *  Because we're using a flexbox layout, the `dir="rtl"`
 *  HTML attribute does most of the work for us by
 *  rearranging the child elements visually.
 */
.v-select[dir="rtl"] .vs__actions {
  padding: 0 3px 0 6px; }

.v-select[dir="rtl"] .vs__clear {
  margin-left: 6px;
  margin-right: 0; }

.v-select[dir="rtl"] .vs__deselect {
  margin-left: 0;
  margin-right: 2px; }

.v-select[dir="rtl"] .vs__dropdown-menu {
  text-align: right; }

/**
    Dropdown Toggle

    The dropdown toggle is the primary wrapper of the component. It
    has two direct descendants: .vs__selected-options, and .vs__actions.

    .vs__selected-options holds the .vs__selected's as well as the
    main search input.

    .vs__actions holds the clear button and dropdown toggle.
 */
.vs__dropdown-toggle {
  appearance: none;
  display: flex;
  padding: 0 0 4px 0;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal; }

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative; }

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px; }

/* Dropdown Toggle States */
.vs--searchable .vs__dropdown-toggle {
  cursor: text; }

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer; }

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  transform: scale(1);
  transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855); }

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1); }

.vs--loading .vs__open-indicator {
  opacity: 0; }

/* Clear Button */
.vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px; }

/* Dropdown Menu */
.vs__dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff; }

.vs__no-options {
  text-align: center; }

/* List Items */
.vs__dropdown-option {
  line-height: 1.42857143;
  /* Normalize line height */
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333;
  /* Overrides most CSS frameworks */
  white-space: nowrap; }
  .vs__dropdown-option:hover {
    cursor: pointer; }

.vs__dropdown-option--highlight {
  background: #5897fb;
  color: #fff; }

/* Selected Tags */
.vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0px 2px;
  padding: 0 0.25em; }

.vs__deselect {
  display: inline-flex;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff; }

/* States */
.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent; }

.vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: .4; }

.vs--single.vs--searching .vs__selected {
  display: none; }

/* Search Input */
.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-cancel-button,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
  display: none; }

.vs__search,
.vs__search:focus {
  appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1; }

.vs__search::placeholder {
  color: inherit; }

/**
    States
 */
.vs--unsearchable .vs__search {
  opacity: 1; }
  .vs--unsearchable .vs__search:hover {
    cursor: pointer; }

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: .2; }

/* Loading Spinner */
.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, 0.1);
  border-right: 0.9em solid rgba(100, 100, 100, 0.1);
  border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left: 0.9em solid rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity .1s; }

.vs__spinner,
.vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em; }

/* Loading Spinner States */
.vs--loading .vs__spinner {
  opacity: 1; }

:root {
  font-size: 16px; }

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  box-shadow: none; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth; }

h1 {
  font-size: 3.875rem;
  color: #ce0b10;
  font-weight: 400;
  margin: 0; }

h2 {
  font-size: 2.625rem;
  font-weight: 700; }

h3 {
  font-size: 2.25rem;
  font-weight: 700; }

h4 {
  font-size: 1.5rem;
  font-weight: 700; }

header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 140px;
  padding: 0 50px;
  /*position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
*/ }
  header img {
    width: 150px; }

p {
  font-size: 1.5rem; }

.text-center {
  text-align: center; }

@media screen and (max-width: 1024px) {
  header {
    justify-content: center;
    position: static; } }

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.25rem; }
  h2 {
    font-size: 1.75rem; }
  h3 {
    font-size: 1.5rem; }
  p {
    font-size: 1rem; }
  h4 {
    font-size: 1.25rem; } }

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem; }
  h2 {
    font-size: 1.5rem; }
  h3 {
    font-size: 1.25rem; }
  h4 {
    font-size: 1rem; }
  header {
    height: 110px; }
    header img {
      width: 100px; } }

@media screen and (max-width: 360px) {
  h1 {
    font-size: 1.5rem; }
  h2 {
    font-size: 1.25rem; }
  h3 {
    font-size: 1.15rem; }
  h4 {
    font-size: 1rem; } }

.swal-text {
  color: #000000 !important; }

.swal-popup {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

#store-locator {
  background-color: #000000;
  padding-top: 5px;
  position: relative; }
  #store-locator:after {
    content: "";
    display: block;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 47px;
    height: 53px;
    background-image: url(../images/pin.png);
    background-repeat: no-repeat;
    background-position: center; }
  #store-locator h3 {
    color: #ffffff;
    text-align: center;
    font-weight: 400; }
  #store-locator .map-popup-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px; }
  #store-locator .map-popup-text {
    font-size: .8rem;
    margin-bottom: 4px; }
  #store-locator .map-popup-button button {
    background-color: #e32627;
    border: none;
    color: #ffffff;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    padding: 6px 10px;
    font-size: 12px; }
  #store-locator .store-locator-search {
    display: flex;
    flex-direction: row;
    padding: 0 15px 40px 15px;
    margin: 0 auto;
    width: 90%; }
    #store-locator .store-locator-search-input {
      width: 80%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-end; }
      #store-locator .store-locator-search-input input {
        width: 80%;
        color: #ffffff;
        border-bottom: 3px solid #ffffff;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        background-color: transparent;
        font-size: 1.5rem;
        margin-right: 15px; }
        #store-locator .store-locator-search-input input::placeholder {
          color: #ffffff; }
    #store-locator .store-locator-search-list {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: stretch;
      width: 20%; }
      #store-locator .store-locator-search-list button {
        border: 0;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 1.5rem;
        background-color: transparent;
        width: 125px;
        position: relative;
        text-align: left;
        cursor: pointer; }
        #store-locator .store-locator-search-list button:after {
          content: "";
          display: block;
          width: 20px;
          height: 20px;
          background-repeat: no-repeat;
          background-position: center;
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%); }
        #store-locator .store-locator-search-list button.minus:after {
          background-image: url(../images/minus-icon.png); }
        #store-locator .store-locator-search-list button.plus:after {
          background-image: url(../images/plus-icon.png); }
  #store-locator #store-map {
    height: 700px;
    width: 100%; }
  #store-locator #store-list .store-list-item {
    border: 2px solid #ffffff;
    margin: 10px 30px;
    padding: 10px 30px; }
    #store-locator #store-list .store-list-item-title {
      color: #e32627;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 5px;
      padding-left: 40px;
      position: relative; }
      #store-locator #store-list .store-list-item-title img {
        width: 30px; }
      #store-locator #store-list .store-list-item-title-pin {
        left: 0px;
        position: absolute; }
    #store-locator #store-list .store-list-item-text {
      color: #ffffff;
      font-size: 15px;
      line-height: 20px;
      margin-bottom: 4px;
      padding-left: 40px; }
  #store-locator #store-list button {
    background-color: #e32627;
    border: none;
    color: #ffffff;
    cursor: pointer;
    margin-top: -75px;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 1rem;
    float: right; }
  #store-locator #store-list .paginate-list {
    padding: 0; }
  #store-locator #store-list .paginate-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    list-style-type: none;
    cursor: pointer;
    font-size: 1.5rem; }
    #store-locator #store-list .paginate-links li {
      margin: 0 5px; }

@media screen and (max-width: 991px) {
  #store-locator .map-popup-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px; }
  #store-locator .map-popup-text {
    font-size: .8rem;
    margin-bottom: 4px; }
  #store-locator .store-locator-search {
    flex-direction: column; }
  #store-locator .store-locator-search-input {
    width: 100%;
    margin-bottom: 40px; }
    #store-locator .store-locator-search-input input {
      width: 100%; }
  #store-locator .store-locator-search-list {
    width: 100%; }
    #store-locator .store-locator-search-list button {
      width: 100%; } }

@media screen and (max-width: 767px) {
  #store-locator {
    padding-top: 20px; }
    #store-locator #store-list button {
      float: unset;
      margin: 10px 0px 0px 40px; }
    #store-locator #store-list .store-list-item-title {
      font-size: 32px; }
    #store-locator #store-list .store-list-item-text {
      font-size: 24px;
      line-height: 30px; } }

@media screen and (max-width: 480px) {
  #store-locator .store-locator-search-input input {
    width: 100%;
    font-size: 1.25rem; }
  #store-locator .store-locator-search-list button {
    width: 100%;
    font-size: 1.25rem; }
  /* #store-list {
    .store-list-item {
      margin: 14px;
      padding: 14px;
      
      &-title {
        font-size: 24px;
        padding-left: 40px;

        &-pin {
          left: 30px;
        }
      }
      &-text {
        font-size: 20px;
        line-height: 28px;
        padding-left: 40px;
      }
    }
  } */ }

.cta {
  color: #ffffff;
  background-color: #ce0b10;
  border: 0;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer; }
  .cta:hover {
    text-decoration: none; }

@media screen and (max-width: 480px) {
  .cta {
    font-size: 1rem; } }

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #cbcccc;
  padding: 50px 0; }
  .contact-form-container {
    width: 1170px;
    max-width: 100%;
    padding: 0 15px; }
  .contact-form h3, .contact-form h4, .contact-form p {
    text-align: center; }
  .contact-form h3 {
    margin-bottom: 0; }
  .contact-form h4 {
    margin-top: 20px; }
  .contact-form p {
    font-weight: 700; }
  .contact-form .store-data {
    margin: 60px auto; }
    .contact-form .store-data-name {
      margin-bottom: 0; }
    .contact-form .store-data-city {
      margin: 0; }
    .contact-form .store-data-name span, .contact-form .store-data-city span {
      color: #ce0b10;
      text-transform: uppercase; }
    .contact-form .store-data-name img, .contact-form .store-data-city img {
      margin: auto 10px;
      width: 30px; }
  .contact-form form input.error {
    border: 1px solid red; }
  .contact-form form .input-double {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .contact-form form .input-double input[type=text] {
      width: calc(50% - 5px); }
    .contact-form form .input-double .col3of4 {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: 74.5%; }
    .contact-form form .input-double .col1of4 {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: 24.5%; }
    .contact-form form .input-double .v-select {
      width: calc(50% - 5px);
      margin-bottom: 10px;
      border: 0;
      font-size: 1.25rem;
      background-color: #dbdcdc;
      color: #c2c3c3; }
      .contact-form form .input-double .v-select .dropdown-toggle {
        height: 100%;
        border: 0; }
      .contact-form form .input-double .v-select .dropdown-menu {
        border-radius: 0;
        border: 0;
        background-color: #dbdcdc;
        color: #c2c3c3; }
  .contact-form form input[type=text],
  .contact-form form textarea,
  .contact-form form select,
  .contact-form form .vs__dropdown-toggle {
    width: 100%;
    margin-bottom: 10px;
    border: 0;
    padding: 15px 10px;
    font-size: 1.25rem;
    background-color: #dbdcdc;
    color: #000000;
    border: 1px solid #dcdcdc; }
    .contact-form form input[type=text].error,
    .contact-form form textarea.error,
    .contact-form form select.error,
    .contact-form form .vs__dropdown-toggle.error {
      border: 1px solid red; }
  .contact-form form textarea {
    height: 250px;
    resize: none; }
  .contact-form form ::placeholder, .contact-form form select {
    color: #c2c3c3; }
  .contact-form form select.selected {
    color: #000000; }
  .contact-form form .checkbox-cta-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }
    .contact-form form .checkbox-cta-container .check-wrapper {
      margin-right: 20px; }
      .contact-form form .checkbox-cta-container .check-wrapper .container-check {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 25px;
        z-index: 1; }
        .contact-form form .checkbox-cta-container .check-wrapper .container-check input {
          position: absolute;
          opacity: 0;
          cursor: pointer;
          height: 0;
          width: 0; }
          .contact-form form .checkbox-cta-container .check-wrapper .container-check input:checked ~ .checkmark:after,
          .contact-form form .checkbox-cta-container .check-wrapper .container-check input:checked ~ .radiomark:after {
            display: block; }
      .contact-form form .checkbox-cta-container .check-wrapper .radio-check {
        padding-left: 0; }
      .contact-form form .checkbox-cta-container .check-wrapper .checkmark,
      .contact-form form .checkbox-cta-container .check-wrapper .radiomark {
        height: 25px;
        width: 25px;
        background-color: transparent;
        border: 3px solid #959595; }
        .contact-form form .checkbox-cta-container .check-wrapper .checkmark.error,
        .contact-form form .checkbox-cta-container .check-wrapper .radiomark.error {
          border: 1px solid red; }
        .contact-form form .checkbox-cta-container .check-wrapper .checkmark:after,
        .contact-form form .checkbox-cta-container .check-wrapper .radiomark:after {
          position: absolute;
          display: none; }
      .contact-form form .checkbox-cta-container .check-wrapper .checkmark {
        border-radius: 2px;
        position: absolute;
        top: 0;
        left: 0; }
        .contact-form form .checkbox-cta-container .check-wrapper .checkmark:after {
          content: "";
          left: 6px;
          top: 1px;
          width: 5px;
          height: 10px;
          border: solid #959595;
          border-width: 0 3px 3px 0;
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
      .contact-form form .checkbox-cta-container .check-wrapper .radiomark {
        -moz-border-radius: 14px;
        -webkit-border-radius: 14px;
        border-radius: 14px;
        display: inline-flex; }
        .contact-form form .checkbox-cta-container .check-wrapper .radiomark:after {
          content: "\2022";
          font-size: 42px;
          left: 5px;
          color: #959595;
          top: -19px; }
        .contact-form form .checkbox-cta-container .check-wrapper .radiomark-text {
          color: #959595;
          font-size: 1rem;
          margin-right: 20px; }
      .contact-form form .checkbox-cta-container .check-wrapper .check-text {
        padding-left: 30px;
        font-size: 1rem;
        display: block;
        position: relative;
        top: -15px;
        color: #959595; }
        .contact-form form .checkbox-cta-container .check-wrapper .check-text a {
          color: #959595; }
      .contact-form form .checkbox-cta-container .check-wrapper .radio-text {
        margin-top: 30px; }
    .contact-form form .checkbox-cta-container .cta-container {
      display: flex;
      margin-left: auto; }
      .contact-form form .checkbox-cta-container .cta-container .cta {
        margin-left: auto;
        margin-top: 10px; }
      .contact-form form .checkbox-cta-container .cta-container .loader {
        margin: 20px 5px 0; }
        .contact-form form .checkbox-cta-container .cta-container .loader:after {
          background: #cbcccc; }

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 20px 0 40px; }
    .contact-form form .input-double {
      flex-direction: column; }
      .contact-form form .input-double input[type=text] {
        width: 100%; }
    .contact-form form textarea {
      margin-bottom: 20px; } }

.loader {
  font-size: 10px;
  text-indent: -9999em;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0); }

.loader:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: ''; }

.loader:after {
  background: #000;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.jumbotron {
  background-image: url(../images/mbe-main.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 85vh; }
  .jumbotron.microitalia {
    background-image: url(../images/mbe-main.png); }
  .jumbotron.e-link {
    background-image: url(../images/link-main.png); }
    .jumbotron.e-link header {
      justify-content: flex-start;
      align-items: flex-start; }
  .jumbotron.wine {
    background-image: url(../images/wine-main.png); }
    .jumbotron.wine header {
      justify-content: flex-start;
      align-items: flex-start; }
  .jumbotron.safe-value, .jumbotron.import-export {
    background-position: top;
    height: 100vh;
    border-bottom: 4px solid black; }
    .jumbotron.safe-value .jumbotron-text, .jumbotron.import-export .jumbotron-text {
      margin: 50px 3%;
      justify-content: space-evenly; }
      .jumbotron.safe-value .jumbotron-text .text-img, .jumbotron.import-export .jumbotron-text .text-img {
        position: relative;
        margin-bottom: 30px; }
        .jumbotron.safe-value .jumbotron-text .text-img img, .jumbotron.import-export .jumbotron-text .text-img img {
          margin: 0; }
        .jumbotron.safe-value .jumbotron-text .text-img:after, .jumbotron.import-export .jumbotron-text .text-img:after {
          content: '';
          background-image: url(../images/underline-red.png);
          background-repeat: no-repeat;
          background-position: center;
          position: absolute;
          bottom: -12px;
          height: 12px;
          width: 305px;
          left: 50%;
          transform: translateX(-50%); }
    .jumbotron.safe-value header, .jumbotron.import-export header {
      justify-content: flex-start;
      align-items: flex-start; }
  .jumbotron.safe-value {
    background-image: url(../images/safe-value-main.png); }
  .jumbotron.import-export {
    background-image: url(../images/import-export-main.png);
    /*.jumbotron-text .text-img:after{
            transform: translateX(-70%);
        }*/ }
  .jumbotron-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 200px);
    width: 767px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center; }
    .jumbotron-text p {
      font-size: 1.7rem;
      margin-bottom: auto; }
    .jumbotron-text a {
      max-width: 200px;
      margin: 0 auto; }
    .jumbotron-text div span {
      font-size: 2.625rem; }
    .jumbotron-text div h2 {
      position: relative;
      margin: 0; }
      .jumbotron-text div h2:before {
        content: '';
        background-image: url(../images/underline-red.png);
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        bottom: -12px;
        height: 12px;
        width: 305px;
        left: 50%;
        transform: translateX(-50%); }
    .jumbotron-text div img {
      margin: 30px 0; }
    .jumbotron-text .logo {
      text-align: center;
      width: 100%;
      margin-top: 10px; }
      .jumbotron-text .logo img {
        width: 100px;
        height: auto; }

@media screen and (max-height: 700px) {
  .jumbotron {
    height: 700px; }
    .jumbotron-text p {
      font-size: 1.3rem; } }

@media screen and (max-width: 1024px) {
  .jumbotron {
    padding-top: 0; }
    .jumbotron.safe-value .jumbotron-text {
      margin: 0 auto; }
    .jumbotron-text {
      justify-content: flex-start;
      margin-top: 40px; }
      .jumbotron-text div {
        margin-top: 40px; }
      .jumbotron-text p {
        font-size: 1.2rem; }
      .jumbotron-text .logo img {
        margin: 0; }
      .jumbotron-text .text-img img {
        max-width: 300px; }
    .jumbotron.microitalia {
      background-image: url(../images/mbe-main-mobile.png); }
    .jumbotron.wine {
      background-image: url(../images/wine-main-mobile.png); }
    .jumbotron.safe-value {
      background-image: url(../images/safe-value-main-mobile.png); }
    .jumbotron.import-export {
      background-image: url(../images/import-export-main-mobile.png); } }

@media screen and (max-width: 767px) {
  .jumbotron-text div span {
    font-size: 1.75rem; }
  .jumbotron-text div h2:after {
    width: 200px;
    background-size: contain; }
  .jumbotron-text .text-img img {
    max-width: 250px; } }

@media screen and (max-width: 480px) {
  .jumbotron-text {
    margin-top: 20px; }
    .jumbotron-text div {
      margin-top: 20px; }
      .jumbotron-text div span {
        font-size: 1.5rem; }
  .jumbotron.wine p {
    display: none; }
  .jumbotron.wine header {
    justify-content: center;
    align-items: center; } }

@media screen and (max-width: 360px) {
  .jumbotron-text div {
    margin-top: 10px; }
    .jumbotron-text div span {
      font-size: 1.25rem; } }

.contact-us {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding: 50px 0; }

.micrologistics {
  display: flex;
  flex-direction: row; }
  .micrologistics-text {
    width: 640px;
    max-width: 100%; }
    .micrologistics-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 50%;
      padding: 70px 20px; }
    .micrologistics-text h2 {
      position: relative;
      margin: 0;
      text-align: center; }
      .micrologistics-text h2:after {
        content: '';
        background-image: url(../images/underline-red.png);
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        bottom: -12px;
        height: 12px;
        width: 305px;
        left: 50%;
        transform: translateX(-50%); }
    .micrologistics-text h3.small {
      font-size: 32px; }
    .micrologistics-text p {
      text-align: justify;
      padding: 40px 0 20px;
      line-height: 1.4; }
    .micrologistics-text span {
      font-size: 2.625rem;
      text-align: center;
      display: block; }
    .micrologistics-text img {
      align-self: flex-start; }
    .micrologistics-text .service {
      display: flex;
      flex-direction: column;
      justify-content: stretch;
      width: 100%; }
      .micrologistics-text .service-item {
        font-size: 2rem;
        text-transform: uppercase;
        border-bottom: 3px solid #000000;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        text-align: left;
        padding: 0;
        cursor: pointer;
        margin-bottom: 50px;
        background-color: transparent;
        position: relative; }
        .micrologistics-text .service-item:after {
          content: "";
          width: 20px;
          height: 20px;
          display: block;
          position: absolute;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          background-image: url(../images/arrow-right-big.png);
          background-repeat: no-repeat;
          background-position: center; }
      .micrologistics-text .service-text {
        width: 767px;
        max-width: 100%;
        background-color: #fff;
        padding: 20px;
        border-radius: 3px;
        position: relative; }
        .micrologistics-text .service-text i {
          position: absolute;
          top: 10px;
          right: 10px;
          cursor: pointer;
          font-size: 1.5rem; }
        .micrologistics-text .service-text h3 {
          margin: 10px 0; }
        .micrologistics-text .service-text p {
          padding: 0; }
        .micrologistics-text .service-text-container {
          position: fixed;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          max-height: 100vh;
          overflow: auto;
          background-color: rgba(0, 0, 0, 0.5);
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 2; }
    .micrologistics-text .text-img {
      position: relative;
      display: flex;
      justify-content: center; }
      .micrologistics-text .text-img img {
        margin: 0 10px; }
      .micrologistics-text .text-img:after {
        content: '';
        background-image: url(../images/underline-red.png);
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        bottom: -20px;
        height: 12px;
        width: 305px;
        left: 50%;
        transform: translateX(-50%); }
  .micrologistics-disclaimer p {
    padding: 1.25rem;
    font-size: 1rem; }
  .micrologistics-img {
    width: 50%;
    object-fit: cover; }
    .micrologistics-img-mobile {
      display: none; }

@media screen and (max-width: 1199px) {
  .micrologistics {
    flex-direction: column; }
    .micrologistics-text {
      text-align: center; }
      .micrologistics-text img {
        max-width: 100%; }
      .micrologistics-text-container {
        width: 100%; }
      .micrologistics-text .text-img img {
        max-width: 300px; }
    .micrologistics-img {
      display: none; }
      .micrologistics-img-mobile {
        width: 100%;
        display: block; } }

@media screen and (max-width: 767px) {
  .micrologistics-text-container {
    padding: 40px 20px; }
  .micrologistics-text span {
    font-size: 1.5rem; }
  .micrologistics-text h2:after {
    background-size: contain;
    width: 200px; }
  .micrologistics-text p {
    font-size: 1.25rem; }
  .micrologistics-text .text-img img {
    max-width: 250px; }
  .micrologistics-text .service-item {
    font-size: 1.5rem; } }

@media screen and (max-width: 480px) {
  .micrologistics-text p {
    font-size: 1rem; }
  .micrologistics-text .service-item {
    font-size: 1.25rem; } }

.mbe-link {
  text-align: center;
  padding: 6%; }
  .mbe-link h2:after {
    content: '';
    background-image: url(../images/underline-red.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    height: 115px;
    width: 305px;
    left: 50%;
    transform: translateX(-50%); }
  .mbe-link iframe {
    margin: 35px 0px;
    width: 100%;
    max-width: 1065px;
    height: 600px; }
  .mbe-link .widget {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px; }
    .mbe-link .widget-item {
      width: 33%;
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: center;
      padding: 5px 6%; }
      .mbe-link .widget-item p {
        margin: 0; }
      .mbe-link .widget-item .icon {
        height: 150px;
        display: flex;
        align-items: flex-end;
        justify-content: center; }
        .mbe-link .widget-item .icon img {
          max-width: 125px;
          height: auto; }
      .mbe-link .widget-item h3 {
        margin: 15px 0;
        color: #e32627;
        font-size: 30px; }
  .mbe-link .discover {
    padding: 0px 6%; }

@media screen and (max-width: 767px) {
  .mbe-link {
    padding: 35px 6%; }
    .mbe-link iframe {
      width: 100%;
      min-height: 300px;
      height: auto; }
    .mbe-link .widget {
      flex-direction: column; }
      .mbe-link .widget-item {
        width: 100%;
        padding: 5px 6%; }
      .mbe-link .widget h3 {
        font-size: 1.15rem; }
    .mbe-link .discover {
      padding: 0; }
    .mbe-link h2:after {
      width: 200px;
      background-size: contain;
      height: 70px; } }

@media screen and (max-width: 480px) {
  .mbe-link h2:after {
    width: 200px;
    background-size: contain;
    height: 55px; } }

.advantage-widget {
  display: flex;
  padding: 20px; }
  .advantage-widget.highlight {
    background-color: #dbdcdc; }
  .advantage-widget-icon {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 20%; }
  .advantage-widget-text {
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .advantage-widget-text p {
      padding: 0;
      margin: 0; }
      .advantage-widget-text p.title {
        font-weight: 700;
        color: #e32627; }
  .advantage-widget-img {
    vertical-align: middle;
    margin-top: -5px; }

@media screen and (max-width: 480px) {
  .advantage-widget {
    padding: 20px 0; }
    .advantage-widget img {
      width: 80%; }
    .advantage-widget.highlight .advantage-widget-text {
      padding-right: 15px; } }

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e4e3df;
  padding: 50px 0;
  font-weight: 300; }
  footer > a, footer .logo {
    max-width: 100%;
    width: 1170px;
    padding: 0 15px; }
  footer .footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap; }
    footer .footer-menu ul {
      list-style-type: none;
      padding: 0 10px 0 0;
      margin: 0; }
      footer .footer-menu ul li {
        font-family: "Roboto Slab", serif; }
        footer .footer-menu ul li:first-child {
          font-weight: 400;
          margin-bottom: 20px; }
        footer .footer-menu ul li a {
          color: #000000;
          text-decoration: none;
          font-family: "Roboto Slab", serif; }
          footer .footer-menu ul li a:hover {
            color: #000000;
            text-decoration: none; }
      footer .footer-menu ul.footer-social li {
        display: inline-block;
        margin-right: 5px; }
        footer .footer-menu ul.footer-social li:first-child {
          display: block; }
        footer .footer-menu ul.footer-social li a {
          display: block;
          color: #7f7f7f;
          background-color: #ffffff;
          width: 32px;
          height: 32px;
          padding: 5px;
          text-align: center;
          margin-right: 5px; }
          footer .footer-menu ul.footer-social li a:hover {
            color: #ffffff;
            background-color: #e31837; }
    footer .footer-menu-bottom {
      font-weight: 400;
      width: 1170px;
      max-width: 100%;
      padding: 0 15px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      display: flex;
      margin-top: 25px; }
      footer .footer-menu-bottom a {
        font-family: "Roboto Slab", serif;
        margin-right: 20px;
        color: #000000;
        text-decoration: none; }
        footer .footer-menu-bottom a:hover {
          color: #000000;
          text-decoration: none; }
      footer .footer-menu-bottom img {
        width: 50px;
        max-width: 100%; }
      footer .footer-menu-bottom .icons {
        display: flex; }
        footer .footer-menu-bottom .icons-single {
          width: 70px;
          display: flex;
          flex-direction: column;
          margin-right: 15px;
          align-items: center; }
          footer .footer-menu-bottom .icons-single span {
            font-size: 10px;
            margin-top: 5px;
            text-align: center;
            text-transform: uppercase; }
            footer .footer-menu-bottom .icons-single span.active {
              color: #ce0b10; }

.disclaimer {
  width: 1170px;
  max-width: 100%;
  padding: 50px 15px;
  margin: 0 auto; }
  .disclaimer p {
    font-size: 0.75rem;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    color: #7a7879;
    text-align: justify;
    line-height: 1.4; }
    .disclaimer p a {
      text-decoration: none;
      color: #000000;
      font-family: "Roboto", sans-serif; }
      .disclaimer p a:hover {
        text-decoration: none; }
    .disclaimer p:nth-child(2) {
      padding-top: 50px; }

@media screen and (max-width: 767px) {
  footer .footer-menu {
    flex-direction: column; }
    footer .footer-menu ul {
      margin-bottom: 25px; }
    footer .footer-menu-bottom .icons {
      width: 100%;
      margin-bottom: 20px; }
      footer .footer-menu-bottom .icons span {
        display: none; } }

