:root{
    --church-brand-color: rgb(0,162,232) /*This is the primay color for the Church Blue*/
}
* {box-sizing:border-box}

/* Styles for the Navigation Bar*/
.topnav {
	font-family: Arial;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    z-index: 100;    
}

.topnav a {
    float: left;
    height: 45px;
    display: block;
    color: rgb(230,230,230);
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    z-index: 100;
}

.topnav button {
	cursor: pointer;
	float: left;
	border: none;
    height: 45px;
    display: block;
	background-color: black;
    color: rgb(230,230,230);
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    z-index: 100;
}
.topnav button:hover {
	background-color: #EBEBEB;
    color: black;
    z-index: 100;
}

.topnav a:hover {
    background-color: #EBEBEB;
    color: black;
    z-index: 100;
}

.active {
    background-color: #00A2E8;
    color: white;
    z-index: 100;
}

.topnav .icon {
    display: none;
    z-index: 100;
}

@media screen and (max-width: 910px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
    
    .topnav.responsive {
        position: relative;
        position: fixed;
        top: 0;
        z-index: 100;
        width: 100%; 
    }
    
    .topnav.responsive .icon {
        position: absolute;
        height: 45px;
        right: 0;
        top: 0;
    }
    
    .topnav.responsive a { 
        float: none;
        display: block;
        text-align: left;
        z-index: 100;
    }
    
    .topnav.responsive button {
        cursor: pointer;
        float: none;
        border:none;
        display: block;
        text-align: left;
        width: 100%;
        z-index: 100;
    }
}

/*Styles for the main body of the page exluding the Contact form and the Profile images.*/
.aboutUs_body{
    padding-bottom: 50px;
}
.sub_aboutUs_div{
    text-align: center;
    padding-top: 50px;
}
#ContactUs{
	text-align: center;
}
.welcomeHeader3_dark{
    font-family: Arial, sans-serif;
    width: 100%;
    text-align: center;
    font-size: 48;
    color: rgb(50, 50, 50);
}
.aboutUs_paragraph{
    font-size: 22px;
    text-indent: 5px;
    display: block;
    width: 100%;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}
@media only screen and (max-width: 660px) {
    .sub_aboutUs_div{
        text-align: center;
    }
    .aboutUs_paragraph{
        font-size: 18px;
        text-align: center;
    }
}
.phoneNumber:link, phoneNumber:visited {
    color: #00A2E8;
    font-family: Arial, sans-serif;
    font-size: 36px;
    text-align: center;
    text-decoration: none;
}

phoneNumber:hover, phoneNumber:active {
    color: red;
}


/*This is for the styles for the profile images for the pastors.*/
.imageColumn{
    float: left;
    width: 50%;
    padding: 25px;
}
.imageRow::after{
    content: '';
    clear: both;
    display: table;
}
.container{
    position: relative; 
    max-width: 800px; /* Maximum width */
    margin: 0 auto; /* Center it */
}
.container img {vertical-align: middle;}
.container .content {
    position: absolute; /* Position the background text */
    bottom: 0; /* At the bottom. Use top:0 to append it to the top */
    background: rgb(0, 0, 0); /* Fallback color */
    background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
    color: #f1f1f1; /* Grey text */
    width: 100%; /* Full width */
    padding: 20px; /* Some padding */
}
.pastorImage{    
    width: 100%;
}   
.profile_image_header2{
    font-size: 30px;
    padding: none;
}
.profile_image_paragraph{
    font-size: 18px;
    padding: none; 
    padding: none; 
}
@media screen and (max-width: 1300px) {
    .imageColumn {
        width: 100%;
    }
    .profile_image_header2{
        font-size: 16px;    
    }
    .profile_image_paragraph{
        font-size: 12px;
    }
}



/*This is the styles for the contact form.*/

#sub_aboutUs_div_contact{
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}
.contact_form_div{
    padding-bottom: 25px;
    font-family: Arial, sans-serif;
    font-size: 24px;
}
.contact_info_field{
    font-family: Arial, sans-serif;
    font-size: 24px;
    width: 25%;
    margin: 25px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact_message_field{
    font-family: Arial, sans-serif;
    font-size: 22px;
    width: 75%;
    height: 300px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact_info_submit{
    font-family: Arial, sans-serif;
    font-size: 24px;
    padding: 5px;
    color: #00A2E8;
    background-color: white;
    border-color: #ccc;
}

@media only screen and (max-width: 900px){
    .contact_message_field{
        width: 85%;
        margin: auto;
        font-size: 18px;
    }
    .contact_info_field{
        font-size: 20px;
        display: block;
        width: 85%;
        margin: auto;
    }
    .contact_form_div{
        font-size: 20px;
    }
    .contact_info_submit{
        font-size: 20px;
    }
}