* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.information {
	background-color: #fbc123;
    padding: 20px;
    text-align: justify;
    margin-top: 70px;
}

/* sub header */
.sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: white;
  padding: 12px 80px;
  background-color: black;
  position: relative;
}

.sub-header span {
  text-decoration: underline;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 80px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  background-color: white;
  position: relative;
  z-index: 9999;
}

header .logo {
  height: 70px;
}

header .brand {
	display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 18px;
}

header .menu-click {
  display: none;
}

nav.menu {
  display: flex;
  align-items: center;
  font-size: 14px;
}

nav.menu a {
  font-weight: 600;
  margin-left: 32px;
  text-transform: uppercase;
}

/* menu mobile */
section.menu-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  right: -100%;
  transition: all 0.6s;
  text-transform: uppercase;
  padding: 32px 0;
    top: 130px;
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: white;
}

section.menu-mobile-toggle {
      right: 0;
}

section.menu-mobile a {
  margin-bottom: 8px;
}

/* banner main */
section.banner-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
  position: relative;
}

.banner-main__child:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 40px 0 80px;
  background-color: #172e27;
}

.banner-main__child:first-child img {
  width: 240px;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  position: absolute;
}

.banner-main__child h1 {
  max-width: 672px;
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 40px;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}

.banner-main__child a {
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-top: 32px;
  padding: 12px 20px;
  text-transform: uppercase;
  background-color: #fbc024;
  position: relative;
  z-index: 10;
}

.banner-main__child:last-child {
  position: relative;
}

.banner-main__child:last-child img {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  position: absolute;
}

/* newsletter */
.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  padding: 144px 80px;
  position: relative;
}

.bg-opacity {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgb(0 0 0 / 30%);
	position: absolute;
}

.newsletter h1 {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 40px;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}

.newsletter img {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  position: absolute;
}

.newsletter .newsletter-form {
  display: flex;
  width: 500px;
  margin-top: 32px;
  position: relative;
  z-index: 10;
}

.newsletter .newsletter-form > input {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  padding: 12px;
  border: none;
  background-color: white;
}

.newsletter .newsletter-form > input:focus {
  outline: none;
}

.newsletter .newsletter-form > a {
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  color: black;
  padding: 12px 20px;
  text-transform: uppercase;
  background-color: #fbc024;
}

/* footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  background-color: black;
}

footer .logo {
  height: 84px;
  margin-bottom: 40px;
}

footer nav.menu {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: white;
}

nav.menu a {
  font-weight: 600;
  margin-left: 32px;
  text-transform: uppercase;
}

footer p {
  font-size: 14px;
  color: white;
  margin-top: 32px;
  opacity: 0.4;
}

/* banner page */
section.banner-page {
  width: 100%;
  height: 300px;
  background-color: #eee;
  position: relative;
}

section.banner-page img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  position: absolute;
}

section.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px;
}

section.main p {
  margin-bottom: 8px;
}

section.main .grid-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

h2.title-page {
  display: inline-flex;
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 40px;
  margin-bottom: 40px;
  padding: 16px 20px;
  text-transform: uppercase;
  background-color: #172e26;
}

.grid-double-child p {
  margin-bottom: 8px;
}

.grid-double-child form > .form-group {
  margin-bottom: 20px;
}

.grid-double-child form > .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.grid-double-child form > .form-group input,
.grid-double-child form > .form-group textarea {
  width: 100%;
  padding: 8px 12px;
  resize: none;
  border-radius: 8px;
  border: 1px solid rgb(229, 229, 229);
}

.grid-double-child form > .form-group input:focus,
.grid-double-child form > .form-group textarea:focus {
  outline: none;
}

.grid-double-child form label button {
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  color: black;
  padding: 12px 20px;
  text-transform: uppercase;
  border: none;
  background-color: #fbc024;
}

/* grid products */
.product-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.product-item {
  width: 100%;
  height: auto;
  gap: 40px;
}

.product-item:last-child {
  margin-bottom: 0;
}

.product-item__child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item__child:first-child {
  width: 100%;
  height: 400px;
}

.product-item__child:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 40px;
  background-color: #e7e7e7;
}

.product-item__child:last-child h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0;
}

.product-item__child:last-child a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: black;
  gap: 8px;
  padding: 8px 16px;
  text-transform: uppercase;
  background-color: #fbc024;
}

/* responsive */
@media screen and (max-width: 996px) {
    header .brand {
        font-size: 16px;
    }
	.information {
		font-size: 13px;
	}
	.boton-volver-atras {font-size: 13px;}
  .product-item-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-item__child:first-child {
    height: 300px;
  }

  .product-item__child:last-child {
    padding: 20px 30px;
    height: 80px;
  }

  .product-item__child:last-child a {
    font-size: 13px;
  }

  .product-item__child:last-child h3 {
    font-size: 16px;
  }

  section.main .grid-double {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-double-child form > .form-group label {
    font-size: 12px;
  }

  .grid-double-child form > .form-group button {
    font-size: 13px;
  }

  section.main {
    padding: 40px 12px 40px;
  }

  section.main p {
    font-size: 13px;
  }

  h2.title-page {
    font-size: 20px;
    padding: 4px 16px;
  }

  .grid-double-child p {
    font-size: 13px;
  }

  section.banner-page {
    height: 150px;
  }

  section.menu-mobile {
    display: flex;
  }

  nav.menu {
    display: none;
  }

  header {
    padding: 12px;
  }

  header .logo {
    height: 64px;
  }

  header .menu-click {
    display: flex;
  }

  section.banner-main {
    display: grid;
    grid-template-columns: 1fr;
  }

  .banner-main__child h1 {
    width: 100%;
    font-size: 20px;
    line-height: normal;
  }

  .banner-main__child a {
    font-size: 13px;
  }

  .banner-main__child:first-child {
    height: 300px;
    padding: 0 12px;
  }

  .banner-main__child:last-child {
    height: 300px;
  }

  .newsletter h1 {
    max-width: 80%;
    font-size: 20px;
    line-height: normal;
  }

  .newsletter {
    padding: 84px 12px;
    align-items: flex-start;
  }

  .newsletter .newsletter-form {
    display: block;
    width: 100%;
  }

  .newsletter .newsletter-form > input {
    font-size: 13px;
  }

  .newsletter .newsletter-form > a {
    width: 100%;
    font-size: 13px;
    padding: 10px 20px;
    justify-content: center;
  }

  .sub-header {
    font-size: 13px;
    padding: 12px;
  }

  footer {
    padding: 54px 12px;
  }

  footer .logo {
    height: 64px;
    margin-bottom: 40px;
  }

  footer nav.menu {
    display: none;
  }

  footer p {
    font-size: 13px;
    margin-top: 0;
  }
}

