.info-top {
    display: flex;
    align-items: flex-end;
    padding-bottom: 8px;
    border-bottom: solid 1px #bcbbbd;
}
.info-top img {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin: 8px;
}
.info-top span h1{
    font-size: 1.5em;
    margin: 0;
}
.info-top span h3{
    margin: 0;
    font-size: 1.2em;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 5px;
}
h4 {
    margin:0;
}
.info-desc span p{
    width: 95%;
    padding: 8px 5px;
    margin: 5px auto;
    border: solid 1px #bcbbbd;
    background-color: #fff;
    font-style: italic;
}
.info-contact div {
    display: flex;
    justify-content: space-around;
}
.info-contact div span{    
    background-color: white;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px #bcbbbd;
}
.info-contact div span p {
    width: 55%;
    border-bottom: solid 1px #bcbbbd;
    text-align: center;
}
.info-contact div span a{    
    align-self: stretch;
    padding: 5px 10px;
    color: #202124;
    text-decoration: none;
    transition: all .5s ease-in-out;
}
.info-contact div span a:hover{    
    background-color: #dedede;
    transition: all .2s ease-in-out;
}
.info-cursus div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.info-cursus div span {
    position: relative;
    background-color: white;
    width: 350px;
    display: flex;
    padding: 17px 5px 5px 5px;
    flex-direction: column;
    align-items: flex-start;
    border: solid 1px #bcbbbd;
    margin: 5px 12px;
}
.info-cursus div span h1 {
    font-size: 1em;
    margin: 0;
    font-weight: bold;
}
.info-cursus div span h2 {
    font-size: .8em;
    font-weight: 300;
    margin: 0;
}
.info-cursus div span p {
    font-size: .8em;
    font-weight: 300;
    position: absolute; 
    top: 3px;
    margin: 0;
    right: 3px;
}
.info-contact .info-cursus {
    padding:3px 8px;
}

@media screen and (max-width: 800px) {
    .info-contact div {
        flex-direction: column;
        align-items: center;
    }
    .info-contact div span {
        width: 70%;
        margin: 5px 0px;
    }
}
@media screen and (max-width: 320px) {
    .info-contact div span {
        width: 90%; 
    }
}