header {
  border-radius: 2rem 5rem 2rem 5rem;
}

header.hide {
  display: none;
}
.hidden {
  display: none;
}

.logo {
  display: flex;
  border-radius: 800rem;
  overflow: hidden;
  width: 16rem;
  height: 16rem;
  background: white;
}

.logo img {
  width: 12rem;
  margin: auto;
}

.pointer {
  cursor: pointer;
}

.transition-all {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
}

.box-shadow:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

article {
  img {
    width: 100%;
    height: 100px;
    object-fit: fill;

    @media (max-width: 768px) {
      width: 300px;
    }
  }
}

.img-container {
  width: 300px;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.tecnologies {
  img {
    object-fit: fill;
    mix-blend-mode: multiply;
    margin-left: 1rem;
  }
}

.image-same-size {
  width: 12rem;
  height: auto;
  object-fit: fill;
  mix-blend-mode: multiply;
  margin-left: 1rem;
}

.redes a {
  margin: 1rem 2rem;
}

.floatting-media {
  position: fixed;
  right: 1rem;
  font-size: 1.65rem;
  border-radius: 100rem;
  width: 2.5rem;
  height: 2.5rem;
}

.floatting-media:nth-child(1) {
  bottom: 2rem;
}

.floatting-media:nth-child(2) {
  bottom: 5rem;
}

.floatting-media:nth-child(3) {
  bottom: 8rem;
}

.floatting-media:nth-child(4) {
  bottom: 11rem;
}

footer {
  border-radius: 5rem 1rem 3rem 1rem;
}

.blur-background {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* soporte Safari */
  background-color: rgba(255, 255, 255, 0.2); /* para que se vea el blur */
  padding: 20px;
  border-radius: 12px;
  color: white;
}