
/* Fonts */

@font-face {
  font-family: Panton;
  src: url(/fonts/Panton-Regular.woff);
}

@font-face {
  font-family: Panton;
  src: url(/fonts/Panton-BlackCaps.woff);
  font-weight: bold;
}

* {
  font-family: Panton;
}



@media only screen and (min-width: 1018px) {
	.show-mobile{
		display: none !important;
	}
  .mobile-left {
    float: left !important;
  }
  .mobile-right {
    float: right !important;
  }
}

@media only screen and (max-width: 1018px) {
	.hide-mobile{
		display: none !important;
	}

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

  .padding{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

}

html{
  overflow-x: hidden;
  overflow-y: auto;
}

body{
  overflow: hidden;
  font-family: 'Panton';
}

.danger-color{
  color: #231f20;
}

.danger-bg{
  background-image: linear-gradient(to right,#000000, #2E2E2E);
}

.purple-degrade{
  background-image: linear-gradient(to right,#ba231f, #ba231f);
}

.color-purple-degrade{
  background: linear-gradient(#231f20, #929497);
  background-clip: text;
  color: transparent;
}

.line-blue-purple-gradient::after {
  content: " ";
  display: block;
  position: absolute;
  height: 16px;
  background-image: linear-gradient(to right, #231f20 , #929497);
  width: 40%;
  left: 30%;
  bottom: -8px;
  border-radius: 20px;
  z-index: 8;
}

.padding{
  padding-left: 100px;
  padding-right: 100px;
}

/* Positions */

.center{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Nav Menu */

@media only screen and (max-width: 1018px) {

  .nav-mobile{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.95;
    z-index: 9;
    overflow-y: auto;
    display: none;
  }

  .menu-mobile{
    width: 100%;
    text-align: left;
  }

}

.mobile-nav-button{
  position: absolute;
  right: 0px;
  color: #fff;
  background: none;
  font-size: 21pt;
  top: 21px;
  overflow: hidden;
  width: auto;
  height: 50px;
}

.nav-menu-col{
  display: flex;
  position: relative;
}

.nav-menu-item-divider{
  background-color: #16010e;
  margin: 35px 0;
  width: 1px;
}

.nav-menu-home{
  height: 100%;
  color: #FFF;
  padding: 0 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
  font-size: 12pt;
  transition:all .2s linear;
  background:transparent;
}
.nav-menu-home a,
.nav-menu-item a{
  color:#FFF !important;
  text-decoration:none;
  font-size:10pt;
  transition:all .15s linear;
}

.nav-menu-item{
  height: 100%;
  color: #FFF;
  padding: 0 5px;
  cursor: pointer;
  position: relative;
  font-size:10pt;
  flex: 1 0 0%;
  text-align: center;
  transition:all .15s linear;
}

.nav-menu-item:hover,
.nav-menu-home:hover{
  background:rgba(0,0,0,.4);
  transition:all .15s linear;
}

.nav-submenu{
  opacity: 0.85;
  display: none;
  position: absolute;
  top: 80%;
  left: 20%;
  width: max-content;
  border-radius: 0 0 5px 5px;
  opacity: 0.85;
  z-index: 200;
  text-align: left;
  padding: 5px 0;
  width: 300px;
}

.nav-submenu>a{
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  padding: 5px 15px;
  font-weight: 300;
  font-size: 10pt;
}

.nav-submenu>a:hover{
  background-color: rgba(0, 0, 0, 0.5);
}

.nav-menu-item:hover>.nav-submenu {
  display: block;
}

/* Search Bar */

@media only screen and (max-width: 1018px) {

  .container-searchbar{
    padding: 5px 0 !important;
  }

  .btn-searchbar{
    margin-top: 15px;
  }
  
}

.container-searchbar{
  padding: 15px 100px;
}

.form-searchbar{
  color: #ffffff;
}

.form-searchbar>div{
  background: transparent;
  color: #ffffff;
  border-right: 0;
}

.form-searchbar>input,
.form-searchbar>input:hover,
.form-searchbar>input:focus,
.form-searchbar>input:active,
.form-searchbar>input::placeholder{
  background: transparent;
  color: #ffffff;
  border-left: 0;
}

/* Slider */

@media only screen and (max-width: 1018px) {
  .carousel-indicators [data-bs-target]{
    height: 10px !important;
    width: 10px !important;
  }
  .carousel-indicators{
    bottom: 3px !important;
  }  
  .ingressos-btn-slider{
    font-size: 10px !important;
    height: 17px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.carousel-indicators [data-bs-target]{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center center;
}

.carousel-indicators{
  top: 95%;
}

.carousel-item{
  position: relative;
}

.ingressos-btn-slider{
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  z-index: 2;
}

/* Content */

.content-container{
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: linear-gradient(to right, #231f20, #929497);
  color: #ffffff;
}

.content-container .page-container{
  color:#111 !important;
}

.bg-purple-linear{
  background-image: linear-gradient(to right, #231f20, #929497);
}

/* Footer */

.container-footer{
  box-shadow: 1px -11px 29px -16px rgba(0,0,0,0.71);
-webkit-box-shadow: 1px -11px 29px -16px rgba(0,0,0,0.71);
-moz-box-shadow: 1px -11px 29px -16px rgba(0,0,0,0.71);
  background-image: url(images/bg/lines-bg.png), linear-gradient(to right, #231f20, #929497);
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-adm-opus{
  background-image: url(images/bg/lines-bg.png);
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer-social-links{
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  width: 35px;
  height: 35px;
  padding: 5px;
  text-align: center;
  margin: 3px;
  transition:all .2s linear;
}

.footer-links{
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition:all .2s linear;
}

.footer-links:hover{
  color: #000;
  text-decoration: none;
  transition:all .2s linear;
}
.footer-social-links:hover{
  transition:all .2s linear;
  text-decoration: none;
  background:#000;
  color:#FFF;
  border-color:#000;
}


.header-social-links{
  background: transparent;
  color: #ffffff;
  width: 35px;
  height: 35px;
  padding: 5px;
  text-align: center;
  margin: 3px;
  transition:all .2s linear;
}

.header-social-links:hover{
  transition:all .2s linear;
  text-decoration: none;
  background:rgba(0,0,0,.6);
  color:#FFF;
}

.pagina a{
  color:#111;
}
.container-noticias-capa{
  padding-bottom:70px;
}
.container-gray{
  background:#fEfEfE;
  color:#222;
}
#container-noticias-capa .card-img-top{
  height:200px;
  background-size:cover;
  background-position:center center; 
  background-repeat:no-repeat;
  background-color:#333;
  transition:all .2s linear;
}
#container-noticias-capa .custom-news-title{
  transition:all .2s linear;
}
#container-noticias-capa .custom-news-card:hover .card-img-top{
  transform:scale(1.03);
  box-shadow:0 0 15px rgba(0,0,0,.2);
  transition:all .2s linear;
}
#container-noticias-capa .custom-news-card:hover .custom-news-title{
  transform:translateX(-10px) scale(1.02);
  transition:all .2s linear;
}

#img-footer{
  transition:all .3s linear;
}
#img-footer:hover{
  filter: drop-shadow(0 0 6px #fff);
  transition:all .5s linear;
}

#carouselExampleIndicators .carousel-indicators{
  top: 104%;
}


#carouselExampleIndicators .carousel-item{
  height:auto;
  transition: all .3s linear;
}

#carouselExampleIndicators .carousel-item .carousel-item-image:before{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 110px);
  transition: all .3s linear;
  position: absolute;
  z-index:99;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0) 100%);
}

#carouselExampleIndicators .carousel-item-image{
  height:auto;
  background-size:cover;
  transition: all .3s linear;
  background-position:center center;
}

#carouselExampleIndicators .carousel-item .container-text-carousel {
  height:110px;
  padding:20px;
  color: #FFF;
  transition: all .3s linear;
  font-weight: bold;
  text-shadow: 0 0 15px rgb(0 0 0 / 90%);
}
#carouselExampleIndicators .carousel-item .container-text-carousel h3{
  font-weight:bold;
}
#carouselExampleIndicators .carousel-item .container-text-carousel .text-right{
  padding-right:20px;
  text-align:right !important;
  padding-top: 4px;
  line-height: 80%;
}
#carouselExampleIndicators .carousel-item .container-text-carousel .text-left{
  text-align:left !important;
  padding-left:20px;
  padding-top:10px;
}
#carouselExampleIndicators .carousel-item .container-text-carousel .text-center{
  padding-top:10px;
  text-align:center !important;
}

#carouselExampleIndicators .carousel-item p {
  color: #FFF;
  text-shadow: 0 0 12px rgb(0 0 0 / 90%);
}

#carouselExampleIndicators .carousel-item .btn-action-carousel{
  background:#fff;
  border:1px solid #FFF;
  color:#222;
  padding:10px;
  box-shadow: 1px 1px 5px rgb(0 0 0 / 40%);
  box-shadow:1px 1px 5px rgba(0,0,0,.4);
  text-align:center;
  min-width:100px;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: none;
}

#carouselExampleIndicators .carousel-indicators [data-bs-target]{
  opacity:.8;
  border:2px solid transparent !important;
  transition:all .2s linear;
}
#carouselExampleIndicators .carousel-indicators [data-bs-target].active{
  opacity:1 !important;
  border:2px solid #fff !important;
  transform:scale(1.05);
  transition:all .2s linear;
}

#carouselExampleIndicators .carousel-indicators [data-bs-target]:hover{
  transition:all .2s linear;
  transform:scale(1.02);
  box-shadow:0 0 5px rgba(0,0,0,.3);
  border:2px solid #fff !important;
}


@media only screen and (max-width: 700px) {
  #carouselExampleIndicators .carousel-item{
    height:auto;
  }
  #carouselExampleIndicators .carousel-item-image,
  #carouselExampleIndicators .carousel-item .carousel-item-image:before{
    height:auto;
  }
  #carouselExampleIndicators .carousel-item .carousel-item-image:before{
    height:calc(100% - 80px);
  }
  #carouselExampleIndicators .carousel-item .container-text-carousel {
    height:80px;
    padding: 8px 20px;
  }
  #carouselExampleIndicators .carousel-item h3 {
    font-size:12pt;
  }
  #carouselExampleIndicators .carousel-item p {
    font-size:9pt;
  }
  #carouselExampleIndicators .carousel-item .btn-action-carousel{
    padding:5px 10px;
    font-size:9pt;
  }
  #carouselExampleIndicators .carousel-indicators{
    display:none;
  }
  #carouselExampleIndicators .carousel-item .container-text-carousel .text-right{
    padding-right:10px;
    padding-top: 8px;
    line-height: 70%;
  }
  #carouselExampleIndicators .carousel-item .container-text-carousel .text-left{
    padding-left:10px;
    padding-top:13px;
  }
  #carouselExampleIndicators .carousel-item .container-text-carousel .text-center{
    padding-top:13px;
  }
}


#eventos-carousel .card-img-top{
    background-size:cover;
    background-position:center center; 
    background-repeat:no-repeat;
    background-color:#333;
    transition:all .2s linear;
    height:220px;
    border-radius:10px;
}

#eventos-carousel .card.custom-event:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0) 100%);
}

#eventos-carousel .card.custom-event .nome-evento{
  position: absolute;
  bottom: 27px;
  left: 15px;
  font-weight: bold;
  font-size: 11.5pt;
  text-shadow: 0px 0px 5px rgba(0,0,0, .9);
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 109%;
  width: 85%;
  display: block;
}

#eventos-carousel .card.custom-event{
  border:0;
  border-radius:10px;
}

.custom-social-container a img{
  transition:all .2s linear;
}

.custom-social-container a:hover img{
  transform:scale(1.03);
  box-shadow:0 0 10px rgba(0,0,0,.5);
  transition:all .2s linear;
}

.headpage{
  background-repeat:no-repeat;
  background-size:cover;
  /* background-position: center; */
  text-align:right;
  min-height:300px;
  margin-bottom:50px;
}
.headpage h1{
  display:inline-block;
  background: #111;
  color: #fff;
  margin: 105px 60px;
  padding: 0px 7px;
  font-size: 31pt;
}

.container-thumb-fotos img{
  transition:all .2s linear;
  border-radius:5px;
  margin-right:5px;
}
.container-thumb-fotos img:hover{
  transform:scale(1.02);
}



/* BACKGROUNDS */

.bg-blue-purple-gradient{
  background: linear-gradient(#5c2f74, #772f6f) !important;
  border-color: linear-gradient(#5c2f74, #772f6f) !important;
}

.bg-blue{
  background-color: #231f20 !important;
  border-color: #231f20 !important;
  color: #ffffff !important;
}

.bg-green{
  color:#0C4408 !important;
  background-color:#6ee11b !important;
  border-color:#6ee11b !important;
}

.bg-orange{
    color:#3C3F07 !important;
    background-color:#f6a931 !important;
    border-color:#f6a931 !important;
}

.bg-red{
  background-color:#ed462f !important;
  border-color:#ed462f !important;
  color:#3D0C07 !important;
}

.bg-purple{
  background-color: #522C7A !important;
  border-color: #522C7A !important;
  color: #ffffff !important;
}

.bg-black{
  background-color:#1D232A !important;
  border-color:#1D232A !important;
  color:#FFF !important;
}

.bg-white{
  background-color:#E2E2E2 !important;
  border-color:#E2E2E2 !important;
  color:#111 !important;
}

.bg-light-grey{
  background-color: #E2E2E2 !important;
  border-color: #E2E2E2 !important;
  color: #1D232A !important;
}

.bg-hard-black{
  background-color: #1D232A !important;
  border-color: #1D232A !important;
  color: #ffffff !important;
}

.bg-soft-black{
  background-color: #3A444F !important;
  border-color: #3A444F !important;
  color: #ffffff !important;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}


@media only screen and (max-width: 1018px) {
  .news-title{
    font-size: 27px !important;
    text-align: right !important;
    line-height: 5px !important;
    margin-bottom: 45px;
  }
  .news-title>img{
    float: left !important;
    height: 80px !important;
  }
  
}

.news-container{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.news-title{
  text-align: right;
  font-size: 30px;
}

.news-title>img{
  height: 200px;
  margin: -50px 0;
}

.news-container a{
  color:#111;
  text-decoration:none !important;
}

.news-container a:hover{
  color:inherit;
}

.news-block{
  display: flex;
  margin-bottom: 25px;
}

.news-img-div{
  width: 50%;
  /* background-size:cover;
  min-height:150px;
  background-position:center center;
  background-repeat:no-repeat;
  background-color:#000; */
}

.news-text{
  width: 50%;
  padding: 5px;
}

.news-text>h1{
  font-size: 14px;
  font-weight: bold;
}

.news-text>h2{
  font-size: 14px;
  padding: 5px;
  background-color: #e2b83d;
}

.news-text>p{
  font-size: 10px;
}


@media only screen and (max-width: 1018px) {
  .social-title{
    font-size: 25px !important;
    margin-bottom: -50px;
  }
  .social-container a .img-fluid{
    margin:10px;
  }
  .social-title>img{
    height: 100px !important;
  }
}

.social-container{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.social-container a .img-fluid{
  transition: all .2s linear;
}
.social-container a:hover .img-fluid{
  transition: all .2s linear;
  transform:scale(1.02);
}

.social-title{
  font-size: 30px;
  color: #ffffff;
}

.social-title>img{
  height: 200px;
  margin: -50px 0;
}

.social-col{
  padding: 50px;
}

.social-div{
  width: 100%;
  height: 400px;
}

/* Email Marketing */

@media only screen and (max-width: 1018px) {
  .email-container,.email-text, .email-text>h1{
    text-align: left !important;
  }
  .email-text>h1{
    padding: 0 23px;
    font-size: 14pt;
    margin-top: -50px;
    margin-bottom: 20px;
  }
  
}

.email-container{
  padding-top: 100px;
  padding-bottom: 55px;
  position: relative;
}

.email-text{
  text-align: right;
}

.email-text>h1{
  font-size: 19pt;
  font-weight: 300;
  color: #333;
  letter-spacing: 1px;
  line-height: 115%;
  padding-top: 7px;
  display: inline-block;
  text-align: justify;
  left: -20px;
  position: relative;
}

.email-input{
  margin-right: 5%;
  height: 65px;
  font-size: 15pt;
  padding: 5px 25px 0;
  border-radius: 30px;
}

.email-button{
  height: 45px;
  padding-top: 9px;
  margin-top: 10px;
  font-size: 14pt;
  border-radius: 80px;
}

/* Brands */

@media only screen and (max-width: 1018px) {
  .brands-text{
    text-align: center !important;
  }
}

.brands-container{
  background-color: #313941;
  position: relative;
}

.brands-separator{
  height: 20px;
  background-color: #1f1e1e;
}

.brands-text{
  padding-top: 40px;
  padding-bottom: 40px;
  color: #ffffff;
}

.brands-brands{
  display: flex;
  text-align:center;
}

.brands-brands a{
  transition:all .2s linear;
}
.brands-brands a:hover{
  transition:all .2s linear;
  background: rgba(0,0,0,.2);
}

.brands-void{
  width: 16%;
  background-color: #1D232A;
}

.brands-img{
  margin-top: 10px;
  width: 74%;
}

.col-top-social{ 
  padding-top: 25px; 
  padding-bottom: 25px;
  color:#FFF;
}
.col-top-social form{
  width: 80%;
  margin-top: 10px;
  margin-bottom: -10px;
}
.col-top-social form .input-group-text{
  font-size: 11pt;
}
.col-top-social form input.form-control{
  padding: 3px 0 0;
  text-transform: lowercase;
  font-size: 11pt;
  height:31px;
}
.col-top-social .social-top-container{
  margin-left: -4px;
  display: flex;
  margin-top: 20px;
}
#searchBar{
  filter: contrast(1.2) brightness(0.7);
}
.carousel-control-next-icon, .carousel-control-prev-icon{
  filter: brightness(0.4);
}