/*

CSS FONT RULES

font-family: 'Open Sans', sans-serif;
font-family: 'Viaoda Libre', cursive;
font-family: 'Source Sans Pro', sans-serif;

*/

/*General Styling*/

body {
  margin: 0;
  font-family: 'source sans pro';
  background-color: rgb(184, 227, 241);
}

a {
  color:  #8c9497;
}

/* header */
/* nav color*/
.header {
  background-color: white;
  opacity: 0.7;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: white;

}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid  #8c9497;
  text-decoration: none;
  color: #0062a7;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #ccd3d9;
}

.header .logo {
  display: block;
  float: left;
  font-size: 23px;
  padding: 13px 20px;
  text-decoration: none;
  color: #0062a7;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;

  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background:  #8c9497;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background:  #8c9497;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }

}

/* home page */

.indextext {
 padding: 0 100px 0 100px;
 height:100vh; 
 animation-name: opinion;
 animation-duration: 3s;
}

.titletext {
  float:left;
  width:100%;
  padding:1%;
  align-content: flex-start;
  perspective: 1000px;
  animation-name: opinion;
  animation-duration: 3s;
}

.opinioninfo {
  float: left;
  align-content: center;
  margin-left: 4%;
  width: 40%;
  padding:1%;
  visibility: visible;
}

.opinioninfo2 {
  float: left;
  align-content: center;
  margin-left: 3%;
  width: 45%;
  padding:1%;
  visibility: visible;
  margin-top: 15%;
}

.opinioninfo2 h2 {
  text-align: center;
  letter-spacing: .8vw;
  font-size: 3vw;
  animation-name: opinion;
  animation-duration: 4s;
  width:130%;
  text-align: center;
  text-transform: uppercase;
}



.opinioninfo2 p{
  font-size: 2vw;
  text-align: center;
  animation-name: opinion;
  animation-duration: 3s;
  width: 100%;
  margin-left: 15%;
  font-family: 'Titillium Web', sans-serif !important;
}

@keyframes opinion{
  from{
      opacity:0;
  }
  to{
      opacity:1;
  }
}

.opinioninfo img {
    width:150%;
    margin-left:-15%;
    animation-name: kid;
    animation-duration: 3s;
}

.kidspeaking {
    animation-name: kid;
    animation-duration: 3s;
}

@keyframes kid{
  from{
      opacity:0;
  }
  to{
      opacity:1;
  }
}

.btn {
  border: 2px solid #0062a7;
  padding: 14px 28px;
  font-size: 1.3vw;
  cursor: pointer;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
  color:#0062a7;
  animation-name: btn;
  animation-duration: 3s;
  margin-left: 50%;
  text-transform: uppercase;
}

a.aboutbtn {
  color:#0062a7;
  font-weight: bolder;
}

/* On mouse-over */
.btn:hover {background: #ccd3d9;}

@keyframes btn{
  from{
      opacity:0;
  }
  to{
      opacity:1;
  }
}

a.aboutbtn:link {
  text-decoration: none;
}

a.aboutbtn:visited {
  text-decoration: none;
}

a.aboutbtn:hover {
  text-decoration: none;
}

a.aboutbtn:active {
  text-decoration: none;
}

footer {
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  width: 100%;
  display: block;
  margin-top:1%;
}

/* about page */

/* Create four equal columns that floats next to each other */
.boxed {
  float: left;
  width: 20%;
  margin:1%;
  padding:1%;
  border: 3px solid #0062a7;
  box-shadow: 5px 6px #495964;
  align-content: flex-start;
  text-align: center;
  height: 30em;
  font-size: 1em;
  font-family: 'Titillium Web', sans-serif;
  font-weight: bolder;
}

/* Clear floats */
.row:after {
  content: "";
  display: table;
   clear: both;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .boxed {
    width: 45%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .boxed {
    width: 90%;
    margin:2%;
  }
}

h2 {
  text-align: center;
  font-size: 1.8em;
  margin:1%;
  font-family: 'source sans pro' !important;
}

h1 {
  text-align: center;
}

.indextext {
  padding: 0 100px 0 100px;
  height:100vh; 
}

.unicefabout {
   float:left;
   width:100%;
   padding:1%;
   align-content: flex-start;
   perspective: 1000px;
}

.unicefinfo {
   float: left;
   align-content: center;
   margin-left: 4%;
   width: 40%;
   padding:1%;
   visibility: visible;
 }

 .unicefinfo2 {
   float: right;
   align-content: center;
   margin-left: 4%;
   width: 45%;
   padding:1%;
   visibility: visible;
   margin-top: -30%;
   margin-right:10%;
 }

 .unicefinfo2 h2 {
   text-align: center;
   letter-spacing: 1vw;
   font-size: 4vw;
   animation-name: unicef;
   animation-duration: 3s;
   width:120%;
   text-align: center;
   text-transform: uppercase;
 }

 .unicefinfo2 p{
   font-size: 2vw;
   text-align: center;
   animation-name: opinion;
   animation-duration: 3s;
   width: 100%;
   margin-left: 10%;
   font-family: 'Titillium Web', sans-serif;
 }

 @keyframes unicef{
   from{
       opacity:0;
   }
   to{
       opacity:1;
   }
 }

 .unicefinfo img {
     width:90%;
     margin-left:-10%;
     margin-top:10%;
     animation-name: unicef;
     animation-duration: 3s;
 }

/*-------------------------------*/

.freedomofopinion {
  float:left;
  width:100%;
  padding:1%;
  align-content: flex-start;
  perspective: 1000px;
}

.article12 {
  float: left;
  align-content: center;
  margin-left: 4%;
  width: 40%;
  padding:1%;
  visibility: visible;
}

.article12_2 {
  float: right;
  align-content: center;
  margin-left: 4%;
  width: 50%;
  padding:1%;
  visibility: visible;
  margin-top: -35%;
  margin-right:2%;
}

.article12_2 h2 {
  text-align: center;
  letter-spacing: 1vw;
  font-size: 4vw;
  width:70%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: -5%;
}

.article12_2 h4 {
  text-align: center;
  letter-spacing: 1vw;
  font-size: 3vw;
  width:100%;
  text-align: center;
  text-transform: uppercase;
  margin-left: -15%;
  margin-bottom: 1%;
}

.article12_2 p{
  font-size: 1.4vw;
  text-align: center;
  width: 80%;
  margin-left: -6%;
  font-family: 'Titillium Web', sans-serif;
}

.freedomofopinion img {
    margin:2%;
    margin-left:5%;
    margin-top: 5%;
}

/* how to help page */

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 15px;
  display: flex;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.conversationimg {
  position:relative;
  left:15%;
  animation-name: conversation;
  animation-duration: 3s;
}


@keyframes conversation{
  from{
      opacity:0;
  }
  to{
      opacity:1;
  }
}

/* boxes for companys */
.container {
  position: relative;
  width: 20%;
  border:#0062a7 solid 3px;
  margin:1%;
  padding:1%;
  align-content: flex-start;
  float: left;
  height:20%;
  left:1%;
  display: table;
  overflow: hidden;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .container {
    width: 45%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .container {
    width: 50%;
  }
}

.image1 {
  display: block;
  width: 109%;
  height: 119%;
  margin-left: -4%;
}

.image2 {
  display: block;
  width: 69.5%;
  height: 68%;
  margin-left:auto;
  margin-right:auto;
}

.image3 {
  display: block;
  width: 90%;
  height: 100%;
  margin-left:auto;
  margin-right:auto;
}

.image4 {
  display: block;
  width: 90%;
  height: 100%;
  margin-left:auto;
  margin-right:auto;
}

.overlay2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
  visibility:visible;
}

.container:hover .overlay2 {
  height: 100%;
}

.text {
  color: black;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

h2 {
  text-align: center;
  font-size: 1.8em;
  margin:1%;
}

.title2{
  font-size: 4em;
  letter-spacing: 1vw;
  color: #34312b;
  text-transform: uppercase;
  font-family: 'source sans pro';
  position: absolute;
  text-align: center;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  animation-name: title;
  animation-duration: 3s;
  margin-right:10px;
  width:50%;
}

@keyframes title{
  from{
      opacity:0;
  }
  to{
      opacity:1;
  }
}

.quote {
  font-size:  1.5em;
  padding:2%;
  text-align: center;
  font-family: 'Nanum Pen Script';
  position: relative;
}

.content h1 {
  position:absolute;
}

table.students {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid black;
  width: 70%;
}

th.students, td.students {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
}