/* 
=================
Table of Contents
=================

1. Global Styles
2. Layout
3. Typography
4. Components
	4.1 Buttons
	4.2 Slideshow
	4.3 Animations
	4.4 Newsletter
5. Media Queries
	5.1 Tablets
	5.2 Cellphones

*/

/*
	================
	1. Global Styles
	================
*/

body {
	margin: 0;
	font-size: 16px;
	font-family: sans-serif;
	color: black;
}

h1 {
	text-align: center;
}

/*
	=========
	2. Layout
	=========
*/

.sidenav {
  height: 100%;
  width: 160px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.container {
	position: relative;
	margin-left: 160px;
	height: 2970px;
	width: 4205px;
	background-color: rgba(189,191,178,0.2);
	background-image: url("../Aurum.jpg");
	background-size: cover;
	background-repeat: repeat;
}

area {
	cursor: pointer;
}

hr {
	width: 80%;
}

/*Model Test*/

.button {
    display: inline-block;
    border: 1px solid;
    border-color: #012766;
    background: #012766;
    padding: 10px 16px;
    border-radius: 4px;
    color: #ffffff;
}
[id^=modal] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
}
[id^=modal]:target {
    display: block;
}
input[type=checkbox] {
    position: absolute;
    clip: rect(0 0 0 0);
}
.popup {
    width: 100%;
    height: 100%;
    z-index: 99999;
}
.popup__overlay {
    position: fixed;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000b3;
}
.popup__wrapper {
    position: fixed;
    z-index: 9;
    width: 60%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
	color: white;
	background-color: rgba(0,0,0,0.7);
	border: ridge 10px grey;
}
.popup__close {
    position: absolute;
    top: 16px;
    right: 26px;
}

/*FlexWrap*/

.flexwrap {
	display: flex;
}

.left {
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	position: relative;
	/*border: 1px solid red;*/
	margin: 20px auto;
	text-align: left;
}

.right {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
	/*border: 1px solid blue;*/
	margin: 20px auto;
	text-align: left;
}

.right img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 120px;
	padding-right: 5%;
}

/*
	=============
	3. Typography
	=============
*/



/*
	=============
	4. Components
	=============
*/

	/*4.1 Buttons*/
	
	/*4.2 Slideshow*/

	/*4.3 Animations*/

	/*4.4 Newsletter*/

/*
	================
	5. Media Queries
	================
*/

	/*5.1 Tablets*/
@media screen and (max-width: 768px){

}


	/*5.2 Cellphones*/
@media screen and (max-width: 480px){

}