.infoWrapper .information{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.infoWrapper .information p:nth-child(2){
    margin-top: 30px;
}

.infoWrapper .information p:nth-child(1){
    margin-bottom: 30px;
}

.infoWrapper .information p{
    font-size: 1.5rem;
}

.infoWrapper .information h2{
    font-size: 2.3333rem;
}

.info .actions{
    width: 100%;
}

.btn-action{
    width: 100%;
    font-family: Comfortaa;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: none;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.11);
    position: relative;
    transition: .2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.btn-action img{
    position: relative;
    transition: .2s;
}

.btn-action:hover img{
    transform: translateX(20px);
}

.btn-action:hover{
    transform: translate(20px, -5px);
}

.btn-action:last-child{
    margin-bottom: 0;
}

/* MOBILE */
@media screen and (max-width: 743px) {
    .btn-action{
        padding: 15px;
    }

    .information{
        height: auto !important;
    }
}

/* TABLET */
@media screen and (min-width: 744px) and (max-width: 1349px) {
    .btn-action{
        padding: 16px 20px;
    }

    .infoWrapper{
        text-align: center;
    }

    .infoWrapper:has(>:nth-child(2)){
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 332px);
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* MOBILE + TABLET */
@media screen and (max-width: 1349px) {
    .btn-action{
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-action img{
        height: 27px;
    }

    .infoWrapper .information{
        margin-bottom: 0px;
        margin-top: 30px;
    }

    .infoWrapper .information p:nth-child(2){
        margin-top: 15px;
    }
}

/* DESKTOP */
@media screen and (min-width: 1350px) {
    .btn-action{
        font-size: 24px;
        padding: 25px 30px;
        margin-bottom: 30px;
    }

    .btn-action img{
        width: 51px;
    }
}