main > section:nth-child(6){
    background-color: #7572B2;
}

.turn90{
    transform: rotate(-90deg);
    margin: 8vw 7vw;
    left: -22%;
}

.turn90 > h2 {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.tarifsBox{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 87%;
    height: 100%;
}

.specialH2{
    padding: 3.3vw 13vw;
}

.textBox{
    font-size: .9rem;
}

.box1, 
.box2,
.box3{
    width: 20%;
    height: 55%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2D233C;
    text-align: center;
    position: relative;
    transition: 0.3s;
    border: solid 2px white;
    box-shadow: -5px 11px 10px rgba(0, 0, 0, 0.20);
}

.box1{
    background-color: #50b5bb;
}

.box2{
    background-color: #89c167;
}

.box3{
    background-color: #ee7185;
}

.box1 > span:nth-child(1),
.box2 > span:nth-child(1),
.box3 > span:nth-child(1){
    font-family: 'Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 5% 5px 5%;
}

.box1 > span:nth-child(2),
.box2 > span:nth-child(2),
.box3 > span:nth-child(2){
    font-family: 'Spartan', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0 5%;
}

.box1 > span:nth-child(3),
.box2 > span:nth-child(3),
.box3 > span:nth-child(3){
    color: white;
    font-family: 'Spartan', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    position: absolute;
    bottom: 7%;
    left: 10%;
}

.box1 >div,
.box2 > div,
.box3 > div{
    width: 80%;
    position: absolute;
    opacity: 0;
    font-weight: 400;
}

/*______________ animation _________________*/

.box1:hover,
.box2:hover,
.box3:hover{
    scale: 1.1;
}

/* .box1:hover span,
.box2:hover span,
.box3:hover span{
    opacity: 0;
}

.box1:hover,
.box2:hover,
.box3:hover{
    background: hsla(0, 0%, 0%, 0.16);
    transform: scale(1.2) rotate(180deg);
} */

/*_____ Responsive 960px -> 1280px _____*/

@media screen and (max-width: 1280px){
    .textBox {
        font-size: .8rem;
    }
}

/*_____ Responsive 480px -> 959px _____*/

@media screen and (max-width: 959px){
    .turn90{
        transform: rotate(0deg);
        margin: 0;
        left: 0;
    }

    .tarifsBox{
        position: relative;
        width: 100%;
        flex-direction: column;
    }

    .box1, 
    .box2,
    .box3{
        width: 100%;
        border-radius: 0;
    }

    .box1:hover,
    .box2:hover,
    .box3:hover{
        transform: none;
    }

    .box1 >div,
    .box2 > div,
    .box3 > div{
        transform: rotate(0deg);
    }

    .box1 > span:nth-child(3),
    .box2 > span:nth-child(3),
    .box3 > span:nth-child(3){
        left: 2%;
    }

}