main.asesor-perfil {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.presentation-container,
.asesor-forms,
.preguntas-frecuentes {
  border-bottom: 2px solid #202020;
  width: 95%;
  padding: 1em;
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}
.presentation-info {
  display: flex;
  gap: 1em;
}

.presentation-info h2{
text-transform: uppercase;

}

.presentation,
.presentation-video {
  width: 50%;

  display: flex;
  justify-content: center;
}

.presentation {
  flex-direction: column;
  align-items: center;
}

.avatar-container {
  width: 400px;
}

.avatar-container img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #a2000a;
}
.presentation-video {
  width: 50%;
}
.presentation-video iframe {
  width: 100%;
}

.presentation-info {
  padding: 1em;
  width: 90%;
  position: relative;
}

.asesor-info h2 {
  font-size: 2.2rem;
  margin-bottom: 0;
}
.asesor-info h3 {
  font-size: 1.7rem;
  color: #a2000a;
  margin-bottom: 0;
}

.asesor-info h4 {
  font-size: 1.3rem;

}
.line {
  width: 90%;
  display: flex;
  gap: 1em;
  align-items: center;
}
.line span {
  background-color: #a2000a;
  padding: 2px;
  height: 1px;
  width: 2px;
  display: block;
  border-radius: 50%;
}
.line span:nth-child(1) {
  width: 60%;
  border-radius: 0%;
  padding: 1px;
}

.cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cta h2 {
  text-align: center;

}
.cta ul {
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 70%;
}

.cta ul li a {
  width: 100%;
  display: block;
  text-decoration: none;
}

.cta ul li:nth-child(1) a {
  border-bottom: 4px solid #03a200;
}

.cta ul li:nth-child(2) a {
  border-bottom: 4px solid #0092fc;
}

.cta ul li:nth-child(3) a {
  border-bottom: 4px solid #f9c200;
}
.cta ul li:nth-child(4) a {
  border-bottom: 4px solid #db0000;
}

.cta ul li a img {
  width: 65px;
}
.cta ul li{
  border: 1px solid transparent;
}
.cta ul li a:hover::after {

transition: all .45s;
position: absolute;
content: 'Clickeá!';
color: rgb(105, 92, 205);
transform: rotate(-10deg);
text-decoration: underline;
}

/* 
FORMULARIO DE CONTACTO */

.asesor-forms {
  flex-direction: column;
  align-items: center;
}
.asesor-forms h2 {
  font-size: 2.5rem;
}

.forms-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.forms-container label,
span {
  display: inline;
  color: #eee;
  margin-bottom: 10px;
}

.forms-container .forms-elements {
  display: flex;
  width: 100%;
  gap: 1em;
}

.forms-container span {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.forms-container span:nth-child(2) {
  width: 70%;
}

.forms-container form {
  background-color: #a90000;
  width: 80%;
  padding: 4em;
  gap: 1em;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  align-items: flex-end;
  box-shadow: 9px 9px 0.8em #c3c3c3;
  margin-bottom: 2em;
}
.forms-container form > span {
  width: 100%;
}

.forms-container form input,
textarea {
  border-radius: 10px;
  padding: 1em;
  box-shadow: inset 0px 12px 0.8em #c3c3c3;
  border: none;
  resize: vertical;
}

.forms-container form button {
  border-radius: 10px;
  background-color: #fff;
  color: #a2000a;
  font-size: 1.5rem;
  padding: 0.7em 1.7em;
  height: auto;
  width: auto;
  box-shadow: inset 0px 12px 1em #c3c3c3;
}

/* PREGUNTAS FRECUENTES */
.preguntas-frecuentes {
  flex-direction: column;
  align-items: center;
  border: none;
}
.preguntas-frecuentes h2 {
  font-size: 2.5rem;
}

.acordeon-container {
  width: 50%;
}

details {
  width: 100%;
  margin-bottom: 1em;
  padding: 1em;
  box-shadow: 1px 9px 0.5em #c3c3c3;
}

details summary {
  cursor: pointer;
}

details summary::marker {
  content: "";
}
details summary {
  position: relative;
}

details summary::after {
  position: absolute;
  right: 0;
  transition: 0.4s;
  content: url("../img/arrow-close.svg");
}

details[open] .acordeon-info {
  padding: 1em;
  animation: fadeIn 0.75s linear forwards;
  background-color: #f9f8f870;
  margin-top: 1em;

}
details[open] .acordeon-info p{
  font-size: 1rem;
  padding: 0;
}

details[open] .acordeon-info > ul{
  list-style-type: circle;
}

details[open] > summary::after {
  transform: rotate(180deg);
}
details p {
  color: #202020;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



@media only screen and (max-width: 750px) {
  .presentation-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .presentation {
    width: 100%;
  }
  .presentation-info {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
  }

  .presentation-video{
    width: 100%;
    height: 300px;
  }
  .asesor-info h2 {
    margin-top: 0.5rem;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
  }
  .asesor-info h3 {
    margin-top: 0.5em;
    font-size: 1.4rem;
    text-align: center;
  }
  .asesor-info h4 {
    font-size: 0.8rem;
    text-align: center;
  }
  .asesor-info h5 {
    text-align: center;
  }

  .avatar-container {
    width:70% ;
  
    display: flex;
  }

  .line {
    justify-content: space-between;
  }
  .cta {
    align-items: center;
  }
  .cta h2 {
    margin-left: 0;
  }
  .cta ul {
    width: 100%;
    justify-content: space-around;
  }
  .cta ul li a img {
    width: 40px;
  }

 
  .presentation-video iframe {
    height: 100%;
    width: 100%;
  }
  .asesor-forms h2 {
    font-size: 1rem;
  }
  .asesor-forms,
  .forms-container {
    width: 100%;
  }

  .forms-container form {
    width: 100%;
    padding: 1em;
    gap: 0.5em;
  }
  .forms-container .forms-elements {
    width: 100%;
    flex-direction: column;
  }
  .forms-container .forms-elements span {
    width: 100%;
  }
  .forms-container form button {
    padding: 1em;
    font-size: 1rem;
    width: 100%;
  }

  .preguntas-frecuentes {
    width: 100%;

    & h2 {
      font-size: 1.5rem;
    }
  }
  .acordeon-container {
    width: 95%;
  }

  .acordeon-container summary {
    font-size: 0.9rem;
   
  }
  details summary::after{
    content: none;
  }
  details summary::marker{
    content: inherit;
  }
  .cta ul li a:hover::after {
    content: '';
  }
}


