﻿
section {
    padding: 75px 75px;
    background-color: #fff;
}



.hero {
    min-height: 500px;
    background-color: #d9d9d9;
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(/Images/Background/bg_hero_Services.jpg);
    /*background-attachment: fixed;*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .hero .content {
        min-height: 400px;
        width: 100%;
        padding: 75px 75px;
    }

    .hero h1 {
        margin: 100px 0;
        text-align: center;
        color: #fff;
    }

    .hero .banner {
        width: Calc(100vw -5px);
        padding: 50px 70px;
        background-color: #287f9E;
        text-align: center;
    }

        .hero .banner a {
            display: inline-block;
            margin: 0 40px;
        }

            .hero .banner a :after {
                transition: all ease-in-out .2s;
                background: none repeat scroll 0 0 #ffffff;
                content: "";
                display: block;
                height: 2px;
                width: 0;
            }

            .hero .banner a :hover:after, .hero .banner a :active:after {
                width: 100%;
            }

        .hero .banner h4 {
            color: #fff;
        }



.services {
    background-color: #f7f8fa;
}

    .services .content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: center;
        padding: 0 25px;
    }

    .services h2 {
        width: 100%;
        margin: 20px 0;
    }

    .services h4:nth-child(1) {
        width: 100%;
        margin: 0 0 40px 0;
        padding: 0 75px;
    }

    .services .service {
        width: calc(33% - 30px);
        background-color: #fff;
        padding: 40px 20px;
        margin: 25px 0;
        border: 1px solid #f2f2f2;
        border-radius: 20px;
        box-shadow: 10px 10px 16px lightgrey;
    }

        .services .service img {
            height: 50px;
            margin: 10px 0;
        }

        .services .service h4 {
            height: 50px;
            margin: 10px 0;
            overflow: hidden;
            font-size: 20px;
        }

        .services .service h3 {
            width: auto;
            display: inline-block;
            margin: 10px 0;
        }

        .services .service p {
            height: 100px;
            margin: 20px 20px;
            overflow: hidden;
        }

        .services .service span {
            color: #29235C;
        }



.benefits .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.benefits h2 {
    width: 100%;
    margin: 10px 0;
}

.benefits h5 {
    width: 100%;
    margin: 20px 0;
    padding: 10px 75px;
}

.benefit {
    width: calc(33% - 20px);
    text-align: left;
    margin: 20px 0;
    padding: 0px 20px;
    transition: .3s linear;
}

    .benefit img {
        margin-bottom: 10px;
    }

    .benefit h4 {
        margin-bottom: 6px;
    }



.memberships {
    background-color: #f7f8fa;
}

    .memberships .content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: center;
        padding: 0 25px;
    }

    .memberships h2 {
        width: 100%;
        margin: 20px 0;
    }

    .memberships h5 {
        width: 100%;
        margin: 20px 0px;
        padding: 0 75px;
    }

    .memberships .membership {
        width: calc(33% - 30px);
        /*background-color: #fff;*/
        background-color: #287f9E;
        padding: 20px 20px 0 20px;
        margin: 25px 0;
        border: 1px solid #f2f2f2;
        border-radius: 20px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        box-shadow: 10px 10px 16px lightgrey;
    }

.membership .membership-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    color: #fff;
    padding: 10px 20px 20px 20px;
}

    .memberships .membership-header .membership-header-content {
        width: calc(50% - 20px);
        margin: 5px 0;
    }

        .memberships .membership-header .membership-header-content:nth-child(1) {
            font-size: 12px;
            padding-top: 10px;
        }

            .memberships .membership-header .membership-header-content:nth-child(1) span {
                padding: 5px 10px;
                background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) );
                color: #fff;
                border: none;
                border-radius: 5px;
                outline: none;
            }

        .memberships .membership-header .membership-header-content:nth-child(2) {
            font-size: 18px;
        }

        .memberships .membership-header .membership-header-content:nth-child(3) {
            font-size: 48px;
        }

        .memberships .membership-header .membership-header-content:nth-child(4) {
            font-size: 12px;
            padding-top: 15px;
        }

.membership .membership-details {
    background-color: #fff;
    padding: 20px 40px;
    margin: 0 -20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

    .membership .membership-details ul {
        list-style-type: none;
        margin: 10px 0;
    }

        .membership .membership-details ul li {
            padding: 5px  0;
            text-align: left;
        }

            .membership .membership-details ul li:before {
                /*content: '✓';*/
                content: "\2713";
                font-weight: 900;
            }



@media screen and (max-width: 1460px) {

    .memberships .membership {
        width: calc(50% - 30px);
    }

}



@media screen and (max-width: 1024px) {

    .memberships .membership {
        width: calc(100% - 0px);
    }

}



@media screen and (max-width: 980px) {

    section {
        padding: 75px 0px;
    }



    .services .service {
        width: calc(50% - 20px);
        padding: 40px 20px;
    }

    .services h4:nth-child(1) {
        width: 100%;
        margin: 0 0 40px 0;
        padding: 0;
    }

    .services h5 {
        margin: 20px 0px;
        padding: 0 25px;
    }



    .benefits .benefit {
        width: calc(50% - 20px);
        padding: 40px 20px;
        margin: 10px 0;
    }

    .benefits h5 {
        margin: 20px 0px;
        padding: 0 25px;
    }



    .memberships h5 {
        margin: 20px 0px;
        padding: 0 25px;
    }

}



@media screen and (max-width: 600px) {

    section {
        padding: 75px 0px;
    }



    .hero .content {
        padding: 75px 0;
    }



    .services .service {
        width: calc(100% - 0px);
    }



    .benefits .benefit {
        width: calc(100% - 0px);
        text-align: center;
        margin: 10px 0;
    }

}