/* REVIEW: common */
body, html{
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  z-index: 1;
  scroll-behavior: smooth;
  color: #333333;
}
a{
  color : rgb(255, 189, 89);
  text-decoration: none;
  font-weight: 600;
  font-style: italic;
}
a:hover{
  text-decoration: underline;
}
section#title_page{
  margin-top: 100px;
  height: 100px;
  width: 100%;
  background-color: #f8f9f9;
  border: 1px solid rgba(233, 233, 233, 1);
  display: flex;
  align-items: center;
}

h2{
  width: 90%;
  margin: auto;
  text-transform: uppercase;
  font-weight: bold;
  color: #fa983a;
}
/* REVIEW: global page */
section#global_container{
  display: flex;
  flex-direction: row;
  margin-bottom: 2%;
}
section#global_container section{
  border: 1px solid rgba(233, 233, 233, 1);
  background-color: white;
}
section#left{
  display: none;
}
section#right{
  width: 100%;
  padding: 2%;
}
/* REVIEW: global right */
#right p.title_list{
  color: #333333;
  font-size: 1.25em;
  font-weight: 600;
}
#right ul li{
  color: #777777;
}
.global_right_container{
  border-bottom: 1px solid #777777;
}
.global_right_container .title{
  font-size: 1.25rem;
  font-weight: 600;
}
.global_right_container .date_global_right{
  font-style: italic;
  color: #cf0000;
  font-size: 0.85em;
}
.global_right_container .text_global_right{
  color: #777777;
}
/* REVIEW: // global right */
/* REVIEW: //common */
/* REVIEW: header */
header{
  display: none;
}
header#mobile{
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  z-index: 6666666;
  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
  height: 100px;
}
header#mobile h1 a{
  color:#fa983a;
  text-decoration: none;
}
header#mobile nav{
  position: absolute;
  width: 100%;
  height: calc(100vh - 100px);
  background: #333;
  top: 100px;
  left: -100%;
  transition: 0.5s;
}
header#mobile nav.active{
  left:0;
}
header#mobile nav ul{
  display: block;
  text-align: center;
}
header#mobile nav ul li{
  list-style: none;
  width: 90%;
}
header#mobile nav ul li a{
  text-transform: uppercase;
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
}
header#mobile nav ul li a:hover{
  color:#fff;
  background: #2196f3;
}
.menu-toggle{
  color: black;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: block;
}
/* REVIEW: //header  */
#container_global_left{
  display: none;
}
