
header{
    background: rgba(255,255,255,0.7);
}
.showcase{
    padding: 30px 0 0;
    background: rgba(255,255,255,0.7);
}
.showcase .page_header strong{
    font-weight: 800;
}
.offers {
    display: flex;
    flex-wrap: wrap;
}
.offers .offer{
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    max-width: calc(25% - 20px);
    background: white;
    border-radius: 5px;
    box-shadow: 0px 10px 40px 0px rgb(25 10 1 / 15%);
    padding: 0 0 15px;
    transition: box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.offers .offer:hover {
    box-shadow: 0px 10px 40px 0px rgb(241 101 22 / 50%);
}
.offers .offer:first-child, .offers .offer:nth-child(5n){
    margin-left: 0;
}
.offers .offer:nth-child(4n){
    margin-right: 0;
}
.offers .offer .promotion {
    font-size: 14px;
    color: white;
    background: rgb(22, 102, 241);
    padding: 7px 20px;
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.offers .offer .head {
    height: 40px;
    margin: 5px 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.offers .offer .line {
    text-align: center;
    color: #333;
    padding: 8px 15px;
    font-weight: 400;
}
.offers .offer .line > span{
    display: block;
    font-weight: 700;
}
.offers .offer .line:nth-child(odd){
    background: rgba(247, 163, 115, 0.25);
}
.offers .offer .offer_button {
    text-decoration: none;
    color: #fff;
    background-color: rgb(241, 101, 22);
    display: inline-block;
    margin: auto auto 5px;
    transition: background-color 0.3s ease-in-out;
    font-size: 14px;
    padding: 8px 18px;
}
.offers .offer .offer_button:hover {
    background-color: rgb(223, 89, 13);
}
@media (max-width: 991px){
    .page_header {
        font-size: 14px;
    }
    .page_header h1 {
        font-size: 20px;
    }
    .offers .offer {
        flex: 1 0 96%;
        max-width: 96%;
        margin: 2% 2% 2% 2%!important;
    }
}
@media(max-width: 539px) {
    .about h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 26px;
    }
    .about .content {
        font-size: 14px;
    }
    .mfo_list .organisation {
        flex: 1 100%;
    }
    .mfo_list .organisation .text {
        padding: 10px 0 !important;
    }
}
@media(max-width: 399px) {

}