@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Merienda:300,regular,500,600,700,800,900);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Flexbox */
/* grid */
/* Botones */
/* Cargar Variables */
body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

header, section {
  padding: 100px 0;
}


.box-center {
  width: 80%;
  margin: auto;
}

h1.tprincipal {
  font-family: "Merienda";
  color: #fff;
  font-size: 12vmin;
  font-weight: bold;
}

h1 {
  color: #fff;
  font-size: 10vmin;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

h2.tsecundario {
  font-size: 4vmin;
  text-align: center;
  color: #fff;
  letter-spacing: 6px;
  font-weight: 600;
}

h3 {
  margin-bottom: 60px;
  text-transform: uppercase;
  font-size: 35px;
  color: #222;
}

h4 {
  color: #444;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}

h5 {
  font-size: 20px;
  font-weight: 400;
}

/*  Paleta de colores de texto gris */
.text-solid1 {
  color: #3c3c3c;
}

.text-solid2 {
  color: #555555;
}

.text-solid3 {
  color: #6f6f6f;
}

.text-solid4 {
  color: #888888;
}

.text-solid5 {
  color: #a2a2a2;
}

.text-solid6 {
  color: #bbbbbb;
}

.text-solid7 {
  color: #d5d5d5;
}

.text-solid8 {
  color: #eeeeee;
}

/* paleta de Fondos color gris */
.bg-solid1 {
  background: #3c3c3c;
}

.bg-solid2 {
  background: #555555;
}

.bg-solid3 {
  background: #6f6f6f;
}

.bg-solid4 {
  background: #888888;
}

.bg-solid5 {
  background: #a2a2a2;
}

.bg-solid6 {
  background: #bbbbbb;
}

.bg-solid7 {
  background: #d5d5d5;
}

.bg-solid8 {
  background: #eeeeee;
}

.text-primario {
  color: #ff7b00;
}

.bg-primario {
  background: #ff7b00;
}

.text-center {
  text-align: center;
}

.text-lite {
  font-family: "Merienda";
}

.border {
  border: 1px solid #ccc;
}

.reunded {
  border-radius: 5px;
}

.reunded-semi {
  border-radius: 20px;
}

.reunded-full {
  border-radius: 50%;
}

.line-space {
  line-height: 40px;
}

.margin-bottom {
  margin-bottom: 30px;
}

.margin-top {
  margin-top: 30px;
}

.marginy {
  margin: 30px 0;
}

.marginx {
  margin: 0 30px;
}

@media screen and (max-width: 1024px) {
  .about__container .content {
    order: 1;
    flex: 0 0 100% !important;
    margin: 50px 0;
  }
  .about__container .container_image {
    order: 0;
    flex: 0 0 100% !important;
    margin: 50px 0;
  }
  .icons {
    width: 100% !important;
  }
}
@media screen and (max-width: 790px) {
  .card {
    width: 45% !important;
  }
}
@media screen and (max-width: 550px) {
  .card {
    width: 100% !important;
  }
  .footer__container {
    grid-template-columns: 1fr !important;
  }
}
.overlay, .oferta::before, .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.btn, .btn-primary, .btn-white {
  width: 170px;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding: 10px 25px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s;
}

.btn-white {
  background: #fff;
  color: #ff7b00;
}
.btn-white:hover {
  background: #cc6200;
  color: #fff;
}

.btn-primary {
  background: #ff7b00;
  color: #fff;
}
.btn-primary:hover {
  transform: scale(1.1);
}

.icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
}
.icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  background: #ff7b00;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s;
}
.icons a:hover {
  background: #cc6200;
  color: white;
}

.card {
  width: 30%;
  height: 300px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  margin-bottom: 30px;
  background-size: cover !important;
  background-position: center !important;
  cursor: default;
}
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: all 0.5s;
}
.card-container .card-title {
  font-size: 40px;
  font-weight: 400;
  padding: 10px 0 0 0;
  color: #222;
}
.card:hover .card-container {
  opacity: 1;
}

.card:nth-child(1) {
  background: url(/CSS/img/product1.jpg);
}

.card:nth-child(2) {
  background: url(/CSS/img/product2.jpg);
}

.card:nth-child(3) {
  background: url(/CSS/img/product3.jpg);
}

.card:nth-child(4) {
  background: url(/CSS/img/product4.jpg);
}

.card:nth-child(5) {
  background: url(/CSS/img/product5.jpg);
}

.card:nth-child(6) {
  background: url(/CSS/img/product6.jpg);
}

nav {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
nav a {
  color: #222;
  padding: 0 20px;
  transition: all 0.3s;
}
nav a:hover {
  color: #ff7b00;
}

.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  width: 100%;
  height: 600px;
  background: url(/CSS/img/image1.jpg);
  background-size: cover;
  background-position: bottom;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}
.header * {
  position: relative;
}

.about__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row wrap;
}
.about__container .content {
  flex: 0 0 50%;
}
.about__container .content .icons {
  width: 70%;
  font-size: 30px;
}
.about__container .content .icons a {
  width: 70px;
  height: 70px;
}
.about__container .container_image {
  position: relative;
  flex: 0 0 400px;
}
.about__container .container_image::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background: #ff7b00;
  z-index: -10;
}
.about__container .container_image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.about__container .container_image img:hover {
  transform: scale(1.1);
}

.oferta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  width: 100%;
  height: 500px;
  background: url(/CSS/img/image3.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.oferta * {
  position: relative;
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
  padding: 50px 0;
  color: white;
}
.footer .info .icons {
  width: 60%;
}
.footer .info .icons a {
  width: 50px;
  height: 50px;
}
.footer .info .icons a span {
  transition: all 0.3s;
}
.footer .info .icons a:hover span {
  transform: scale(1.5);
}
.footer .contact .icons {
  width: 40%;
}
.footer .contact .icons a {
  width: 50px;
  height: 50px;
}
.footer .contact .icons a {
  background: transparent;
  transition: all 0.3s;
}
.footer .contact .icons a:hover {
  background: transparent;
  transform: scale(1.1);
}

/*# sourceMappingURL=style.css.map */
