﻿@media(min-width: 600px) {
    .header {
        font-size: 65px;
        color: rgb(0,2,42);
        padding-top: 57px;
        padding-bottom: 57px;
        font-weight: bold;
        text-shadow: 2px 2px 5px rgb(175, 175, 175);
    }
}

@media(max-width: 600px) {
    .header {
        font-size: 35px;
        color: rgb(0,2,42);
        padding-top: 40px;
        padding-bottom: 0px;
        font-weight: bold;
        text-shadow: 2px 2px 5px rgb(175, 175, 175);
    }
}


.FullScreenOne {
    background-image: url("img/MikeStethoscopeKids_background.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ContentOne {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    height: auto;
    width: 100%;
    padding-top: 75px;
    padding-bottom: 20px;
}

.formWelcome {
    width: 50%;
    margin-left:25%;
    text-align: justify;
    padding-top: 25px;
}

@media(max-width: 600px) {
    .formWelcome {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        text-align: justify;
        padding-top: 25px;
    }
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgb(0,2,42);
    border-radius: 4px;
    resize: vertical;
    background: transparent;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

.container {
    border-radius: 5px;
    padding-top: 20px;
}

.col-25 {
    float: left;
    width: 15%;
    margin-top: 6px;
    margin-left: 22%;
    font-weight: bold;
}

.col-75 {
    float: left;
    width: 35%;
    margin-top: 6px;
    text-align: left;
}

.buttonWrap {
    text-align: center;
    padding-top: 15px;
    position: relative;
}

.button {
    background-color: rgb(0,2,42);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

    .FullScreenOne {
        background-image: url("img/MikeStethoscopeKids_background.jpg");
        background-attachment: initial;
        background-position: 60%, 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .ContentOne {
        background-color: rgba(255, 255, 255, 0.8);
        text-align: center;
        height: auto;
        width: 100%;
        padding-top: 75px;
        padding-bottom: 20px;
    }

    .col-75, input[type=submit] {
        width: 80%;
        margin-top: 0;
        margin-left: 6%;
    }

    .col-25 {
        width: 80%;
        margin-top: 0;
        margin-left: 6%;
        text-align: left;
    }

    .buttonWrap {
        padding-left: 0px;
    }

    .contactHeader {
        font-size: 300%;
    }

    .container {
        padding-top: 0px;
    }

    .formWelcome {
        padding-top: 15px;
    }

    .headerText p {
        font-size: 25px;
    }

    .headerText h1 {
        font-size: 30px;
    }
}

.buttonInput {
    display:none;
}

.button:hover {
    background-color: rgba(0,2,42,0.7);
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}