/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
h1 {
 color:#083D4C;
 font-size: 2.3em;
 font-weight: bold !important;
 text-transform: uppercase;
}

h2 {
 color:#DDD;
 font-weight: bold !important;
 text-transform: uppercase;
}

h3 {
 color: #bbb;
 font-weight: bold !important;
 text-transform: uppercase;
}
h4 {
 color: #193550;
 font-weight: bold !important;
 text-transform: uppercase;
}
h5 {
  font-size: 1.1rem;
  color: #142539;
}

header {
 min-height: 90px;
}

header .logo{
  margin-top: 10px;
}
.content-start{
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #142539;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #CA9429;
  line-height: 0;
}

.back-to-top:hover {
  background: #666;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #142539;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #ffc451;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    right: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    right: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }

  .navbar .btn-participe {
    padding: 0;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar .participe{
  padding: 7px 20px 7px 20px;
  border: 1px solid #FFC451;
  border-radius: 0;
  margin-left: 20px;
}

.navbar .participe:hover{
  background: #FFC451;
  color: #fff;
}

.navbar-mobile .participe{
  background: #fff;
  color: #151515;
  border: none;
  margin: 0;
  padding: 11px 20px;
}
.navbar-mobile .participe:hover{
  color: #151515;
}


/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

#carousel {
 margin-top:90px;
}

.carousel-control-next, .carousel-control-prev {
 opacity: 0.1 !important;
 border: none;
 width: 10% !important;
}

/*--------------------------------------------------------------
# Selo
--------------------------------------------------------------*/
#selo {
 background: #CC922E;
 color: #114759;
 font-size: 1.5em;
 font-weight: 600;
 padding: 40px 0;
}

#selo h2 {
 color:#fff;
 font-size: 2em;
}

@media (max-width: 768px) {
  #selo h2 {
   font-size: 1.3em;
  }
}

/*--------------------------------------------------------------
# Selo-1
--------------------------------------------------------------*/
#selo-1 {
   padding: 40px 0;
}

#selo-1 h1 {
 color: #CC922D;
}

/*--------------------------------------------------------------
# Homenagens Home
--------------------------------------------------------------*/

#homenagens-home {
 background: #EEE;
 padding: 40px 0;
}

#homenagens-home h1 {
 color: #CC922D;
}

.bt-homenagem {
 border:1px solid #0B4050;
 text-align: center;
 margin: 20px 0;
 }

.bt-homenagem a {
 color: #0A3E4C;
 font-size:18px;
 font-weight: 700;
 text-transform: uppercase;
 text-decoration: none;
}

.bt-homenagem a:hover{
color: #CC922D;
}

.bt-span {
 font-size:14px;
 color:#CC922D;
 text-align: center;
}


/*--------------------------------------------------------------
# Homenagens Interna
--------------------------------------------------------------*/

#homenagens {
 background: #EEE;
 border-top:2px solid #ccc;
 margin-top: 30px;
 padding: 40px 0;
}

#homenagens h1 {
 color: #CC922D;
}
.medalha{
  margin: 40px 0;
}

/*--------------------------------------------------------------
# Sobre
--------------------------------------------------------------*/

#sobre {
 padding: 50px 0;
 background: #F8F8F8;
}

#sobre h1 {
 color:#073D4C;
 font-size: 3em;
 font-weight: bold;
 margin-top: -10px;
}

#sobre h2 {
 color:#DDD;
 font-size: 2em;
 font-weight: bold;
}

#sobre p {
 font-size: 1.2em;
}

a {
  text-decoration: none;
  color: #073D4C;

}



/*--------------------------------------------------------------
# Eventos
--------------------------------------------------------------*/
#eventos {
 padding: 50px 0;
 background: #F4F4F4;
}
.bt-custom-5{
  background-color: #114859;
    border: 1px solid #114859;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
    transition: background 0.6s, color 0.5s;
    padding: 10px 14px 10px 14px;
    margin: 30px 0 !important;
}

.bt-custom-5:hover,
.bt-custom-5:active,
.bt-custom-5:focus {
  background: #CC922E;
  border:1px solid #114859;
  color:#114859;
}

.card-text{
  margin-bottom:20px;
}

.card-title{
  color: #114859;
  text-transform: uppercase;
}

.card-body {
  margin-bottom:20px;
  }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#rodape {
 background:url(../img/bg-footer.jpg);
 background-size: cover;
 color: #fff;
}

#rodape .content{
  padding-bottom: 50px;
}

#rodape .sub{
  background: rgba(0, 76, 102, 0.9);
  padding-top: 50px;
}

#rodape .copyright{
  background: rgba(1, 49, 63, 0.9);
  border-top: 1px solid rgba(255,255,255, 0.3);
  padding: 30px 0;
}

#rodape .legenda-2 {
 color: rgb(255, 255, 255, 0.5);
 font-size: 0.7em;
}

#rodape h3 {
 font-size: 1.5em;
 text-transform: uppercase;
 color:#fff;
}

#rodape h4 {
 font-size: 1.2em;
 text-transform: uppercase;
 padding-top: 40px;
}

#rodape h5 {
 font-size: 1em;
 text-transform: uppercase;
 margin-bottom: 20px;
 padding-top: 57px;
}

#rodape a {
 color: #CC922E;
}

#rodape a:hover {
 color: #fff;
}

#rodape .siga {
 margin-bottom: 15px;
}

#rodape .txt {
 font-size:0.9em;
}

#rodape .ico a{
 font-size:1.4em;
 text-align: center;
}

#rodape .ico a:hover {
 color:#CC922E;
}

#rodape i{
  font-size: 1.5em;
}

#rodape .w-border {
 border-right:1px solid #fff;
 text-align: center;
 max-height: 40px;
}
#rodape .w-border-2 {
 border-right:1px solid #fff;
 text-align: center;
 max-height: 25px;
}

#rodape .bt-custom-3 {
 background-color: #CC922E;
 border: 2px solid #CC922E;
 color: #FFF;
 font-size: 1.2em;
 font-weight: 600;
 text-transform: uppercase;
 text-decoration: none;
 vertical-align: middle;
 transition: background 0.6s, color 0.5s;
 padding: 15px 20px 15px 20px !important;
 margin-top: 15px;
 cursor:pointer;
}

#rodape .bt-custom-3:hover,
.bt-custom-3:active,
.bt-custom-3:focus {
 background: none;
 border:2px solid rgba(255, 255, 255, 0.2);
 color:#CC922E;
}

#rodape .bt-custom-3 > span {
 padding:4px 6px 4px 6px;
 margin-left:15px;
 color:#fff;
 font-size: 1.3em;
 display: inline;
 vertical-align: middle;
 }


@media (max-width: 368px) {
#rodape .bt-custom-3 {
  padding: 15px 50px 15px 50px !important;
 }
}

#top-title {
	background: #F4F4F4;
	padding: 3px 0 20px 0;
	margin-bottom: 50px;
}

.bt-custom-1 {
	background-color: #114859;
	border: 1px solid #114859;
	color: #FFF;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	vertical-align: middle;
	transition: background 0.6s, color 0.5s;
	padding: 15px 8px 15px 15px;
	
}

.bt-custom-1:hover,
.bt-custom-1:active,
.bt-custom-1:focus {
	background: #CC922E;
	border:1px solid #114859;
	color:#114859;
}

.bt-custom-1 > span {
	padding:10px 10px 8px 10px;
    margin-left:15px;
    background-color:#CC922E;
    font-size: 1.4em;
    display: inline;
    vertical-align: middle;
 }

.bt-custom-1 > span:hover {
	color: #fff;
	background-color: #114859;
}

.bt-custom-2 {
	color:#CC922E;
	font-size: 1.2em;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
  text-align: center;
	background: #F8F8F8;
	transition: background 0.4s, color 0.5s;
	border:1px solid #0B4050;
	padding: 15px 26px 15px 26px;
	margin-top: 30px;
}

.bt-custom-2:hover {
	color:#FFF;
	background: #CC922E;
	border:1px solid #CC922E;
}

.bt-custom-4 {
	color: #FFF;
	font-size: 1.1em;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	background: #CC922E;
	border: 1px solid #CC922E;
  margin-bottom: 20px;
	padding: 8px 0;
	transition: background 0.4s, color 0.5s;
}

.bt-custom-4:hover {
	color: #093D4C;
	background: #EEE;
	border: 1px solid #CC922E;
}

.ico-video {
	color: #093D4C;
	font-size: 1.4em;
	margin-right: 15px;
}

.destaque {
	color:#0A3E4C;
	font-weight: bold;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
#rodape .inp-transp {
  background: none;
  color: #fff;
  border: 1px solid rgb(255, 255,255, 0.2);
  padding: 15px 35px;
  margin-top: 15px;
}

#rodape .inp-transp-ph {
  font-size:0.7em;
  color:rgb(255, 255,255, 0.4); 
}

#rodape ::-webkit-input-placeholder {
   font-size: 11px!important;
   color:rgb(255, 255,255, 0.4)!important;
   position: relative;
   top:-16px!important;
   left:-20px;
}

#rodape :-moz-placeholder { /* Firefox 18- */
      font-size: 11px!important;
      color:rgb(255, 255,255, 0.4)!important;
      position: relative;
      top:-16px !important;
      left:-20px;
}

#rodape ::-moz-placeholder {  /* Firefox 19+ */
      font-size: 11px!important;
      color:rgb(255, 255,255, 0.4)!important;
      position: relative;
      top:-16px!important;
      left:-20px;
}


@media (max-width: 768px) {
 #rodape .inp-transp{
    padding: 15px 65px;
  }

 #rodape ::-webkit-input-placeholder {
    left:-50px;
 }
}
 
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #01313F;
  float: left;
  width: 44px;
  height: 44px;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border:1px solid #E6E6E6;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #0B4F67;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #ff0000;
  background: #fff;
  border:1px solid #ccc;
  text-align: center;
  padding: 15px;
  font-weight: 500;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #304000;
  background: #fff;
  border:1px solid #ccc;
  text-align: center;
  padding: 15px;
  font-weight: 500;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0B4F67;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #0B4F67;
  border: 0;
  margin-bottom: 50px;
  padding: 10px 45px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #313131;
}

.form-control{
  border-radius: 0;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  #rodape .bt-custom-3{
    padding: 15px 50px; 
  }
/*--------------------------------------------------------------
# Textos
--------------------------------------------------------------*/
#categoria {
  margin-top: 40px;
}

#categoria h2 {
  color: #CC922E;
}
/*--------------------------------------------------------------
# Textos
--------------------------------------------------------------*/

.legenda {
 text-align: center;
 text-transform: uppercase;
 color: #114859;
 font-size: 0.8em;
 font-weight: 500;
}

.legenda-2 {
 text-align: center;
 text-transform: uppercase;
 color: #CC922E;
 font-size: 1em;
 font-weight: 600;
}

.creditos {
  text-align: center;
  font-size: 0.75em;
  font-style: italic;
  text-transform: none;
  color: #333;
}


.texto {
 color: #777;
 font-size:1.1em;
}

.texto-2 {
 color: #777;
 font-size:1.0em;
}

.texto-3 {
 color: #777;
 font-size:0.9em;
}

.breadcrumb{
  padding: 120px 0 5px 0;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

.breadcrumb a{
  text-decoration: none;
  color: #083D4C;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.fa-ul i{
  color: #114859;
}
.espacar {
  margin-bottom: 45px;
}
/*--------------------------------------------------------------
# Eventos
--------------------------------------------------------------*/

.ev-bras {
  background: #D8AC3F /*url(../img/ev-brasilia-2023-00.jpg)*/;
  padding: 20px;  
}

.tit-evento {
  font-size: 22px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  background: #CC922E;
  padding: 8px 12px;
  
}
.sub-evento {
  font-size: 18px;
  font-weight: 600;
  color: #083D4C;
  padding: 0 0 0 12px;
}
.bt-custom-7 {
  color: #083D4C;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #CC922E;
  margin-bottom: 10px;
  padding: 8px 0;
  transition: background 0.4s, color 0.5s;
}

.bt-custom-7:hover {
  color: #CC922E;
  background: #EEE;
  border: 1px solid #083D4C;
}