

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

*::selection {
	background: #6e6bba;
	color: #fff;
}

body {
	font-family: 'Montserrat', sans-serif;
	border: 0;
	margin: 0;
	padding: 0;
	background-color: #88878c;
}

.main_container {
	max-width: 1600px;
	margin: 0 auto;
	-webkit-box-shadow: 0px 0px 34px -2px rgba(0,0,0,0.54);
	-moz-box-shadow: 0px 0px 34px -2px rgba(0,0,0,0.54);
	box-shadow: 0px 0px 34px -2px rgba(0,0,0,0.54);
  background-color:#fff;
  margin-bottom:20px;
}















/*HEADER*/


.header {
	width: 100%;
	position: absolute;
	z-index: 10;
	text-align: left;
	left: 0;
  transition: all 0.2s ease;
  background-color:#314e9a;
	-webkit-box-shadow: 0px 0px 34px -2px rgba(0,0,0,0.34);
	-moz-box-shadow: 0px 0px 34px -2px rgba(0,0,0,0.34);
	box-shadow: 0px 0px 34px -2px rgba(0,0,0,0.34);
}

.header_container {
	max-width: 90%;
	margin: 0 auto;
	display: block;
}

.header_logo {
	display: inline-block;
	text-align: left;
  transition:none;
}

.header_logo img {
  width:320px;
}

.header_menu {
	display: none;
	float: right;
	padding-top: 30px;
}

.header_social_menu {
  padding:0px 0px 20px 0px;
}

.header_social_menu a {
  display:inline-block;
  color:#99ddff;
  font-size:25px;
  padding:8px;
  transition: all 0.2s ease-in;
  text-decoration:none !important;
  vertical-align:middle;
}

.header_social_menu a span {
  font-size:16px;
  text-decoration:none !important;
  vertical-align:middle;
  font-family:"Montserrat";
  font-weight:800;
  font-style:italic;
}



.header_social_menu a:hover {
  color:#fff;
  transition: all 0.2s ease-in;
}

.header_menu li {
	display: inline-block;
	padding-left: 4px;
	font-size: 14px;
}

.header_menu li a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 6px 10px;
	position: relative;
  font-style:italic;
  font-weight:800;
}

.header_menu li a::after {
	content: " ";
	position: absolute;
	width: calc(0% - 20px);
	height: 2px;
	background-color: #fff;
	right: 0;
	bottom: 1px;
	margin: 0px 10px;
	transition: all 0.2s ease-in;
}

.header_menu li a:hover:after {
	background-color: #fff;
	width: calc(100% - 20px);
	transition: all 0.2s ease;
	left: 0;
}


.header_menu li:first-child a:after {
	content: " ";
	position: absolute;
	width: calc(100% - 20px);
	height: 2px;
	background-color: #fff;
	right: 0;
	bottom: 1px;
	margin: 0px 10px;
	transition: all 0.2s ease-in;
}



.header_menu_DESTAQUE {
	background-color: #e60000;
	border: 2px solid #fff;
	border-radius: 20px;
	padding: 5px 18px !important;
	transition: all 0.2s ease;
}

.header_menu_DESTAQUE::after {
	display: none;
}

.header_menu_DESTAQUE:hover {
	background-color: #e60000;
	color: #314e9a;
	transition: all 0.2s ease;
}

/*HEADER*/

















/* menu mobile */
/* menu mobile */
/* menu mobile */
/* menu mobile */
/* menu mobile */


.menu_mobile {
  width:100%;
  display:block;
  position:absolute;
  right: 0px;
  top: 13px;
  text-align:right;
}


.menu {
    display:inline-block;
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor:pointer;
}


.hamburguer {
    position: relative;
    display: block;
    background: #888;
    width: 30px;
    height: 2px;
    top: 29px;
    left: 15px;
    transition: .2s ease-in-out;
}

.hamburguer:before,
.hamburguer:after {
    background: #888;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: .2s ease-in-out;
}

.hamburguer:before {
    top: -10px;
}

.hamburguer:after {
    bottom: -10px;
}

#menu-hamburguer {
    display: none;
}

#menu-hamburguer:checked ~ label .hamburguer {
    transform: rotate(45deg);
}

#menu-hamburguer:checked ~ label .hamburguer:before {
    transform: rotate(90deg);
    top: 0;
}

#menu-hamburguer:checked ~ label .hamburguer:after {
    transform: rotate(90deg);
    bottom: 0;
}

#menu-hamburguer:checked ~ label .menu {

}

#menu-hamburguer:checked ~ .menu_options {
    display: block;
}


.menu_options ul {
    margin:0;
    padding:0;
}

.menu_options {
    display:none;
    width:100%;
    animation-name: menu_options_animation;
    animation-duration: .3s;
    z-index:500;
    text-align:center;
    background-color:#fff;
    min-height:100vh;
    padding:20px;
  margin-top: 50px;
}

@keyframes menu_options_animation {
    from {opacity:0; height:0;}
    to {opacity:1; height:100vh;}
}


.menu_options li {
	display: block;
	padding: 5px;
	font-size: 1.35em;
}

.menu_options li a {
	display: block;
	color: #888;
	text-decoration: none;
	padding: 14px 10px;
	position: relative;
  border:1px solid #ddd;
  border-radius:100px;
  margin-top:5px;
  transition: all 0.2s ease-in;
}

.menu_options li a:hover {
  background-color:#888;
  color:#fff;
  transition: all 0.2s ease-in;
}

.menu_options .header_social_menu a {
  color:#888;
  font-size:48px;
}

.menu_options .header_social_menu {
  padding: 25px 0px;
}

/* menu mobile */
/* menu mobile */
/* menu mobile */
/* menu mobile */
/* menu mobile */

















/*SLIDER*/


.bx-wrapper .bx-controls-direction {
	display: none;
}

.slider_container {
	background-color: #4f4b9a;
}

.slider_box {
	height: calc(100vh - 10px);
	display: flex;
	align-items: center;
}

.slider_box_bg1 {

  background-image: url('../images/img_consultorio.jpg');
	background-size: cover;
	background-position: center center;
  background-color:#314e9a;
}

.slider_box_bg2 {
  background-image: url('../images/img_anfiteatro.jpg');
	background-size: cover;
	background-position: center center;
  background-color:#314e9a;
}

.slider_desc {
	width: 100%;
	background-color: rgba(146, 163, 220, 0.61);
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	padding: 20px 0;
	margin-top: 1%;
  mix-blend-mode: hard-light;
}

.slider_desc h1 {
	font-size: 15px;
  text-transform: uppercase;
	color: #fff;
	width: 80%;
	max-width: 1200px;
	margin: 0px auto;
	position: relative;
	padding-bottom: 20px;
  transition:all 0.2s ease-in-out;
  font-weight:800;
  font-style: italic;
}

.slider_desc h1::after {
	content: '';
	width: 65px;
	height: 4px;
	background: #ffffff;
	position: absolute;
	bottom: 0;
	left: 0;
}

.slider_desc p {
	width: 80%;
	font-size: 19px;
	line-height: 30px;
	color: #fff;
	max-width: 1200px;
	margin: 0px auto;
	padding-top: 20px;
  text-align:justify;
  font-weight:400;
}

.slider_desc p::selection {
	background: #6e6bba;
}

.slider_desc p strong {
	color: #fff;
  font-weight:600;
}

.slider_bottom {
	margin: 0 auto;
	margin-top: -50px;
	position: absolute;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 12px;
}

.slider_bottom h2 {
	color: #a9cbff;
  font-family:'Montserrat';
  font-weight:800;
  font-style:italic;
  text-transform:uppercase;
  font-size:11px;
}

.slider_bottom h2 span {
	color: #fff;
  font-size:16px;
}

/*SLIDER*/





.section_home {
	position: relative;
}








/*MISSÃO*/

.section_missao {
	border-top: 0;
}

.section_missao .article_container {
	display: block;
	max-width: 1200px;
	margin: 60px auto;
  padding:20px;
}

.section_missao .article_container h1 {
	color: #314e9a;
  font-family:'Montserrat';
  font-weight:800;
  font-style:italic;
  text-transform:uppercase;
  text-align:center;
  padding:0;
  margin:0;
}

.section_missao .article_container hr {
  width: 83px;
  border: 1px solid #4f4b9a;
  margin: 16px auto;
  padding: 0;
}

.section_missao .article_container p {
	font: 17px/1.3 sans-serif;
	font-family: 'Montserrat', sans-serif;
  font-weight:300;
  color:#888;
  font-size:19px;
  text-align:justify;
  line-height:28px;
  max-width:1000px;
  margin:0 auto;
}


.parceiros_title {
	font: 25px/1.3 sans-serif;
	font-family: 'Montserrat', sans-serif;
  font-weight:500;
  color:#8999;
  border-bottom:1px dotted #999;
  max-width:800px;
  padding:8px;
  margin:5px auto;
}

/*MISSÃO*/






.album-image {
  display: block;
  height: 200px;
  /* set min-width,
     allow images to determine cell width */
  min-width: 150px;
  max-width: 100%;
  margin-right: 10px;
  /* vertically center */
  top: 50%;
  transform: translateY(-50%)
}

.album.is-fullscreen .album-image {
  height: auto;
  max-height: 90%;
}

















/*CORPO DOCENTE*/

.section_corpodocente {
  background-color:#314e9a;
  padding:0px;
    background-image:url('../images/ondas.png');
    background-repeat:no-repeat;
    background-size:150%;
    background-position:0px -50px;

}

.section_corpodocente .article_container {
	display: block;
	padding: 20px 0 10px 0;
  margin: 0px auto;
}

.section_corpodocente .article_container h1 {
  color:#fff;
  font-size:25px;
	font-family: 'Montserrat', sans-serif;
  font-weight:800;
  font-style:italic;
  text-align:center;
  padding:0;
  margin:0;
}

.section_corpodocente .article_container hr {
  width: 83px;
  border: 1px solid #fff;
  margin: 16px auto;
  padding: 0;
}

.section_corpodocente_p {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
  font-weight:400;
  color:#fff;
  text-align:center;
  max-width:500px;
  padding:0px 20px;
  margin:0 auto;
  display:none;
}



.main-carousel {
  padding: 10px 0px 30px 0px;
}

.carousel-cell {
  width: 100%;
  min-height: 200px;
  margin-right: 0px;
  padding:5px;
  padding:20px 20px 70px 20px;
}


.professor_box {
  text-align:center;
}

.professor_box img {
  max-width: 300px;
  margin:0px 4px 8px 0px;
  -webkit-box-shadow: 11px 15px 26px -7px rgba(15,15,15,0.58);
  -moz-box-shadow: 11px 15px 26px -7px rgba(15,15,15,0.58);
  box-shadow: 11px 15px 26px -7px rgba(15,15,15,0.58);
}

.professor_box a img { border:2px solid #fff !important; transition:all 0.2s ease-in-out; }
.professor_box a:hover img { border:2px solid #99ddff !important; transition:all 0.2s ease-in-out; }


.professor_box h3 {
  margin:0;
  padding:0;
  color:#fff;
  font-weight:normal;
  font-size:19px;
  font-weight:800;
  font-style:italic;
  font-family:"Montserrat";
  text-transform:uppercase;
}

.professor_box hr {
  margin:4px auto !important;
  border:2px solid #6b92d3 !important;
}


.professor_box p {
  font-size:15px;
  color:#fff;
  line-height:23.5px;
  font-family: 'Montserrat', sans-serif;
  font-weight:300;
}

.professor_box p a {
  display:inline-block;
  color:#fff;
  background-color:#888;
  border:2px solid #fff;
  border-radius:20px;
  padding:1px 20px;
  margin:5px 0px 0px 5px;
  font-size:12px;
  text-decoration:none;
  font-weight:bold;
  text-transform:uppercase;
  transition:all 0.2s ease-in-out;
}

.professor_box p a:hover {
  background-color:#fff;
  color:#888;
  border:2px solid #fff;
  transition:all 0.2s ease-in-out;
}

/*CORPO DOCENTE*/










.cursos_listagem_ul {
  margin:0;
  padding:0;
  vertical-align:top;
  text-align:center;
}

.cursos_listagem_ul li {
  display:inline-block;
  width:300px;
  height:300px;
  margin:5px;
	background-size: cover;
	background-position: center center;
  -webkit-box-shadow: 2px 2px 35px -6px rgba(0,0,0,0.56);
  -moz-box-shadow: 2px 2px 35px -6px rgba(0,0,0,0.56);
  box-shadow: 2px 2px 35px -6px rgba(0,0,0,0.56);
}

.cursos_listagem_ul li a {
  display:inline-block;
  width:100%;
  height:100%;
  transition:all 0.2s ease-in-out;
  position:relative;
  display: flex;
  height: 100%;
  align-items: center;
  text-decoration:none;
}

.cursos_listagem_ul li a:after {
  content:"Inscreva-se!";
  display:block;
  width:80%;
  border:2px solid #fff;
  color:#fff;
  font-size:30px;
  text-align:center;
  padding:10px;
  border-radius:50px;
  margin:0px auto;
  opacity:0;
  transition:all 0.2s ease-in-out;
}

.cursos_listagem_ul li a:hover {
  background-color:rgb(78,73,157,0.8);
  transition:all 0.2s ease-in-out;
}

.cursos_listagem_ul li a:hover:after{
  opacity:1;
  transition:all 0.2s ease-in-out;
}







.section_fale_conosco {
  text-align:center;
  padding:50px 0px;
  border-top: 14px solid #bebebe;
}

.fale_conosco_div {
  display:block;
  vertical-align:top;
  padding:20px;
}




.fale_conosco_div h1 {
  color:#fff;
  text-align:center;
  padding:0px 30px;
  margin:0;
  font-size:25px;
	font-family: 'Montserrat', sans-serif;
  font-weight:800;
  font-style:italic;
  text-transform:uppercase;
}

.fale_conosco_div hr {
  width: 83px;
  border: 1px solid #fff;
  margin: 15px auto;
  padding: 0;
}

.fale_conosco_desc {
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
  font-weight:400;
  color:#fff;
  text-align:center;
  padding:0px 20px 15px 0px !important;
  margin:0 !important;
  line-height: 25px;
}


.fale_conosco_div .header_social_menu  {
  text-align:center;
  padding:5px 0px 30px 0px;
}

.fale_conosco_div .header_social_menu a {
  font-size:40px;
  opacity:1;
}


.header_social_menu_lojas  {
  text-align:center;
  padding:5px 0px 5px 0px;
}
.header_social_menu_lojas a {
  font-size:30px;
  opacity:1;
}






.faleconosco_form { display:inline-block; vertical-align:top; overflow:auto; width:90%; text-align:left;  }
.form_div { padding:5px; }
.input_text { font-family:arial;font-size:16px; color:#444; font-weight:400; display:inline-block; vertical-align:top; border:0px; padding:11px; width:100%; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

.input_textarea { font-family:arial; font-size:16px; color:#444; font-weight:400; height:160px; display:inline-block; vertical-align:top; border:0px; padding:11px; width:100%; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

.form_label { display:none; cursor:pointer; width:34px; text-align:center; color:#fff; vertical-align:top; background-color:#999; -webkit-border-top-left-radius: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-topleft: 4px; -moz-border-radius-bottomleft: 4px; border-top-left-radius: 4px; border-bottom-left-radius: 4px; padding: 11px 35px 11px 20px; }

.faleconosco_form_enviar { width:100%; display:block; margin:10px 0px 10px auto; padding:25px 90px; font-size:19px; font-weight:500; border:0px; margin-right: 30px; padding:10px 30px; color:#fff; background-color:#999; cursor:pointer; -webkit-border-radius:50px; -moz-border-radius: 50px; border-radius: 50px; transition: all 0.2s ease; }
.faleconosco_form_enviar:hover { background-color:#fff; color:#999; padding:10px 50px; transition: all 0.2s ease; }

.input_text:focus { outline: 2px solid #999; -moz-outline-radius:4px; }
.input_textarea:focus { outline: 2px solid #999; -moz-outline-radius:4px; }

.form_success { background-color:#fff; text-align:center; padding:10px; border-radius:50px; margin:10px auto; color:#888; font-size:23px; }





.bottom_closer {
  background-color:#fff;
  padding:8px;
  text-align:center;
  margin:0px auto;

  background-image: url(../images/ondas.png);
    background-repeat: no-repeat;
    background-size: contain;
  background-size:100%;
    background-position: 0px 50px;
}


.bottom_closer h2 {
	color: #6b92d3;
  font-family:Montserrat;
  font-weight:800;
  font-style:italic;
  text-transform:uppercase;
  font-size:16px;
}

.bottom_closer h2 span {
	color: #2f4b95;
}


.design_andcury {
  max-width:1600px;
  display:block;
  margin:10px auto;
  padding:5px 60px 35px 60px;
  color:#fff;
  font-family:Montserrat;
  font-weight:300;
  text-decoration:none;
  font-size:14px;
  text-align:center;
  opacity:0.7;
}

.design_andcury span {
  font-weight:400;
}

.design_andcury:hover {
  opacity:1;
}


.lojas_fotos a img {width:80px; height:60px; border:2px solid #fff; transition:all 0.2s ease-in-out;}
.lojas_fotos a:hover img {border:2px solid #99ddff; transition:all 0.2s ease-in-out;}



/* 1090px */

/* MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |   */
/* MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |   */
/* MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |   */
/* MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |   */
/* MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |   */
/* MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |  MEDIA-QUERIES  |   */


@media screen and (min-width: 1200px) {
  
  .bx-wrapper .bx-controls-direction {
    display: block;
  }  

	.bxslider .bx-wrapper .bx-controls-direction {
		display: block;
	}

	.bxslider.bx-wrapper .bx-pager {
		position: absolute;
		bottom: 21%;
	}

  .header {
    transition: all 0.2s ease;
    background-color:transparent;
    position:absolute;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    box-shadow:none;
  }

	.header_container {
		display: block;
    width:80%;
    max-width: 1200px;
    transition: all 0.2s ease;
  }



  .header_logo {
    border-top: 0;
    transition: none;
    text-align:center;
  }

  .header_logo img {
    margin: 0;
    margin-top: 75px;
    margin-bottom: 15px;
    width: 360px;
  }



  .header_menu {
    display: block;
    text-align:right;
  }

  .menu_mobile {
    display:none;
  }

	.slider_box {
		height: calc(100vh - 0px);
	}

	.slider_desc {
		padding: 60px 0;
	}

  .slider_desc h1 {
    font-size: 24px;
    transition:all 0.2s ease-in-out;
  }

	.slider_desc p {
		padding-right: 350px;
	}

	.slider_bottom {
		font-size: 16px;
		margin-top: -60px;
    font-family:Montserrat;
    font-weight:300;
	}




  .section_missao .article_container h1 {
    color: #314e9a;
    font-family:'Montserrat';
    font-weight:800;
    font-style:italic;
    text-transform:uppercase;
    font-size: 26px;
  }





  .album-image {
    height: 300px;
  }






  .main-carousel {
    padding: 10px 0px 40px 0px;
  }

  .section_corpodocente {
    padding:10px 5px;
    transition: all 0.2s ease;
    background-image:url('../images/ondas.png');
    background-repeat:no-repeat;
    background-size:contain;
    background-position:0px -50px;
  }


  .section_corpodocente .article_container h1 {
    font-size:35px;
  }

  .section_corpodocente_p {
    font-size: 19px;
    display:block;
    margin-bottom: 30px;
  }


  .carousel-cell {
    padding:5px 40px 10px 40px;
    width:33%;
    height:580px;
  }

  .professor_box img {
    width:223px;
    border:2px solid #fff;
  }

  .professor_box p {
    font-size:13px;
    color:#fff;
    line-height:18.5px;
  }



  .cursos_listagem_ul li {
    width:250px;
    height:250px;
  }



  .fale_conosco_div {
    width:40%;
    display:inline-block;
    vertical-align:top;
    padding:40px;
  }


  .input_text { width:calc(90% - 40px); }
  .input_textarea { width:calc(90% - 40px); }
  .form_label { display:inline-block; }
  .faleconosco_form_enviar { width:150px; }
  .faleconosco_form_enviar:hover { width:180px; }

}








@media screen and (min-width: 1600px) {
  .header_logo {
    transition: none;
    text-align:center;
  }

  .header_logo img {
    margin: 0;
    margin-top: 45px;
    margin-bottom: 15px;
    width: 480px;
  }

  .header_menu li {
    font-size: 14px;
  }

  .album-image {
    height: 450px;
  }

}









/* ALTURA > 800px   */
/* ALTURA > 800px   */
/* ALTURA > 800px   */
/* ALTURA > 800px   */

@media screen and (min-height: 768px) and (min-width: 1200px)  {
	.slider_box {
		height: calc(80vh - 0px);
	}

}

/* ALTURA > 800px   */
/* ALTURA > 800px   */
/* ALTURA > 800px   */
/* ALTURA > 800px   */



.float-banner {
		
	position: fixed;
	bottom:3px;
	right:10px;
	z-index: 999;
}

.float-image {
		
width:340px;
}


