@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

:root {
  --bluee: #11055f;
  --blue: #0606aa;
  --background: #F9F8FE;
  --verde: rgb(4, 174, 21);
  --hover: #15c0c3;
  --shadow: 0 15px 40px 0 hsla(224, 24%, 47%, 0.1);
}

.row__toggle {
  display: none;
}

.title h2 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--bluee);
}

.title p {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  color: var(--hover);
}

.vertical-tab {
  margin-top: 70%;
  width: 992px;
  margin: 0 auto;
}

.row {
  display: flex;
}

.col-3 {
  width: 24.9%;
}

.col-9 {
  width: 75.1%;
}

.btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-bottom: solid 1px #11055f;
  /* border-radius: 3px; */
  font-size: 1.05rem;
  margin: 0.5rem 0;
  outline: none;
  cursor: pointer;
}

.btn.active {
  color: #22a7c8;
  /* background-color: #33c4a2; */
  /* box-shadow: 1px 1px 8px 0 #0f0808; */
}

.item {
  display: none;
  padding: 0.75rem;
  font-size: 1rem;
}

.item.active {
  display: block;
}

/*Presentacion*/
.presentacion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
  background: #bceaf3ab;

}

.presentacion .img .content {
  width: 100%;
}

.img img {
  width: 80%;
  border-radius: 20px;
}

.content h2 {
  font-size: 2em;
  font-weight: 600;
  color: var(--bluee);
}

.content p {
  font-size: 1.2em;
}

.content a {
  display: inline-block;
  margin-top: 30px;

  color: #fff;
  background: var(--bluee);
  text-decoration: none;
  padding: 10px 20px;
  border-top-left-radius: 15px;
  transition: .2s;
}

.content a:hover {
  /* background: var(--verde); */
  background: #15c0c343;
  color: var(--bluee);
  /* border: 2px solid var(--hover); */
}
.item iframe {
  padding: 20px 0;
  width: 100%;
  height: 400px;
}

@media only screen and (max-width:875px) {

  /* .nav .nav__toggle {
    display: flex;
    font-size: 2em;
    z-index: 100;
} */


  .vertical-tab {
    width: 100%;
  }

  .row {
    position: relative;
    padding-top: 30px;
  }

  .row__toggle {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    font-size: 2em;
    margin-left: 20px;
    padding: 0 10px;
    background: #efefef;
    border-radius: 5px;
    border: 1px solid var(--bluee);
    z-index: 1000;
  }

  .col-3.active {
    left: 0;
  }

  .col-3 {
    position: absolute;
    width: 80%;
    top: 0;
    left: -1000px;
    padding-top: 40px;
    background: #fff;
    border-right: 1px solid var(--bluee);
    z-index: 100;
    transition: left .2s;
  }

  .col-9.active {
    filter: blur(5px);
  }

  .col-9 {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    transition: filter .2s;
  }

  .item iframe {
    padding: 20px 0;
    width: 100%;
    height: 300px;
  }

}