
body {
    font-family: "Rubik"
  }
  
  h2 {
    margin: 20px auto 80px;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.5;
    color: #2b2d42;
  }
  h5{
    font-size: 23px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #2b2d42;
  }
  #small{
    font-size: 18px;
    color: #000000;
    margin: 0;
  }
  details {
    min-height: 5px;
    padding: 30px 70px 20px 45px;
    margin: 0px 50px;
    position: relative;
    font-size: 22px;
    border: 1px solid rgba(0,0,0,.1);
    box-sizing: border-box;
    transition: all .3s;
    z-index: 10;
  }
  
  details + details {
    margin: 20px 50px 0px;
    
  }
  
  details[open] {
    min-height: 50px;
    background-color: #ffffff;
  }
  
  details p {
    color: #96999d;
    font-weight: 300;
    margin: 10px 0;
  }
  
  summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    cursor: pointer;

  }

  details ul{
      list-style: disc;
      list-style-position:outside;
      padding-left: 5px;
      margin-right: 100px;
      color: #2b2d42;
  }
  
  details ul li{
      font-size: 16px;
      padding: 5px 10px;
      list-style: none;
      
  }
  details ul li::before {content: "•"; color: red;
    display: inline-block; width: 1em;
    margin-left: -1em}
  details #firstelement{
    display: flex;
    padding-top: 10px;
  }
  details #firstelement img{
    width: 108px;
    padding-top: 20px;
  }

  details #firstelement .lista{
    padding: 0px 30px;
    line-height: 25px;
  }

  details #firstelement .lista p{
    padding: 0px 10px;
    font-size: 18px;
    color: #000000;
  }

  summary:focus {
    outline: none;
  }
  
  summary:focus::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 0 2px #cd1719;
  }
  
  summary::-webkit-details-marker {
    display: none
  }
  
  .control-icon {
    transition: .3s ease;
    pointer-events: none;
    height: 48px;
    width: 48px;
  }
  
  .control-icon-close {
    display: none;

  }
  
  details[open] .control-icon-close {
    display: initial;
    transition: .3s ease;
  }
  
  details[open] .control-icon-expand {
    display: none;
    height: 48px;
    width: 48px;
  }

  @media ( max-width: 1220px ){
    details {
      min-height: 5px;
      padding: 15px 10px 15px 15px;
      margin: 0px 0px;
  }
  details + details{
    margin: 20px 0 0;
  }
    details #firstelement{
    flex-direction: column;
    align-items: center;
    }
}
@media (max-width: 768px){
  details[open] {
    margin: 0;
  }
  details #firstelement .lista{
    padding: 0 !important;
  }
}