#mod3-contacto {
  padding: 32px 16px 32px 16px;
  & h2{
    text-align: center;
    margin-top: 0;
  }
  & ul{
    padding: 0;
    
    & li:last-child{
      flex-wrap: wrap;
      max-width: 445px;
      & span:first-of-type{
        max-width: 60%;
      }
      & span:last-child{
        padding-left: 125px;
      }
    }
    
    & li{
      list-style: none;
      display: flex;
      flex-direction: row;
      align-items: center;
      width: fit-content;
      
      & img{
        width: 35px;
        min-width: 35px;
        margin-right: 10px;
      }
      & p{
        margin-right: 10px;
        min-width: 70px;
      }
      & a{
        overflow-wrap: anywhere;
        width: 100%;
        color: #013e83;
        font-weight: bold;
      }
      & a:hover{
        text-decoration: none;
      }
    }
  }
  & iframe{
    width: 100%;
    height: 250px;
    border-radius: 16px;
  }
}
@media (min-width:576px){
  #mod3-contacto {
    padding-left: 40px;
    padding-right: 40px;
    & ul{
      & li:last-child{
        & span:first-of-type{
          max-width: initial;
        }
      }
      & li{
        margin-right: auto;
        margin-left: auto;
        & a{
          width: 320px;
        }
      }
    }
    & iframe{
      height: 400px;
    }
  }
}
@media (min-width:768px){
  #mod3-contacto{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
    & h2{
      width: 100%;
      margin-bottom: 40px;
      font-size: 30px;
      margin-bottom: 32px;
    }
    & ul{
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0;
      order: 1;

      & li:last-child{
        & span:first-of-type{
          max-width: 60%;
        }
      }
      & li{
        margin-left: 0;
        margin-right: 0;
        width: fit-content;
        padding-left: 20px;
        
        & a{
          width: fit-content;
        }
      }
    }
      & iframe{
        width: 50%;
        height: 300px;
      }
  }
}
@media (min-width:992px){
  #mod3-contacto{
    padding-bottom: 75px;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    max-width: 826px;
    margin-left: auto;
    margin-right: auto;
    
    & h2{
      margin-bottom: 40px;
    }
    & ul li{
      padding-left: 40px;
    }
  }
}
@media (min-width:1200px){
  #mod3-contacto{
    max-width: 996px;
    
    & ul{
      & li:last-child{
        & span:first-of-type{
          max-width: initial;
        }
      }
    }
    & iframe{
      height: 350px;
    }
  }
}
@media (min-width:1920px){
  #mod3-contacto{
    max-width: 1272px;
    
    & ul li{
      padding-left: 60px;
    }
  }
}