@import url("https://fonts.googleapis.com/css2?family=Grand+Hotel&family=Montserrat:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 400;
  color: #303030;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Grand Hotel", cursive;
  font-weight: 400;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s ease;
}

a:hover {
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.py {
  padding: 140px 0;
}

@media (max-width: 768px) {
  .py {
    padding: 30px 0;
  }
}

.container {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 1140px) {
  .container {
    width: 95%;
  }
}

.btn {
  background-color: #ffc100;
  border-radius: 5px;
  padding: 0.5em 2.5em;
  text-transform: uppercase;
  color: #303030;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.4s ease;
  border: none;
  outline: none;
  cursor: pointer;
}

.btn:hover {
  background-color: rgba(255, 193, 0, 0.5);
  color: #ffffff;
}

/**************
HEADER
**************/
header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
  background-image: url("../images/header-img.jpg");
  background-color: #303030;
  background-position: left center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media (max-width: 1360px) {
  header {
    overflow: hidden;
    position: relative;
  }
}

header:after {
  content: "";
  height: 100%;
  width: 70%;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/header-r.png);
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 50px 4%;
  z-index: 5;
}

header nav div:first-child {
  flex: 0 0 40%;
}

header nav div:last-child {
  display: none;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header nav div img {
  height: 50px;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

@media (max-width: 1360px) {
  header nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: space-between;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 80%;
    background: rgba(78, 77, 77, 0.99);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
}

header nav ul.showMenu {
  transform: translateX(0);
}

header nav ul li {
  font-size: 2rem;
  color: #ffffff;
}

@media (max-width: 1360px) {
  header nav ul li {
    margin-bottom: 30px;
  }
}

header nav a {
  transition: color 0.4s ease;
}

header nav a:hover {
  color: #ffc100;
}

header nav form {
  position: relative;
}

header nav form:hover input {
  transform: scale(1, 1);
}

header nav form input {
  transform: scale(0, 1);
  transform-origin: right center;
  position: absolute;
  right: 0;
  height: 100%;
  width: 200px;
  padding: 3px;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  border-radius: 5px;
  outline: none;
  border: none;
  transition: 0.4s ease;
  display: inline-block;
}

@media (max-width: 1360px) {
  header nav form input {
    transition: none;
    display: block;
    transform: scale(1, 1);
    position: relative;
  }
}

header nav form span {
  font-size: 2.4rem;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 1360px) {
  header nav form span {
    display: none;
  }
}

header nav .menuBtn {
  display: none;
  margin-left: auto;
  padding: 0.1em 0.3em;
  font-size: 2rem;
  border: none;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 1360px) {
  header nav .menuBtn {
    display: inline-block;
  }
}

header article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 110vh;
  flex: 0 0 70%;
  z-index: 3;
}

@media (max-width: 1220px) {
  header article {
    flex: 0 0 100%;
  }
}

header article div {
  width: 60%;
}

@media (max-width: 1220px) {
  header article div {
    width: 90%;
    text-align: center;
  }
}

header article h1 {
  color: #ffc100;
  font-size: 10rem;
}

@media (max-width: 1220px) {
  header article h1 {
    text-shadow: 0 0 3px #303030;
  }
}

@media (max-width: 768px) {
  header article h1 {
    font-size: 6rem;
    line-height: 1;
  }
}

header article p {
  font-size: 2.4rem;
  color: #ffffff;
  margin: 30px 0 40px;
}

@media (max-width: 1220px) {
  header article p {
    text-shadow: 0 0 3px #303030;
  }
}

@media (max-width: 768px) {
  header article p {
    text-shadow: 0 0 5px #303030;
    font-size: 2rem;
  }
}

/**************
SELLERS
**************/
.sellers {
  text-align: center;
  color: #303030;
}

.sellers h2 {
  font-size: 5.5rem;
  margin-bottom: 20px;
}

.sellers h3 {
  font-size: 3.5rem;
  margin: 20px 0;
}

.sellers p {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .sellers p {
    font-size: 1.7rem;
  }
}

.sellers article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}

.sellers .card {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 31%;
}

@media (max-width: 768px) {
  .sellers .card {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}

.sellers .card-image {
  overflow: hidden;
  max-height: 300px;
  max-width: 300px;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.sellers .card-image img {
  height: 100%;
  width: 100%;
}

.sellers .card p {
  font-size: 1.5rem;
}

/* ORIENTAL */
.promo {
  background-image: url(../images/oriental-bg.png);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.promo-2 {
  background-image: url(../images/oriental-2-bg.png);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1380px) {
  .promo-2 div {
    margin-top: 50px;
  }
}

.promo article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.promo article div {
  flex: 0 0 45%;
}

@media (max-width: 1380px) {
  .promo article div {
    flex: 0 0 100%;
    text-align: center;
  }
}

.promo article div img {
  border-radius: 50%;
}

@media (max-width: 1380px) {
  .promo article div img {
    margin: 0 auto;
  }
}

.promo article div h2 {
  color: #ffc100;
  font-size: 9rem;
}

@media (max-width: 768px) {
  .promo article div h2 {
    font-size: 6rem;
    line-height: 1.2;
  }
}

.promo article div p {
  color: #ffffff;
  font-size: 2rem;
  margin: 30px 0 80px;
}

@media (max-width: 768px) {
  .promo article div p {
    font-size: 1.7rem;
  }
}

/**************
STATISTICS
**************/
.statistics {
  background-image: linear-gradient(rgba(48, 48, 48, 0.6), rgba(48, 48, 48, 0.6)), url(../images/vegetables-2.png);
  background-position: center;
  background-size: 95% 95%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: #303030;
  text-align: center;
  color: #303030;
}

@media (max-width: 768px) {
  .statistics {
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-repeat: repeat-y;
  }
}

.statistics h2 {
  font-size: 5.5rem;
  margin-bottom: 20px;
  color: #ffc100;
}

.statistics article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 100px;
}

.statistics article div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
}

@media (max-width: 1360px) {
  .statistics article div {
    flex: 0 0 50%;
    height: 250px;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .statistics article div {
    flex: 0 0 100%;
  }
}

.statistics article div::after {
  content: "";
  display: block;
  border: 5px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  height: 250px;
  width: 250px;
}

.statistics article div p {
  font-weight: 700;
  text-transform: uppercase;
}

.statistics h4 {
  color: #ffc100;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.statistics p {
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .statistics p {
    font-size: 1.7rem;
  }
}

/**************
FETURED
**************/
.featured {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(255, 193, 0, 0.85), rgba(255, 193, 0, 0.85)), url(../images/featured-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  text-align: center;
  margin-top: 140px;
}

.featured h2 {
  font-size: 5rem;
  margin: 50px 0 0;
}

.featured p {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .featured p {
    font-size: 2.2rem;
  }
}

/**************
SUBSCRIBE
**************/
.subscribe {
  text-align: center;
  margin-top: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(rgba(244, 244, 244, 0.6), rgba(244, 244, 244, 0.6)), url(../images/vegetables-2.png);
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
}

.subscribe h2 {
  font-size: 8rem;
  margin: 0 0 50px;
}

@media (max-width: 768px) {
  .subscribe h2 {
    font-size: 6rem;
  }
}

.subscribe p {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .subscribe p {
    font-size: 2rem;
  }
}

.subscribe form {
  margin: 100px auto 0;
  width: 60%;
  min-width: 750px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

@media (max-width: 1530px) {
  .subscribe form {
    min-width: unset;
    width: 90%;
  }
}

@media (max-width: 960px) {
  .subscribe form {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.subscribe form input {
  font-family: "Montserrat", sans-serif;
  padding: 20px 30px;
  flex: 1;
  font-size: 1.8rem;
  color: #303030;
  border: none;
  outline: none;
}

@media (max-width: 960px) {
  .subscribe form input {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

/**************
FOOTER
**************/
footer {
  background-color: #303030;
  color: #ffffff;
}

footer article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

footer article .column:first-child {
  flex: 0 0 40%;
}

@media (max-width: 1310px) {
  footer article .column:first-child {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}

footer article .column:last-child {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex: 0 0 50%;
}

@media (max-width: 1310px) {
  footer article .column:last-child {
    flex: 0 0 100%;
  }
}

@media (max-width: 600px) {
  footer article .column:last-child div {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}

footer h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

footer p,
footer li {
  font-size: 1.3rem;
}

footer li {
  line-height: 1.8;
}

footer li a {
  transition: 0.4s ease;
}

footer li a:hover {
  color: #ffc100;
}

@media (max-width: 768px) {
  footer .social {
    text-align: center;
  }
}

footer .social a {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  height: 1.8em;
  width: 1.8em;
  line-height: 1.8em;
  text-align: center;
  margin-top: 40px;
  margin-right: 10px;
  transition: 0.4s ease;
}

footer .social a:hover {
  background-color: #ffc100;
}

footer .social i {
  color: #303030;
}
/*# sourceMappingURL=style.css.map */