/*-------------FONTS---------------*/

@font-face {
  font-family: Gilroy;
  src: url(Fonts/Gilroy-Light.otf);
  font-weight: 100;
  font-style: normal;
  -webkit-text-stroke: 0.7px;
}

/*-------------GERAL---------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Gilroy;
}

html {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
}

body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #f6f6f6;
}

/*-------------TIPOGRAFIA---------------*/

b {
  color: #336392;
}

hr {
  border: 4px solid #ffb31e;
  margin-bottom: 40px;
  margin-top: 40px;
}

h1 {
  font-family: Gilroy;
  font-style: normal;
  font-weight: bold;
  line-height: 60px;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
}

h2 {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 75px;
  padding-bottom: 30px;
}

h3 {
  font-family: Gilroy;
  font-style: normal;
  font-weight: bold;
  line-height: 25px;
  font-size: 25px;
  margin-bottom: 15px;
}

h4 {
  font-family: Gilroy;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #37ada8;
  text-transform: uppercase;
}

h5 {
  font-family: Gilroy;
  font-style: normal;
  line-height: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #5d5453;
  text-transform: uppercase;
}

p {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 100;
  line-height: 32px;
  font-size: 21px;
}

p small {
  font-size: 21px;
}

a {
  color: #000;
  text-decoration: none;
  font-family: Gilroy;
  font-style: normal;
}

/*-------------HEADER---------------*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  /* padding:0 100px; */
  background-image: linear-gradient(to top, #042c51, #07325a);
  box-sizing: border-box;
  z-index: 9999;
  transition: top 0.2s ease-in-out;
}

/*------LOGO--------*/

header .logo {
  float: left;
  padding-left: 20px;
}

header .logo img {
  height: 60px;
  padding: 10px;
}

header .logo1 {
  float: left;
  width: 350px;
  padding-left: 20px;
}

header .logo1 img {
  height: 60px;
  padding: 10px;
  float: left;
}

header .logo1 img:after {
  content: "";
  display: block;
  clear: both;
}

header .logo1 h1 {
  padding: 15px 0 0 0px;
  line-height: 20px;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: 900;
}

header .logo1 h2 {
  padding: 0;
  float: left;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #336392;
}

/*------NAV--------*/

header nav {
  float: right;
  margin-right: 10px;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  color: #fff;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 0 18px;
  cursor: default;
  display: block;
  transition: ease-in-out 0.2s;
}

header nav ul li a:hover,
header nav ul li a.joinnow:hover,
header nav ul li a.active:hover {
  color: #336392;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.125);
}

header nav ul li a.joinnow {
  background-color: #336392;
  /* background-color: #5a9fe2; */
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.225);
}

header nav ul li a.active {
  color: #fff;
  /* background-color: #577b84;  */
  background-color: #5a9fe2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.225);
}

header nav ul li a img {
  width: 30px;
  margin:15px 0 0 0;
}

.menu-bar {
  display: none;
  color: #fff;
  float: right;
  line-height: 60px;
  font-size: 24px;
}

#lang {
  width: 80%;
  margin: 0 auto;
}

#lang a {
  display: inline-block;
  width: 50%;
  margin: 0 auto;
  float: left;
}

/*------MENU DROPDOWN--------*/

.btnhover {
  float: right;
  overflow: hidden;
}

.visible {
  display: none;
}

.invisible {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 210px;
  width: 229px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-left: -125px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  line-height: 40px;
  border-bottom: 1px solid rgb(134, 134, 134);
}

.dropdown-content a:nth-child(3) {
  display: inline-block;
  border-bottom: none;
  width: 50%;
  float: left;
  margin: 0 auto;
}

.dropdown-content a:nth-child(4) {
  display: inline-block;
  width: 50%;
  margin: 0 auto;
  border-bottom: none;
  border-left: 1px solid rgb(134, 134, 134);
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.btnhover:hover .dropdown-content {
  display: block;
}
/*-------------MAIN---------------*/

main {
  width: 100%;
  margin-top: 60px;
  background-color: #f6f6f6;
}

main:after {
  content: "";
  display: table;
  clear: both;
}

/*-------------FORMULARIO---------------*/

#formulario iframe {
  height: 100vh;
}

/*-------------SPONSORS---------------*/

#sponsors {
  padding-bottom: 45px;
  background-color: #fff;
}

#sponsors h2 {
  padding-bottom: 30px;
  padding-top: 40px;
  border-bottom: 1px solid #07325a21;
}

#sponsors .item .thumb1,
#sponsors .item .thumb2,
#sponsors .item .thumb3,
#sponsors .item .thumb4,
#sponsors .item .thumb5,
#sponsors .item .thumb6,
#sponsors .item .thumb7,
#sponsors .item .thumb8,
#sponsors .item .thumb9,
#sponsors .item .thumb10,
#sponsors .item .thumb11,
#sponsors .item .thumb12,
#sponsors .item .thumb13,
#sponsors .item .thumb14,
#sponsors .item .thumb15,
#sponsors .item .thumb16,
#sponsors .item .thumb17,
#sponsors .item .thumb18,
#sponsors .item .thumb19,
#sponsors .item .thumb20,
#sponsors .item .thumb21,
#sponsors .item .thumb22,
#sponsors .item .thumb23,
#sponsors .item .thumb24,
#sponsors .item .thumb25,
#sponsors .item .thumb26,
#sponsors .item .thumb27,
#sponsors .item .thumb28,
#sponsors .item .thumb29,
#sponsors .item .thumb30,
#sponsors .item .thumb31,
#sponsors .item .thumb32,
#sponsors .item .thumb33,
#sponsors .item .thumb34,
#sponsors .item .thumb35,
#sponsors .item .thumb36,
#sponsors .item .thumb37,
#sponsors .item .thumb38,
#sponsors .item .thumb39 {
  width: 100%;
  height: 200px;
  margin: 0 auto 30px auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#sponsors .item .thumb1 {
  background-image: url("../IMAGENS/Sponsors/CamaraTV.jpg");
}
#sponsors .item .thumb2 {
  background-image: url("../IMAGENS/Sponsors/Logos/mauser.png");
}

#sponsors .item .thumb3 {
  background-image: url("../IMAGENS/Sponsors/Logos/fabfundation.png");
}
#sponsors .item .thumb4 {
  background-image: url("../IMAGENS/Sponsors/LabCenter.jpg");
}

#sponsors .item .thumb5 {
  background-image: url("../IMAGENS/Sponsors/Logos/fablabschooldk.jpg");
}
#sponsors .item .thumb6 {
  background-image: url("../IMAGENS/Sponsors/Logos/liceupolitecnic.jpg");
}
#sponsors .item .thumb7 {
  background-image: url("../IMAGENS/Sponsors/Logos/PEF.jpg");
}
#sponsors .item .thumb8 {
  background-image: url("../IMAGENS/Sponsors/Logos/charlote.jpg");
}
#sponsors .item .thumb9 {
  background-image: url("../IMAGENS/Sponsors/Logos/NOVAFCSH.png");
}
#sponsors .item .thumb10 {
  background-image: url("../IMAGENS/Sponsors/Logos/oulu.jpg");
}
#sponsors .item .thumb11 {
  background-image: url("../IMAGENS/Sponsors/Logos/opolab.jpg");
}
#sponsors .item .thumb12 {
  background-image: url("../IMAGENS/Sponsors/Logos/VENDADOPINHEIRO.png");
}
#sponsors .item .thumb13 {
  background-image: url("../IMAGENS/Sponsors/Logos/arteestudioimaginario.png");
}
#sponsors .item .thumb14 {
  background-image: url("../IMAGENS/Sponsors/Logos/fablabkamp.jpg");
}
#sponsors .item .thumb15 {
  background-image: url("../IMAGENS/Sponsors/Logos/fablabBenfica.png");
}
#sponsors .item .thumb16 {
  background-image: url("../IMAGENS/Sponsors/Logos/ESELx.png");
}
#sponsors .item .thumb17 {
  background-image: url("../IMAGENS/Sponsors/Logos/VIVALAB.jpg");
}
#sponsors .item .thumb18 {
  background-image: url("../IMAGENS/Sponsors/Logos/hardwareCity.png");
}
#sponsors .item .thumb19 {
  background-image: url("../IMAGENS/Sponsors/Logos/Plux.png");
}
#sponsors .item .thumb20 {
  background-image: url("../IMAGENS/Sponsors/Logos/IT.png");
}
#sponsors .item .thumb21 {
  background-image: url("../IMAGENS/Sponsors/Logos/IPLeiria.png");
}

#sponsors .item .thumb23 {
  background-image: url("../IMAGENS/Sponsors/Logos/fct.png");
}
#sponsors .item .thumb24 {
  background-image: url("../IMAGENS/Sponsors/Logos/ATV.png");
}
#sponsors .item .thumb36 {
  background-image: url("../../IMAGENS/Sponsors/Logos/MariaSilva.jpeg");
}


#sponsors .item .thumb25 {
  background-image: url("../IMAGENS/Sponsors/Logos/Arte_TRansformer.jpg");
}
#sponsors .item .thumb26 {
  background-image: url("../IMAGENS/Sponsors/Logos/IPSSetubal.png");
}
#sponsors .item .thumb27 {
  background-image: url("../IMAGENS/Sponsors/Logos/ISCTE.png");
}
#sponsors .item .thumb28 {
  background-image: url("../IMAGENS/Sponsors/Logos/BEE.png");
}
#sponsors .item .thumb29 {
  background-image: url("../IMAGENS/Sponsors/Logos/FABLABEDP.png");
}
#sponsors .item .thumb30 {
  background-image: url("../IMAGENS/Sponsors/Logos/dotesfera.jpg");
}
#sponsors .item .thumb31 {
  background-image: url("../IMAGENS/Sponsors/Logos/CERFF.jpg");
}
#sponsors .item .thumb32 {
  background-image: url("../IMAGENS/Sponsors/Logos/XYZLAB.jpg");
}
#sponsors .item .thumb33 {
  background-image: url("../IMAGENS/Sponsors/Logos/3DWays.png");
}
#sponsors .item .thumb35 {
  background-image: url("../IMAGENS/Sponsors/Logos/isicom.png");
}
#sponsors .item .thumb37 {
  background-image: url("../../IMAGENS/Sponsors/Logos/inforpuzzle.jpeg");
}
#sponsors .item .thumb38 {
  background-image: url("../../IMAGENS/Sponsors/Logos/hp.jpg");
}


#sponsors .item .thumb34 {
  background-image: url("../IMAGENS/Sponsors/Logos/lababerto.png");
}

/*---------------------------------*/
/*-------------Video---------------*/
/*---------------------------------*/
#vid{
  background-color: #efefef;
}

.videoWrapper {
  width:80%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 45%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------intro---------------*/

#intro {
  width: 100%;
  background-image: linear-gradient(to top, #37ada8, #46bfba);
  padding-top: 30px;
  padding-bottom: 45px;
  color: #fff;
  text-align: center;
}

#intro h2{
  font-size: 55px;
}

#intro h2.web {
  font-size: 40px;
  padding-top: 10px; 
  color:#063058
}

#intro .excerto p{
  margin:0 50px;
}

#intro h3{
  border-radius: 5px;
  padding: 1%;
  width: 80%;
  margin: 1% auto;
}

.blue{
  background-color: #063058;
  border: 1px solid #063058;
}

.yellow{
  background-color: #F9C74F;
  border: 1px solid #F9C74F;
}

.orange{
  background-color: #F8961E;
  border: 1px solid #F8961E;
}

/*-------------MISSION/COMPANY NOTE---------------*/

#mcntext {
  padding-bottom: 45px;
}
#mcntext h2 {
  padding-bottom: 50px;
  font-family: Gilroy;
  line-height: normal;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.12em;
}

#mcntext h3 {
  /* padding-bottom: 50px; */
  font-family: Gilroy;
  line-height: normal;
  text-transform: uppercase;
  font-size: 22px;
  text-align: left;
  letter-spacing: 0.12em;
  color: #336392;
  z-index: 5;
}

#mcntext h4 {
  font-size: 12px;
  padding:0 0 40px 0
}

#mcntext p {
  line-height: 39px;
  font-size: 20px;
  padding-bottom: 45px;
  text-align: justify;
}

#mcntext ul {
  margin-bottom: 25px;
  list-style: none;
}

#mcntext li {
  margin-left: 50px;
  width: 100%;
  display: inline-flex;
}

#mcntext .pricing {
  margin: 0 0 2% 2%;
}

#mcntext .tituloconta p {
  font-size: 17px;
}

#mcntext li i {
  margin: 0 1%;
  line-height: 40px;
}

#mcntext li p {
  line-height: 39px;
  font-size: 20px;
  padding-bottom: 0;
  text-align: justify;
}

#mcntext li p strong {
  font-weight: 800;
}

/*------DOWNLOAD--------*/

#mcntext .download h4 {
  font-size: 14px;
  line-height: 20px;
}

#mcntext .download i {
  font-size: 22px;
  color: #336392;
}

/*-------------SPEAKERS---------------*/

#speakers {
  padding-bottom: 45px;
}

#speakers h2 {
  padding-bottom: 100px;
}

#speakers h3 {
  font-family: Gilroy;
  /* line-height: 60px; */
  font-size: 30px;
  text-align: left;
  margin: 0;
}

#speakers h4 {
  font-family: Gilroy;
  line-height: 30px;
  font-size: 16px;
  text-align: left;
  margin-bottom: 30px;
  color: #2da59a;
}

#speakers p {
  line-height: 20px;
  font-size: 14px;
  text-align: justify;
}

#speakers .speakeritem {
  height: 180px;
  margin-left: 220px;
  margin-bottom: 10px;
  padding-top: 25px;
}

#speakers .item {
  /* background-color: #eaeaea; */
  margin: 1.2em;
  padding: 1em;
  /* border:1px solid #d8d8d8; */
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 1px 5px #d8d8d8;
}

#speakers .item .thumb,
#speakers .item .thumb1,
#speakers .item .thumb2,
#speakers .item .thumb3,
#speakers .item .thumb4,
#speakers .item .thumb5,
#speakers .item .thumb6,
#speakers .item .thumb7,
#speakers .item .thumb8,
#speakers .item .thumb9,
#speakers .item .thumb10,
#speakers .item .thumb11,
#speakers .item .thumb12,
#speakers .item .thumb13 {
  width: 180px;
  height: 180px;
  background-color: #c4c4c4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  float: left;
}

#speakers .item .thumb {
  background-image: url("../IMAGENS/iconPessoa.png");
}

#speakers .item .thumb1 {
  background-image: url("../IMAGENS/Speakers/Hanne.jpg");
}
#speakers .item .thumb2 {
  background-image: url("../IMAGENS/Speakers/Ferdi.jpg");
}
#speakers .item .thumb3 {
  background-image: url("../IMAGENS/Speakers/michaelStone.png");
}
#speakers .item .thumb4 {
  background-image: url("../IMAGENS/Speakers/tom.jpg");
}
#speakers .item .thumb5 {
  background-image: url("../IMAGENS/Speakers/LizWhitewolf.jpg");
}
#speakers .item .thumb6 {
  background-image: url("../IMAGENS/Speakers/francisco.jpg");
}
#speakers .item .thumb7 {
  background-image: url("../IMAGENS/Speakers/mikko.jpg");
}
#speakers .item .thumb8 {
  background-image: url("../IMAGENS/Speakers/joaofeyo.jpg");
}
#speakers .item .thumb9 {
  background-image: url("../IMAGENS/Speakers/Fernanda\ Rollo.jpg");
}
#speakers .item .thumb10 {
  background-image: url("../IMAGENS/Speakers/Miquel.JPG");
}

#speakers .item .thumb11 {
  background-image: url("../IMAGENS/Speakers/hugosilva.JPG");
}
#speakers .item .thumb12 {
  background-image: url("../IMAGENS/Speakers/JoseMoura.jpg");
}
#speakers .item .thumb13 {
  background-image: url("../IMAGENS/Speakers/AnaAlvesPereira.png");
}

/*-------------MENTORS---------------*/

#mentors {
  padding-bottom: 45px;
}

#mentors h2 {
  padding-bottom: 100px;
}

#mentors h3 {
  font-family: Gilroy;
  /* line-height: 60px; */
  font-size: 30px;
  text-align: left;
  margin: 0;
}

#mentors h4 {
  font-family: Gilroy;
  line-height: 30px;
  font-size: 16px;
  text-align: left;
  margin-bottom: 30px;
  color: #2da59a;
}

#mentors p {
  /* line-height: 20px; */
  font-size: 14px;
  text-align: justify;
}

#mentors .item {
  /* background-color: #eaeaea; */
  margin: 1.2em;
  padding: 1em;
  /* border:1px solid #d8d8d8; */
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 1px 5px #d8d8d8;
}

#mentors .trainers {
  margin-top: 25px;
  text-align: center;
}

#mentors .trainers p,
#mentors .trainers h3,
#mentors .trainers h4 {
  text-align: center;
}

/*-------------REDES SOCIAIS---------------*/

#social {
  width: 100%;
  /* background-color: #FFB31E; */
  background-image: linear-gradient(to top, #37ada8, #46bfba);
  text-align: center;
  padding-bottom: 15px;
  padding-top: 15px;
}

#social img {
  display: inline;
  height: 45px;
  width: 45px;
  margin: 2px 8px 0 8px;
  transition: 0.2s;
}

#social img:hover {
  transform: scale(1.1);
}

#social .desktop {
  display: inherit;
}

#social .mobile {
  display: none;
}

/*-------------FOOTER---------------*/

footer {
  position: relative;
  width: 100%;
  background: #000;
  padding-top: 30px;
  padding-bottom: 30px;
}

footer h3 {
  color: #fff;
  line-height: 26px;
  font-size: 24px;
}

footer p {
  line-height: 24px;
}
footer p small {
  color: #fff;
  font-size: 15px;
}

footer a {
  line-height: 15px;
  font-size: 21px;
}

footer p.contact {
  background-color: #336392;
  color: #fff;
  width: 30%;
  font-size: 15px;
  text-align: center;
  line-height: 30px;
  padding-bottom: 0;
  transition: 0.2s;
}

footer p.contact:hover {
  background-color: #ddd;
  color: #336392;
}

/*-------------PROGRAM---------------*/

#program {
  /* padding: 20px 45px; */
  margin: 0 10%;
}

#program h2 {
  padding-bottom: 20px;
}

#program h3{
  font-size: 28px;
  text-align: center;
}

#program h5{
  font-size: 28px;
  text-align: center;
  color:#000;
  padding-bottom: 50px;
}

#program .download {
  width: 100%;
  float: right;
  padding: 0.1em;
}

#program .download p {
  float: right;
  font-size: 18px;
  line-height: 25px;
  padding: 0;
}

#program .download i {
  font-size: 26px;
  line-height: 24px;
  padding: 0 0.2em;
  color: #336392;
}

#program .container {
  width: 90%;
}

.program_table {
  margin-bottom: 40px;
  box-shadow: 3px 3px 6px #00000012;
}

.program_table {
  font-family: "Gilroy";
  border-collapse: collapse;
  width: 100%;
}

.program_table td,
.program_table th {
  border: 1px solid #ddd;
  padding: 10px;
}

.program_table td {
  text-align: center;
}

.program_table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #5a9fe2;
  color: white;
}

.breakLunch {
  background-color: #e4e4e4;
}

.program_table strong{
  color:#5a9fe2;
  font-weight: 200;
  font-size: 14px;
  cursor: pointer;
}

.popupBox{
  top: 60px;
  left: 0;
  position: fixed;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  
}

.popupBoxWrapper {
  width: 650px; /*alterar mobile para 350*/
  margin: 5% auto;
  text-align: left;
  
}

.popupBoxContent {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
}

.popupBoxContent p {
  margin-top:32px;
  line-height: 24px;
  font-size: 15px;
  text-align: justify;
}

.popupBoxContent h3 {
  font-size: 18px;
}

.popupBoxContent h2 {
  font-size: 16px;
  padding:0;
  text-align: left;
  color:#5a9fe2;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.titulo h4{
  color: #042d52;
  font-size: 14px;
  margin: 10px 0 40px 0;
  text-transform: initial;
}

/*-------------PRICING---------------*/

#pricing {
  padding-bottom: 45px;
}
#pricing h2 {
  padding-bottom: 50px;
  font-family: Gilroy;
  line-height: normal;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.12em;
}

#pricing h3 {
  padding-bottom: 10px;
  font-family: Gilroy;
  line-height: normal;
  text-transform: uppercase;
  font-size: 25px;
  text-align: left;
  letter-spacing: 0.12em;
  color: #336392;
}

#pricing h4 {
  /* padding-bottom: 50px; */
  font-family: Gilroy;
  line-height: normal;
  text-transform: uppercase;
  font-size: 11px;
  text-align: left;
  letter-spacing: 0.12em;
  color: #336392;
}

#pricing p {
  line-height: 39px;
  font-size: 18px;
  padding-bottom: 45px;
  text-align: justify;
}

/*-------------CONTACTS---------------*/

#contatos {
  padding-bottom: 45px;
}

#contatos h2 {
  padding-bottom: 100px;
}

#contatos p {
  padding-bottom: 80px;
}

#contatos p small {
  font-size: 18px;
}
#contatos input,
#contatos textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  box-sizing: border-box;
  margin-bottom: 15px;
  font-family: Gilroy;
  line-height: 28px;
  font-size: 21px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.225);
}

#contatos textarea {
  height: 180px;
}

#contatos input[type="submit"] {
  color: #fff;
  background: #336392;
  height: 40px;
  width: 150px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.225);
  transition: 0.2s ease-in-out;
}

#contatos input[type="submit"]:hover {
  color: #336392;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.425);
}

.input-placeholder {
  position: relative;
}

.input-placeholder input:valid + .placeholder1,
.input-placeholder input:valid + .placeholder2,
.input-placeholder textarea:valid + .placeholder3 {
  display: none;
}

.placeholder1,
.placeholder2,
.placeholder3 {
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  font-size: 18px;
  padding: 6px;
  color: #505050;
  transition: 0.5s ease-in-out;
}

/*-----MAPAS------*/

#maps {
  background-color: #c4c4c4;
  width: 100%;
  height: 600px;
}

.maps {
  width: 100%;
  height: 600px;
}


/*------------ Tema (index)-----------*/
#tema{
  padding-bottom: 45px;
}

@media (min-width: 1226px) and (max-width: 1415px) {

  header nav ul li a{
    font-size:16px;
  }

  header .logo1 {
    width: 310px;
  }

  header .logo1 h1 {
    font-size:18px;
  }

  header .logo1 h2 {
    font-size:10px;
  }

  #mcntext p{
    font-size: 18px;
  }

}

@media (min-width: 1011px) and (max-width: 1225px) {

  header nav ul li a{
    font-size:10px;
  }

  header .logo1 {
    width: 280px;
  }

  header .logo1 h1 {
    font-size:16px;
  }

  header .logo1 h2 {
    font-size:8px;
  }

  .videoWrapper {
    width:100%;
    padding-bottom: 56.25%; /* 16:9 */
  }

  .popupBox{
    top:60px;
  }

  .popupBoxWrapper{
    width:650px;
    /* margin: 30% auto; */
  }

  .popupBoxContent h3{
    font-size: 16px;
  }

  #program .popupBoxContent h2{
    font-size: 11px;
  }

  .popupBoxContent p{
    font-size: 11px;
    line-height: 16px;
    margin-top:5px;
  }

}


@media (min-width: 320px) and (max-width:1010px) {
  body::-webkit-scrollbar {
    display: none;
  }

  main {
    margin-top: 80px;
  }

  header {
    /* padding:0 20px 0 0; */
    height: 80px;
    position: fixed;
    z-index: 5;
    top: 0;
  }

  header .logo1 {
    padding-top: 5px;
    width: 310px;
  }

  header .logo1 img {
    margin:5px 0;
  }

  header .logo1 h1 {
    font-size:20px;
  }

  header .logo1 h2 {
    /* float:right; */
    font-size:12px;
    /* margin-right: 18px; */
  }

  .visible {
    display: block;
  }

  .invisible {
    display: none;
  }

  .menu-bar {
    display: block;
    position: fixed;
    right: 0;
    margin-right: 30px;
    line-height: 80px;
    z-index: 99999;
  }

  .btnhover {
    display: none;
  }

  .nav-up {
    top: -80px;
  }

  header nav {
    /* display: none; */
    position: fixed;
    width: 100%;
    height: calc(100vh - 60px);
    background: #333;
    top: 80px;
    left: -100%;
    z-index: 2;
    transition: 0.5s;
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    display: block;
    text-align: center;
  }

  header nav ul a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  header .logo {
    width: 100%;
    text-align: center;
  }

  header .logo img {
    height: 80px;
  }

  .program_table strong{
    font-size: 10px;
  }

  #program h3,
  h3 {
    line-height: 22px;
    font-size: 18px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 8px;
  }

  p {
    line-height: 24px;
    font-size: 14px;
    text-align: justify;
  }

  p small {
    font-size: 18px;
  }

  #mcntext p {
    font-size: 16px;
    line-height: 24px;
  }

  .item {
    margin-bottom: 30px;
  }

  /*intro*/
  #vid .container{
    width:100%;
  }

  .videoWrapper {
    width:100%;
    padding-bottom: 56.25%; /* 16:9 */
  }

  #intro h2 {
    font-size: 25px;
    padding-top:25px;
    padding-bottom: 25px;
  }

  #intro h2.web {
    font-size: 20px;
    padding-top: 10px; 
    color:#063058
  }

  #intro .excerto p{
    margin:0 25px;
    text-align: center;
  }

  #intro .excerto h3{
    width: 90%;
  }

  footer p {
    padding-bottom: 10px;
  }

  footer h3 {
    text-align: center;
  }

  footer .conteudo {
    text-align: center;
  }

  footer p small {
    font-size: 14px;
  }

  footer p.contact {
    margin: 0 auto;
  }

  #speakers .container {
    width: 100%;
  }

  #speakers h3 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 5px;
  }
  #speakers h4 {
    text-align: center;
    font-size: 14px;
  }
  #speakers p {
    line-height: 16px;
    font-size: 12px;
  }

  #speakers .excerto p {
    text-align: center;
  }

  #speakers h2 {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  #speakers .speakeritem {
    /* margin-bottom: 110px; */
    margin-left: 0;
    height:90px;
  }

  #speakers .item .organize {
    margin: 0 20% 5% 20%;
  }

  #mentors .trainers h3,
  #trainer .trainers h3 {
    line-height: 30px;
  }

  #mentors h2,
  #trainer h2 {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  #mentors h4 {
    margin-bottom: 10px;
  }

  #formulario .container {
    width: 100%;
  }

  #formulario .row {
    margin: 0;
  }

  #formulario h2 {
    padding-top: 40px;
  }

  #formulario iframe {
    overscroll-behavior: none;
    scroll-behavior: smooth;
    height: 90vh;
  }

  #info .container {
    width: 90%;
  }

  #info h2 {
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 22px;
  }

  #info .titulo.loc {
    margin-top: 5%;
    padding-top: 20px;
    background-color: #f6f6f6;
    box-shadow: 5px 2px 7px rgba(0, 0, 0, 0.137);
  }

  #info h2.acomod {
    font-size: 20px;
    letter-spacing: 5px;
  }

  #info p.acomo {
    font-size: 12px;
    letter-spacing: 1px;
  }

  #mcntext .container {
    width: 90%;
  }

  #mcntext h2 {
    padding-top: 40px;
    padding-bottom: 30px;
    font-size: 22px;
  }

  #mcntext li p {
    font-size: 14px;
  }

  #mcntext .icons .icon1,
  #mcntext .icons .icon2,
  #mcntext .icons .icon3 {
    width: 40px;
    height: 40px;
    top: -10px;
  }

  /* Pagina company note */

  #mcntext li {
    margin-left: 10px;
  }

  #contatos input[type="submit"] {
    width: 100%;
  }

  #social .desktop {
    display: none;
  }

  #social .mobile {
    display: inherit;
  }

  #maps,
  .maps {
    height: 240px;
  }

  #vid h2 {
    font-size: 20px;
  }

  #sponsors {
    padding-top: 60px;
  }
  #sponsors h2 {
    font-size: 18px;
    padding-top: 0;
    padding-bottom: 10px;
  }

  #sponsors .item .thumb1,
  #sponsors .item .thumb2 {
    width: 100%;
    height: 90px;
  }

  #sponsors .item .thumb3,
  #sponsors .item .thumb4 {
    width: 100%;
    height: 130px;
  }

  #cols1 .col-3,
  #cols3 .col-3,
  #cols4 .col-3 {
    width: calc(100% / 12 * 3);
  }

  #cols1 .col-5 {
    width: calc(100% / 12 * 6);
  }

  #cols2 .col-5 {
    width: calc(100% / 12 * 6);
  }

  #cols4 .col-offset-3 {
    margin-left: calc(100% / 12 * 1.5);
  }

  #banner {
    height: 300px;
  }

  #banner span.banner h1 {
    color: #000;
    font-size: 20px;
  }

  #banner span.banner h2 {
    font-size: 35px;
  }

  #banner span.banner h3 {
    letter-spacing: 0em;
    font-size: 38px;
  }

  #program {
    padding: 20px 5px;
    margin: 0;
  }

  #program h2 {
    padding-top: 40px;
    padding-bottom: 30px;
    font-size: 22px;
  }

  #program .download p {
    font-size: 12px;
    line-height: 16px;
  }

  #program .download i {
    font-size: 20px;
  }

  #program .container {
    width: 100%;
  }

  .program_table {
    font-size: 10px;
  }

  .popupBox{
    top:80px;
  }

  .popupBoxWrapper{
    width:90%;
    margin:5% auto;
  }

  .popupBoxContent h3{
    font-size: 16px;
  }

  #program .popupBoxContent h2{
    font-size: 11px;
  }

  .popupBoxContent p{
    font-size: 11px;
    line-height: 16px;
    margin-top:5px;
  }

  .titulo h4{
    color: #042d52;
    font-size: 11px;
    margin: 10px 0 40px 0;
    text-transform: initial;
    text-align: center;
  }
}


