/* =================================== */
/*  Main CSS
/* =================================== */
::-moz-selection {
  /* Code for Firefox */
  background-color: #676767;
  color: #fff;
}

::selection {
  background-color: #676767;
  color: #fff;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #777777;
  font-weight: 300;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #777777;
  opacity: 1;
  font-weight: 300;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #777777;
  opacity: 1;
  font-weight: 300;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #777777;
  font-weight: 300;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #777777;
  font-weight: 300;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  color: #505050;
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.625em;
  position: relative;
}

.smaller-body {
  display: flex;
  flex-direction: column;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.colored-counter-list ol {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}

.colored-counter-list ol > li {
  position: relative;
  padding: 3px 0 10px 35px;
}

.colored-counter-list ol > li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  margin-right: 8px;
  padding: 3px 0;
  text-align: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #f29100;
  color: #ffffff;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.media-url {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
}

.media-background {
  height: 100%;
  display: inline-block;
  display: -moz-inline-block;
}

.media-wrapper {
  display: table-cell;
}

.media-image {
  display: table-row;
  width: 1px;
}

.media-image img {
  max-width: 100%;
  max-height: 100%;
}

.media-title {
  padding: 15px 10px;
  display: table-cell;
  width: 1px;
}

.media-title p {
  font-weight: bold;
  margin-block-end: 0;
}

.img-fluid {
  max-width: inherit; /* inherit works with IE, initially was 100% */
}

select {
  display: block;
}

figure {
  margin: 0;
}

a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

iframe {
  border: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: 0;
}

.content-wrapper {
  flex: 1 0 auto;
}

.donate-btn {
  cursor: pointer;
  background-color: #f29100;
  border-radius: 2px;
  padding: 7px 14px 7px 14px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  max-width: 50%;
  width: 100%;
  display: inline-block;
}

.donate-btn:hover {
  color: #ffffff;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
  text-decoration: none;
  outline: 0;
}

#form_register label {
  margin-bottom: 0;
}

.form-control {
  padding: 0.3rem 0.5rem;
  font-size: inherit;
}

.form-control:focus {
  border-color: rgba(242, 145, 0, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(242, 145, 0, 0.25);
}

.btn-submit {
  color: #ffffff;
  background-color: #f29100;
  border-color: #f29100;
}

.btn-submit:hover, .btn-submit:active {
  background-color: #353535;
  border-color: #353535;
}

.btn-submit:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 145, 0, 0.25)
}

.overflow-hidden {
  overflow: hidden;
}

.youtube-max-width {
  max-width: 700px;
}

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

/**
 *  Typography
 *
 **/
.btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
  font-size: 1em;
  line-height: inherit;
}

h1, h2, h3,
h4, h5, h6 {
  color: #222222;
  line-height: 1.2em !important;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600;
}

.h1, .h2, .h3,
.h4, .h5, .h6 {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600;
  color: #222222;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
  color: #222222;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
}

td, th {
  border-radius: 0;
}

.clear::before, .clear::after {
  content: " ";
  display: table;
}

.clear::after {
  clear: both;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-60 {
  padding-bottom: 60px;
}

.text-center {
  text-align: center;
}

/* =================================== */
/*  Menu Styles
/* =================================== */
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-menu {
  padding-bottom: 10px;
  padding-top: 10px;
}

#header {
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: #353535;
  border-top: 2px solid #f29100
}

@media (max-width: 673px) {
  #logo {
    margin-left: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
  z-index: 1;
}

.nav-menu ul ul {
  top: 0;
  right: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 0 8px;
  text-decoration: none;
  display: inline-block;
  color: #CCCCCC;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 22px 0 0 0;
  padding: 10px;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 12px;
  text-transform: none;
}

.nav-menu ul ul {
  margin-right: 10px;
  margin-top: 0;
}

.nav-menu li:hover > a, .menu-active, .parent-active > .sf-with-ul {
  color: #f29100 !important;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  border: 0;
  background: #f29100;
  font-size: 24px;
  display: none;
  transition: all 0.9s;
  outline: none;
  cursor: pointer;
  padding: 10px 15px;
}

#mobile-nav-toggle i {
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 991px) {
  #mobile-nav-toggle {
    display: block;
  }
  #nav-menu-container {
    display: none;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 400;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #fff;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #fff;
}

#mobile-body-overlay {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* =================================== */
/*  Custom Styles
/* =================================== */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.primary-btn {
  background: #f29100;
  line-height: 42px;
  padding-left: 30px;
  padding-right: 30px;
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.primary-btn:focus {
  outline: none;
}

.primary-btn span {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.primary-btn:hover {
  color: #fff;
}

.primary-btn:hover span {
  color: #fff;
  right: 20px;
}

/*-------- Start Sections Area ------------*/
.section-gap {
  padding: 60px 0;
}

.section-colored {
  background: #fafcff;
}

@media (min-width: 768px) {
  .section-height {
    height: 750px !important;
  }
}

.main-section-left h6 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
}

.main-section-left h1 {
  margin: 20px 0;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .main-section-left h1 {
    font-size: 30px;
  }
}

.main-section-left .primary-btn:hover {
  box-shadow: 0 15px 15px 0 rgba(242, 145, 0, 0.3);
}

.main-section-right {
  text-align: center;
}

@media (max-width: 767px) {
  .main-section-right {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
/*-------- End Sections Area ------------*/

/*-------- Start Footer Area ------------*/
.footer-area {
  background: #353535;
  border-bottom: 2px solid #f29100;
}

.smaller-footer {
  flex-shrink: 0;
}

.img-footer {
  max-width: 125px;
}

.footer-label {
  font-size: 11px;
  color: #CCCCCC;
}
/*-------- End Footer Area -------------*/
