@import url("bootstrap-grid.css");

@import url("elements.css");

/** STRUCTURE **/



canvas.js-canvas {

  position: absolute;

  top: 0;

  left: 0;

  padding: 0;

  margin: 0;

  z-index: 3;

  pointer-events: none;

  mix-blend-mode: difference;

}



body {

  font-family: 'Open Sans', sans-serif;

  font-weight: 400;

  color: #FFF;

  font-size: 14px;

  -webkit-transition: padding .3s ease-in-out;

  -moz-transition: padding .3s ease-in-out;

  -o-transition: padding .3s ease-in-out;

  transition: padding .3s ease-in-out;

}

html {

  overflow-x: hidden;

  overflow-y: scroll;

}

html,
body {

  height: 100vh;

  margin: 0;

  background: #000;

  position: relative;

}

body.left-menu {

  padding-left: 130px;

}

#wrapper {

  min-height: 100vh;

}

#content {

  position: relative;

  transition: padding 0.2s ease-in-out;

  padding: 60px 0;

}

.largura {

  padding-left: 5%;

  padding-right: 5%;

}

#footer {

  height: 60px;

  margin-left: 0;

  margin-top: -60px;

  text-align: center;

  font-size: 12px;

  line-height: 12px;

  padding-top: 24px;

  padding-bottom: 24px;

  position: relative;

  width: 100%;

  transition: width 0.2s ease-in-out;

}

#footer:before {

  display: block;

  content: "";

  height: 5px;

  background-size: 100%;

  width: 100%;

  position: absolute;

  bottom: 0;

  left: 0;

}

.inactive #header {

  padding: 0;

}

.inactive #header .logo {

  height: 0;

  opacity: 0;

}

#header {

  background: #FFF;

  position: absolute;

  top: 50%;

  width: 100%;

  transform: translateY(-50%);

  padding: 30px 0;

  -webkit-transition: all 1s ease-out;

  -moz-transition: all 1s ease-out;

  -o-transition: all 1s ease-out;

  transition: all 1s ease-out;

}

#header .logo {

  display: block;

  background: url(../images/logo.png) center no-repeat;

  background-size: auto 100%;

  width: 190px;

  height: 207px;

  text-indent: -9999px;

  margin: 0 auto;

  position: relative;

  opacity: 1;

  -webkit-transition: all 1s ease-out;

  -moz-transition: all 1s ease-out;

  -o-transition: all 1s ease-out;

  transition: all 1s ease-out;

}

#header #menu {

  padding-top: 30px;

  height: initial;

  -webkit-transition: all 1s ease-out;

  -moz-transition: all 1s ease-out;

  -o-transition: all 1s ease-out;

  transition: all 1s ease-out;

}

#header #menu.no-transition {

  -webkit-transition: initial;

  -moz-transition: initial;

  -o-transition: initial;

  transition: initial;

}

#header #menu ul {

  text-align: center;

}

#header #menu ul li {

  display: inline-block;

  padding: 0 5px;

}

.hide-menu #header #menu ul li a {

  top: 200px;

}

#header #menu ul li a {

  display: inline-block;

  color: #000;

  border: 1px solid #000;

  padding: 15px;

  text-transform: uppercase;

  position: relative;

  top: 0;

  -webkit-transition: top 1s ease-out, background .3s ease-out, color .3s ease-out;

  -moz-transition: top 1s ease-out, background .3s ease-out, color .3s ease-out;

  -o-transition: top 1s ease-out, background .3s ease-out, color .3s ease-out;

  transition: top 1s ease-out, background .3s ease-out, color .3s ease-out;

}

#header #menu ul li:nth-child(2) a {

  -webkit-transition: top 1s ease-out .2s, background .3s ease-out, color .3s ease-out;

  -moz-transition: top 1s ease-out .2s, background .3s ease-out, color .3s ease-out;

  -o-transition: top 1s ease-out .2s, background .3s ease-out, color .3s ease-out;

  transition: top 1s ease-out .2s, background .3s ease-out, color .3s ease-out;

}

#header #menu ul li:nth-child(3) a {

  -webkit-transition: top 1s ease-out .4s, background .3s ease-out, color .3s ease-out;

  -moz-transition: top 1s ease-out .4s, background .3s ease-out, color .3s ease-out;

  -o-transition: top 1s ease-out .4s, background .3s ease-out, color .3s ease-out;

  transition: top 1s ease-out .4s, background .3s ease-out, color .3s ease-out;

}

#header #menu ul li:nth-child(4) a {

  -webkit-transition: top 1s ease-out .6s, background .3s ease-out, color .3s ease-out;

  -moz-transition: top 1s ease-out .6s, background .3s ease-out, color .3s ease-out;

  -o-transition: top 1s ease-out .6s, background .3s ease-out, color .3s ease-out;

  transition: top 1s ease-out .6s, background .3s ease-out, color .3s ease-out;

}

#header #menu ul li:nth-child(5) a {

  -webkit-transition: top 1s ease-out .8s, background .3s ease-out, color .3s ease-out;

  -moz-transition: top 1s ease-out .8s, background .3s ease-out, color .3s ease-out;

  -o-transition: top 1s ease-out .8s, background .3s ease-out, color .3s ease-out;

  transition: top 1s ease-out .8s, background .3s ease-out, color .3s ease-out;

}

#header #menu ul li:nth-child(6) a {

  -webkit-transition: top 1s ease-out 1s, background .3s ease-out, color .3s ease-out;

  -moz-transition: top 1s ease-out 1s, background .3s ease-out, color .3s ease-out;

  -o-transition: top 1s ease-out 1s, background .3s ease-out, color .3s ease-out;

  transition: top 1s ease-out 1s, background .3s ease-out, color .3s ease-out;

}

#header #menu ul li a:hover,

#header #menu ul li a.active {

  text-decoration: none;

  background: #000;

  color: #FFF;

}

.left-menu body {

  margin-left: 100px;

}

.left-menu #header {

  top: 0%;

  transform: translateY(0%);

  left: 0;

  height: 100vh;

  width: 130px;

  -webkit-transition-duration: 1s;

  -moz-transition-duration: 1s;

  -o-transition-duration: 1s;

  transition-duration: 1s;

  position: fixed;

  padding-bottom: 0;

}

.left-menu #header.rotate {

  height: 140px;

}



#header .logo.small {

  width: 100px;

  background-size: 100% auto;

  background-position: center top;

  height: 80px;

  -webkit-transition-duration: .2s;

  -moz-transition-duration: .2s;

  -o-transition-duration: .2s;

  transition-duration: .2s;

}

.left-menu #header #menu {

  position: relative;

  -webkit-transition-duration: .5s;

  -moz-transition-duration: .5s;

  -o-transition-duration: .5s;

  transition-duration: .5s;

}

.left-menu #header #menu ul {

  white-space: nowrap;

  -ms-transform: rotate(-90deg) translateX(-100%);
  /* IE 9 */

  -ms-transform-origin: left top;

  -moz-transform: rotate(-90deg) translateX(-100%);
  /* Firefox */

  -moz-transform-origin: left top;

  -webkit-transform: rotate(-90deg) translateX(-100%);
  /* Safari and Chrome */

  -webkit-transform-origin: left top;

  -o-transform: rotate(-90deg) translateX(-100%);
  /* Opera */

  -o-transform-origin: left top;

  left: 45px;

  position: relative;

  width: calc(100vh - 110px);

  max-width: calc(100vh - 110px);

}

.left-menu #header #menu ul li {

  float: right;

}



.video-player {

  position: relative;

  overflow: hidden;

}

.video-player a {

  width: 100%;

  display: block;

}

.video-player a img {

  width: 100%;

  max-height: 90vh;

  display: block;

}

.video-player>a:before {

  content: "";

  position: absolute;

  width: 100px;

  height: 100px;

  background: rgba(255, 255, 255, .5);

  left: 0;

  bottom: 0;

  right: 0;

  top: 0;

  margin: auto;

  border-radius: 50%;

  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);

  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);

  z-index: 2;

}

.video-player>a:hover:before {

  background: rgba(255, 255, 255, 1);

}

.video-player>a:after {

  content: "";

  position: absolute;

  width: 0;

  height: 0;

  border-style: solid;

  border-width: 25px 0 25px 30px;

  border-color: transparent transparent transparent #ffffff;

  left: 10px;

  bottom: 0;

  right: 0;

  top: 0;

  margin: auto;

  z-index: 3;

}

.video-player>a:hover:after {

  border-color: transparent transparent transparent #000;

}

.pre {

  white-space: pre-wrap;

}



.video-player>a.loading:after {

  color: #000;

  font: normal normal normal 14px/1 FontAwesome;

  content: "\f110";

  font-size: 60px;

  position: absolute;

  width: 60px;

  height: 60px;

  border: none;

  left: 0;

  bottom: 0;

  right: 0;

  top: 0;

  animation: fa-spin 2s infinite linear;

}

.video-player iframe {

  position: absolute;

  width: 100% !important;

  max-height: 90vh;

  height: 100%;

  left: 0;

  top: 0;

  z-index: 5;

}



.row.video-list {

  margin-left: -40px;

  margin-right: -40px;

}

.row.video-list>div {

  padding-right: 40px;

  padding-left: 40px;

}

.video-player-small a {

  display: block;

  color: #FFF;

  opacity: .5;

}

.video-player-small a:hover,

.video-player-small.playing a {

  opacity: 1;

}

.video-player-small a img {

  margin-bottom: 20px;

}

.video-player-small a p {

  display: block;

  color: #FFF;

  margin-bottom: 90px;

  font-size: 16px;

  font-weight: 600;

}



.video-player-small>a:hover:before,

.video-player-small.playing>a:before {

  content: "";

  position: absolute;

  width: 100px;

  height: 100px;

  background: rgba(255, 255, 255, .5);

  left: 0;

  bottom: 0;

  right: 0;

  top: -125px;

  margin: auto;

  border-radius: 50%;

  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);

  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);

  z-index: 2;

}

.video-player-small>a:hover:after,

.video-player-small.playing>a:after {

  content: "";

  position: absolute;

  width: 0;

  height: 0;

  border-style: solid;

  border-width: 25px 0 25px 30px;

  border-color: transparent transparent transparent #ffffff;

  left: 10px;

  bottom: 0;

  right: 0;

  top: -125px;

  margin: auto;

  z-index: 3;

}

.share-button {

  display: inline-block;

  padding: 5px;

  -webkit-transition: color .3s ease-in-out;

  -moz-transition: color .3s ease-in-out;

  -o-transition: color .3s ease-in-out;

  transition: color .3s ease-in-out;

}

.share-button:hover {

  color: #FFF !important;

}



/** SELECT 2 **/

.select2-container .select2-selection--single {

  border-color: var(--border);

  height: 31px;

  -moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;

  -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;

  -ms-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;

  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;

}

.select2-container.select2-container--focus .select2-selection--single {

  border-color: var(--gray);

  outline: none;

}

.select2-container.error .select2-selection--single {

  background-color: #f2dede;

  border-color: #DCA7A5;

}

.select2-container--default .select2-selection--single .select2-selection__rendered {

  line-height: 31px;

}

.select2-container--default .select2-selection--single .select2-selection__arrow {

  height: 31px;

}





.abre-menu {

  display: none;

  line-height: 30px;

}

.abre-menu .menu {

  position: relative;

  display: inline-block;

  width: 30px;

  height: 30px;

  vertical-align: middle;

  margin-right: 10px;

}

.abre-menu .menu span {

  margin: 0 auto;

  position: relative;

  top: 12px;

  -webkit-transition-duration: 0s;
  transition-duration: 0s;

  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;

}

.abre-menu .menu span:before,
.abre-menu .menu span:after {

  position: absolute;

  content: '';

}

.abre-menu .menu span,
.abre-menu .menu span:before,
.abre-menu .menu span:after {

  width: 30px;

  height: 6px;

  background-color: #000;

  display: block;

}

.abre-menu .menu span:before {

  margin-top: -12px;

}

.abre-menu .menu span:after {

  margin-top: 12px;

}

.abre-menu.active .menu span {

  background-color: rgba(0, 0, 0, 0.0);

  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;

}

.abre-menu .menu span:before {

  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;

  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;

  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;

}

.abre-menu.active .menu span:before {

  margin-top: 0;

  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;

}

.abre-menu .menu span:after {

  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;

  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;

  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;

}

.abre-menu.active .menu span:after {

  margin-top: 0;

  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);

  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;

}



/** MEDIA QUERIES **/

@media only screen and (max-width: 2000px) {}

@media only screen and (max-width: 1400px) {}



@media only screen and (max-width: 1199px) {}



@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 960px) {}

@media only screen and (max-width: 767px) {

  .text-60 {

    font-size: 40px;

  }

  #header #menu ul li {

    padding-bottom: 10px;

  }

  body.left-menu {

    padding-left: 0;

    padding-top: 80px;

  }

  body.left-menu .abre-menu {

    display: block;

    float: right;

    padding: 13px 0;

    position: relative;

    z-index: 15;

  }

  .left-menu #header {

    top: 0;

    right: 0;

    height: auto;

    width: auto;

    z-index: 15;

    padding: 15px;

  }

  #header .logo.small {

    float: left;

    width: 60px;

    height: 48px;

  }

  .left-menu #header #menu {

    text-align: center;

    position: fixed;

    top: 70px;

    background: #FFF;

    left: 0;

    right: 0;

    padding-top: 10px;

    top: -100vh;

    z-index: -1;

  }

  .left-menu #header #menu ul {

    -ms-transform: initial;
    /* IE 9 */

    -moz-transform: initial;
    /* Firefox */

    -webkit-transform: initial;
    /* Safari and Chrome */

    -o-transform: initial;
    /* Opera */

    transform: initial;

    width: initial;

    left: initial;

    display: inline-block;

    max-width: initial;

  }

  .left-menu #header #menu ul li {

    float: none;

    display: block;

    padding-bottom: 30px;

  }

  .left-menu #header #menu ul li a {

    display: block;

  }

  .video-player-small a p {

    margin-bottom: 60px;

  }



  body.nav-up #header {

    top: -100px
  }

}



@media only screen and (max-width: 640px) {

  #footer p {

    text-align: left;

  }

  .largura {

    max-width: 1200px;

    padding-left: 15px;

    padding-right: 15px;

  }

}



@media only screen and (max-width: 575px) {

  #footer {

    text-align: left;

  }

}



@media only screen and (max-height: 480px) {}



@media only screen and (max-width: 320px) {}



@media (min-width: 992px) {}



@media (min-width: 1020px) {}



@media print {

  * {

    -webkit-print-color-adjust: exact !important;

    color-adjust: exact !important;

  }

}