.families div article.families__fourth, .families div article.families__third, .families div article.families__first {
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.families div article.families__second, .families div article button {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

footer section:last-child form button, .catalog article.catalog__left button, .details .details__info div button {
  transition: all 0.2s ease;
}
@media (hover: hover) {
  footer section:last-child form button:hover, .catalog article.catalog__left button:hover, .details .details__info div button:hover {
    background-color: #007bff;
    transform: scale(1.05);
    transition: all 0.2s ease;
  }
}

@media (hover: hover) {
  footer section article div a:hover, .families .families__details div div div img:hover, .banner i:hover {
    transform: scale(1.03);
    cursor: pointer;
  }
}

.details .details__imgs i, .products img, .families div article {
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .details .details__imgs i:hover, .products img:hover, .families div article:hover {
    transform: scale(1.03);
    cursor: pointer;
    transition-delay: 0.05s;
  }
}

aside nav ul a,
aside nav ul p, footer section article:last-child p, .categories ul li, header nav ul li {
  transition: all 0.2s ease;
}
@media (hover: hover) {
  aside nav ul a:hover,
  aside nav ul p:hover, footer section article:last-child p:hover, .categories ul li:hover, header nav ul li:hover {
    border-bottom: 1px solid #007bff;
  }
}

body h2 {
  font-family: "Rubik Mono One", Arial, Helvetica, sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body {
  font-family: "AvantGarde Bk BT", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  box-sizing: border-box;
  background-color: #e4e4e4;
}
.aperture {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  z-index: 1000;
  text-align: center;
  background-color: #007bff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.8s ease;
  border-bottom: 2px black solid;
}
.aperture img {
  width: 40%;
}
.aperture.activated {
  transform: translateY(-100%);
}

header {
  position: fixed;
  background-color: #fcfcfc;
  margin: 0 auto;
  box-sizing: border-box;
  top: -20px;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  z-index: 1000;
  transition: all 0.3s ease-in;
  opacity: -1;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
  padding: 0 28px;
}
@media screen and (max-width: 77.5rem) {
  header {
    height: 80px;
  }
}
@media screen and (max-width: 40.625rem) {
  header {
    justify-content: space-between;
    padding: 0 20px;
  }
}
@media screen and (max-width: 31.25rem) {
  header {
    height: 60px;
  }
}
header.show {
  transition: all 0.3s ease-in;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
header.hide {
  transition: all 0.3s ease-in;
  top: -90px;
}
header .menuIcon {
  display: none;
}
@media screen and (max-width: 58rem) {
  header .menuIcon {
    display: flex;
  }
}
header a img {
  width: 250px;
  cursor: pointer;
}
@media screen and (max-width: 77.5rem) {
  header a img {
    width: 200px;
  }
}
@media screen and (max-width: 67.5rem) {
  header a img {
    margin-top: 6px;
    width: 160px;
  }
}
@media screen and (max-width: 58rem) {
  header a img {
    width: 200px;
  }
}
@media screen and (max-width: 31.25rem) {
  header a img {
    width: 180px;
  }
}
header nav {
  margin-right: 22px;
}
@media screen and (max-width: 77.5rem) {
  header nav {
    margin-right: 0;
  }
}
@media screen and (max-width: 58rem) {
  header nav {
    display: none;
  }
}
header nav ul {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 67.5rem) {
  header nav ul {
    gap: 10px;
  }
}
header nav ul li {
  all: unset;
  padding: 0 2px;
  border-bottom: #fcfcfc 1px solid;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header nav ul li.currentLocation {
  border-bottom: #002afc 1px solid;
}
header nav ul li a,
header nav ul li p {
  all: unset;
}
header nav ul li img {
  all: unset;
  width: 20px;
  display: flex;
}

.categories {
  all: unset;
  box-sizing: border-box;
  background-color: #fcfcfc;
  height: 288px;
  position: fixed;
  top: -100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  z-index: 9900;
  padding: 20px;
  border-radius: 10px;
}
.categories.show {
  top: 88px;
  right: 10%;
  bottom: 0;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.1s ease-in forwards;
}
@media screen and (max-width: 58rem) {
  .categories.show {
    right: 25%;
  }
}
.categories ul {
  all: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: start;
  margin: 0;
  width: 100%;
  gap: 16px;
}
.categories ul li {
  all: unset;
  cursor: pointer;
  width: 100%;
  border-bottom: #fff 1px solid;
}
.categories ul li a {
  all: unset;
  width: 100%;
}

.blackCover {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  background-color: black;
  top: 0;
  opacity: 0.2;
  display: none;
}
.blackCover.show {
  display: flex;
}

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: clamp(900px, 100vh, 1600px);
  height: clamp(900px, 100dvh, 1600px);
  background: radial-gradient(circle at bottom right, #8b5cfc, #54a5fc 80%);
  z-index: -1;
  opacity: -1;
  transition: all 0.6s ease-in;
  z-index: 9000;
  padding: 20px 60px;
  box-sizing: border-box;
  display: grid;
  grid-template-areas: "banner-header banner-header" "banner-left banner-right" "banner-left banner-right";
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 3fr 3fr;
  margin: 0 auto;
  place-items: center;
}
@media screen and (max-width: 95rem) {
  .banner {
    padding: 20px 40px;
    height: clamp(600px, 100vh, 800px);
    height: clamp(600px, 100dvh, 800px);
  }
}
@media screen and (max-width: 77.5rem) {
  .banner {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 58rem) {
  .banner {
    grid-template-rows: 1fr 3fr 1fr;
    height: clamp(700px, 100vh, 800px);
    height: clamp(700px, 100dvh, 800px);
  }
}
@media screen and (max-width: 40.625rem) {
  .banner {
    grid-template-columns: 1fr;
    padding: 0;
    background: radial-gradient(circle at right bottom, 8b5cfc, #54a5fc 20%);
    grid-template-rows: 1fr 4fr;
  }
}
@media screen and (max-width: 31.25rem) {
  .banner {
    height: clamp(400px, 100vh, 600px);
  }
}
.banner.show {
  transition: all 0.6s ease-in;
  opacity: 1;
}
.banner a {
  all: unset;
  cursor: pointer;
  margin-bottom: 4px;
  font-size: clamp(0.8rem, 1.38vw, 2.2rem);
}
.banner #categories-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.banner #categories-btn p {
  margin: 0 0 0 0;
}
.banner .banner__left {
  width: 100%;
  height: 100%;
  grid-area: banner-left;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .banner .banner__left {
    grid-column: 1/3;
    grid-row: 3;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__left {
    grid-column: 1;
    grid-row: 2;
  }
}
.banner .banner__right {
  width: 100%;
  height: 100%;
  grid-area: banner-right;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .banner .banner__right {
    grid-column: 1/3;
    grid-row: 2;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__right {
    display: none;
  }
}
.banner .banner__header {
  grid-area: banner-header;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: clamp(1rem, 1.38vw, 2.2rem);
  font-weight: 400;
  max-width: 160rem;
  text-wrap: nowrap;
  margin: 0 auto;
}
@media screen and (max-width: 95rem) {
  .banner .banner__header {
    height: 110px;
  }
}
@media screen and (max-width: 58rem) {
  .banner .banner__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.banner .banner__header .banner__nav {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .banner .banner__header .banner__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.banner .banner__header .banner__nav a {
  width: clamp(7rem, 10vw, 16rem);
  height: clamp(7rem, 10vw, 16rem);
}
@media screen and (max-width: 58rem) {
  .banner .banner__header .banner__nav a {
    width: clamp(9rem, 10vw, 16rem);
    height: clamp(9rem, 10vw, 16rem);
  }
}
.banner .banner__header .banner__nav a img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.banner .banner__header .banner__nav p {
  color: #fff;
  margin-top: 20px;
  font-size: clamp(0.8rem, 1vw, 2rem);
}
@media screen and (max-width: 58rem) {
  .banner .banner__header .banner__nav p {
    font-size: clamp(1rem, 1vw, 2rem);
    margin: 18px 0 0 0;
  }
}
@media screen and (max-width: 31.25rem) {
  .banner .banner__header .banner__nav p {
    display: none;
  }
}
.banner .banner__header .banner__title {
  display: none;
  margin: 0;
  text-wrap: nowrap;
  color: #fff;
}
.banner .banner__header .banner__title h1 {
  margin: 10px 0 0 0;
  font-size: clamp(0.4rem, 2.6vw, 50px);
  font-family: "Rubik Mono One", Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 58rem) {
  .banner .banner__header .banner__title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    margin-right: 110px;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__header .banner__title {
    display: none;
  }
}
.banner .banner__header nav {
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-right: min(30px, 2%);
}
@media screen and (max-width: 58rem) {
  .banner .banner__header nav {
    display: none;
  }
}
.banner .banner__header nav ul {
  all: unset;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 77.5rem) {
  .banner .banner__header nav ul {
    gap: 20px;
  }
}
.banner .banner__header nav ul li {
  all: unset;
  cursor: pointer;
  font-size: clamp(0.8rem, 1.38vw, 2.2rem);
}
.banner i {
  position: absolute;
  display: none;
  top: 48px;
  right: 40px;
  width: 40px;
  height: 40px;
}
.banner i img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media screen and (max-width: 58rem) {
  .banner i {
    display: flex;
    top: 68px;
  }
}
@media screen and (max-width: 31.25rem) {
  .banner i {
    top: 48px;
  }
}
.banner .banner__slider {
  grid-area: banner-right;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  height: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .banner .banner__slider {
    grid-column: 1/3;
    grid-row: 2;
    width: 60%;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__slider {
    display: none;
  }
}
.banner .banner__slider .carousel-inner img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner__slider .carousel,
.banner .banner__slider .slide {
  width: 100%;
}
.banner .banner__slogan {
  grid-area: banner-left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 20px 0 0 60px;
  color: #fff;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 77.5rem) {
  .banner .banner__slogan {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 58rem) {
  .banner .banner__slogan {
    grid-column: 1/3;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__slogan {
    grid-column: 1;
    grid-row: 2;
    gap: 10px;
  }
}
.banner .banner__slogan h1 {
  font-size: clamp(1.2rem, 2.6vw, 52px);
  margin: 0;
  text-wrap: nowrap;
  font-family: "Rubik Mono One", Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 58rem) {
  .banner .banner__slogan h1 {
    display: none;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__slogan h1 {
    display: flex;
  }
}
.banner .banner__slogan p {
  font-size: clamp(1rem, 2vw, 54px);
  margin-top: 20px;
  text-wrap: nowrap;
}
@media screen and (max-width: 58rem) {
  .banner .banner__slogan p {
    display: none;
  }
}
@media screen and (max-width: 40.625rem) {
  .banner .banner__slogan p {
    display: flex;
  }
}
.banner .banner__slogan button {
  all: unset;
  width: clamp(120px, 28vw, 360px);
  height: clamp(20px, 8vw, 60px);
  padding: 0.4em 1em;
  background-color: #fff;
  cursor: pointer;
  font-weight: 500;
  border-radius: 40px;
  color: #000;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 28px);
  transition: all 0.2s ease;
  text-wrap: nowrap;
}
@media (hover: hover) {
  .banner .banner__slogan button:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
  }
}
@media screen and (max-width: 67.5rem) {
  .banner .banner__slogan button {
    height: 40px;
    padding: 0.4em 0;
  }
}
@media screen and (max-width: 58rem) {
  .banner .banner__slogan button {
    width: clamp(120px, 50vw, 360px);
    height: 48px;
    padding: 0.2em 0.1em;
    font-size: clamp(14px, 2.2vw, 28px);
  }
}

.families {
  width: 100%;
  height: 1060px;
  margin: 56px auto;
  padding: 60px;
  box-sizing: border-box;
  background-color: #fcfcfc;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 95rem) {
  .families {
    height: 880px;
    padding: 40px;
  }
}
@media screen and (max-width: 77.5rem) {
  .families {
    height: 840px;
    padding: 30px;
  }
}
@media screen and (max-width: 67.5rem) {
  .families {
    height: 680px;
    padding: 20px;
  }
}
@media screen and (max-width: 58rem) {
  .families {
    height: 640px;
  }
}
@media screen and (max-width: 40.625rem) {
  .families {
    height: 540px;
    margin: 20px auto;
  }
}
@media screen and (max-width: 31.25rem) {
  .families {
    height: 920px;
  }
}
.families div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 24px;
  width: 100%;
  max-width: 2420px;
  height: 100%;
}
@media screen and (max-width: 67.5rem) {
  .families div {
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 18px;
  }
}
@media screen and (max-width: 31.25rem) {
  .families div {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 2fr);
  }
}
.families div article {
  box-sizing: border-box;
  text-align: center;
  transition: all 1.2s ease-in;
  transform: translateY(10%);
  opacity: -2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.families div article.show {
  transition: all 0.6s ease-in;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.families div article h3 {
  margin: 0;
  font-weight: 600;
}
.families div article button {
  all: unset;
  padding: 6px 14px;
  margin-top: 6px;
  background-color: #54a5fc;
  cursor: pointer;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 67.5rem) {
  .families div article button {
    font-size: 14px;
    padding: 4px 12px;
  }
}
@media screen and (max-width: 58rem) {
  .families div article button {
    display: none;
  }
}
.families div article.families__first {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  background-image: url("../img/resized_image_6.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;
}
.families div article.families__second {
  padding: 20px;
  background-image: url("../img/uniformes-families.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;
  color: #fff;
  box-sizing: border-box;
}
.families div article.families__third {
  padding: 20px;
  background-image: url("../img/imagen_resized_families.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;
}
.families div article.families__fourth {
  padding: 18px;
  background-image: url("../img/families-publicity.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;
}
.families .families__details {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}
.families .families__details div {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: auto;
  aspect-ratio: 16/9;
  max-height: 100vh;
  overflow-y: auto;
  background: #3498db;
  border-radius: 10px;
  background-color: #e6f0ff;
  display: none;
  padding-left: 20px;
  border-radius: 5px;
  box-sizing: border-box;
  border: #000 1px solid;
  padding-left: min(80px, 2%);
}
.families .families__details div:nth-child(2) p:nth-child(2) {
  font-size: clamp(20px, 2.4vw + 0.5vh, 90px);
  line-height: clamp(24px, 3.2vw, 100px);
}
.families .families__details div:last-child ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 58rem) {
  .families .families__details div:last-child ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    row-gap: 0;
    flex-wrap: wrap;
  }
}
.families .families__details div:last-child ul div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: start;
  gap: 10px;
}
.families .families__details div.show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title title" "info img" "list-info list-img";
  grid-template-rows: 1fr 2fr 2fr;
}
@media screen and (max-width: 58rem) {
  .families .families__details div.show {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "title" "img" "info" "list-info" "list-img";
    width: 90vw;
    height: auto;
    aspect-ratio: auto;
    max-height: 90vh;
    padding: 20px;
    overflow-y: auto;
    gap: 10px;
  }
}
.families .families__details div h3 {
  font-size: clamp(20px, 2.6vw + 0.5vh, 80px);
  margin: 0;
  padding: 20px;
  text-align: center;
  grid-area: title;
  font-weight: 600;
}
@media screen and (max-width: 95rem) {
  .families .families__details div h3 {
    font-size: clamp(20px, 2.4vw + 0.5vh, 80px);
  }
}
@media screen and (max-width: 58rem) {
  .families .families__details div h3 {
    text-align: center;
  }
}
.families .families__details div p {
  font-size: clamp(20px, 3.2vw + 0.5vh, 90px);
  font-weight: 400;
  margin: 20px;
  text-align: start;
  grid-area: info;
  margin-right: 0;
  text-wrap: nowrap;
  line-height: clamp(24px, 4vw, 100px);
}
@media screen and (max-width: 95rem) {
  .families .families__details div p {
    font-size: clamp(20px, 3vw + 0.5vh, 70px);
    line-height: clamp(24px, 3.8vw, 80px);
  }
}
@media screen and (max-width: 67.5rem) {
  .families .families__details div p {
    font-size: clamp(20px, 2.8vw + 0.5vh, 70px);
    line-height: clamp(24px, 3.6vw, 80px);
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 58rem) {
  .families .families__details div p {
    text-align: center;
    display: none;
  }
}
.families .families__details div p.details__a__text {
  display: none;
}
@media screen and (max-width: 58rem) {
  .families .families__details div p.details__a__text {
    display: flex;
    text-align: start;
    margin: 0 auto;
    text-wrap: wrap;
  }
}
.families .families__details div ul {
  grid-area: list-info;
  margin-top: 1vw;
  font-size: clamp(20px, 1.6vw + 0.5vh, 70px);
  font-weight: 400;
  margin-right: 0;
  margin-bottom: 0;
  padding-left: 40px;
}
@media screen and (max-width: 95rem) {
  .families .families__details div ul {
    font-size: clamp(20px, 1.4vw + 0.5vh, 70px);
  }
}
@media screen and (max-width: 40.625rem) {
  .families .families__details div ul {
    padding: 10px;
  }
}
.families .families__details div img {
  width: clamp(200px, 18vw, 600px);
  grid-area: img;
  justify-self: center;
  align-self: center;
  border-radius: 10px;
  border: #000 1px solid;
}
@media screen and (max-width: 67.5rem) {
  .families .families__details div img {
    width: clamp(180px, 16vw, 500px);
  }
}
.families .families__details div div {
  all: unset;
  grid-area: list-img;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.families .families__details div div div {
  all: unset;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.families .families__details div div div img {
  width: clamp(40px, 4vw, 130px);
  border: #000 1px solid;
}
.families .families__details div i {
  margin: 0;
  position: absolute;
  top: 28px;
  right: 40px;
  background-color: #007bff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid #000;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .families .families__details div i {
    right: 10px;
    top: 10px;
  }
}
@media screen and (max-width: 40.625rem) {
  .families .families__details div i {
    width: 30px;
    height: 30px;
  }
}
.families .families__details div i:hover {
  background-color: #ee0000;
}
.families .families__details div i:active {
  background-color: #ee0000;
}
.families .families__details div i img {
  all: unset;
  width: 94%;
  height: 94%;
}

.approach {
  width: 100%;
  padding: 98px 62px;
  background: radial-gradient(circle at bottom right, #8b5cfc, #007bff 100%);
}
@media screen and (max-width: 67.5rem) {
  .approach {
    padding: 60px 28px;
  }
}
@media screen and (max-width: 40.625rem) {
  .approach {
    padding: 40px 20px;
  }
}
.approach article {
  width: 96%;
  max-width: 1530px;
  color: #fff;
}
.approach article h2 {
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 2.5em;
}
@media screen and (max-width: 67.5rem) {
  .approach article h2 {
    font-size: 26px;
  }
}
.approach article p {
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1.6em;
  margin-bottom: 20px;
}
@media screen and (max-width: 67.5rem) {
  .approach article p {
    font-size: 18px;
  }
}
.approach article span {
  font-weight: 600;
  text-decoration: underline;
}

.services {
  background-color: #fcfcfc;
  margin: 0;
  padding: 58px 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
  gap: 20px;
}
@media screen and (max-width: 77.5rem) {
  .services {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media screen and (max-width: 40.625rem) {
  .services {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 20px;
  }
}
.services article {
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}
.services article:nth-child(2) {
  opacity: -1;
  background-color: #f7ef99;
  transition: all 0.5s ease;
  transform: translateY(18%);
}
.services article:nth-child(2).show {
  transition: all 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.services article:nth-child(3) {
  opacity: -1;
  background-color: #cbdf9e;
  transition: all 0.5s ease;
  transform: translateY(20%);
}
.services article:nth-child(3).show {
  transition: all 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.4s ease;
}
.services article:nth-child(4) {
  opacity: -1;
  background-color: #b8cef8;
  transition: all 0.5s ease;
  transform: translateY(22%);
}
.services article:nth-child(4).show {
  transition: all 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.6s ease;
}
.services article:nth-child(5) {
  opacity: -1;
  background-color: #ff87ab;
  transition: all 0.5s ease;
  transform: translateY(24%);
}
.services article:nth-child(5).show {
  transition: all 0.5s ease;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.8s ease;
}
.services article:nth-child(6) {
  background-color: #ffd6a5;
  transition: all 1.2s ease-in;
  transform: translateY(18%);
  opacity: -1;
  grid-column: 1/3;
}
.services article:nth-child(6).show {
  transition: all 0.6s ease-in;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
@media screen and (max-width: 77.5rem) {
  .services article:nth-child(6) {
    grid-column: auto;
  }
}
.services article:nth-child(7) {
  background-color: #d3a5ff;
  grid-column: 3/5;
  transition: all 1.2s ease-in;
  transform: translateY(18%);
  opacity: -1;
}
.services article:nth-child(7).show {
  transition: all 0.6s ease-in;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
@media screen and (max-width: 77.5rem) {
  .services article:nth-child(7) {
    grid-column: auto;
  }
}
.services img {
  width: 24%;
  margin-bottom: 20px;
}
.services h2 {
  font-weight: 600;
  font-size: 2em;
  margin: 0;
  grid-column: 1/-1;
  grid-row: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 67.5rem) {
  .services h2 {
    margin: 10px;
  }
}
.services div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 77.5rem) {
  .services div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.services div img {
  margin-right: 24px;
  width: 18%;
}
@media screen and (max-width: 77.5rem) {
  .services div img {
    margin-right: 0;
    width: 24%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 77.5rem) {
  .services div h3 {
    order: 1;
  }
}

.products {
  width: 96%;
  margin: 55px auto;
  padding: 58px 20px;
  box-sizing: border-box;
  background-color: #fcfcfc;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 65px;
}
@media screen and (max-width: 77.5rem) {
  .products {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media screen and (max-width: 67.5rem) {
  .products {
    row-gap: 46px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}
@media screen and (max-width: 58rem) {
  .products {
    margin: 20px auto;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}
.products article {
  margin-top: auto;
  box-sizing: border-box;
  text-align: center;
  text-align: center;
  transition: all 1.2s ease-in;
  transform: translateY(10%);
  opacity: -2;
}
.products article.show {
  transition: all 0.6s ease-in;
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.products img {
  width: 240px;
  margin-bottom: 15px;
}
@media screen and (max-width: 77.5rem) {
  .products img {
    width: 240px;
  }
}
@media screen and (max-width: 67.5rem) {
  .products img {
    width: 220px;
  }
}
@media screen and (max-width: 58rem) {
  .products img {
    width: 180px;
  }
}
.products h3 {
  font-weight: 500;
  font-size: 17px;
  margin: 5px;
  width: 100%;
  text-align: center;
  align-self: center;
}
@media screen and (max-width: 58rem) {
  .products h3 {
    font-size: 15px;
  }
}
.products p {
  font-weight: 300;
  font-size: 15px;
}

.details {
  position: fixed;
  width: 980px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  -moz-column-gap: 20px;
       column-gap: 20px;
  z-index: 10000;
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  border: #000 2px solid;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.1s ease-in-out forwards;
}
@media screen and (max-width: 77.5rem) {
  .details {
    width: 940px;
    height: 560px;
  }
}
@media screen and (max-width: 67.5rem) {
  .details {
    width: 800px;
    height: 480px;
  }
}
@media screen and (max-width: 58rem) {
  .details {
    width: 600px;
    height: 400px;
  }
}
@media screen and (max-width: 40.625rem) {
  .details {
    width: 450px;
    height: 400px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 31.25rem) {
  .details {
    width: 90%;
    min-width: 320px;
    height: 660px;
    padding: 40px;
  }
}
.details.show {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  grid-template-rows: auto;
}
@media screen and (max-width: 40.625rem) {
  .details.show {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
@media screen and (max-width: 31.25rem) {
  .details.show {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.details .details__imgs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 40.625rem) {
  .details .details__imgs {
    grid-column: 1;
    grid-row: 4;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: auto;
  }
}
@media screen and (max-width: 31.25rem) {
  .details .details__imgs {
    grid-column: auto;
    grid-row: 2;
  }
}
.details .details__imgs i {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #000;
}
@media screen and (max-width: 40.625rem) {
  .details .details__imgs i {
    width: 56px;
    height: 56px;
  }
}
.details .details__imgs i.chosen {
  border: 1px solid #002afc;
  transform: scale(1.03);
}
.details .details__imgs i img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.details .details__currentImg {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .details .details__currentImg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 40.625rem) {
  .details .details__currentImg {
    grid-column: 1;
    grid-row: 1/4;
  }
}
@media screen and (max-width: 31.25rem) {
  .details .details__currentImg {
    grid-column: auto;
    grid-row: 1;
  }
}
.details .details__currentImg img {
  width: 90%;
  height: 90%;
}
@media screen and (max-width: 40.625rem) {
  .details .details__currentImg img {
    width: 200px;
    height: 220px;
  }
}
@media screen and (max-width: 31.25rem) {
  .details .details__currentImg img {
    border-radius: 5px;
  }
}
.details .details__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 40.625rem) {
  .details .details__info {
    grid-column: 2;
    grid-row: 1/5;
  }
}
@media screen and (max-width: 31.25rem) {
  .details .details__info {
    grid-column: auto;
    grid-row: 3;
  }
}
.details .details__info h3 {
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 28px;
}
@media screen and (max-width: 58rem) {
  .details .details__info h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 31.25rem) {
  .details .details__info h3 {
    text-align: center;
  }
}
@media screen and (max-width: 58rem) {
  .details .details__info p {
    margin: 5px 0;
    font-size: 14px;
    text-align: center;
  }
}
.details .details__info p:nth-child(2) {
  width: 100%;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 31.25rem) {
  .details .details__info p:nth-child(2) {
    text-align: center;
  }
}
.details .details__info div {
  margin-top: auto;
  margin-bottom: 40px;
  align-self: flex-end;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 58rem) {
  .details .details__info div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
  }
}
@media screen and (max-width: 40.625rem) {
  .details .details__info div {
    margin-bottom: 26px;
    align-self: center;
  }
}
@media screen and (max-width: 31.25rem) {
  .details .details__info div {
    margin-left: 12px;
  }
}
.details .details__info div button {
  all: unset;
  width: 186px;
  height: 40px;
  padding: 4px 8px;
  background-color: #54a5fc;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  border: #000 1px solid;
}
@media screen and (max-width: 58rem) {
  .details .details__info div button {
    width: 140px;
    height: 30px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 40.625rem) {
  .details .details__info div button {
    margin-top: 20px;
    width: auto;
    height: 24px;
    padding: 4px;
  }
}
.details .details__info div button.details__fav {
  display: none;
}
@media screen and (max-width: 58rem) {
  .details .details__info div button.details__fav {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
  }
  .details .details__info div button.details__fav img {
    width: 22px;
    height: 22px;
  }
}
.details .details__info div button:first-child {
  width: 140px;
}
@media screen and (max-width: 58rem) {
  .details .details__info div button:first-child {
    order: 2;
  }
}
.details .details__info div button:last-child {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 58rem) {
  .details .details__info div button:last-child {
    display: none;
  }
}
.details .details__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.catalog {
  width: 100%;
  height: 110dvh;
  min-height: 960px;
  box-sizing: border-box;
  margin: 0 auto;
  background-image: url("../img/banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  padding: 40px;
}
@media screen and (max-width: 77.5rem) {
  .catalog {
    height: 100vh;
  }
}
@media screen and (max-width: 58rem) {
  .catalog {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    padding: 0;
    height: 76vh;
    max-width: 1000px;
  }
}
@media screen and (max-width: 40.625rem) {
  .catalog {
    height: 76vh;
    min-height: 765px;
  }
}
.catalog article {
  width: 60%;
  height: 80%;
  min-height: 645px;
  box-sizing: border-box;
}
@media screen and (max-width: 40.625rem) {
  .catalog article {
    min-height: 60vh;
  }
}
.catalog article div {
  width: 100%;
  box-sizing: border-box;
}
.catalog article div:first-child {
  padding: 20px 20px 0 20px;
  margin: 0 auto;
}
.catalog article div:nth-child(2) {
  width: 82%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.catalog article div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}
.catalog article.catalog__left {
  background-color: #fcfcfc;
  justify-self: start;
  grid-column: 1/4;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transform: translateX(-10%);
  opacity: -2;
  max-width: 870px;
}
@media screen and (max-width: 67.5rem) {
  .catalog article.catalog__left {
    grid-column: 1/4;
    justify-self: center;
    width: 80%;
  }
}
@media screen and (max-width: 58rem) {
  .catalog article.catalog__left {
    grid-column: auto;
    width: 90%;
  }
}
.catalog article.catalog__left.show {
  transition: all 0.6s ease-in;
  transform: translateX(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.catalog article.catalog__left img {
  width: 100%;
}
.catalog article.catalog__left p {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 40.625rem) {
  .catalog article.catalog__left p {
    font-size: 16px;
  }
}
.catalog article.catalog__left button {
  all: unset;
  padding: 20px 30px;
  margin-top: 6px;
  background-color: #54a5fc;
  cursor: pointer;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
}
@media screen and (max-width: 40.625rem) {
  .catalog article.catalog__left button {
    padding: 12px 20px;
  }
}
.catalog article.catalog__right {
  grid-column: 3;
  grid-row: 1/4;
  justify-self: center;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(10%);
  opacity: -2;
  font-family: "Edu VIC WA NT Hand", Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 67.5rem) {
  .catalog article.catalog__right {
    display: none;
  }
}
.catalog article.catalog__right.show {
  transition: all 0.6s ease-in;
  transform: translateX(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.catalog article.catalog__right h2 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 77.5rem) {
  .catalog article.catalog__right h2 {
    font-size: 40px;
  }
}

footer {
  width: 100%;
  background-color: #fcfcfc;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 67.5rem) {
  footer section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 58rem) {
  footer section {
    margin-top: 18px;
  }
}
@media screen and (max-width: 67.5rem) {
  footer section.copyright article {
    border-bottom: 1px #000 solid;
  }
}
footer section article {
  height: 100%;
  width: 32%;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 67.5rem) {
  footer section article {
    width: 80%;
  }
}
footer section article div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 140px;
  height: 60px;
  margin-left: 8px;
}
footer section article div a {
  width: 40px;
  margin: 0;
  padding: 0;
  height: 40px;
  background-color: #54a5fc;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
footer section article div a img {
  margin: 0;
  padding: 0;
  width: 60%;
  height: 60%;
}
footer section article:last-child p {
  cursor: pointer;
}
footer section article:last-child div {
  width: 180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 12px;
}
footer section:last-child {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer section:last-child form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
footer section:last-child form h4 {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}
footer section:last-child form article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  width: 100%;
  margin: 0;
}
footer section:last-child form article label {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  width: 86%;
}
footer section:last-child form article input {
  all: unset;
  width: 86%;
  border-bottom: 1px solid #707070;
  padding: 4px 2px;
}
footer section:last-child form article input:focus {
  outline: none;
  border-bottom: 1px solid #54a5fc;
}
footer section:last-child form button {
  all: unset;
  padding: 10px 20px;
  margin-top: 6px;
  background-color: #54a5fc;
  cursor: pointer;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
}

aside {
  width: 420px;
  background-color: #fcfcfc;
  padding: 25px;
  box-sizing: border-box;
  height: 100%;
  position: fixed;
  right: -200%;
  top: 0;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  z-index: 9000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 40.625rem) {
  aside {
    width: 320px;
  }
}
@media screen and (max-width: 31.25rem) {
  aside {
    width: 260px;
  }
}
aside.show {
  right: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
}
aside i {
  margin: 0;
  position: absolute;
  top: 20px;
  right: 360px;
  background-color: #007bff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid #000;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 40.625rem) {
  aside i {
    right: 270px;
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 31.25rem) {
  aside i {
    right: 210px;
  }
}
aside i:hover {
  background-color: #ee0000;
}
aside i:active {
  background-color: #ee0000;
}
aside i img {
  width: 94%;
  height: 94%;
}
aside nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
aside nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
aside nav ul a,
aside nav ul p {
  all: unset;
  border-bottom: #fff solid 1px;
  cursor: pointer;
}
aside nav ul li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 60px;
  border-bottom: 1px gray solid;
}
aside nav ul li.aside__categories {
  order: 3;
}
aside nav ul li.aside__categories img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
aside nav ul li.aside__categories p.activated {
  transition: all 0.2s ease;
  border-bottom: 1px solid #007bff;
}
aside article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  border-bottom: #000 1px solid;
  padding: 20px 8px;
  opacity: 0;
  transition: all 0.1s ease-out;
}
aside article.show {
  opacity: 1;
  transition: all 0.1s ease-in;
}
aside article ul {
  all: unset;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  gap: 14px;
  width: 100%;
}
aside article ul li {
  width: 100%;
}

.families div article.families__first, .families div article.families__third, .families div article.families__fourth {
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.families div article button, .families div article.families__second {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.details .details__info div button, .catalog article.catalog__left button, footer section:last-child form button {
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .details .details__info div button:hover, .catalog article.catalog__left button:hover, footer section:last-child form button:hover {
    background-color: #007bff;
    transform: scale(1.05);
    transition: all 0.2s ease;
  }
}

@media (hover: hover) {
  .banner i:hover, .families .families__details div div div img:hover, footer section article div a:hover {
    transform: scale(1.03);
    cursor: pointer;
  }
}

.families div article, .products img, .details .details__imgs i {
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .families div article:hover, .products img:hover, .details .details__imgs i:hover {
    transform: scale(1.03);
    cursor: pointer;
    transition-delay: 0.05s;
  }
}

header nav ul li, .categories ul li, footer section article:last-child p, aside nav ul a,
aside nav ul p {
  transition: all 0.2s ease;
}
@media (hover: hover) {
  header nav ul li:hover, .categories ul li:hover, footer section article:last-child p:hover, aside nav ul a:hover,
  aside nav ul p:hover {
    border-bottom: 1px solid #007bff;
  }
}

body h2 {
  font-family: "Rubik Mono One", Arial, Helvetica, sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}/*# sourceMappingURL=main.css.map */