.social {
    display: flex;
    font-size: 50px;
    justify-content: center;
    position: relative;
  }

.social li {
  list-style: none;
}

.pag-t {
  margin-top: 60px;
}

.galleryg {
  background: #ff961b;
  color: #000;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin-top: 10px;
  border-radius: 10px;
}

.social li a {
  width: 45px;
  height: 45px;
  background-color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 27px;
  margin: 7px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
}

.social li a .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}

.social li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: .5s;
  z-index: 2;
}

.social li a:hover:before {
  top: 0;
}

.social li:nth-child(1) a:before{
  background: #3b5999;
}

.social li:nth-child(2) a:before{
  background: #fe1265;
}

.social li:nth-child(3) a:before {
  background: #000000;
}

.accordion-button {
  background-color: #fff2ea;
}

.accordion-button {
  font-size: 1.2rem;
  color: rgb(255 150 27) !important;
}

.text-info {
  color: rgb(255 150 27) !important;
}

.holographic-card {
  width: 300px;
  height: 200px;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.holographic-card h2 {
  color: #dd4b39;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(255, 150, 27, 0.5)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 150, 27, 0.5)
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.form-select {
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: 
  color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: 
  color-mix(in srgb, var(--default-color), transparent 80%);
}

.wrapper1 {
  display: flex;
  justify-content: center;
}

.cta {
  display: flex;
  padding: 0px 20px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: white;
  background: #ff961b;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
}

.wrapper1 a:hover {
  color: #4c4846;
  text-decoration: none;
}

.cta:focus {
  outline: none; 
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #4c4846 !important;
}

.cta span:nth-child(2) {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover  span:nth-child(2) {
  transition: 0.5s;
  margin-right: 45px;
}

/**************SVG****************/

path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: #FBC638;
  }
  100% {
    fill: white;
  }
}

.card--1 .card__img, .card--1 .card__img--hover {
  background-image:url('../img/paso/paso1.png');
}

.card--2 .card__img, .card--2 .card__img--hover {
  background-image:url('../img/paso/paso2.png');
}

.card--3 .card__img, .card--3 .card__img--hover {
  background-image:url('../img/paso/paso3.png');
}

.card--4 .card__img, .card--4 .card__img--hover {
  background-image:url('../img/paso/paso4.png');
}

.card--5 .card__img, .card--5 .card__img--hover {
  background-image:url('../img/paso/paso5.png');
}

.card--6 .card__img, .card--6 .card__img--hover {
  background-image:url('../img/paso/paso6.png');
}

.card__like {
  width: 18px;
}

.card__clock {
  width: 15px;
  vertical-align: middle;
  fill: #AD7D52;
}

.card__img {
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 145px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}


.card__img--hover {
  transition: 0.2s all ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 88%;
  position: absolute;
  height: 151px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  top: 0;
}
.card {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
}
.card:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
}

.card__info {
  z-index: 2;
  background-color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.card__title {
  margin-top: 5px;
  margin-bottom: 10px;
}

.card:hover .card__img--hover {
  height: 100%;
  opacity: 0.3;
}

.card:hover .card__info {
  background-color: transparent;
  position: relative;
}

.card:hover .card__info-hover {
  opacity: 1;
}
