/* ==========================================================
   PRICES
========================================================== */

.fc-prices{

    padding:40px 0;

    background:#fff;

}

.fc-prices-list{

    display:flex;

    flex-direction:column;

    gap:48px;

    margin-top:60px;

}


/* ==========================================================
   CARD
========================================================== */

.fc-price-card{

    background:#fff;

    border-radius:32px;

    padding:48px;

    box-shadow:0 20px 60px rgba(20,56,123,.06);

    border:1px solid #D7E2F2;

}

.fc-price-title{

    margin:0;

    color:#14387B;

    font-size:34px;

    font-weight:700;

}

.fc-price-description{

    margin-top:16px;

    color:#5F6E8A;

    font-size:17px;

    line-height:1.8;

}

.fc-price-description p{

    margin:0;

}


/* ==========================================================
   TABLE
========================================================== */

.fc-price-table{

    margin-top:36px;

}

.fc-price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:24px;

    padding:18px 0;

    border-bottom:1px solid rgba(20,56,123,.08);

}

.fc-price-row:last-child{

    border-bottom:none;

}

.fc-price-name{

    color:#14387B;

    font-size:18px;

    font-weight:500;

}

.fc-price-value{

    color:#4A8E32;

    font-size:20px;

    font-weight:700;

    white-space:nowrap;

}


/* ==========================================================
   NOTE
========================================================== */

.fc-price-note{

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-top:34px;

    padding:22px 24px;

    background:#EDF7E8;

    border-radius:22px;

}

.fc-price-note-icon{

    width:34px;

    height:34px;

    flex-shrink:0;

    border-radius:50%;

    background:#4A8E32;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    font-weight:700;

}

.fc-price-note-text{

    color:#35523C;

    line-height:1.7;

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width:1024px){

    .fc-prices{

        padding:90px 0;

    }

    .fc-price-card{

        padding:36px;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:767px){

    .fc-prices{

        padding:20px 0;

    }

    .fc-prices-list{

        gap:28px;

        margin-top:36px;

    }

    .fc-price-card{

        padding:24px;

        border-radius:24px;

    }

    .fc-price-title{

        font-size:28px;

        line-height:1.2;

    }

    .fc-price-description{

        font-size:16px;

        margin-top:14px;

    }

    .fc-price-table{

        margin-top:24px;

    }

    .fc-price-row{

        padding:14px 0;

    }

    .fc-price-name{

        font-size:16px;

    }

    .fc-price-value{

        font-size:17px;

        text-align:right;

    }

    .fc-price-note{

        padding:18px;

        gap:14px;

        margin-top:24px;

    }

    .fc-price-note-icon{

        width:30px;

        height:30px;

        font-size:16px;

    }

    .fc-price-note-text{

        font-size:15px;

        line-height:1.6;

    }

}