@CHARSET "utf-8";

* {box-sizing:border-box}

body {
	background-color: white;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}

.page-content {
	margin: auto;
	max-width: 960px;
}




/* Header Styles */

header {
/* 	position: -webkit-sticky; */
/* 	position:sticky; */
/* 	top:0; */
/* 	z-index:10; */
	width: 100%;
	text-align: center;
	background-color: white;
	margin: 0;
	padding: 15px;
	clear: both;
	display: table;
	content: "";
}

.logo {float: left;}

header > nav {
	float: right;
	list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    }

.navLinks {
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    color: #FF3333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

header li {
    float: left;
    list-style-type: none;
}

.navLinks:hover, .dropdown:hover .dropbtn {
	background-color: #FF3333;
	color: white;
}

header li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #202020;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
	background-color: #FF3333;
	color: white;
}

.dropdown:hover .dropdown-content {display: block;}

header .icon {
    display: none;
}

/* When the screen is less than 850 pixels wide, hide all links, except for the first one ("Home") */
@media screen and (max-width: 850px) {
  .navBar li:not(:first-child) {display: none;}
  .navBar li.icon {
    float: right;
    display: block;
  }
  nav {
    z-index:10;
  }
  ,.navBar {float:left;clear:left;}
}

@media screen and (max-width: 1200px) {
  .navBar.responsive {position: relative;}
  .navBar.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navBar.responsive li {
    float: none;
    display: block;
    text-align: left;
  }
}



/* Footer Styles */

footer {
	clear: both;
	background-color: #202020;
	width: 100%;
	min-height: 400px;
	padding: 10px 20px;
	text-align: left;
	margin: auto;
}

footer h3 {
	color: white;
}

footer ul {
	clear: both;
	display: table;
	content: "";
	padding: 0;
	margin-top: 0;
}

footer ul > li {
	list-style-type: none;
	margin: 15px 0;
	padding: 0;
	clear: left;
	float: left;
}

footer a {
	color: #A0A0A0;
	text-decoration: none;
}

footer a:hover {
	color: #FF3333;
}

.footer-content {
	margin: auto;
	padding: 10px 100px;
	display: table;
	width: 100%;
}

.footer-content > div {
	display: table-cell;
	padding: 30px 30px 0 30px;
}

/* If the browser window is smaller than 700px, make the columns stack on top of each other */
@media only screen and (max-width: 700px) {
    /*footer {height:auto;}*/
    .footer-content > div, .copyright {
        display: block;
        width: 100%;
    }
    footer {height:auto;}
}

.copyright {
	color: #A0A0A0;
  clear: both;
  display: table;
  content: "";
  width: 100%;
  padding: 10px 10px 0 10px;
	margin: 10px 10px 0 10px;
}

.copyright p {
  float:right;
  margin: 0;
  padding:0;
}

#topBtn {
    display: none;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    border: white 1px solid;
    outline: none;
    background-color: #202020;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

#topBtn:hover {
    background-color: red;
    color: white;
    border: none;
}