* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --unitedColor:#e61134;
  --bg: #ececf0;
  --card-bg: #FBFBFB;
  --black: #1E2021;
  --white: #ffffff;
}

.WRAPPER {
  width: 100vw;
  display: grid;
  grid-template-areas: "HOME-PG" "ABOUT-PG" "HISTORY-PG" "CSR-PG" "PRODUCTS-PG" "RECIPES-PG" "CONTACT-PG";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto auto auto auto;
}
.WRAPPER .HOME {
  grid-area: HOME-PG;
  width: 100%;
}
.WRAPPER .HOME .HOME-PAGE {
  width: 100%;
  display: grid;
  grid-template-areas: "navpg" "mainpg" "autoscpg";
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  background-color: var(--unitedColor);
}
.WRAPPER .HOME .HOME-PAGE .Navigation {
  grid-area: navpg;
  width: 100%;
  display: grid;
  grid-template-areas: "LOGO-P NAVBAR-P CUSTOMER-P";
  grid-template-rows: 1fr;
  grid-template-columns: auto 1fr auto;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .logo {
  grid-area: LOGO-P;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .logo .swing-logo:hover {
  transition: 2s ease;
  transform: rotateY(360deg);
  cursor: pointer;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .navbar {
  grid-area: NAVBAR-P;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .navbar a {
  text-decoration: none;
  padding: 5px 8px;
  margin: 0 8px;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .navbar a:hover {
  color: #e61134;
  background-color: #f7caca;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .customer {
  grid-area: CUSTOMER-P;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .customer span {
  color: #fff;
  font-size: 0.8rem;
  margin-right: 20px;
  background-color: #f8adba;
  padding: 10px;
  border-radius: 5px;
}
.WRAPPER .HOME .HOME-PAGE .Navigation .customer span a {
  color: #e61134;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 5px;
  background-color: #aaa;
}
.WRAPPER .HOME .HOME-PAGE .Main {
  grid-area: mainpg;
  width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.WRAPPER .HOME .HOME-PAGE .Main .container {
  width: 99%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.WRAPPER .HOME .HOME-PAGE .Main .swiper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.WRAPPER .HOME .HOME-PAGE .Main .swiper-slide img {
  width: 100%;
  height: auto;
}
.WRAPPER .HOME .HOME-PAGE .Main .swiper .swiper-button-prev {
  color: #fff;
}
.WRAPPER .HOME .HOME-PAGE .Main .swiper .swiper-button-next {
  color: #fff;
}
.WRAPPER .HOME .HOME-PAGE .Main .swiper .swiper-pagination-bullet-active {
  background: #fff;
}
.WRAPPER .HOME .HOME-PAGE .Autoscroll {
  grid-area: autoscpg;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #fbdfdf;
  padding: 20px 0;
}
.WRAPPER .HOME .HOME-PAGE .Autoscroll .logos-slide {
  animation: 35s slide infinite linear;
  display: inline-block;
}
.WRAPPER .HOME .HOME-PAGE .Autoscroll .logos-slide img {
  margin: 0 40px;
}
.WRAPPER .HOME .HOME-PAGE .Autoscroll .Autoscroll:hover .logos-slide {
  animation-play-state: paused;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1300px) {
  .WRAPPER .HOME .HOME-PAGE {
    grid-template-rows: 45px auto auto;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .logo img {
    height: 45px;
    width: auto;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .navbar a {
    font-size: 0.9rem;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .customer span {
    font-size: 0.6rem;
    margin-right: 10px;
    padding: 8px;
  }
  .WRAPPER .HOME .HOME-PAGE .Autoscroll {
    grid-area: autoscpg;
    background-color: aqua;
  }
}
@media screen and (max-width: 1080px) {
  .WRAPPER .HOME .HOME-PAGE {
    grid-template-rows: auto auto auto;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation {
    display: grid;
    grid-template-areas: "LOGO-P CUSTOMER-P" "NAVBAR-P  NAVBAR-P";
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .logo img {
    height: 30px;
    width: auto;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .navbar a {
    font-size: 0.7rem;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .customer span {
    font-size: 0.6rem;
    margin-right: 10px;
    padding: 8px;
  }
  .WRAPPER .HOME .HOME-PAGE .Autoscroll {
    grid-area: autoscpg;
    background-color: aqua;
  }
}
@media screen and (max-width: 600px) {
  .WRAPPER .HOME .HOME-PAGE .Navigation .logo img {
    height: 25px;
    width: auto;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .navbar {
    padding: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .navbar a {
    font-size: 0.5rem;
    background: #f7caca;
    color: #e61134;
    margin-bottom: 10px;
  }
  .WRAPPER .HOME .HOME-PAGE .Navigation .customer span {
    font-size: 0.6rem;
    margin-right: 5px;
    padding: 6px;
  }
  .WRAPPER .HOME .HOME-PAGE .Autoscroll {
    grid-area: autoscpg;
    background-color: aqua;
  }
}
.WRAPPER .ABOUT {
  grid-area: ABOUT-PG;
  width: 100%;
}
.WRAPPER .HISTORY {
  grid-area: HISTORY-PG;
  width: 100%;
}
.WRAPPER .CSR {
  grid-area: CSR-PG;
  width: 100%;
}
.WRAPPER .PRODUCTS {
  grid-area: PRODUCTS-PG;
  width: 100%;
}
.WRAPPER .RECIPES {
  grid-area: RECIPES-PG;
  width: 100%;
}
.WRAPPER .CONTACT {
  grid-area: CONTACT-PG;
  width: 100%;
}/*# sourceMappingURL=style.css.map */