@import url("https://fonts.googleapis.com/css2?family=Istok+Web:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
}

.products {
  display: flex;
  background-color: rgb(255, 255, 255);
  padding: 1rem 0;
  justify-content: center;
}
/* * body {
  min-height: 100vh;
}  */

.title-wrapper {
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1366px) {
  body, html {
    height: 109%;

  }
}

.title-blue {
  color: #004f9e;
  padding-top: 80px;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}

.card1 {
  position: relative;
  width: 320px;
  height: 480px;
  background: #014e9e;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card1::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: skewY(345deg);
  transition: 0.5s;
}

.card1::after {
  content: "American";
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 670; /* Aumentando el grosor del texto */
  font-size: 6em;
  color: rgba(0, 0, 0, 0.1);
}


.card1 .imgBox1 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  z-index: 1;
}

.card1 .contentBox1 {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.card1 .contentBox1 h3 {
  font-size: 18px;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}

.card1 .contentBox1 .price {
  font-size: 15px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.card1 .contentBox1 .buy {
  position: relative;
  top: 0;
  opacity: 1;
  padding: 10px 30px;
  margin-top: 15px;
  color: #000000;
  text-decoration: none;
  background: #ebebeb;
  border-radius: 30px;
  letter-spacing: 1px;
}

.mouse {
  height: 300px;
  width: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;

}

.content {
  flex: 1;
}


.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  padding: 20px;
}
@media screen and(max-width: 844px) {
  footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px;

}}

@media screen and (max-width: 1366px) {
  .products .card1 {
    height: 100%;
  }

  .mouse {
    height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .products {
    flex-direction: column;
    align-items: center;
    padding: 175px 0;
    padding-top: 0;
  }
}

