@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i&display=swap');

.main-content{
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titre-apps{
    margin: 60px 0 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: rgba(112,112,112,1);
}
.liste-apps{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}
.liste-apps .app{
    width: 373px;
    border-radius: 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.161);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin: 0 20px 40px 20px;
    box-sizing: border-box;
}
.liste-apps .app .logo{
    margin: 20px 0 10px 0;
}
.liste-apps .app .app-title{
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: rgba(59,59,59,1);
    margin: 20px 0 10px 0;
}
.liste-apps .app .app-version{
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: rgba(129,129,129,1);
    margin: 20px 0 10px 0;
}
.liste-apps .app .app-body{
    font-family: Roboto;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    color: rgba(168,168,168,1);
    margin: 20px 0 30px 0;
    text-align: center;
    width: 100%;
}
.liste-apps .app .app-buttons{
    width: 100%;
    margin: 0 40px 20px 40px;
    padding: 0 20px;
    box-sizing: border-box;
}
.liste-apps .app .app-buttons .app-button a{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 39px;
    margin: 0 0 10px 0;
    background-color: #007CCF;
    border-radius: 20px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.liste-apps .app .app-buttons .app-button.android a span{
    background-image: url(../imgs/ico-android.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding: 0 0 0 24px;
}
.liste-apps .app .app-buttons .app-button.ios a span{
    background-image: url(../imgs/ico-ios.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding: 0 0 0 24px;
}

.footer{
    width: 100%;
    text-align: center;
    padding: 10px 0 10px 0;
    border-top: 1px solid #A1A1A1;
    font-family: Roboto;
    font-style: normal;
    font-weight: lighter;
    font-size: 14px;
    color: rgba(112,112,112,1);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.footer img{
    margin: 0 5px;
}