:root {
  --orange1: #FEA734;
  --orange2: #FCBA62;
  --orange3: #FCD197;
  --orange4: #FCE1BD;
  --orange5: #FCEFDE;
  --orange6: #FCF8F2;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--orange6);
  font-family: serif;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  border-radius: 4px;
}

.c-box {
  margin: 0 auto;
  max-width: 1120px;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
}

.logo img {
  width: 60px;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 320px;
  width: auto;
  height: 320px;
  background-image: url(assets/img/hero_bg.jpg);
  background-position: right;
  background-size: cover;
}

.hero__text {
  width: 1120px;
  font-weight: bold;
}

.hero__text h1 {
  margin: -1rem 0;
  padding: 0;
  font-size: 4rem;
  font-family: serif;
}

@media (max-width: 480px) {
  .hero__text h1 {
    margin: 0;
    padding-left: 1rem;
    font-size: 2rem;
  }
}

.hero__text p {
  margin: 0;
  padding: 0;
  color: var(--orange1);
  font-size: 2rem;
}

@media (max-width: 480px) {
  .hero__text p {
    padding-left: 1rem;
    font-size: 1rem;
  }
}

.global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  background-color: var(--orange3);
}

.global-nav a {
  color: inherit;
  text-decoration: none;
}

.global-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.global-nav__menu--item {
  padding: 5px 4rem;
  border-right: 1px solid #222222;
  list-style: none;
}

@media (max-width: 480px) {
  .global-nav__menu--item {
    padding: 5px 2rem;
  }
}

.global-nav__menu--item:hover {
  color: #777777;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-nav__menu--item:active {
  color: var(--orange1);
}

.global-nav__menu .noborder {
  border-right: none;
}

.message {
  margin: 100px;
  text-align: center;
  line-height: 2.5rem;
}

@media (max-width: 480px) {
  .message {
    margin: 2rem;
  }
}

.shop-list {
  max-width: 100%;
}

.shop-list ul {
  list-style: none;
}

.shop-list h4 {
  margin: 0;
  padding: 1rem;
  font-family: serif;
}

.shop-list p {
  font-family: serif;
}

.shop-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0;
  padding: 3rem 0;
}

@media (max-width: 480px) {
  .shop-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.shop-list__item--img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-list__item--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 2rem;
  width: 50%;
}

.shop-list__item--text-logo {
  padding: 1rem;
  width: 300px;
}

footer {
  margin-top: 100px;
  padding: 100px 0;
  background-color: var(--orange3);
}

footer .company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto;
  max-width: 1120px;
}

footer .company i {
  width: 2rem;
  text-align: center;
}

footer .company .logo {
  position: relative;
}

footer .company__text {
  padding-left: 1rem;
}

footer .company__text--title {
  padding: 1rem 0;
  font-size: 1.2rem;
}

footer .company__text--address {
  list-style: none;
}

.histry table, .info table {
  margin-top: 150px;
  width: 100%;
  border-collapse: collapse;
}

.histry table tr:nth-child(odd), .info table tr:nth-child(odd) {
  background-color: var(--orange5);
}

.histry table th, .histry table td, .info table th, .info table td {
  padding: 1rem;
}

.histry table th, .info table th {
  width: 20%;
  text-align: center;
  font-weight: normal;
}

.histry table td, .info table td {
  width: 80%;
}
/*# sourceMappingURL=style.css.map */