@import url('https://fonts.googleapis.com/css?family=Exo:100,300,400,700,900|PT+Sans:400,400i,700,700i');
/* Exo */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/* OpenSans */
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');
/* Josefin Sans */
@import url('https://fonts.googleapis.com/css?family=BenchNine');
/* Josefin Sans */


* {
    margin: 0;
    padding: 0;
}

html a {
    text-decoration: none;
    color: #333333;
}
html a:hover {
    color: #d89a00;
}

html a:active {
    color: grey;
}

body {
	font-family: 'Exo';
    font-size: 20px;
}



/*---------- Radcol Design ---------- */
/*                                    */
/*          Shades of Ochre           */
/*          CC7722   DE801A           */
/*                                    */
h1 {
    text-align: center;
    font-size: 50px;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Open Sans';
}d
h2 {
    font-size: 30px;
    font-family: 'Open Sans';
}
p {
    line-height: 34px;
    color: #3d3d3d;
}
/*---------- End Radcol Design ---------- */



/* ------ Wrapper -------- */
.Wrap {
    width: 1300px;
    margin: 0 auto;
}
/* ---- END Wrapper ------ */






/*--------------*/
/*     Btns     */
.Btn {
	background-color: #CC7722;
	text-transform: uppercase;
    padding: 16px 40px;
	font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    border: 0px;
	transition: all 0.4s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
}
.Btn:hover {
    background-color: #DE801A;
    color: white;
}






/*--------------*/
/*     Banner   */
/*--------------*/
.Banner {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 1000px;
    background: url("../images/P1-Main/PowerPlants-Drk.jpg") center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    background-attachment: fixed;   /* Sick Effect */
}

.Caption {
    position: relative;
    left: -5%;
    width: 70%;
    max-width: 950px;
    background: rgba(10,20,30, 0.5);
    padding: 40px;
    color: white;
}
.Caption h1 {
	font-size: 50px;
	font-weight: 600;
	line-height: 90px;
    color: white;
}
.Caption p {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 65px;
    font-family: 'Lato';
    color: white;
}

.Btn {
	background-color: #CC7722;
	text-transform: uppercase;
    padding: 16px 40px;
	font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    border: 0px;
	transition: all 0.4s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
}
.Btn:hover {
    background-color: #DE801A;
    color: white;
}




/*-------------------*/
/*    Small Banner   */
/*-------------------*/
.SmallBanner {
    width: 100%;
    height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    background-attachment: fixed;   /* Sick Effect */
}
.Shadow {
    position: absolute;
    width: 100%;
    height: 150px;
    top: 300px;
    text-align: center;
    background: rgb(0, 0, 0); /* Fallback Browsers w/o RGBA-support */
    background: rgba(0, 0, 0, 0.35);
}
.SmallCaption {
    position: relative;
    top: 30px;
}
.SmallCaption h2 {
	font-size: 35px;
	font-weight: 600;
}
.SmallCaption p {
    font-family: 'Lato';
    font-size: 24px;
    color: white;
}









/*--------------*/
/*     Menu     */
/*  Exo - Font  */
/*--------------*/
.MenuLogo {
    /* background: url("../images/Radcol-Menu.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: relative; */
    float: left;
    top: 18px;
    left: 15px;
    width: 200px;
    padding: 20px;
}



.Menu-Wrap {
  background: blue;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}


nav {
    text-transform: uppercase;
    font-family: 'Exo';
    font-size: 16px;
    position: sticky;
    top: 0px;

    width: 100%;
    float: left;
    z-index: 10;
    opacity: 0.94;
    background-color: white;
    border-bottom: 4px solid #eee;
}
nav ul {
    list-style: none;
    position: relative;
    margin-right: 10px;
    float: right;

}
nav ul a {
    text-decoration: none;
    display: block;
}

nav ul li {
    text-decoration: none;
    position: relative;
    float: left;
    line-height: 80px;      /* = Nav Height */
}

nav ul li a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    padding: 0 10;
    display: block;
    transition: 0.6s color;
/* Block adds Padding */
}
nav ul li a:hover {
    border-bottom: 2px solid #d89a00;
    margin-bottom: -2px;
}

nav ul ul {
    position:absolute;
    display: none;
    background: white;

}
nav ul ul li {
    margin-left: 30px;
    width: 210px;
    line-height: 45px;
    list-style: decimal;
}
nav ul ul li a:hover {
    border-right: 5px solid #d89a00;
    border-bottom: 0;
}

nav ul li:hover > ul {
    display:block
}



/*    Language   */
.Lang {
    float: right;
    position: relative;
    top: 8px;
    padding: 0 20px;
}
.Lang span {
    font-weight: 600;
    color: #d89a00;
}
.Lang a:hover {
    font-weight: 600;
    color: #ae7c00;
}






















/*--------------------*/
/*       Footer       */
/*--------------------*/
.PreFoot {
    height: 20px;
    background: repeating-linear-gradient(
    -55deg,
    #CC7722,
    #CC7722 10px,
    #DE801A 10px,
    #DE801A 20px
  );
}   /* RadMsg: CC7722 DE801A */

.Footer a {
  color: white;
}

.Footer {
    color: white;
    padding: 40 0;
    background-color: #252525;
    border-top: 3px solid #DE801A;
}
.FootWrap {
    min-height: 100px;
    width: 960px;
    margin: 0 auto;
    font-size: 0.85em;
}
.FootWrap ul li {
    list-style-type: none;
    font-size: 0.80em;
}


/*   Footer Info   */
.iLeft {
    float: left;
    width: 320px;
}
.iRight {
    float: right;
}

.iMid {
    float: left;
    width: 320px;
    text-align: center;
    padding-top: 10px;
}
.iMid ul li {
    display: inline;
    padding: 5px;
}
#BigIcon {
    font-size: 2em;
}

.Ottico {
  background-color: #252525;
  text-align: right;
  font-size: 0.65em;
  color: white;
  height: 25px;
  padding-right: 10px;
}
  .Ottico a {
    color: lightgrey;
  }
