/*
 * 1. Google Font
 */

@import url("https://fonts.googleapis.com/css2?family=Amaranth:wght@400;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

/*
 * 2.0 Global Style
 */
html {
  font-family: "Open Sans";
  font-size: 16px;
}

.scrolloff {
  pointer-events: none;
}

body {
  color: #4e4e4e;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 2.3px;
  font-family: "Amaranth";
}

p {
  margin: 0 0 30px;
}

ul li {
  /* font-weight: 700; */
  margin-bottom: 2px;
}

.custom-list-icon,
.list-arrow-right {
  list-style-type: none;
  padding: 0;
}

.custom-list-icon li,
.list-arrow-right li {
  position: relative;
  padding-left: 20px;
}

.custom-list-icon li::before,
.list-arrow-right li::before {
  position: absolute;
  left: 0;
  color: #4e4e4e;
  font-family: "Ionicons";
}

.social-block {
  list-style-type: none;
  padding: 0;
}

.social-block li {
  display: inline-block;
}

.social-block li a {
  display: inline-block;
  height: 32px;
  width: 32px;
  color: #4e4e4e;
}

.social-block li a i {
  font-size: 1.5em;
}

.social-block li a:hover,
.social-block li a:focus {
  color: #000;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}

.btn {
  border: 0;
  border-radius: 0;
  padding: 6px 28px;
  text-transform: uppercase;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}

.form-control {
  border-radius: 0;
  box-shadow: none;
  height: 48px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.6;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ccc;
  background-color: #f8f8f8;
}

.valign-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section {
  padding: 40px 0;
}

.section a {
  color: #0c1e25;
  transition: 1s;
  font-weight: 400;
}

.section a:hover {
  text-decoration: underline;
}

.section-title {
  color: #313131;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-transform: uppercase;
  text-align: center;
}

.section-title span {
  text-transform: lowercase;
}

/*
 * 3.0 Helper Class
 */
/*
 * 3.1 Helper Class: font-weight
 */
.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-700 {
  font-weight: 700;
}

/*
 * 3.2 Helper Class: margin
 */

.container {
  width: 90%;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mt20 {
  margin-top: 20px;
}

.mt60 {
  margin-top: 60px;
}

/*
 * 3.3 Helper Class: list
 */
.list-arrow-right li::before {
  content: "\f3d3";
}

/*
 * 3.4 Helper Class: button
 */
.btn-white {
  padding: 5px 16px;
  color: #000;
  background-color: #ffffffcd;
  border: 1px solid transparent;
  transition-duration: 0.5s;
}

.btn-white:hover {
  color: #fff;
  background: #00000000;
  border: 1px solid #fff;
}

.btn-black {
  color: #fff;
  background-color: #000;
  width: 100%;
  border: 1px solid transparent;
}

.btn-black:hover,
.btn-black:focus {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

.black {
  color: #000 !important;
}

/*
 * 3.5 Helper Class: background
 */
.bg-image,
.bg-image-1,
.bg-image-2 {
  position: relative;
}

.bg-image::before,
.bg-image-1::before,
.bg-image-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-image-1 {
  background: url(../images/backgrounds/bg-1.jpg) no-repeat center center/cover;
}

.bg-image-1::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-image-2 {
  background: url(../images/backgrounds/bg-2.jpg) no-repeat center bottom/cover;
}

.bg-image-2::before {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .section-title {
    color: #313131;
    letter-spacing: 2.3px;
    margin: 0 0 60px;
    text-transform: uppercase;
    text-align: left;
  }
}

/*
 * 4.0 Navigation
 */

.nav {
  margin: auto;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav li {
  text-align: center;
}

@media (max-width: 767px) {
  .nav {
    flex-direction: column;
  }
}
.navbar-custom {
  border: 0;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #00344b;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.navbar-custom .navbar-nav li {
  margin: 0;
}

.navbar-custom .navbar-nav > li > a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.navbar-custom .navbar-nav > li > a:focus,
.navbar-custom .navbar-nav > li > a:hover {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-custom .navbar-nav > .active > a {
  border-color: rgb(255, 255, 255);
}

.navbar-custom a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.navbar-custom a:focus,
.navbar-custom a:hover {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggle {
  border: 0;
  border-radius: 0;
  margin-top: 2px;
}

.navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-solid {
  background-color: #00344b !important;
  padding: 0 !important;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.site-branding {
  float: left;
  margin-top: 0;
  margin-left: 10px;
}

.site-branding .logo {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-right: 5px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-branding .logo:focus,
.site-branding .logo:hover {
  text-decoration: none;
}

/*
 * 5.0 Site Header
 */

@keyframes zoominoutsinglefeatured {
  0% {
    background-position: 25% 0%;
  }

  100% {
    background-position: 25% 20%;
  }
}

.site-header {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/backgrounds/teatro-amazonas-op2.png) no-repeat center
      center/cover;
  background-attachment: fixed;
  background-position: 25% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  animation: zoominoutsinglefeatured 20s ease-out;
}

#site-header-etmf {
  width: 100%;
  height: 50%;
  min-height: 400px;
}

#site-header-etmf div {
  margin-top: 50px !important;
}

#site-header-etmf .intro img {
  height: 150px;
  width: auto;
}

#site-header-etmf .intro .titulo {
  max-width: 800px;
}

#site-header-gallery {
  width: 100%;
  height: 50%;
  min-height: 600px;
  background: rgba(0, 0, 0, 0.492);
}

#site-header-gallery #gallery-video {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  z-index: -1000;
}

#site-header-gallery div {
  margin-top: 50px !important;
  z-index: 1000;
}

#site-header-gallery .intro img {
  height: 150px;
  width: auto;
}

#site-header-gallery .intro .titulo {
  max-width: 800px;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
}

.site-header .intro {
  color: #fff;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  z-index: 1;
  padding: 0 15px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.site-header .intro img {
  height: 200px;
  width: auto;
}

.site-header .intro h2 {
  margin-top: 0px;
  font-size: 25px;
  font-weight: 300;
}

.site-header .intro h1 {
  margin-top: 0px;
  font-size: 30px;
}

.site-header .intro p {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 300;
}

.site-header a.manaus {
  color: #eaeaea;
  transition-duration: 0.5s;
}

.site-header a.manaus:hover {
  color: #b4b4b4;
}

@media (max-width: 768px) {
  .site-header .intro {
    flex-direction: column;
  }

  .site-header .intro .titulo {
    order: -1;
  }

  .site-header .intro img {
    margin-top: 50px;
    height: 150px;
    width: auto;
  }
}

@media (min-width: 768px) {
  .navbar-custom {
    background-color: transparent;
    padding-top: 30px;
  }

  .site-branding {
    margin-top: 6px;
    margin-left: 0;
  }
}

/*
 * 6.0 Section
 */
/*
 * 6.1 Section: About
 */
.about .section-title {
  margin: 0 0 25px;
}

.about figure {
  margin-bottom: 25px;
}

.event-link {
  font-weight: 500;
}
/*
 * 6.2 Section: Facts
 */
.facts {
  padding: 100px 0;
}

.facts i {
  color: #fff;
  font-size: 3em;
}

.facts h3 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/*
 * 6.3 Section: Speaker
 */
.speaker {
  text-align: center;
  color: #313131;
  text-transform: uppercase;
  margin: 25px 0;
}

.speaker h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}

.speaker p {
  margin-bottom: 5px;
  text-transform: none;
}

.speaker figure {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
}

.speaker img {
  width: 100%;
  height: 100%;
  transition: 0.5s all ease-in-out;
  object-fit: cover;
  object-position: 20% 10%;
  /* try 20px 10px */
}

.speaker a {
  transition-duration: 0.5s;
}

.speaker a:hover img {
  transform: scale(1.2);
}

/*
 * 6.4 Section: Registration & Pricing
 */

.registration {
  background-color: #f8f8f8;
}

.registration .section-title {
  text-align: center;
}

@keyframes shine {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

h3#shine-text {
  color: #00344b;
  animation: shine 1.5s linear infinite;
}

.fees-table {
  width: 100%;
}

.fees-table th {
  background-color: #00344b;
  text-align: center;
  padding: 20px;
}

tr.only-etmf-1 {
  background-color: #00344b2e;
}

tr.only-etmf-2 {
  background-color: #00344b6d;
}

tr.only-sbmf-1 {
  background-color: #00344b1e;
}

tr.only-sbmf-2 {
  background-color: #00344b40;
}

tr.etmf-sbmf-1 {
  background-color: #00344b0c;
}

tr.etmf-sbmf-2 {
  background-color: #00344b23;
}

tr.only-etmf-1 td,
tr.only-etmf-2 td {
  color: rgb(45, 45, 45);
  padding: 4px;
  text-align: center;
  border: 1px white solid;
}

tr.only-sbmf-1 td,
tr.only-sbmf-2 td {
  color: rgb(45, 45, 45);
  padding: 4px;
  text-align: center;
  border: 1px white solid;
}

tr.etmf-sbmf-1 td,
tr.etmf-sbmf-2 td {
  color: rgb(45, 45, 45);
  padding: 4px;
  text-align: center;
  border: 1px white solid;
}

td.slot1 {
  background-color: #00344b6d;
}

td.slot2 {
  background-color: #00344b40;
}

td.slot3 {
  background-color: #00344b23;
}

/* Schedule table */

.schedule-table {
  width: 100%;
}

.schedule-table th {
  background-color: #21495a;
  text-align: center;
  padding: 10px;
}

.schedule-table td {
  text-align: center;
  padding: 10px;
  color: black;
  min-width: 16.66%;
}

.schedule-table td.time {
  background-color: #507585;
  color: white;
  width: 200px;
}

.schedule-table td.acai-time {
  background-color: #674d787d;
}

.schedule-table td.lunch {
  background-color: #bdbdbd7d;
}

/*
 * 6.5 Section: Contribution
 */
.contribution {
  text-align: center;
  color: #fff;
  padding: 50px 0;
}

.modal-content {
  border-radius: 0;
}

/*
 * 6.5.1 Section: Important Date
 */

.important-date {
  background: url(../images/backgrounds/bg-tema.png) no-repeat center
    center/cover;
  background-size: cover;
}

.important-date h3 {
  color: white;
}

table,
th,
td {
  border: 1px solid #ededed;
  border-collapse: collapse;
  color: #ffffff;
}

th {
  padding-left: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.3px;
}

th,
td {
  text-align: left;
  vertical-align: middle;
}

td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  font-weight: 400;
}

@media (min-width: 768px) {
  th {
    padding-left: 45px;
  }

  td {
    padding-left: 60px;
  }
}

/*
 * 6.6 Section: Schedule
 */
.outer-tabs {
  background-color: #fbfbfb;
  border: 1px solid #ddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border-color: #000;
  border-bottom-color: transparent;
}

.nav-tabs > li {
  width: 33.3333333333%;
}

.nav-tabs > li > a {
  border-radius: 0;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #ededed;
  margin-right: 0;
  padding: 15px;
  background-color: #f5f5f5;
  transition: all 0.2s ease-in-out;
}

.inner-tabs .nav-tabs > li > a {
  border-color: transparent;
  border-bottom-color: #ededed;
  background-color: #fbfbfb;
}

.inner-tabs .nav-tabs > li.active > a,
.inner-tabs .nav-tabs > li.active > a:focus,
.inner-tabs .nav-tabs > li.active > a:hover,
.inner-tabs .nav-tabs > li > a:focus,
.inner-tabs .nav-tabs > li > a:hover,
.inner-tabs .nav-tabs > li > a:active {
  border-color: transparent;
  border-bottom-color: #000;
  background-color: inherit;
  color: #000;
}

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

.full-width {
  width: 100%;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

.full-width:after {
  position: absolute;
  content: "\f3d8";
  right: 0;
  font-family: "Ionicons";
  color: #000;
  transition: all 0.2s ease-in-out;
}

.collapsed > .full-width:after {
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}

.panel {
  background-color: transparent;
}

.panel-default > .panel-heading {
  color: #000;
  background-color: transparent;
  border-color: transparent;
  border-bottom-color: #ddd;
}

.panel-default {
  border-color: transparent;
}

.schedule .panel-group {
  padding: 0 60px;
}

.panel-group .panel {
  border-radius: 0;
}

.thum-s {
  margin-right: 5px;
}

.time {
  font-size: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 700;
}

.schedule_item {
  border-bottom: 1px solid #d8d8d8;
  padding-top: 10px;
}

.panel-body {
  margin-bottom: 20px;
}

.schedule-box {
  position: relative;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 50px 0;
  margin: 25px 0 0;
}

.schedule-box::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: 1px solid #fff;
}

/*
 * 6.7 Section: Schedule
 */
.partner {
  background-color: #f8f8f8;
}

.partner .partner-box {
  display: block;
  opacity: 0.3;
  height: 150px;
  width: 150px;
  margin: 25px auto;
  -webkit-transition: 0.5s all linear;
  transition: 0.5s all linear;
}

.partner .partner-box:hover {
  opacity: 1;
}

.partner .partner-box-1 {
  background: url(../images/partner/partner-1.png) no-repeat center
    center/contain;
}

.partner .partner-box-2 {
  background: url(../images/partner/partner-2.png) no-repeat center
    center/contain;
}

.partner .partner-box-3 {
  background: url(../images/partner/partner-3.png) no-repeat center
    center/contain;
}

.partner .partner-box-4 {
  background: url(../images/partner/partner-4.png) no-repeat center
    center/contain;
}

.partner .partner-box-5 {
  background: url(../images/partner/partner-5.png) no-repeat center
    center/contain;
}

.partner .partner-box-6 {
  background: url(../images/partner/partner-6.png) no-repeat center
    center/contain;
}

.partner .partner-box-7 {
  background: url(../images/partner/partner-7.png) no-repeat center
    center/contain;
}

.partner .partner-box-8 {
  background: url(../images/partner/partner-8.png) no-repeat center
    center/contain;
}

/*
 * 6.8 Section: FAQ
 */
.faq .panel-heading {
  cursor: pointer;
}

a.faq-toggle {
  color: white;
}

.faq .faq-toggle.collapsed::before {
  font-family: "Ionicons";
  content: "\f218";
  -webkit-transition: 0.5s linear ease-out;
  transition: 0.5s linear ease-out;
  position: absolute;
  left: 15px;
}

.faq .faq-toggle::before {
  position: absolute;
  left: 15px;
  font-family: "Ionicons";
  content: "\f209";
}

.faq .panel-group .panel + .panel {
  margin-top: 15px;
}

.faq .panel-default > .panel-heading {
  color: #fff;
  background-color: #00344b;
  border-color: #000;
  border-radius: 0;
  padding: 0;
}

.faq .panel-default > .panel-heading a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 15px 15px 15px 35px;
}

/*
 * Section: location
 */

.location {
  color: white;
  background: linear-gradient(rgba(0, 0, 0, 0.692), rgba(0, 0, 0, 0.905)),
    url(../images/backgrounds/ufam-vista-superior.jpg) no-repeat center
      center/cover;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.location h3 {
  color: white;
}

.location div {
  height: 100%;
}

.location iframe {
  width: 100%;
  height: 200px;
}

/*
 * 6.9 Section: photos
 */
.classic-button {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  text-transform: uppercase;
}

.grid {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.grid::after {
  content: "";
  display: block;
  clear: both;
}

.grid-item {
  float: left;
  overflow: hidden;
  padding: 3px;
  margin: 0;
  width: 100%;
  position: relative;
}

.grid-item:hover .photo-overlay {
  margin-top: 0;
}

.photo-overlay {
  margin-top: -100%;
  transition: all 0.4s ease-in-out;
  padding-top: calc(50% - 170px);
  vertical-align: middle;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
  background-color: transparent;
}

.nivo-lightbox-image:hover {
  cursor: zoom-out;
}

.photo-overlay h2 {
  text-transform: uppercase;
}

.classic-button:hover {
  background-color: transparent;
  color: #fff;
}

li.grid-item {
  position: relative;
}

@media (min-width: 768px) {
  .grid-item-sm-6 {
    width: 50%;
  }

  .grid-item-sm-3 {
    width: 25%;
  }

  .section-title {
    margin: 0 0 30px;
  }

  figure {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .schedule-box {
    margin: 0;
  }

  .grid-item-md-6 {
    width: 50%;
  }

  .grid-item-md-3 {
    width: 25%;
  }
}

address {
  line-height: 2.428571;
  color: #000;
  font-weight: 400;
}

/*
 * 7.0 Site-footer
 */
.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 0 10px;
}

.site-footer .site-info {
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 2.3px;
}

.site-footer .site-info a {
  color: #fff;
}

.site-footer .social-block li a {
  color: #fff;
}

.site-footer .social-block li a:hover,
.site-footer .social-block li a:focus {
  opacity: 0.8;
}

.submissions {
  background: linear-gradient(rgba(0, 0, 0, 0.692), rgba(0, 0, 0, 0.905)),
    url(../images/backgrounds/encontro-das-aguas.jpg) no-repeat center
      center/cover;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.submissions h3 {
  color: white;
}

.submissions a {
  color: rgb(179, 179, 179);
}

/*Submisson form*/
#submission section {
  text-align: left;
  padding: 0 50px 50px;
}

#submission p {
  color: #000;
}

#submission .btn-black {
  padding: 14px 28px;
}

.pdf {
  margin: 0;
  padding: 0;
}

.pdf span {
  font-size: 50px;
}

.input-group-addon {
  background-color: #000;
  color: #fff;
  font-weight: 400;
  border-radius: 0;
}

/*
Sponsorship
*/
.sponsorship {
  background-color: #00344b;
}

.sponsorship h3 {
  color: white;
}

.sponsors {
  text-align: center;
}

.sponsors img {
  border: 0px solid #000000;
  height: 125px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sponsor-caption {
  background-color: #000;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  margin-top: 0;
}

/*
Countdown jquery
*/
.countdown {
  padding: 60px 0;
  background-color: #00344b;
}

.countdown .col-md-10 {
  /*background-color: #181818;*/
}

.countdown .section-title {
  color: #fff;
}

@media (min-width: 768px) {
  .countdown .section-title {
    text-align: right;
    margin: 0;
  }
}

.is-countdown {
  background-color: #00344b;
  color: #fff;
  border-color: transparent;
}

.countdown-section {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.7px;
}

.countdown-amount {
  border-bottom: 2px solid #262626;
  padding-bottom: 10px;
}

.countdown-period {
  margin-top: 20px;
}

@media (min-width: 768px) {
  /*Row display middle*/
  .countdown .row {
    display: table;
  }

  .countdown [class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: middle;
  }
}

/* Video
=================================================================== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Animations
=================================================================== */
.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ETMF */

div.lectures {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 990px) {
  div.lectures .image figure {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: 0 auto;
  }
}

div.lectures img {
  width: 100%;
  height: 100%;
  transition: 0.5s all ease-in-out;
  object-fit: cover;
  object-position: 20% 10%;
}

@media (max-width: 768px) {
  .site-header .intro {
    flex-direction: column;
  }

  .site-header .intro .titulo {
    order: -1;
  }

  #site-header-etmf .intro .logo-sbmf {
    margin: 0 !important;
  }

  #site-header-etmf .intro .logo-sbc {
    margin: 0 !important;
  }

  #site-header-etmf .intro img {
    margin-bottom: 50px;
    height: 150px;
    width: auto;
  }

  #site-header-gallery .intro .logo-sbmf {
    margin: 0 !important;
  }

  #site-header-gallery .intro .logo-sbc {
    margin: 0 !important;
  }

  #site-header-gallery .intro img {
    margin-bottom: 50px;
    height: 150px;
    width: auto;
  }
}

/* Dropdown */

/* Dropdown Button */
.dropbtn {
  background-color: #ffffff00;
  border: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

/*Gallery*/

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 975px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.gallery img {
  width: 100%;
}

/*
 * Section: gallery-acordion
 */
.gallery-acordion {
  width: 90%;
  margin: auto;
}

.gallery-acordion .panel-heading {
  cursor: pointer;
}

a.gallery-acordion-toggle {
  color: white;
}

.gallery-acordion .faq-toggle.collapsed::before {
  font-family: "Ionicons";
  content: "\f218";
  -webkit-transition: 0.5s linear ease-out;
  transition: 0.5s linear ease-out;
  position: absolute;
  left: 15px;
}

.gallery-acordion .faq-toggle::before {
  position: absolute;
  left: 15px;
  font-family: "Ionicons";
  content: "\f209";
}

.gallery-acordion .panel-group .panel + .panel {
  margin-top: 15px;
}

.gallery-acordion .panel-default > .panel-heading {
  color: #fff;
  background-color: #00344b;
  border-color: #000;
  border-radius: 0;
  padding: 0;
}

.gallery-acordion .panel-default > .panel-heading a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 15px 15px 15px 35px;
}
