:root {
  --bg-color: #7ecf90;
  --font-color-h1: #ea1b1b;
  --font-color-a: #fff;
  --font-size-h1: 38px;
  --font-size-p: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
}

/* Navbar */

h1 {
  font-size: 36px;
}

h2 {
  margin-bottom: 100px;
}
p {
  font-size: 16px;
  padding-top: 10px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
.header {
  border-bottom: 1px solid #e2e8f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: var(--bg-color);
}
.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #475569;
}

.nav-link:hover {
  color: #482ff7;
}

.nav-logo {
  color: var(--font-color-h1);
  font-size: 2.1rem;
  font-weight: 500;
}

/* Jumbroton */

.jumbotron {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
}

.jumbotron-content h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.jumbotron-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  padding: 20px 0;
}

.btn-action {
  display: flex;
  justify-content: space-around;
  cursor: pointer;
}

.btn-primary a {
  display: inline-block;
  width: 100px;
  height: 40px;
  background: coral;
  border-radius: 20px;
  text-align: center;
  padding-top: 14px;
}
.btn-secondary a {
  display: inline-block;
  width: 100px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding-top: 14px;
}

.image-product {
  max-width: 100%;
  height: auto;
}

.product {
  height: 100vh;
}
.product h2 {
  text-align: center;
}

.title-product {
  padding-top: 50px;
}

.detail-product {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /* height: 100vh; */
  flex-wrap: wrap;
}
.image-products {
  min-width: 100%;
  height: auto;
}

.contact {
  height: 90vh;
  text-align: center;
}

.contact-media {
  display: inline-block;
}

.media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 30px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 4px 3px -3px rgb(0 0 0 / 10%),
    inset 0 4px 2px -2px rgb(0 0 0 / 7%);
}
.price {
  display: inline-block;
  background-color: #fff;
  width: 100px;
  box-shadow: inset 0 4px 3px -3px rgb(0 0 0 / 10%),
    inset 0 4px 2px -2px rgb(0 0 0 / 7%);
}

.twitter {
  width: 15px;
  height: 15px;
}
.media a {
  text-decoration: none;
  color: #000;
}

.no-scroll {
  overflow: hidden;
}

footer {
  text-align: center;
}
/* Responsive */

@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* jumbroton */
  .jumbotron {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  h1 {
    margin: 0 10px;
  }
  p {
    margin: 0 10px;
  }
  .product {
    height: 200vh;
  }

  .detail-product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* height: 200vh; */
    flex-wrap: wrap;
  }
  h1 {
    font-size: 20px;
  }
  .contact {
    height: 100vh;
    text-align: center;
  }
}

/* Medium screen (md) - Tablet */
@media (max-width: 768px) {
  /* Custom Styles */
}

/* Large screen (lg) - Laptop */
@media (min-width: 960px) {
  /* Custom Styles */
}

/* Xtra Large screen (xl) - PC Monitor */
@media (min-width: 1440px) {
  /* Custom Styles */
}
