.taxidi-urls {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  justify-content: center;
  transition: all ease-in-out 0.5s;
}

.taxidi-url-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  box-shadow: 1px 2px 4px #00000029;
  border-radius: 10px;
  padding: 0.8rem;
  background-color: #fff;
  z-index: 2;
}

.taxidi-url-item img {
  width: 210px;
}

.hover-links span {
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 1px #3a5c73cb;
}

.hover-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  gap: 0.5rem;
  padding: 70% 11% 5% 12%;
  transition: background 0.1s ease-in-out;
  background: transparent;
}

.hover-links:hover {
  background: transparent linear-gradient(180deg, #3a5c7300 0%, #3a5c73cb 100%)
    27% 59% no-repeat padding-box;
}

.hover-links a {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #387064;
  background-color: #fff;
  border: solid 1px #fff;
  padding: 8px 30px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(10px);
}

.hover-links:hover a {
  opacity: 1;
  max-height: 100px;
  color: #387064;
  transform: translateY(0);
}

.hover-links a:hover {
  border: solid 1px #387064;
}

#taxidi {
  height: 500px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.taxidi {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.taxidi-content span {
  color: #3b3b3a;
  font-size: 1.8rem;
  font-weight: 600;
}

.taxidi-content p {
  color: #656565;
  font-size: 1rem;
  font-weight: 500;
}

.taxidi-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 30%;
}

.taxidi-links {
  width: 70%;
}

.img-earplane {
  width: 200px;
  position: absolute;
  bottom: 65%;
  right: 65%;
}

.img-suitcase {
  width: 180px;
  position: absolute;
  top: 110%;
  right: 72%;
}

@media screen and (max-width: 1199px) {
  .taxidi-url-item img {
    width: 160px !important;
  }
}

@media screen and (max-width: 991px) {
  .taxidi-content {
    width: 100%;
  }

  .taxidi-links {
    width: 100%;
  }

  .taxidi {
    flex-direction: column;
  }

  .img-earplane {
    bottom: 45%;
    right: 80%;
  }

  .img-suitcase {
    top: 183%;
    right: 83%;
  }
}

@media screen and (max-width: 600px) {
  .taxidi-urls {
    flex-direction: column;
    align-items: center;
  }

  #taxidi {
    height: auto;
  }

  .img-earplane {
    bottom: 74%;
    right: 65%;
  }

  .taxidi-url-item {
    z-index: 2;
    width: fit-content;
  }

  .taxidi-url-item img {
    width: 200px !important;
  }
}
