﻿


* {
    box-sizing: border-box;
}

html, body , a {
    font-family: sans-serif;
    color: #676767;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.42857143;
    font-size: 16px;
}

.content {
    max-width: 60%;
    margin: auto;
}


.Navigation {
    padding-top: 20px;
}

.bottom {
    
    padding-bottom: 30px;
}

.title {
    float: left;
}

.phone {
    float: right;
    margin-top: 15px;
}


.titletext {
    color: #18baa9;
    font-size: 3em;
    letter-spacing: 3px;
}

.titletextsmall {
    display: block;
    color: #18baa9;
    font-size: 18px;
    letter-spacing: 5px;
}

.phonetext {
    color: #18baa9;
    font-size: 18px;
    letter-spacing: 3px;
}

.line {
    display: inline-block;
    padding-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #c6c6c6;
}

.responsive_img {
    display: inline-block;
    position: relative;
    height: auto;
    max-width: 100%;
}

.responsive_img_div {
    display: inline-block;
    position: relative;
    transition: all 300ms linear 1s;
}

.t1 {
    font-size: 22px;
    text-transform: capitalize;
    color: #b05656;
    letter-spacing: 3px;
}

.t2 {
    font-size: 18px;
    color: #60a5ac;
}

.description {
    font-size: 18px;
    color: #b05656;
}

.c1 {
    font-size: 18px;
    color: #006600;
}

.c2 {
    font-size: 18px;
    color: #b05656;
}

.flexall {
    display: flex;    
    justify-content: center;    
}

    .flexall > div {        
        margin: 2px;
        width: 50%;
    }


@media only screen and (max-width:750px) {

    .phone, .title {
        display: block;
        padding: 10px;
        float: left;
        width: 100%;
        text-align: center;
    }

    .phone {
        display: block;
        float: left;
        margin-top: 15px;
        
    }

    .titletext {
        font-size: 3em;
        letter-spacing: 10px;
    }

    .flexall {
        flex-wrap: wrap;
    }

        .flexall > div {
            width: 90%;
        }
}

@media only screen and (max-width:1500px) {
    .content {
        max-width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }

}


