/* ---- Fonts --*/
@font-face 
    {
    font-family: RobotoMedium;
    src: url("resources/fonts/Roboto/Roboto-Medium.ttf") format('truetype');
}

@font-face 
    {
    font-family: RobotoBold;
    src: url("resources/fonts/Roboto/Roboto-Black.ttf") format('truetype');
}


@font-face 
    {
    font-family: RobotoItalic;
    src: url("resources/fonts/Roboto/Roboto-Italic.ttf") format('truetype');
}

@font-face 
    {
    font-family: RobotoLight;
    src: url("resources/fonts/Roboto/Roboto-Light.ttf") format('truetype');
}


/* ---- Burger Menu --*/

#menu__toggle {
  opacity: 0;
 
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;

}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: red;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: red;
  color: white;
}

/*End of Burger Menu */






* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 50px;
}

html {
  font-family: "Lucida Sans", sans-serif;
  color: white;
}

body {
  background-image: url('resources/CBGs.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000000;
  font-family: "RobotoLight", sans-serif;
  font-size: 1.3em;
  
}

h1 {
	font-family: "RobotoBold", sans-serif;
	font-size: 2em;
}

h2 {
	font-family: "RobotoMedium", sans-serif;
	font-size: 1.8em;
}

h3 {
	font-family: "RobotoBold", sans-serif;
	font-size: 1.5em;
}



img {
  max-width: 100%;
  height: auto;
}	

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 10px;
}

.logo{
  max-width: 33%;
  height: auto;
  float:right;
  
}
.aside {
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer {
  background-color: #000000;
  color: #ffffff;
  text-align: left;
  font-size: 12px;
  bottom: 0;
  padding: 15px;
  
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;

}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
  
  body {
  background-image: url('resources/CBGm.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000000;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
  
  
  body {
  background-image: url('resources/CBG.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000000;}
}
