.section {
  position: relative;
  width: 100%;
  display: block;
}
.over-hide {
  overflow: hidden;
}
.full-height {
  height: 100vh;
}

/* #Navigation
================================================== */

.cd-header {
  position: fixed;
  width: 100%;
  height: 130px;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #000;
  border-bottom: 2px solid #e67301;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
.header-wrapper {
  position: relative;
  width: calc(100% - 100px);
  margin-left: 50px;
}
.logo-wrap {
  position: absolute;
  display: block;
  left: 0;
  top: 10px;
  cursor: pointer;
}

.nav-but-wrap {
  position: relative;
  display: inline-block;
  float: right;
  padding-left: 15px;
  padding-top: 15px;
  margin-top: 26px;
  transition: all 0.3s ease-out;
}
.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}
.menu-icon__line {
  height: 3px;
  width: 30px;
  display: block;
  background-color: #e67301;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}
.menu-icon__line-left {
  width: 30px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon__line-right {
  width: 30px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}
.nav {
  position: fixed;
  z-index: 98;
}
.nav:before,
.nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 21, 26, 0.6);
  border-bottom-left-radius: 200%;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    border-radius linear 0.8s;
  -webkit-transform: translateX(100%) translateY(-100%);
  transform: translateX(100%) translateY(-100%);
}
.nav:after {
  background: rgba(9, 9, 12, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.nav:before {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.nav__content {
  position: fixed;
  visibility: hidden;
  top: 50%;
  margin-top: 20px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
}
.nav__list {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 2;
}
.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-size: 5vh;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 3px;
  -webkit-transform: translate(100px, 0%);
  transform: translate(100px, 0%);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease;
  margin-top: 0;
  margin-bottom: 0;
}
.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 900;
  z-index: 2;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.nav__list-item a:after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -2px;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  background-color: #e67301;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.nav__list-item a:hover:after {
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}
.nav__list-item a:hover {
  color: rgba(255, 255, 255, 1);
}
.nav__list-item.active-nav a {
  color: rgba(255, 255, 255, 1);
}
.nav__list-item.active-nav a:after {
  height: 4px;
  opacity: 1;
  left: 0;
  width: 100%;
}
body.nav-active .nav__content {
  visibility: visible;
}
body.nav-active .menu-icon__line {
  background-color: #fff;
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
  transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
  transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before,
body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  border-radius: 0;
}
body.nav-active .nav:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease,
    -webkit-transform 0.3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

.switch-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  transform: translateY(-50%);
  width: 100%;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  margin: 0 auto;
  text-align: center;
}
.switch-wrap h1 {
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media screen and (max-width: 580px) {
  .switch-wrap h1 {
    font-size: 32px;
  }
}
.switch-wrap p {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  color: #8167a9;
  text-align: center;
  margin-top: 15px;
}
.switch-wrap p span {
  position: relative;
}
.switch-wrap p span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -4px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.switch-wrap p span:nth-child(2):before {
  opacity: 0;
}
#switch,
#circle {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
#switch {
  width: 60px;
  height: 8px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid #000;
  border-radius: 27px;
  background: #8167a9;
  position: relative;
  display: inline-block;
}
#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  background: #fff;
}
.switched {
  border-color: #8167a9 !important;
  background: #000 !important;
}
.switched #circle {
  left: 43px;
  background: #000;
}

/* #Link to page
================================================== */

.link-to-portfolio {
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 200;
  cursor: pointer;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 3px;
  background-position: center center;
  background-size: 65%;
  background-repeat: no-repeat;
  background-image: url("https://assets.codepen.io/1462889/fcy.png");
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: opacity 0.2s, border-radius 0.2s, box-shadow 0.2s;
  transition-timing-function: ease-out;
}
.link-to-portfolio:hover {
  opacity: 0.8;
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Slider */

.overlay {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-slider {
  width: 100%;
  height: 75vh;
  overflow: hidden;
  margin-top: 130px;
}
.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-slider .carousel-cell .inner {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
  text-align: center;
}

.hero-slider .carousel-cell .inner .title {
  font-size: 6em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 3px;
  margin-bottom: 40px;
  margin-left: 10%;
  text-align: left;
}

.inner p {
  font-family: "Roboto", sans-serif;
  font-size: 1.5em;
  color: #e67301;
  text-align: left;
  margin-left: 10%;
}

@media only screen and (max-width: 480px) {
  .inner p {
    font-size: 16px !important;
    text-align: center;
    padding-top: 40px !important;
  }
  .hero-slider .carousel-cell {
    background-position: 25% 75% !important;
  }
  .hero-slider .carousel-cell .inner .title {
    font-size: 3em;
    line-height: 1em;
    letter-spacing: 3px;
    margin-bottom: 40px;
    margin-left: 6%;
    text-align: center;
  }
}

.slick-initialized .hero__slide:not(.slick-slide) {
  display: none;
}

.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}
.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}
.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}
.hero-slider .flickity-page-dots {
  bottom: 30px;
}
.hero-slider .flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
}
.hero-slider .flickity-page-dots .dot.is-selected {
  background: #e67301;
  border: 0 solid #e67301;
}

/* Destaque Cantor */

.destaque-cantor {
  padding-top: 60px;
}

@media only screen and (max-width: 480px) {
  .destaque-cantor {
    padding-bottom: 60px;
  }
}

.destaque-cantor p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.paragrafo-cantor a {
  color: #e57301;
}

.paragrafo-cantor a:hover {
  color: #000;
  text-decoration: none;
}

/* Destaque Video */

.destaque-video {
  padding: 60px;
  background-image: url("../images/bg-video-home.png");
  background-repeat: no-repeat;
  text-align: center;
  background-position: center;
}

.video-banner-img {
  -webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.video-banner-img:hover {
  filter: drop-shadow(0px 0px 20px rgba(230, 115, 1, 0.9));
  -webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

/* Video Modal
  -----------------------------------------*/
.video-modal,
.video-modal .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
}
.video-modal {
  overflow: hidden;
  position: fixed;
  opacity: 0;

  -webkit-transform: translate(500%, 0%);
  transform: translate(500%, 0%);

  -webkit-transition: -webkit-transform 0s linear 0s;
  transition: transform 0s linear 0s;

  /* using flexbox for vertical centering */

  /* Flexbox display */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;

  /* Vertical alignment */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.video-modal .overlay {
  z-index: 0;
  background: rgba(0, 0, 0, 0.72); /* overlay color */

  opacity: 0;

  -webkit-transition: opacity 0.2s ease-out 0.05s;
  transition: opacity 0.2s ease-out 0.05s;
}

.video-modal-content {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;

  margin: 0 auto;

  overflow-y: visible;

  background: #000;

  width: calc(100% - 12em);
  height: 0;
  padding-top: calc((100% - 12em) * 0.5625); /* 16:9 calc */
}

/* Scaling to fit within the current Viewport size:
	 When viewport aspect ratio is greater than 16:9
	 work off the height instead of the width for calc */
@media (min-aspect-ratio: 16/9) {
  .video-modal-content {
    width: 0;
    height: calc(100vh - 10em);
    padding-top: 0;
    padding-left: calc((100vh - 10em) * 1.7778); /* 16:9 calc */
  }
}

/* Mobile Layout Tweaks - side margins reduced */
@media (max-width: 640px) {
  .video-modal-content {
    width: calc(100% - 1em);
    padding-top: calc((100% - 1em) * 0.5625); /* 16:9 calc */
  }
}

/* modal close button */
.close-video-modal {
  display: block;
  position: absolute;
  left: 95%;
  top: -40px;

  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* set the iframe element to stretch to fit its parent element */
iframe#youtube {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  background: #000;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

/* show the modal: 
	 add class to the body to reveal */
.show-video-modal .video-modal {
  opacity: 1;

  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
}
.show-video-modal .video-modal .overlay {
  opacity: 1;
}
.show-video-modal .video-modal-content {
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
}

/* Destaque CD */

.destaque-cd {
  padding-top: 60px;
  padding-bottom: 60px;
}

.destaque-cd h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .destaque-cd h1 {
    font-size: 2em;
  }
  .apps-musicas {
    font-size: 12px !important;
  }
}

.destaque-cd p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.destaque-cd span {
  color: #e67301;
}

.destaque-cd span img {
  padding: 5px;
}

/* Destaque Agenda */

.destaque-agenda {
  background-color: #e67301;
  padding-top: 60px;
  padding-bottom: 60px;
}

.destaque-agenda p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.destaque-agenda h1 {
  color: #fff;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .destaque-agenda h1 {
    font-size: 2em;
    margin-top: 20px;
  }
}

.destaque-agenda a {
  color: #000;
}

.destaque-agenda a:hover {
  color: #585858;
  text-decoration: none;
}

.bg-data-agenda {
  background-color: #000;
  color: #fff;
  padding: 21px;
  border-radius: 10px;
}

.menu-box {
  font-family: "Roboto", sans-serif;
}

.menu-box-menu {
  margin-bottom: 10px !important;
  background-color: #fff;
  border-radius: 10px;
}

.menu-box-menu li {
  height: 60px;
  position: relative;
  border-radius: 10px;
}
.menu-box-tab {
  line-height: 60px;
  display: block;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  border-radius: 10px;
}
.menu-box-tab span {
  margin-right: 20px;
}
.menu-box-tab:hover {
  background: #a35100;
  text-decoration: none;
  color: #fff !important;
  border-radius: 10px;
}

/* Destaque Galeria */

.destaque-galeria {
  padding-top: 60px;
  padding-bottom: 60px;
}

.destaque-galeria h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .destaque-galeria h1 {
    font-size: 2em;
  }
}

.destaque-galeria p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.destaque-galeria a {
  color: #e67301;
}

.destaque-galeria a:hover {
  color: #000;
  text-decoration: none;
}

.destaque-galeria img {
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.destaque-galeria img:hover {
  -webkit-transform: rotate(15deg) scale(1.2);
  transform: rotate(6deg) scale(1.2);
}

/* Destaque Depoimentos */

.destaque-depoimentos {
  padding-top: 60px;
  background-color: #f2f2f2;
  margin-top: 240px;
  margin-bottom: -250px;
}

.testim {
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  transform: translatey(-50%);
}

.testim .wrap {
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #585858;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px;
  z-index: 22222222;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: #ea830e;
}

.testim .arrow.left {
  left: 10px;
}

.testim .arrow.right {
  right: 10px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #585858;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #ea830e;
  border-color: #ea830e;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale 0.5s ease-in-out forwards;
  -moz-animation: testim-scale 0.5s ease-in-out forwards;
  -ms-animation: testim-scale 0.5s ease-in-out forwards;
  -o-animation: testim-scale 0.5s ease-in-out forwards;
  animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #ea830e;
  font-size: 1em;
  margin: 15px 0;
  font-family: "Roboto", sans-serif;
}

.testim .cont div p {
  font-size: 16px;
  color: #4f4f4f;
  width: 80%;
  margin: auto;
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show 0.5s ease-in-out forwards;
  -moz-animation: testim-show 0.5s ease-in-out forwards;
  -ms-animation: testim-show 0.5s ease-in-out forwards;
  -o-animation: testim-show 0.5s ease-in-out forwards;
  animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
  -moz-animation: testim-content-in 0.4s ease-in-out forwards;
  -ms-animation: testim-content-in 0.4s ease-in-out forwards;
  -o-animation: testim-content-in 0.4s ease-in-out forwards;
  animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
  -moz-animation: testim-content-in 0.5s ease-in-out forwards;
  -ms-animation: testim-content-in 0.5s ease-in-out forwards;
  -o-animation: testim-content-in 0.5s ease-in-out forwards;
  animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide 0.5s ease-in-out forwards;
  -moz-animation: testim-hide 0.5s ease-in-out forwards;
  -ms-animation: testim-hide 0.5s ease-in-out forwards;
  -o-animation: testim-hide 0.5s ease-in-out forwards;
  animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
  -moz-animation: testim-content-out 0.4s ease-in-out forwards;
  -ms-animation: testim-content-out 0.4s ease-in-out forwards;
  -o-animation: testim-content-out 0.4s ease-in-out forwards;
  animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
  -moz-animation: testim-content-out 0.5s ease-in-out forwards;
  -ms-animation: testim-content-out 0.5s ease-in-out forwards;
  -o-animation: testim-content-out 0.5s ease-in-out forwards;
  animation: testim-content-out 0.5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -moz-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -ms-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    -o-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }

  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }

  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }

  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }

  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim .cont div p {
    line-height: 25px;
  }
}

footer {
  background-color: #000;
}

.conteudo-footer {
  padding-top: 60px;
  padding-bottom: 60px;
}

.conteudo-footer span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #e67301;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.conteudo-footer p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.conteudo-footer a {
  color: #e67301;
}

.conteudo-footer a:hover {
  text-decoration: underline;
}

.conteudo-footer img {
  padding: 10px;
}

@media only screen and (max-width: 480px) {
  .conteudo-footer img {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
}

/* Assinatura */

.assinatura {
  background-color: #2b0800;
  color: #fff;
  padding: 30px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

@media only screen and (max-width: 480px) {
  .assinatura {
    padding: 30px;
  }
}

/* Sobre - História*/

.destaque-historia {
  padding-top: 150px;
}

.destaque-historia p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.destaque-historia h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .destaque-historia {
    padding-bottom: 60px;
  }
  .destaque-historia h1 {
    font-size: 2em;
    margin-top: 30px;
  }
}

/* Agenda Interna */

.destaque-agenda-interna {
  padding-top: 180px;
  padding-bottom: 60px;
}

.destaque-agenda-interna h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .destaque-agenda-interna h1 {
    font-size: 2em;
  }
}

.destaque-agenda-interna p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.destaque-agenda-interna span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #e67301;
  font-weight: bold;
}

.agenda-listagem {
  padding-top: 20px;
  padding-bottom: 20px;
}

.destaque-agenda-interna img {
  border-radius: 10px;
}

.menu-box-interna {
  font-family: "Roboto", sans-serif;
}

.menu-box-interna-menu {
  margin-bottom: 10px !important;
  background-color: #f2f2f2;
  border-radius: 10px;
}

.menu-box-interna-menu li {
  height: 60px;
  position: relative;
  border-radius: 10px;
}
.menu-box-interna-tab {
  line-height: 60px;
  display: block;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  border-radius: 10px;
}
.menu-box-interna-tab span {
  margin-right: 20px;
}
.menu-box-interna-tab:hover {
  background: #e67301;
  text-decoration: none;
  color: #fff !important;
  border-radius: 10px;
}
.bg-data-agenda-interna {
  background-color: #000;
  color: #fff;
  padding: 21px;
  border-radius: 10px;
}

.destaque-agenda-interna a {
  color: #000;
}

/* Músicas */

.musicas {
  padding-top: 180px;
  padding-bottom: 60px;
}

.musicas h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .musicas h1 {
    font-size: 2em;
  }

  .musicas img {
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .icones-midias {
    font-size: 11px !important;
  }
}

.musicas p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  float: right;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.musicas span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #e67301;
  font-weight: bold;
}

.musicas img {
  border-radius: 10px;
}

.cds {
  padding-top: 20px;
  padding-bottom: 20px;
}

.icones-midias img {
  padding: 10px;
}

/*  Galeria */

.galeria {
  padding-top: 180px;
  padding-bottom: 60px;
}

.galeria h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.galeria p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.galeria img:hover {
  opacity: 0.6;
  transition: 0.4s;
}

.videos-interna {
  padding-top: 30px;
}

@media only screen and (max-width: 480px) {
  .video-galeria {
    margin-bottom: 20px;
  }
  .galeria h1 {
    font-size: 2em;
  }
}

.container.gallery-container {
  background-color: #fff;
  color: #35373a;
  min-height: 100vh;
  padding-top: 180px;
}

.gallery-container h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.gallery-container p.page-description {
  text-align: center;
  margin: 25px auto;
  font-size: 18px;
  color: #999;
}

.tz-gallery {
  padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
  padding: 2px;
}

.tz-gallery .lightbox img {
  width: 100%;
  max-height: 200px;
  border-radius: 0;
  position: relative;
  object-fit: cover;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}

.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(177, 79, 13, 0.747);
  content: "";
  transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}

.baguetteBox-button {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #e67301;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.breadcrumb-item {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.img-galeria {
  background-color: #e57301;
  background-image: url("../images/02.png");
  background-position: center;
  background-size: cover;
}

/* Contato */

.contato {
  padding-top: 180px;
  padding-bottom: 60px;
}

.contato h1 {
  color: #e67301;
  font-size: 3em;
  font-family: "Boogaloo", cursive;
  margin-bottom: 30px;
}

.contato p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contato a {
  color: #e67301;
}

.contato span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #e67301;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.img-contato {
  padding-top: 60px;
  background-image: url("../images/bg-contato.png");
  background-position: top;
  background-size: cover;
}

.img-contato p {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contato input {
  height: 60px;
  background: #f2f2f2;
  border: 1px solid #bdbdbd;
  box-sizing: border-box;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.contato textarea {
  background: #f2f2f2;
  border: 1px solid #bdbdbd;
  box-sizing: border-box;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.botao-enviar {
  font-family: "Roboto", sans-serif;
  width: 270px;
  height: 60px;
  background: #e67301;
  border-radius: 5px;
  float: right;
  color: #fff !important;
  align-items: center;
  padding: 18px;
  border: none;
}

.botao-enviar:hover {
  background-color: #000;
}

.botao-enviar:active {
  background-color: #000 !important;
}

.btn-hover:focus {
  outline: none;
}

@media only screen and (max-width: 480px) {
  .contato h1 {
    font-size: 2em;
  }
  .botao-enviar {
    margin-bottom: 60px;
  }
  .img-contato {
    padding-bottom: 60px;
  }
}
