/* Body and bancground banner */
body {
background-color: white;
 
background-size: contain;
background-repeat: no-repeat;
}


.logo_container {
background-color: black
}



.logo_container >img {
  display: block;
    margin-left: auto;
    margin-right: auto;
    width: 15%;
}



/* Navigation Bar */
.nav {
  	background-color:  ;	 
  	color: #ffffff;
	opacity: 0.;
  	list-style: none;
  	text-align: center;
  	padding: 20px 0 20px 0;
	position: fixed;
	width: 100%;
	z-index: 100;
	margin-top: 0;
	overflow: auto
}

/* Links inside the navbar */
.nav > li {
  	display: inline-block;
  	padding: 0 25px 0 10px;
	float: right;
	padding-right: 20px;
	margin-right: 30px;
}

.nav > li > a {
	text-decoration: none;
	color: white;
	font-family: 'Roboto Condensed', sans-serif;	
	font-size: 12px
}

.nav > li > a:hover {
  	color: #F04E23;
  	font-size: 12px; 
  	-webkit-transition: .5s all;      
}

.nav .current {
    text-decoration: none;
    border-bottom:1px solid white; padding-bottom:8px
}

/* Navigation Bar - H1 */
.nav_container > h1 {
    color: white;
    font-size: 40px;
    padding-top: 70px;
	padding-left: 180px;
	font-family: 'Roboto Condensed', sans-serif;
}





.footer {
    background-color: black;
    margin: 50px 0 0 0 
}

.footer > ul >  li {
    padding-left: 100px;
        text-decoration: none;
    display: inline-block;
    margin: 10px;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #D7E4C2;
    margin-left: auto;
    margin-right: auto
}

.footer > ul > img {
     
    background-color:   ; 
    padding-left: 30px;
	padding-right: 30px;
    float: right;
	padding-top: 20px;
	position: relative;
	bottom:0;
}












/* Container for pictures */
.slider {
  height: 70%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
	background:#e6e7e8;
	margin-top: 50px;
	width: auto
	 
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 70%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__image {
  font-size: 2.7rem;
      color: #2196F3;
}
.slider__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.slider__txt {
  color: #999;
  margin-bottom: 3rem;
  max-width: 300px;
  font-family: 'Crimson Text', serif;    
}

.slider img {
	width: 80%
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
 


