@font-face {
  font-family: "West";
  src: url("WEST____.TTF");
}



.letra {
    color: white;
}

.bordes {
    border: 2px solid #ff5a2c;
    border-radius: 10px;
    background-color: #ff5a2c;
    padding: 11px 35px;
    margin-top: 30px;

}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1b1726;
  }

.iconos {
    position:relative;
    width: 400px;
}

.imagen {
    opacity: 1;
    display: block;
    width: 100%;
    height: 700px;
    transition: .5s ease;
    backface-visibility: hidden;
}

.medio {
    transition: .5 ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.iconos:hover .imagen {
    opacity: 0.3;
}

.iconos:hover .medio {
    opacity: 1;
}

.texto {
    background-color: blanchedalmond;
    color: black;
    font-size: 16px;
    padding: 16px 32px;;
}

.somos {
    margin-top: 20px;
    margin-bottom: 20px;
}

.quienes {
    font-size: 35px;
    color: #fff;
    font-family: "west";
    color: red;
}

.centrar-texto {
    text-align: center;
}

.encabezado {
    font-weight: 300;
    text-align: center;
}

.iconos-nosotros {
    display: flex;
    justify-content: space-between;
}

.iconos {
    flex-basis: calc(33.3% - 1rem);
    text-align: center;
 }
 
 .mayuculas {
    text-transform: uppercase;
}

.nav {
  width: 300px;
}

.nav__link {
  color: #fff;
  display: block;
  padding: 15px 0;
  text-decoration: none;
  font-size: 20px;
}

.nav__link--inside {
  border-radius: 6px;
  padding-left: 20px;
  text-align: left;
}

.nav__link--inside:hover {
  background: #303440;
}


.list__item {
  list-style-type: none;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.list__item--click {
  cursor: pointer;
}

.list__button {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 70%;
  margin: 0 auto;
}

.arrow .list__arrow {
  transform: rotate(90deg);
}

.list__arrow {
  margin-left: auto;
  transition: transform .3s;
  width: 50px;
  height: 40px;
  margin-top: 4px;
}

.list__show {
  width: 80%;
  list-style: none;
  transition: height .4s;
  height: 0;
}

.list__img {
  width: 50px;
  height: 50px;
  margin-bottom: 2px;
}

.list__inside {
  background: black;
  cursor: pointer;
  border: none;
  padding: 8px 16px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  border-radius: 12px;
}

.list__inside::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(50deg,
  red, blue, deeppink, blue, red, blue, deeppink, blue);
  background-size: 800%;
  border-radius: 10px;
  filter: blur(6px);
  animation: glowing 20s linear infinite;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}