@font-face {
	font-family: 'Gotham';
	src: url('../fonts/gotham.otf');
}
@font-face {
	font-family: 'Gotham-black';
	src: url('../fonts/gotham-black.otf');
}
@font-face {
	font-family: 'Gotham-medium';
	src: url('../fonts/gotham-medium.ttf');
}
@-webkit-keyframes breathing {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	25% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	60% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@keyframes breathing {
	0% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}
	25% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	60% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}
}
body, html {
	font-family: 'Gotham';
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	color: #777;
	scroll-behavior: smooth;
}
.navbar-brand {
	width: 30%;
	transition: .3s all;
	margin-left: auto;
	margin-right: auto;
}
.navbar {
	position: fixed;
	top: 0;
	z-index: 2;
	height: 12%;
	transition: .3s all;
	background-color: rgba(255,255,255);
}
.item-menu {
	font-size: 40px;
	transition: .3s all;
}
.item-menu.scrolled {
	font-size: 20px;
	transition: .3s all;
}
.navbar.scrolled{
	background-color: rgba(255,255,255,.7);
	-webkit-box-shadow: 0px 0px 10px -5px #777; 
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
	padding: 0!important;
	height: 8%!important;
	transition: .3s all;
}
.navbar.scrolled img{
	width: 80%!important;
	transition: .3s all;
}
/* sidebar nav */

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


.menu {
	background: #0000004a;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 3%;
	left: 5%; 
	z-index: 9;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.menu.scrolled {
	top: 2%;
	transition: 0.3s ease-in-out;
	width: 40px;
	height: 40px;
}

.hamburguer {
	position: relative;
	display: block;
	background: #fff;
	width: 30px;
	height: 3px;
	top: 30px;
	left: 14px; 
	transition: 0.3s ease-in-out;
}
.hamburguer.scrolled {
	width: 23px;
	height: 3px;
	top: 46%;
	left: 8px;
	transition: 0.3s ease-in-out;
}
.hamburguer:before,
.hamburguer:after {
	background: #fff;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: 0.3s ease-in-out;
}
.hamburguer:before {
	top: -10px;
}
.hamburguer:after {
	bottom: -10px;
}
input {
	display: none;
}
input:checked ~ label .hamburguer {
	transform: rotate(45deg);
}
input:checked ~ label .hamburguer:before {
	transform: rotate(90deg);
	top: 0;
}
input:checked ~ label .hamburguer:after {
	transform: rotate(90deg);
	bottom: 0;
}
#sidenav_menu.sidenav_size {
	opacity: 1;
	left: 0;
}
.nav-separator {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 5px; 
	padding-bottom: 5px;
	width: 100%;
	transition: all 0.3s ease;
}
.nav-separator:last-child {
	border-bottom: none;
}
.nav-separator:hover {
	background-color: rgba(255, 255, 255, 0.05);
	padding-left: 10px;
}
.sidenav .nav-link {
	white-space: normal !important; 
	word-wrap: break-word;         
	height: auto;                   
	display: block;                
	line-height: 1.2;             
	vertical-align: middle;
	padding-right: 15px;           
}
@media (max-width: 768px) {
	.sidenav {
		
		width: 80% !important; 
		max-width: 320px;
	}
	.sidenav .navbar-nav {
		margin-top: 100px !important;
		padding-bottom: 50px;
	}
	.sidenav .nav-link {
		font-size: 1rem;
	}
}
@media (min-width: 769px) {
	.sidenav {
		width: 350px;
	}
	.sidenav .navbar-nav {
		margin-top: 80px;
	}
}

.sidenav {
	height: 100%;
	width: 250px;
	position: fixed;
	left: -999px; 
	opacity: 0;
	z-index: 1;
	top: 0;
	background-color: #2e3192;
	transition: 0.5s;
	padding-top: 60px;
	box-shadow: 7px 0px 40px 0px rgba(0,0,0,0.51);
	-webkit-box-shadow: 7px 0px 40px 0px rgba(0,0,0,0.51);
	-moz-box-shadow: 7px 0px 40px 0px rgba(0,0,0,0.51);
}
.sidenav a {
	padding: 10px;
	text-decoration: none;
	font-size: 1.2em;
	color: #FCB200;
	display: block;
	transition: 0.3s;
}
.sidenav a:hover {
	color: #f1f1f1;
}
.sidenav .closebtn {
	position: relative;
	top: 0;
	right: 20px;
	font-size: 36px;
	margin-left: 50px;
}
.closebtn {
	cursor: pointer;
}
#regulamentos,
#sobre,
#equipe,
#tecnologia,
#projetos,
#noticias,
#noticia-detalhe,
#agenda,
#galeria,
#showgal,
#galeria-exibe,
#videos,
#avaliacoes,
#avaliacoes2 {
	margin-top: 0;
}
.banner-main{
	margin-top: 7em;
}
.subtexto-nav {
	color: #777;
	font-size: 10px;
}
.link-redes {
	color: #02366C;
}
.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler.navbar-toggler {
	border-color: rgba(0,0,0,.3);
} 
#nav-topo {
	background-color: #003871;
	color: #fff;
}
#nav-topo a {
	color: #fff;
}
.link-topo,
.btn-footer {
	color: #fff;
	border: 2px solid #fff;
	border-radius: 2em;
	padding: 0 1em;
	margin: 1em;
	transition: .2s all;
}
.link-topo-b {
	color: #fff;
	border: none;
	border-radius: 2em;
	margin: 1em;
	transition: .6s all;
}
.btn-footer {
	font-size: 2em;
}
.link-topo:hover,
.btn-footer:hover {
	text-decoration: none;
	background-color: #fff;
	color: #003871 !important;
	transition: .4s all;
}
.link-topo-b:hover {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	transition: .2s all;
}
.barra-nav-topo {
	margin: 1em 0;
}
.border-footer {
	border-right: 1px solid #fff;
	height: 5em;
}
#nav-menu {
	background-color: #fff;
	color: #02366c;
}
.link-header {
	text-decoration: none;
}
.nav-item,
.nav-link {
	color: white !important;
	font-weight: 500;
	transition: .4s all;
}
.nav-link-drop {
	color: #fff;
	font-weight: 300;
}
.nav-link:hover,
.link-cursos:hover {
	transition: .2s all;
	color: #003871;
	text-decoration: none;
}
.nav-link-drop:hover {
	color: #fff;
}
.borda-menu {
	border-right: 1px solid #000;
	height: 5em;
}
.btn-padrao {
	background-color: transparent;
	border: 2px solid #ed1c24;
	border-radius: .7em;
	color: #ed1c24 !important;
	padding: .6em 2.5em;
	text-decoration: none;
	transition: .4s all;
	font-weight: 700;
}
.btn-padrao:hover {
	background-color: #ed1c24;
	color: #fff !important;
	border-color: #ed1c24;
	transition: .2s all;
	box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
	transform: translateY(-3px);
}
.btn-dep {
	background-color: #fff;
	border: 2px solid #999999;	
	border-radius: .7em;
	color: #999999;
	padding: .5em 2em;
	text-decoration: none;
	transition: .4s all;
}
.btn-dep:hover {
	background-color: #999999;
	border: 2px solid #fff;	
	border-radius: .7em;
	color: #fff;
	padding: .5em 2em;
	text-decoration: none;
	transition: .4s all;
}
.btn-header {
	background-color: #fff;
	border: 2px solid #999999;	
	border-radius: .7em;
	color: #999999!important;
	padding: .5em 2em;
	text-decoration: none;
	transition: .4s all;
}
.btn-header:hover {
	background-color: #999999;
	border: 2px solid #fff;	
	border-radius: .7em;
	color: #fff!important;
	padding: .5em 2em;
	text-decoration: none;
	transition: .4s all;
}
.carousel-desktop {
	display: flex;
}
.carousel-mobile {
	display: none;
}
.dropdown-menu {
	background-color:#7b7b7b;
	color: white;
	padding: 1em;
	border: 1px solid #fff;
	width: 15em;
	right: -15em;
	top: -2em;
}
.dropdown-menu li:hover {
	background-color: rgba(0,0,0,.5);
	transition: .4s all;
}
.dropdown-menu a:hover {
	text-decoration: none;
	color: #fbbf09;
}
.line-dropdown {
	margin: 0;
	border-top: 1px solid rgb(255,255,255);
}
.dropdown-toggle::after {
	display: none;
}
.icone-whatsapp {
	background-color: #26d365; 
	border-radius: 50%; 
	bottom: 50px;
	height: 70px; 
	padding: .1em 0;
	position: fixed; 
	right: 50px;
	width: 70px; 
	z-index: 999 !important; 
}
.footer-escolaemsite {
	background-color: #fff;
	color: #57514d;
}
.footer-escolaemsite a {
	color: #57514d;
	text-decoration: none;
}
.footer-escolaemsite ul {
	list-style: none;
	padding: 0;
}
.linhaFooter {
	border: 1px dotted #57514d;
	margin: 0 0 5rem 0;
	opacity: .1;
}
.direitos {
	background-color: #2f3293;
	color: #fff;
}
.direitos a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}
.a-politica{
	color: #fff;
}
.a-politica:hover{
	color: #fff;
}
.btn-escola {
	background-color: #003871;
	color: #fff;
	border-radius: .5em;
	padding: 1em 2em;
	text-decoration: none;
	transition: .2s all;
}
.btn-escola:hover {
	background-color: #fff;
	color:  #003871;
	border:  1px solid #003871;
	font-weight: 900;
	transition: .4s all;
}
.btn-equipe {
	background-color:#0068be;
	color: white;
	border: solid 2px white;
	border-radius: .7em;
	padding: .3em 1.5em;
	transition: .2s all;
}
.btn-menu {
	background-color:rgba(0, 0, 0, 0.2);
	color: white;
	border: solid 2px white;
	border-radius: .7em;
	padding: .2em .5em;
	transition: .2s all;
}
.card-noticia {
	width: 95% !important;
}
.img-noticia {
	border-radius: 1em 1em 0 0;
}
.rodape-card-noticia {
	background-color: #2e3192;
	color: #FFF;
	padding: 1em;
	border-radius: 0 0 1em 1em;	
}
.btn-noticia {
	background-color: #2e3192;
	color: #fff;
	border: 2px solid #fff;
	border-radius: .7em;
	padding: .4em 1.5em;
	transition: .4s all;
	text-decoration: none;
	cursor: pointer;
}
.btn-noticia:hover {
	background-color: #fff;
	transition: .2s all;
	transform: scale(1.05);
	color:  #2e3192;
	border: 2px solid #2e3192;
	text-decoration: none;
}
.btn-podcast {
	background-color: #2e3192;
	color: #fff;
	border: 2px solid #fff;
	border-radius: .7em;
	padding: .4em 1.5em;
	transition: .4s all;
	text-decoration: none;
	cursor: pointer;
}
.btn-podcast:hover {
	background-color: #fff;
	transition: .2s all;
	transform: scale(1.05);
	color:  #2e3192;
	border: 2px solid #2e3192;
	text-decoration: none;
}
.sideitem-agende{
	align-items: start;
	background-color: #e5e5e5;
	border-radius: 20px;
	color: #000;
	display: flex;
	font-family: "Gotham";
	font-size: 16px;
	font-weight: 700;
	left: -115px;
	height: 12em;
	justify-content: flex-start;
	letter-spacing: 1px;
	padding: 1em 1.5em;
	position: relative;
	transition: all .2s;
	transform: rotate(-90deg);
	white-space: nowrap;
	text-decoration: none;
}
.sideitem-agende:hover{
	background-color: #dbdbdb;
	right: -120px;
	transition: all .4s;
	color: #7b7b7b;
	text-decoration: none;
}
.sideitem-agende p {
	margin-bottom: 10px;
	margin-top: 115px;
}
.linha-home{
	display: flex;
	flex: 1;
	height: 1px;
	margin-left: 8px;
	background: #556373;
}
@media (min-width: 1281px) {
	.sidemenu{
		display: block;
		position: fixed;
		top: 45%;
		transform: translateY(-50%);
		z-index: 2;
		color: #fff;
	}
}
@media (min-width: 320px) and (max-width: 1280px) {
	#sidenav_menu.sidenav_size {
		width: 100%;
	}
	.sidenav {
		padding-top: 0;
	}
	.navbar {
		position: relative;
	}
	#banners,
	#ensino,
	#sobre,
	#equipe,
	#tecnologia,
	#projetos,
	#noticias,
	#noticia-detalhe,
	#agenda,
	#galeria,
	#showgal,
	#galeria-exibe,
	#videos,
	#trabalhe_conosco,
	#avaliacoes,
	#avaliacoes2 {
		margin-top: 0px;
	}
	.navbar img{
		margin-left: 1em;
	}
	.linha-home{
		display: none;
	}
	.link-topo-b {
		color: #fff;
		border: none;
		border-radius: 2em;
		margin: 1em;
		transition: .6s all;
	}
	.borda-menu {
		display: none;
	}
	.sidemenu{
		position: fixed;
		bottom: 0 !important;
		z-index: 1;
		width: 100%;
	}
	.sideitem-agende{
		border-radius: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 5em;
		max-width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		transform: rotate(0deg);
		font-size: 1em;
		padding: 1em;
	}
	.sideitem-agende p {
		margin: 0;
	}
	.border-footer {
		border: none;
	}
	.barra-nav-topo {
		display: none;
	}
	.icone-whatsapp {
		bottom: 120px;
		right: 10%;
	}
	.footer-escolaemsite {
		padding-bottom: 5em;
	}
	.dropdown-menu {
		width: 95%;
	}
}
@media screen and (min-width: 769px) {
	.dropdown:hover .dropdown-menu, .btn-group:hover .dropdown-menu{
		display: block;
	}
	.dropdown-menu{
		margin-top: 0;
	}
	.dropdown-toggle{
		margin-bottom: 2px;
	}
	.navbar .dropdown-toggle, .nav-tabs .dropdown-toggle{
		margin-bottom: 0;
	}
}
@media (min-width: 320px) and (max-width: 768px) {
	.carousel-desktop {
		display: none;
	}
	.carousel-mobile {
		display: flex;
	}
	.link-topo-b {
		color: #fff;
		border: none;
		border-radius: 2em;
		margin: .2em;
		transition: .6s all;;
	}
}