.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem 12rem;
}

.info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about {
    height: 100%;
    /*width: 100%;*/
    margin: 0 3rem;
}

.about p {
    font-size: 1.5rem;
}

.plan-discount-holder {
    display: flex;
    flex-direction: row;
    justify-content: center;

}

.plan {
    height: 3rem;
    width: 13rem;
    display: flex;
    flex-direction: row;
    border: solid 2px #c3c3c3;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.plan:first-child {
    border-radius: 0.5rem 0 0 0.5rem;
}

.plan:nth-child(2) {
    border-radius: 0 0.5rem 0.5rem 0;
    margin-left: -2px
}

.selected {
    background-color: #01C1DE;
    border-color: #01C1DE;
    color: #f4f4f4;
}

.discount {
    font-weight: bold;
    margin-left: 0.5rem;
    background-color: #FFB800;
    color: #f4f4f4;
    border-radius: 5rem;
    padding: 0.5rem;
}

.monthly {
    /*background-color: #01C0DE;*/
    border-radius: 0 0.5rem 0.5rem 0;
    border-color: #c3c3c3;
}

.option-holder {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
}

.option {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    padding: 1rem;
    width: 17rem;
}
.option div{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    padding: 1rem;
    width: 17rem;
}

.option .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.option .price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.option .included {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.option .button {
    width: 5rem;
}

.option .ribbon {
    position: absolute;
    top: -27px;
    right: -29px;
}

.footer {
    width: auto;
    display: flex;
    flex-direction: row;
    padding: 5rem;
    justify-content: space-between;

}

.footer .cranius {
    width: fit-content;
}

.contac-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: normal;
}


.footer .insta-logo {
    width: 2rem;
    margin: 0 1rem;
    margin-left: 1rem;
    cursor: pointer;
}

.footer .rights {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
}

.footer .other {
    display: grid;
    grid-template-columns: min-content min-content;
    grid-auto-rows: 5rem 1.5rem;
    column-gap: 30px;
    justify-content: end;
    align-items: end;

}

.footer .other .imag {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page {
    display: none;
    margin: 5rem 10rem 0;
    font-weight: 700;
}

.rights:first-child {
    display: unset;
}
.rights:nth-child(4){
    display: none;
}

.philo-logo{
    height: 3rem;
}

@media screen and (max-device-width: 500px) {
    .about h2{
        font-size: 4.5rem;
    }
    .about p{
        font-size: 2.5rem;
    }
    .insta-logo{
        display: none;
    }
    .info {
        margin: 2rem 2rem;
    }

    .plans {
        margin-top: 50%;
        scale: 2;
        margin-bottom: 60%;
    }

    .footer .cranius img {
        width: 21rem;
    }
    .footer .contac-holder span {
        font-size: 1.3rem;
    }
    .option-holder {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        scale: 2;
        margin-top: 20%;
    }
    .footer .rights {
        margin-top: 3rem;
    }

    .footer .rights:nth-child(2){
        display: none;
    }
    .rights:nth-child(4){
        display: flex;
    }
}
