/*
TOURISM AND THE CITY - CSS
By Rachel Sarra and Raphael Sanches
*/

/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local('Lato Black'), local('Lato-Black'), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50XSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local('Lato Black'), local('Lato-Black'), url(https://fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50XSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}




/* GENERAL */
/*------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'Lato', sans-serif;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  padding-top: 101px;
}

.no-overflow {
  overflow: hidden;
}

h1, h2, h3, h4, h5, p {
  font-family: 'Lato', sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

ul li {
  margin:0;
  padding: 0;
  text-indent: 0;
  list-style-type: 0;
  list-style: none;
}


@media (max-width: 900px)
{
  body {
    padding-top: 0;
  }
}

/* WRAPPER */
/*------------------------------------*/

.body-no-scroll {
  overflow: hidden;
}

.wrapper {
	position: relative;
	margin: 0 auto;
	width: 95%;
	max-width: 1490px;
  padding: 0 20px;
  zoom: 1;
}

.wrapper:after, .wrapper:before {
    content: "";
    display: table;
}

.wrapper:after {
    clear: both;
}

@media (max-width: 900px) {
  .wrapper {
    width: 100%
  }
}


/* CLEARFIX */
/*------------------------------------*/
.clearfix {
  zoom: 1;
}

.clearfix:after, .wrapper:before {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}


/* HEADER */
/*------------------------------------*/
.main-header {
  width: 100%;
  padding: 0px 10px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.menu-icon {
  display: none;
  width: 26px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 25px;
}

.menu-icon:before, .menu-icon:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: #000;
  top: -7px;
}

.menu-icon:after {
  content: "";
  top: 7px;
}

.menu-icon.active {
  background: #fff;
}

.menu-icon.active:before {
  transform: rotate(45deg);
  top: 0px
}

.menu-icon.active:after {
  transform: rotate(-45deg);
  top: 0px;
}
.main-header > .wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.workshop-logo {
  display: block;
  padding-top: 25px;
}

.workshop-logo > img {
  width: 130px;
}

.mobile-navigation {
  display: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.main-navigation ul > li {
  float: left;
  position: relative;

}

.main-navigation > ul > li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  bottom: 20px;
  /*border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #313131;*/
  width: 0;
  height: 3px;
  background: #313131;

}

.main-navigation > ul > li:hover{

}

.main-navigation > ul > li:hover::after {
  width: 40px;
  transition: .6s ease;
}

.main-navigation ul > li ~ li {

}

.main-navigation ul > li > a{
  display: block;
  padding: 40px 20px;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;

}

.main-navigation ul > li > ul {
  position: fixed;
  width: 100%;
  top: 101px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  background: #313131;
  opacity: 0;
  visibility: hidden;
  transition-delay: .3s;
  transition: 0.4s ease;
  z-index: 999999;
}

.main-navigation ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transition-delay: .0s;
}

.main-navigation ul > li > ul:hover {
  opacity: 1;
  visibility: visible;
  transition-delay: .0s;
}

.main-navigation ul > li > ul::before {
  content:"";
  position: absolute;
  width: 100%;
  height: 42px;
  background: #313131;
  left: -100%;
}


.main-navigation ul > li > ul > li {
  float: none;
  padding: 0 5px;
  display: inline-block;
}

.main-navigation ul > li > ul > li > a{
  display: block;
  padding: 13px 10px;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  -webkit-font-smoothing: antialiased;

}

.main-navigation ul > li > ul > li > a:hover{
  color: #313131;
  background: rgba(255,255,255,0.95);
}

.fb-link {
  width: 35px;
  height: 35px;
  background: url(../img/fb.png);
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 34px;
}

@media (max-width: 900px)
{
  body {
    padding-top: 51px;
  }

  .menu-icon {
    display: block;
    z-index: 9;
  }

  .main-header {
    z-index: 999;
    background: #fff;
    position: fixed;
  }

  .main-header .wrapper {
    overflow: auto;
    display: block;
  }

  .workshop-logo {
    margin: 0 auto;
    padding: 7px 0;
  }

  .workshop-logo {
    width: 90px;
  }

  .main-navigation {
    display: none;
  }

  .mobile-navigation {
    width: 300px;
    height: calc(100vh - 51px);
    position: fixed;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    background: #fff;
    top: 51px;
    left: 0;
    z-index: 999;
    overflow: auto;
    padding-left: 0px;
    padding-bottom: 150px;
    transition: .4s ease;
  }

  .mobile-navigation.active {
    visibility:visible;
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  .body-no-scroll::before {
    content: '';
    width: 100%;
    height: calc(100vh - 51px);
    position: fixed;
    top: 51px;
    left: 0;
    z-index: 8;
    background: rgba(0,0,0,0.7);
  }

  .mobile-navigation ul li{
    display: block;
    width: 100%;
    border-top: 1px solid #ddd;
  }

  .mobile-navigation > ul > li:hover::after {
    width: 0;
  }

  .mobile-navigation > ul > li:last-of-type{
    border-bottom: 1px solid #ddd;
  }
  .mobile-navigation ul li a{
    display: block;
    padding: 20px;
    padding-left: 10px;
    font-size: 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
  }

  .mobile-navigation ul > li > ul {
    position: static;
    display: block;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: translate(0);
    text-align: left;
    background: #fff;
  }

  .mobile-navigation ul > li > ul > li{
    display: block;
    border-top: 1px solid #ddd;

  }

  .mobile-navigation ul > li > ul > li a{
    display: block;
    color: #313131;
    font-size: 1.3rem;
  }

  .fb-link {
    width: 24px;
    height: 24px;
    top: 14px;
    right: 3px;
  }
}

/* SECTION: VIDEO */
/*------------------------------------*/
.section-video {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-video::after{
  content: "";
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  opacity: 0;
  width: 100%;
  height: 200px;
  position: absolute;
  z-index: 3;
  bottom: 0;
  transition: all 1.2s ease;
}

.section-video:hover::after{
  opacity: 1;
}

.section-video > video {
  width: 100%;
  /*object-fit: cover;*/
}

.section-video > .arrow {
  width: 65px;
  height: 65px;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  border-radius:50%;
}

.section-video > .arrow:before{
  content: "";
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(45deg);
  z-index: 3;
}

.section-video > .video-modal {
  width: auto;
  height: 70vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  display: none;
}

.section-video > .video-modal.active {
  display: block;
}

.volume-video {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 20px;
  right: 35px;
  z-index: 4;
  background: url(../img/volume-off.svg) 50% no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: .2s;
  opacity: .8;
}

.volume-video:hover {
    transform: scale(1.1);
    opacity: 1;
}

.volume-video.active {
  background-image: url(../img/volume-on.svg);
}

.mobile-play{
  display: none;
}

@media (max-width: 900px)
{
  .volume-video {
    width: 35px;
    height: 35px;
    right: 15px;
    bottom: 15px;
    display: none;
  }

  .section-video {
    width: 100%;
  }
  .section-video::after{
    display: none;
  }
  .section-video > video {
    width: 100%;
    display: none;
  }

  .section-video > video.mobile-active {
    display: block;
  }

  .mobile-play {
    width: 100%;
    position: relative;
    display: block;
  }

  .icon-play {
    width: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .85;
    z-index: 3;
  }

  .mobile-play:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: .2;
    z-index: 2;
    top: 0;
    left: 0;
  }

  .mobile-play.mobile-active {
    display: none;
  }

  .mobile-play.mobile-active:after {
    background: #fff;
    opacity: 1;
  }

  .section-video video.mobile-active {
    padding: 38.1px 0;
  }

}

/* SECTION: WORKSHOP */
/*------------------------------------*/
.section-workshop {
  border-top: 20px solid #fff
}

.topic{
  position: relative;
  height: 850px;
  background: #313131;
  display: flex;
  align-items: center;
}

.topic:before {
  content: "";
  width: 6px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}


.topic > .wrapper {
  /*display: flex;
  align-items: center;
  justify-content: center;*/
}

.topic .content-title {
  width: 330px;
  position: absolute;
  top: 50%;
  left: 90px;
  transform: translate(0, -50%);
  text-align: right;
}

.topic .content-title h2{
  font-size: 5.4rem;
  font-weight: 900;
  color: #fff;

}
.topic > img {
  width: 100%;
  height: 850px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.topic .icon-topic  {
  width: 240px;
  height: 240px;
  border:5px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
}

.topic .icon-topic img{
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topic .icon-topic::after {
  content: "";
  width: 265px;
  height: 265px;
  border:5px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.topic .content-text {
  width: 340px;
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translate(0, -50%);
}

.topic .content-text p{
  margin: 0;
  font-size: 1.7rem;
  color: #fff;
}

.topic .content-text p ~ p{
  margin-top: 25px;
}

.topic .content-text h1, .topic .content-text h2{
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.topic .content-text p + h1{
  margin: 15px 0 0;
}

.topic .content-text h2{
  margin-bottom: 15px;
}


@media (max-width: 900px)
{
  .topic {
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 550px;
    height: auto;
    padding: 40px 0;
  }


  .topic:before {
    display: none;
  }
  .topic .content-title {
    position: static;
    text-align: center;
    transform: translate(0,0);
  }

  .topic .icon-topic {
    width: 150px;
    height: 150px;
    position: static;
    transform: translate(0,0);
    margin: 0 auto;
  }

  .topic .icon-topic:after {
    width: 170px;
    height: 170px;
    border-width: 4px
  }


  .topic .content-text {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: static;
    margin-top: 35px;
    transform: translate(0,0);
    text-align: center;
  }

  .topic .content-title h2{
    font-size: 3.5rem
  }

  .topic .content-text h1, .topic .content-text h2{
    font-size: 2.1rem
  }

  .topic .content-text p {
    font-size: 1.5rem
  }
}

/* SECTION: PROJECTS */
/*------------------------------------*/
.section-projects{
  background: #313131;
  color: #fff;
  border-top: 20px solid #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-projects:before {
  content: "";
  width: 6px;
  height: 230px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}

.section-projects .section-title {
  float: left;
  margin: 230px 0 230px 90px;
  width: 330px;
  padding: 0 15px;
  color: #fff;
  font-size: 5.6rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  z-index: 2;
}


.section-projects .icon-topic  {
  width: 240px;
  height: 240px;
  border:5px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #fff;
}

.section-projects .icon-topic img{
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-projects .icon-topic::after {
  content: "";
  width: 265px;
  height: 265px;
  border:5px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}



.wrapper-right-project {
  width: 340px;
  text-align: left;
  float: right;
  display: flex;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}





.wrapper-right-project ul li {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #313131;
  pointer-events: auto;
  position: relative;
  overflow: hidden;

}


.wrapper-right-project ul li a{
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 8px 25px;
  margin: 5px 0;
  overflow: hidden;
  z-index: 100
}



.wrapper-right-project ul li.camposintouch:before {
  background: #65A607;
}

.wrapper-right-project ul li.gojord:before {
  background: #EF7B77;
}


.wrapper-right-project ul li.fourcampos:before {
  background: #7FA1FC;
}

.wrapper-right-project ul li.hicampos:before {
  background: -webkit-linear-gradient(45deg, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: -ms-linear-gradient(45deg, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: -moz-linear-gradient(45deg, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: linear-gradient(45deg, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
}

.wrapper-right-project ul li.culturex:before {
  background: #418BCA;
}

.wrapper-right-project ul li.jordãoconectado:before {
  background: #29A9DA;
}

.wrapper-right-project ul li.sabores:before {
  background: #FD724B;
}

.wrapper-right-project ul li.desafio:before {
  background: -webkit-linear-gradient(45deg, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: -ms-linear-gradient(45deg, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: -moz-linear-gradient(45deg, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: linear-gradient(45deg, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
}

.wrapper-right-project ul li.horto:before {
  background: #006325;
}



@media (max-width: 900px) {
  .section-projects:before {
    display: none;
  }

  .section-projects .section-title {
    font-size: 3.5rem;
    float: none;
    clear: both;
    display: block;
    margin: 80px 0 220px 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
  }

  .section-projects .icon-topic{
    width: 150px;
    height: 150px;
    top: 160px;
  }

  .section-projects .icon-topic:after {
    width: 170px;
    height: 170px;
    border-width: 4px;
  }

  .wrapper-right-project {
    width: 100%;
    position: static;
    float: none;
    display: block;
    transform: translateY(0);
    margin: 50px 0 80px;;
    text-align: center;
  }
}


.project {
  width: 100%;
  position: relative;
  padding: 110px 0;
  border-top: 20px solid #fff;
}


/* EVEN */
.project > .wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0 35px;
}

/*.project:nth-child(odd)*/
.project .logo {
  padding: 70px;
  background: #fff;
  border-radius: 50%;
  max-width: 350px;
  position: relative;
}


.project .logo:before {
  content: "";
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 385px;
  height: 385px;
  border-radius: 50%;
  border: 4px solid #fff;

}


.project .content {
  width: 550px;
  margin-left: 50px;
  text-align: left;
}


.project .content > .name {
  margin-bottom: 45px;
}

.project .content > .authors {
  font-size: 2.4rem;
  font-weight:700;
  padding-left: 35px;
  margin: 0 0 15px;
  clear: both;
}

.project .content > .authors:last-of-type {
  margin-bottom: 60px;
}

.project .content > .btn {
  background: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 26px;
  text-decoration: none;
  padding: 12px 26px;
}

.pdfViewer {
  border: 1px solid #ddd !important;
}

.overlay{
  background: rgba(0,0,0,0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 11;
  display: none;
}

.overlay.active {
  display: flex;
}

.overlay-demo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
  display: none;
}

.overlay-demo.active {
  display: block;
}

.overlay-demo.camposintouch {
  background: #65A607;
}

.overlay-demo.gojord {
  background: #EF7B77;
}

.overlay-demo.fourcampos {
  background: #7FA1FC;
}

.overlay-demo.hicampos {
  background: -webkit-linear-gradient(top, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: -ms-linear-gradient(top, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: -moz-linear-gradient(top, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: linear-gradient(to bottom, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
}

.overlay-demo.saboresdecampos {
  background: #FD724B;
}

.overlay-demo.jordaoconectado {
  background: #29A9DA;
}

.overlay-demo.hortoroots {
  background: #006325;
}

.overlay-demo.desafiojordao {
  background: -webkit-linear-gradient(top, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: -ms-linear-gradient(top, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: -moz-linear-gradient(top, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: linear-gradient(to bottom, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
}

.overlay-demo.culturex {
  background: #418BCA;
}



.project .wrap-video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  display: none;
  justify-content: center;
  align-items: center;
}

.project .wrap-video.active {
  display: flex;
}

.project .video-project, .project .viewer-pdf {
  width: 500px;
  height: 400px;
  float: left;
  z-index: 3;
  transform: translateY(10%);
  transition: 0.9s ease all;
  visibility: hidden;
  opacity: 0;
  display: none;
}

.pdfViewer {
  width: 500px;
  height: 400px;
}

.project .video-project.active, .project .viewer-pdf.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.project .wrap-video .video-close{
  position: absolute;
  top: 20px;
  right: 20px;
	width: 50px;
	height: 50px;
}

.project .wrap-video .video-close:before, .project .wrap-video .video-close:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 4px;
  z-index: 99;
  background: #fff;
}

.project .wrap-video .video-close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.project .wrap-video .video-close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}



.project .demo-overlay{
  position: absolute;
  width: 1100px;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  right: 0;
}


.project .demo-overlay .close{
  position: absolute;
	top: 30px;
	left: -70px;
	width: 50px;
	height: 50px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%
}

.project .demo-overlay .close:before, .project .demo-overlay .close:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 4px;
  z-index: 99;
  background: #fff;
}

.project .demo-overlay .close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.project .demo-overlay .close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}


/*
.project .demo-overlay .viewer-pdf{
  float: right;
  width: 550px;
}

.project .demo-overlay .crop-video {
  width: 550px;
  height: 100%;
  position: relative;
  float: right;
  overflow: hidden;
}

.project .demo-overlay .video {
  object-fit: cover;
  width: 100%;
  height: 100%
}

.project:nth-child(odd) .demo-overlay{
  left: 0;
  right: auto;
}

.project:nth-child(odd) .demo-overlay .close{
  right: -70px;
  left: auto;
}

.project:nth-child(odd) > .demo-overlay .viewer-pdf, .project:nth-child(odd) .demo-overlay .crop-video{
  float: left;
}*/

@media (max-width: 900px)
{
  .project {
    padding: 50px 0;
  }
  .project > .wrapper {
    display: block;
    padding: 0 15px;
  }

  .project .logo {
    width: 130px;
    padding: 25px;
    margin: 0 auto;
  }

  .project .logo::before {
    width: 145px;
    height: 145px;
    border: 3px solid #fff;
  }

  .project .content {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .project .content .name{
    margin: 15px auto 30px auto;
    width: 150px
  }
  .project .content > .authors {
    font-size: 1.5rem;
    font-weight:700;
    padding-left: 0;
    text-align: center;
  }

  .project .content > .authors:last-of-type {
    margin-bottom: 5  0px;
  }
  .project .content > .btn {
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 26px;
    text-decoration: none;
    padding: 8px 18px;
  }

  .project .wrap-video.active {
    display: block;
    top: 51px;
    height: calc(100vh - 51px);
    overflow: auto;
    padding-bottom: 100px;
  }
  .project .wrap-video .subtitle{
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 50px 0 10px;
  }

  .project .wrap-video .video-project {
    width: 75%;
    height: auto;
    float: none;
    display: block;
    margin: 80px auto 0 auto;
  }

  .project .wrap-video .video-project.horizontal {
    width: 90%
  }

  .project .wrap-video .viewer-pdf {
    width: 100%;
    height: auto;
    margin: 30px auto 0;
    float: none;
    display: block;
  }

  .pdfViewer {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .project .wrap-video .video-close{
    position: absolute;
    top: 10px;
    right: 10px;
  }
}


/* ODD */
.project:nth-child(odd) > .wrapper {
  flex-direction: row-reverse;
}

.project:nth-child(odd) .content {
  margin-left: 0;
  margin-right: 50px;
}

.project:nth-child(odd) .content > .authors {
  padding-left: 0;
  padding-right: 35px;
}

.project:nth-child(odd) .content > .name {
  float: right;
}
.project:nth-child(odd) .content{
  text-align: right;
}

@media (max-width: 900px) {
  .project:nth-child(odd) .content > .name {
    float: none;
  }

  .project:nth-child(odd) .content{
    text-align: center;
    margin: 0 auto;
  }

  .project:nth-child(odd) .content > .authors {
    padding-right: 0;
  }
}



.project.project-campos-in-touch {
  background: #65A607 url(../img/1/1-bg-campos-in-touch.png) no-repeat right bottom;
  background-size: 500px;
}

.project.project-campos-in-touch .btn {
  color: #65A607;
}



.project.project-go-jord {
  background: #EF7B77 url(../img/2/2-bg-go-jord.png) no-repeat left bottom;
  background-size: 450px;
}

.project.project-go-jord .btn {
  color: #EF7B77;
}



.project.project-4-campos {
  background: #7FA1FC url(../img/3/3-bg-4-campos.png) no-repeat right bottom;
  background-size: 700px;
}

.project.project-4-campos .btn {
  color: #7FA1FC;
}



.project.project-hi-campos {
  background: -webkit-linear-gradient(top, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: -ms-linear-gradient(top, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: -moz-linear-gradient(top, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
  background: linear-gradient(to bottom, rgb(3, 51, 82) 0%, rgb(41, 120, 115) 60%, rgb(85, 203, 156) 100%);
}

.project.project-hi-campos::after {
  content: url('../img/4/4-bg-hi-campos.png');
  width: 50%;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.project.project-hi-campos .btn {
  color: #3DA98B;
}



.project.project-sabores-campos {
  background: #FD724B url(../img/5/5-bg-sabores-de-campos.png) no-repeat right bottom;
  background-size: 510px;
}

.project.project-sabores-campos .btn {
  color: #FD724B;
}



.project.project-jordao-conectado {
  background: #29A9DA url(../img/6/6-bg-jordao-conectado.png) no-repeat 150px bottom;
  background-size: contain;
}

.project.project-jordao-conectado .btn {
  color: #29A9DA;
}



.project.project-horto-roots {
  background: #006325 url(../img/7/7-bg-horto-roots.png) no-repeat right top;
  background-size: 550px;
}

.project.project-horto-roots .btn {
  color: #006325;
}



.project.project-horto-roots {
  background: #006325 url(../img/7/7-bg-horto-roots.png) no-repeat right top;
  background-size: 550px;
}

.project.project-horto-roots .btn {
  color: #006325;
}



.project.project-desafio-jordao {
  background: url(../img/8/8-bg-desafio-jordao.png) no-repeat, -webkit-linear-gradient(top, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: url(../img/8/8-bg-desafio-jordao.png) no-repeat, -ms-linear-gradient(top, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: url(../img/8/8-bg-desafio-jordao.png) no-repeat, -moz-linear-gradient(top, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background: url(../img/8/8-bg-desafio-jordao.png) no-repeat, linear-gradient(to bottom, rgb(255, 124, 41) 0%, rgb(215, 144, 76) 44%, rgb(161, 170, 122) 64%, rgb(107, 197, 169) 84%, rgb(65, 217, 205) 100%);
  background-size: cover;
}

.project.project-desafio-jordao .btn {
  color: #3DA98B;
}



.project.project-culture-ex {
  background: #418BCA url(../img/9/9-bg-culture-ex.png) no-repeat right bottom;
  background-size: 500px;
}

.project.project-culture-ex .btn {
  color: #418BCA;
}

@media (max-width: 900px) {
  .project.project-campos-in-touch {
    background-size: 400px;
    background-position: -180px bottom;
  }

  .project.project-4-campos {
    background-size: 300px;
  }

  .project.project-hi-campos::after {
    display: none;
  }

  .project.project-sabores-campos {
    background-size: 250px;
    background-position: right bottom;
  }

  .project.project-jordao-conectado {
    background-position: left bottom;
  }

  .project.project-horto-roots {
    background-size: 100%;
  }

  .project.project-culture-ex {
    background-size: 80%;
  }
}


/* SECTION: TEAM */
/*------------------------------------*/

.section-team {
  background: #313131;
  color: #fff;
  border-top: 20px solid #fff;
  text-align: center;
  position: relative;
}

.section-team::after {
  content: "";
  width: 6px;
  height: 230px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.section-team .section-title {
  width: 330px;
  display: inline-block;
  float: left;
  margin-top: 210px;
  margin-left: 90px;
  margin-bottom: 220px;
  padding: 0 15px 0 0;
  color: #fff;
  font-size: 5.4rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}
.section-team .icon-topic  {
  width: 240px;
  height: 240px;
  border:5px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #fff;
}

.section-team .icon-topic img{
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-team .icon-topic::after {
  content: "";
  width: 265px;
  height: 265px;
  border:5px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}


.section-team .wrap-subtitle {
  /*float: left;*/
  float: right;
  margin-top: 160px;
  margin-left: 50px;
  /*display: flex;*/
  justify-content: space-between;
  width:500px;
}

.section-team .section-subtitle {
  display: block;
  margin: 15px 0 20px;
  padding: 10px 35px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}




/*
.section-title:before {
  content: "";
  width: 6px;
  height: 150px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: -150px;
  transform: translateX(-50%);
  z-index: 1;
}*/

@media (max-width: 900px) {
  .section-team .section-title {
    font-size: 5rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

}


.team-list {
  width: 100%;
  text-align: left;
  margin-bottom: 80px;
  overflow: auto;
}


.team-list h3 {
  color: #fff;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 900;
  text-align: left;
  margin-left: 69.3%
}

.team-list > ul {
  width: 80%;
  margin: 0 auto;
  overflow: auto;
}

.team-list > ul > .team-list-item {
  width: 28%;
  float: left;
  font-size: 2.0rem;
  margin: 20px 2.65% 0 2.65%;
}


@media (max-width: 1400px) {
  .team-list > ul > .team-list-item {
    width: 33.3%;
    float: left;
    font-size: 2rem;
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .section-team::after {
    display: none;
  }

  .section-team .section-title {
    font-size: 3.5rem;
    float: none;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
  }

  .section-team .icon-topic {
    width: 150px;
    height: 150px;
  }

  .section-team .icon-topic::after {
    width: 170px;
    height: 170px;
    border-width: 4px;
  }

  .team-list {
    margin-bottom: 20px
  }

  .team-list h3 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    margin-left:0;
  }

  .team-list > ul > .team-list-item {
    width: 100%;
    float: none;
    font-size: 1.3rem;
    margin-top: 7px;
    margin-left: 0;
    margin-right: 0;
  }

  .team-list > ul > .team-list-item:nth-child(odd){
    margin-left: 0%;
  }

}

/* FOOTER */
/*------------------------------------*/
.main-footer {
  background: #fff;
  text-align: center;
  padding: 50px 0;
}

.main-footer > h2 {
  color: #000;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 24px 0;
}

.main-footer > h2 > strong {
  font-weight: 900;
}

.main-footer > h2 + p{
  margin: 0;
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .main-footer{
    padding: 25px 10px;
  }

  .main-footer > h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .main-footer > h2 + p{
    font-size: 1.1rem
  }
}
