*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  height: 100%;
}

body{
  font-family: 'Rajdhani', sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
}

.background{
  position: fixed;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  width: 100%;
  height: 100%;
  background: url(../img/background.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6{
  color: #fff;
  margin-bottom: 15px;
}

ol, ul{
  margin-bottom: 15px;
  list-style: none;
  font-size: 18px;
  color: #fff;
}

a{
  color: #f8a522;
}

p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: justify;
  text-indent: 20px;
}

iframe{
  height: 100%;
  /* max-height: 500px; */
  min-height: 300px;
}

#home img{
    max-width: 80%;
    height: auto
}

.new{
  color: red;
  font-weight: bold;
}

#container{
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  height: 100%;
  width: calc(100% - 200px);
  margin-right: -200px;
  position: relative;
}

#container h1.title::after{
  border-bottom: 3px solid #f8a522;
  content: " "; 
  display: block;
  min-width: 50px;
}

section{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
  z-index: 1;
  padding: 25px;
  width: 100%;
}

.vertical-center{
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.space-between{
  justify-content: space-around;
  -ms-flex-pack: distribute;
}

.overlay{
  z-index: 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* height: calc('100% - 112px') */
}

#container{
    width: 100%;
    margin-right: 0;
}

.logo{
    display: none;
}

/* Menu */
.hamburguer-menu, .hamburguer-menu:before, .hamburguer-menu:after {
  background: #fff;
  position: absolute;
  border-radius: 1em;
  height: 2px;
  width: 25px;
  transition: all 0.2s ease
}

.hamburguer-menu{
  display: inline-block;
  position: fixed;
  z-index: 3;
  content: '';
  left: 5%;
  top: 5%;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 24px;
}

.hamburguer-menu:before{
  top: -0.25em;
  content: '';
  display: inline-block
}

.hamburguer-menu:after{
  top: 0.25em;
  content: '';
  display: inline-block;
}

.nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.85);
    transition: all ease-in-out .2s;
    max-height: 0;
    opacity: 0;
    visibility: hidden;

    position: fixed;
    left: 0;
    top:0;
    height: 100%;
    padding: 1.5em;
    z-index: 2;
}

 .nav.aberto{
    max-height: 100%;
    opacity: 1;
    visibility: visible;
  }

.nav ul{
    list-style: none;
    margin: 0;
}

nav ul li{
    margin-bottom: 15px;
}

nav ul li:last-of-type{
    margin-bottom: 0;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

@media screen and (min-width: 750px){
  body{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hamburguer-menu{
    display: none;
  }

  .nav{
    display: block;
    text-align: left;
    visibility: visible;
    width: 200px;
    opacity: 1;
    max-height: 100%;
  }

  #container{
    width: calc(100% - 200px);
    position: absolute;
    right: 0;
  }

  #venue #divVenue{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #venue #divVenue .venueColumn{
    width: 50%;
    padding: 0 20px;
  }

  #days-week{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #days-week li{
    padding: 15px 10px;
    width: 20%;
  }

  .subjects{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .subjects li{
    width: 25%;
  }

  .subjects:nth-of-type(2) li{
    width: 16.66%;
  }

  #program{
    min-height: 1220px;
  }
}

@media screen and (min-width: 980px){
  #program-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #days-week li{
    padding: 15px;
  }

  #program{
    /* min-height: 100%; */
  }
}

/* Fim Menu */

#home h1{
  font-size: 24px;
}

#home h1::after{
    border-bottom: 3px solid #f8a522;
    content: " ";
    display: block;
}

#home p{
  text-align: center;
}

#map{
    width: 100%;
}

.popup{
  color: #000;
}

#registration{
	min-height: 1200px;
}

#registration iframe{
  min-height: 1200px;
}

/* Program */
#iframe-program{
  min-height: 2790px;
}

#type{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  /*justify-content: center;*/
}

#type li{
  padding: 15px;
}

#type li.active{
  background: rgba(0,0,0,0.5);
}

.table-program{
  display: none;
  width: 100%;
  margin: 0;
}

.table-program tr:last-of-type,
.table-program tr:last-of-type td{
  border-bottom: none;
}

.table-program tr td{
  border-right: 1px solid #fff;
}

.table-program tr td:last-of-type{
  border-right: none;
}

#days-week{
  width: 100%;
  margin: 0;
}

#days-week li{
  padding: 15px;
  color: #fff;
}

#days-week li:hover{
  cursor: pointer;
}

.highlighted,
.hightlighted-light{
  font-weight: bold;
}

tr.highlighted td{
  background: none;
}

#poster-content{
  display: none;
}

#oral-content,
#poster-content{
  border: 3px solid #dc8700;
}

#poster-content table{
  width: 100%;
}

#poster-content table{
  margin: 0;
}

#oral-monday tr.highlighted-light{
  background: #ee9200;
}

#days-week + li:first-of-type.active + #oral{
  border: 1px solid red;
}

#oral-monday tr.highlighted,
#poster-monday tr.highlighted,
#days-week li:first-of-type{
  background: #dc8700;
}

#oral-tuesday tr.highlighted-light{
  background: #045666;
}

#oral-tuesday thead,
#poster-tuesday thead,
#oral-tuesday tr.highlighted,
#poster-tuesday tr.highlighted,
#days-week li:nth-of-type(2){
  background: #037a91;
}

#oral-wednesday tr.highlighted-light{
  background: #671215;
}

#oral-wednesday thead,
#poster-wednesday thead,
#oral-wednesday tr.highlighted,
#poster-wednesday tr.highlighted,
#days-week li:nth-of-type(3){
  background: #891a1e;
}

#oral-thursday tr.highlighted-light{
  background: #f88539;
}

#oral-thursday thead,
#poster-thursday thead,
#oral-thursday tr.highlighted,
#poster-thursday tr.highlighted,
#days-week li:nth-of-type(4){
  background: #d06e2d;
}

#oral-friday tr.highlighted-light{
  background: #191919;
}

#oral-friday thead,
#poster-friday thead,
#oral-friday tr.highlighted,
#poster-friday tr.highlighted,
#days-week li:nth-of-type(5){
  background: #2d2d2d;
}

#oral-monday,
#poster-monday{
  display: table;
}

#program-content{
  width: 100%;
  height: 100%;
}

.subjects{
  margin: 0;
}

.subjects li{
  padding: 15px;
}

.subjects li:hover{
  cursor: pointer;
}

.subjects li.active{
  background: rgba(0, 0, 0, 0.5);
}

#poster-monday tbody,
#poster-tuesday tbody,
#poster-wednesday tbody,
#poster-thursday tbody,
#poster-friday tbody{
  display: none;
}

#poster-monday #poster-monday-global,
#poster-tuesday #poster-tuesday-global,
#poster-wednesday #poster-wednesday-constituent,
#poster-thursday #poster-thursday-constituent{
  display: table-row-group;
}

#iframe-program{
  min-height: 3000px;
}

@media screen and (min-width: 750px){
  #iframe-program{
    min-height: 1705px;
  }
}

@media screen and (min-width: 980px){
  #iframe-program{
    min-height: 1135px;
  }
}

.container-photos img{
  width: 100%;
  margin-bottom: 10px;
}

.container-photos img:last-of-type{
  margin-bottom: 0;
}

@media screen and (min-width: 980px){
  .container-photos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }

  .container-photos img{
    width: 48%;
  }

  .container-photos img:nth-child(12),
  .container-photos img:nth-child(13){
    margin-bottom: 0;
  }
}

.owl-carousel{
  position: relative
}

.owl-carousel .owl-nav{
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 50%;
  margin-bottom: -25px;
  width: 100%;
  padding: 0 15px;
}