.cont1{
  padding: 2rem;
}

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

.content p{
  /* padding-left:2rem ;
  padding-right: 100px; */
  width: 90%;
  padding-left: 2rem;
}

iframe{
  width: 100%;
  max-width: 1280px;
  height: 480px;
}

.textoCentrado{
  text-align: center;
  padding: 0 3rem 2rem 3rem ;
}
.imagen{
  width: 80%;
  text-align: center;
  justify-content: center;
  margin: auto;
  padding-top: 1rem;
}
.general{
  display: grid;
  grid-template-columns: 100%;
}

/* Collapsibles **************************** */
.collapsible {
    background-color: var(--gris);
    color: black;
    cursor: pointer;
    padding: 6px 28px;
    width: 90%;
    max-width: 100%;
    text-align: left;
    outline: none;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 800;
    border: none;
    margin: 5px 2rem;
  }
  
  .active, .collapsible:hover {
    background-color: var(--rClaro);
    color: white;
    
  }
  
  .collapsible:after {
    content: '\002B';
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .content {
    /* width: 50%; */
    padding: 0 18px;
    /* margin: 0 2rem; */
    max-height: 0;
    overflow-x:auto;
    transition: max-height 0.2s ease-out;
  }
  
/* Media Queries ***************************************************************** */
@media screen and (max-width:1068px){
  .general{
    grid-template-columns: 100%;
  }

  .imagen{
    width: 70%;
    margin: auto;
  }

  .collapsible{
    margin: 0;
    width: 100%;
    border: 3px solid white;
  }
  
  iframe{
    height: 40vh;
  }
  
  .textoCentrado{
    padding: 0 0 1rem 0;
  }
}