#landingHero{
    height: calc(100vh - 160px);
    width: 100%;
    position: relative;
    display: block;
    background-image: url('../pictures/landing.jpg');
    background-size: cover;
    background-position: bottom;
}

#landingHeroOverlay{
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.50);
}

@media screen and (min-width: 1400px){
    #landingHeroTextParent{
        position: relative;
        max-width: 50%;
        height: auto;
        position: absolute;
        display: inline-block;
        background-color: #cacaca;
        color: #595959;
        padding: 0px 50px 0px 50px;
        top: 50%;
        -ms-transform: skew(20deg, 0deg) translateY(-50%);
        -webkit-transform: skew(20deg, 0deg) translateY(-50%);
        transform: skew(20deg, 0deg) translateY(-50%);
        right: 0;
        left: 10%;
        text-align: center;
        padding-bottom: 20px;
    }

    #landingHeroText{
        -ms-transform: skew(-20deg, 0deg);
        -webkit-transform: skew(-20deg, 0deg);
        transform: skew(-20deg, 0deg);
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 1400px) and (min-width: 900px){
    #landingHeroTextParent{
        position: relative;
        max-width: 50%;
        height: auto;
        position: absolute;
        display: inline-block;
        background-color: #cacaca;
        color: #595959;
        padding: 0px 50px 0px 50px;
        top: 50%;
        -ms-transform: skew(20deg, 0deg) translateY(-50%);
        -webkit-transform: skew(20deg, 0deg) translateY(-50%);
        transform: skew(20deg, 0deg) translateY(-50%);
        right: 0;
        left: 20%;
        text-align: center;
        padding-bottom: 20px;
    }

    #landingHeroText{
        -ms-transform: skew(-20deg, 0deg);
        -webkit-transform: skew(-20deg, 0deg);
        transform: skew(-20deg, 0deg);
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 900px){
    #landingHeroTextParent{
        position: absolute;
        width: auto;
        height: auto;
        position: absolute;
        display: block;
        background-color: rgba(255, 255, 255, 0.65);
        color: #595959;
        right: 0;
        left: 0;
        bottom: 0;
        text-align: center;
        padding-bottom: 20px;
    }

    #landingHeroText{
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    #landingHeroText h1{
        font-size: 30px;
    }

    #landingHeroText h1 span{
        color: #669C00;
    }

    #landingHeroText p{
        display: none;
    }
}

@media screen and (min-width: 800px){
    #introductionParent{
        width: auto;
        height: auto;
        position: relative;
        display: flex;
    }

    #introductionText{
        position: relative;
        width: 50%;
        padding: 10px 20px 10px 40px;
        position: relative;
        display: inline-block;
        background-color: #cacaca;
        flex: 1;
        color: #595959;
    }

    #introductionText:after{
        content: " ";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: #cacaca;
        transform-origin: bottom left;
        -ms-transform: skew(-30deg, 0deg);
        -webkit-transform: skew(-30deg, 0deg);
        transform: skew(-30deg, 0deg);
    }

    #introductionPicture{
        height: auto;
        width: 50%;
        position: relative;
        display: inline-block;
        background-image: url('../pictures/landing.jpg');
        background-position: center;
        background-size: cover;
        flex: 1;
        z-index: -2;
    }
}

@media screen and (max-width: 800px){
    #introductionParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
    }

    #introductionText{
        position: relative;
        width: auto;
        padding: 10px 20px 10px 20px;
        position: relative;
        display: block;
        background-color: #cacaca;
        color: #595959;
    }

    #introductionPicture{
        min-height: 250px;
        width: auto;
        position: relative;
        display: block;
        background-image: url('../pictures/landing.jpg');
        background-position: center;
        background-size: cover;
    }
}

@media screen and (min-width: 800px){
    #servicesParent{
        width: auto;
        height: auto;
        background-color: white;
        position: relative;
        display: block;
    }

    #servicesCardParent{
        width: auto;
        height: auto;
        position: relative;
        display: flex;
    }

    .servicesCard{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        flex: 1;
        background-color: #cacaca;
        color: #595959;
        border-radius: 15px;
        margin: 20px;
        transition: 1s ease;
        text-decoration: none;
    }

    .servicesCard:hover{
        cursor: pointer;
        transform: translateY(-20px);
    }
}

@media screen and (max-width: 800px){
    #servicesParent{
        width: auto;
        height: auto;
        background-color: white;
        position: relative;
        display: block;
    }

    #servicesCardParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
    }

    .servicesCard{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        background-color: #cacaca;
        color: #595959;
        border-radius: 15px;
        margin: 20px;
        transition: 1s ease;
        text-decoration: none;
    }

    .servicesCard:hover{
        cursor: pointer;
        transform: translateY(-10px);
    }
}

.servicesCardTitle{
    position: relative;
    display: block;
    background-color: #669C00;
    color: white;
    padding: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-weight: bold;
}

.servicesCardPicture{
    width: auto;
    height: 200px;
    display: block;
    position: relative;
    background-position: center;
    background-size: cover;
}

.servicesCardText{
    width: auto;
    height: auto;
    padding: 20px;
    display: block;
    position: relative;
}