*{
    margin: 0;
}

a{
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #FFE5CC;
    text-decoration: none;
    align-items: center;
}

@font-face {
    font-family: "AGORA";
    src:
      local("Trickster"),
      url("font/AGORA-ACCENTVF.woff2") format("woff");
  }

  @font-face {
    font-family: 'Satoshi';
    src: url('font/Satoshi-Variable.ttf');
}
body{
    background-color: #FFE5CC;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 23px;
    padding-top: 50px;
    box-sizing: border-box;
    font-family: 'Satoshi';
}

h1{
    font-size: 21px;
    color: #333DE5;
    line-height: 23px;
    text-align: right;
}

h2{
    font-size: 16px;
    line-height: 19px;
    color: #333DE5;
    margin-bottom: 20px;
}

.tete{
    display: flex;  
    margin-bottom: 50px;
    justify-content: space-between;
    align-items: center;
    font-family: 'AGORA';
    width: 100%;
}

.tete img{
    width: 150px;
}

.container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.item .infos .title{
    font-family: 'AGORA';
    font-weight: 100;
    font-size: 40px;
}

.item img{
    height: 60px;
    max-width: 90px;
}

.item p{
    font-size: 16px;
    font-weight: 300;
}


.item{
    width: 100%;
    color: #FFE5CC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.item .infos{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.item:nth-child(2){
    background-color: #FF3D33;
    box-sizing: border-box;
    clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%);
    padding-bottom: 40px;
}

.item:nth-child(3){
    background-color: #049B65;
    box-sizing: border-box;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    padding-top: 40px;
}

.item:nth-child(3) .icone{
    transform: translateY(-8px);
}

.item:nth-child(3) .infos{
    transform: translateY(-8px);
}

.item:nth-child(4){
    background-color: #FCAE1C;
    box-sizing: border-box;
    clip-path: polygon(0 1%, 100% 0, 100% 90%, 0% 100%);
    padding-bottom: 40px;
    margin-top: 12px;
}

.item:nth-child(4) .icone{
    transform: translateY(5px);
}

.item:nth-child(4) .infos{
    transform: translateY(5px);
}

.item:nth-child(5){
    background-color: #FF9FFF;
    box-sizing: border-box;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    padding-top: 40px;
}

.item:nth-child(5) .icone{
    transform: translateY(-8px);
}

.item:nth-child(5) .infos{
    transform: translateY(-8px);
}


@media screen and (min-width:768px) {

    h2{
        width: 100%;
    }

    .container{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .item{
        width: calc(50% - 7px);
    }
    
    .item:nth-child(2){
        background-color: #FF3D33;
        box-sizing: border-box;
        clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%);
        padding-bottom: 40px;
    }

    .item:nth-child(4){
        background-color: #FCAE1C;
        box-sizing: border-box;
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
        padding-top: 40px;
        padding-bottom: 20px;
        margin-top: 0px;
    }
    
    .item:nth-child(4) .icone{
        transform: translateY(-8px);
    }
    
    .item:nth-child(4) .infos{
        transform: translateY(-8px);
    }

    .item:nth-child(3){
        background-color: #049B65;
        box-sizing: border-box;
        clip-path: polygon(0 0%, 100% 0, 100% 90%, 0% 100%);
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .item:nth-child(3) .icone{
        transform: translateY(5px);
    }
    
    .item:nth-child(3) .infos{
        transform: translateY(5px);
    }


}


@media screen and (min-width:1024px) {
    body{
        padding: 180px;
    }
}