@charset "utf-8";
/* CSS Document */

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

header {
	padding: 32px;
	background-color: white;
}

header2 {
		padding: 32px;
		background-color: aquamarine;
}

img{
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;	
}


footer{
	padding: 20px 30px;
	background-color: gray;
}

body {
	margin-left: auto;
	margin-right: auto;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 325px;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #1F1F1F;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}


.row:before, .row:after {
	content: "";
	display: table;
}


.row:after {
	clear: both;
}



.hero {
		background-image: url(images/hero.jpg);
		background-size: cover;
		padding: 20px 20px 50px 20px;
		color: black;
		text-align: center;
}

h1 {
	font-size: 57px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 60px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;
}


h3 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}



h4 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}

h5 {
	font-family: 'League Gothic', Arial, sans-serif;
	font-weight: normal;
}



p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;
}



.button {
	border: 2px white solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: blue;
	text-decoration: none;
}

.info-box-tan{
	background-color: tan;
	color: white;
	padding: 30px 20px 60px;
	text-align: center;
}

.info-box-white{
	background-color: white;
	color: black;
	padding: 30px 20px 60px;
	text-align: center;

}


.info-box-dark{
	background-color: dimgray;
	color: white;
	padding: 30px 20px 60px;
	text-align: center;
}

.footer-text{
	font-size: 13px;
	margin-bottom: 20px;
}

.col{
	width: 100%;
}

.col2{
		float: right-side;
		padding: 0px 7px 14px;
	}





/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
	margin-right: auto;
	margin-left: auto;
}

/* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
	margin-right: auto;
	margin-left: auto;
}


/* Linkedin */

.fa-linkedin {
    background-color: darkcyan;
    color: white;
	margin-right: auto;
	margin-left: auto;
}


/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: cyan;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: lightsalmon;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


/*Previous Page*/

a {
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
}

a:hover {
    background-color: #ddd;
    color: black;
}

.previous {
    background-color: #f1f1f1;
    color: black;
}

.next {
    background-color: #4CAF50;
    color: white;
}

.round {
    border-radius: 50%;
}



/* Style the links inside the sidenav */
#mySidenav a {
    position: fixed; /* Position them relative to the browser window */
    left: -80px; /* Position them outside of the screen */
    transition: 0.3s; /* Add transition on hover */
    padding: 15px; /* 15px padding */
    width: 100px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-size: 20px; /* Increase font size */
    color: white; /* White text color */
    border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
}

#mySidenav a:hover {
    left: 0; /* On mouse-over, make the elements appear as they should */
}

/* The about link: 20px from the top with a green background */
#home {
    top: 120px;
    background-color: #4CAF50;
}

#about {
    top: 180px;
    background-color: #2196F3; /* Blue */
}

#services {
    top: 240px;
    background-color: #f44336; /* Red */
}

#contact {
    top: 300px;
    background-color: #555 /* Light Black */
}

#support {
    top: 360px;
	background-color:purple /* Light Black */

}	
	


.newspaper {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
    -webkit-column-width: 100px; /* Chrome, Safari, Opera */
    -moz-column-width: 100px; /* Firefox */
    column-width: 100px;
}




/*Tablet View*/

@media (min-width: 768px) {
	
	body {
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1{
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	.col-md-one-half{
		width: 50%;
	}
	
		
	.col{
		float: left;
		padding: 0px 7px 14px;
	}
	
	
}




/*Desktop View*/

@media (min-width: 1024px) {
	
	body {
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.col-lg-one-fourth{
		width: 25%;
	}
	
}


