body {
  width: 100%;
  padding: 0;
  margin: 0;
}

a {
  color: var(--pal-white);
  text-decoration: none;
}

#MenuItems {
  display: none;
}

.navbar a {
  color: var(--pal-white);
  text-decoration: none;
}

.navbar .logo img {
  width: 120px;
  height: auto;
}

.navbar nav ul {
  position: absolute;
  top: 70px;
  left: 0;
  background: var(--pal-red);
  text-decoration: none;
  width: 100%;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.navbar nav ul li {
  display: block;
  margin-right: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: right;
}

.navbar .menu-icon {
  display: block;
  cursor: pointer;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  position: absolute;
}

.navbar .fa-solid {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 24px;
  right: 48px;
}

.btn {
  display: inline-block;
  background: var(--pal-red);
  color: var(--pal-lightest);
  padding: 8px 30px;
  margin: auto;
  margin-top: 35px;
  border-radius: 30px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  cursor: pointer;
}

.btn:hover {
  background: var(--pal-red-shade);
}

.title {
  text-align: center;
  margin: 0 auto 80;
  position: relative;
  line-height: 60px;
  color: var(--pal-blue);
}

.title::after {
  content: '';
  background: var(--pal-primary);
  height: 5px;
  width: 80px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h4 {
  color: var(--pal-info);
  font-weight: normal;
  text-align: center;
}

.hero {
  width: 100%;
  background: radial-gradient(var(--pal-blue-shade), var(--pal-blue));
  /*  background-color: var(--pal-blue);*/
}

.hero .container .row {
  color: var(--pal-lightest);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 20px;
  display: inline-block;
}

.hero .container .row .col-2 {
  width: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  display: inline-block;
  /*    min-width: 300px;            */
}

.hero .container .row .col-2 img {
  max-width: 80%;
  padding: 50px 0;
  margin: auto;
}

.product-shop {
  width: 100%;
}

.product-shop .small-container {
  width: 100%;
}

.product-shop .small-container .row {
  width: 100%;
}

.product-shop .small-container .row .col-4 {
  width: 100%;
}

.product-shop .small-container .row .col-4 img {
  width: 80%;
  height: auto;
}

.footer {
  text-align: center;
  background: var(--pal-info);
  color: var(--pal-white);
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

.footer .container .row h3 {
  color: var(--pal-red);
}

.footer .container .row .footer-col-1 {
  margin-top: 40px;
}

.footer .container .row .footer-col-2 {
  margin-top: 40px;
}

.footer .container .row .footer-col-2 img {
  width: 120px;
  height: auto;
}

.footer .container .row .footer-col-3 {
  margin-top: 40px;
}

.footer .footer_legal {
  margin-top: 20px;
  font-size: 10px;
  width: 100%;
  text-align: center;
}
/*# sourceMappingURL=mobile_EC.css.map */