@charset "UTF-8";
/*------------------------------------*\
    INIT
\*------------------------------------*/
/**
 * FLEX & ALIGN
 */
/**
 * PSEUDO ELEMENTS
 */
/**
 * RESPONSIVE
 */
/*------------------------------------*\
    MAIN
\*------------------------------------*/
@font-face {
  font-family: 'Nexa';
  src: url("../fonts/NexaLight.eot");
  src: url("../fonts/NexaLight.eot?#iefix") format("embedded-opentype"), url("../fonts/NexaLight.woff2") format("woff2"), url("../fonts/NexaLight.woff") format("woff"), url("../fonts/NexaLight.ttf") format("truetype"), url("../fonts/NexaLight.svg#NexaLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url("../fonts/NexaBold.eot");
  src: url("../fonts/NexaBold.eot?#iefix") format("embedded-opentype"), url("../fonts/NexaBold.woff2") format("woff2"), url("../fonts/NexaBold.woff") format("woff"), url("../fonts/NexaBold.ttf") format("truetype"), url("../fonts/NexaBold.svg#NexaBold") format("svg");
  font-weight: bold;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

/* global box-sizing */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
}

/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* reset links */
a {
  color: currentcolor;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

/* reset form */
input, button, select {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

body {
  font-size: 14px;
  font-family: 'Nexa',Helvetica, Arial, 'sans serif';
  line-height: 1.2;
  color: white;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#010306), color-stop(50%, #1a2950), to(#025280));
  background: linear-gradient(to bottom, #010306 0%, #1a2950 50%, #025280 100%);
}

@media only screen and (min-width: 1600px) {
  body {
    font-size: 15px;
  }
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
main {
  position: relative;
}

.wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  position: relative;
  overflow: hidden;
}

.boxed-sm {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.boxed {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

header {
  z-index: 800;
}

/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/
.main-title {
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
  font-weight: normal;
}

.accordion .accordion-title {
  background-image: url("../img/elements/bar-bg.png");
  background-size: auto 100%;
  padding: 15px 25px;
  padding-left: 45px;
  margin-left: 25px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: "flex-start";
      -ms-flex-pack: "flex-start";
          justify-content: "flex-start";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.accordion .accordion-title .icon {
  display: inline-block;
  background-color: white;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  height: 55px;
  width: 55px;
  margin-right: 25px;
  padding: 13px;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.accordion .accordion-content {
  display: none;
  padding: 25px;
  background-color: #1a2950;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

input, select, textarea {
  border: 1px solid white;
  padding: 5px;
}

.button {
  display: inline-block;
  padding: 15px;
  text-transform: uppercase;
  background-color: #31a5be;
  cursor: pointer;
  font-size: 0.9em;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.button:hover {
  background-color: #fe330a;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media only screen and (max-width: 768px) {
  .button {
    padding: 10px;
  }
}

.button-ghost {
  background-color: unset;
  border: 2px solid white;
}

.button-ghost:hover {
  background-color: #fe330a;
  border-color: #fe330a;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.pagination .page-numbers {
  margin: 5px;
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 34px;
  font-weight: bold;
  text-align: center;
  border: 2px solid white;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background-color: #fe330a;
  border-color: #fe330a;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.links-socials {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5em;
}

.links-socials--sm {
  font-size: 1em;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.social-icon {
  border-radius: 5px;
  background-color: white;
  color: #1a2950;
  padding: 10px;
  height: 1.5em;
  width: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  top: 0;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

.social-icon + .social-icon {
  margin-left: 10px;
}

.social-icon:hover {
  top: -3px;
}

.circle {
  height: 120px;
  width: 120px;
  opacity: 0.8;
  border-radius: 50%;
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .circle {
    height: 80px;
    width: 80px;
  }
}

.full {
  width: 100%;
}

.grid.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bordered {
  padding: 25px;
  border: 2px solid white;
}

.bordered-sm {
  padding: 10px 15px;
}

.push {
  z-index: 20;
  position: relative;
}

.push.push-left {
  margin-left: -15px;
}

.push.push-right {
  margin-right: -15px;
}

.grid-gap .push.push-left {
  margin-left: -30px;
}

.grid-gap .push.push-right {
  margin-right: -30px;
}

@media only screen and (max-width: 768px) {
  .push.push-left, .push.push-right, .grid-gap.push-left, .grid-gap.push-right {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .item-float {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

/*------------------------------------*\
    COLOR
\*------------------------------------*/
.text-white {
  color: #ffffff;
}

.text-cyan {
  color: #31a5be;
}

.text-red {
  color: #fe330a;
}

.text-yellow {
  color: #ffff33;
}

.bg-cyan {
  background-color: #31a5be;
}

.bg-red {
  background-color: #fe330a;
}

.bg-yellow {
  background-color: #ffff33;
}

.bg-grey-dk {
  background-color: #333333;
}

.bg-grey-lg {
  background-color: #f2f2f2;
}

/*------------------------------------*\
    MODIFIERS
\*------------------------------------*/
.is-hidden {
  display: none !important;
}

.is-invisible {
  visibility: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.text-left {
  text-align: left   !important;
}

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

.text-right {
  text-align: right  !important;
}

.item-center {
  margin-left: auto;
  margin-right: auto;
}

small, .text-small {
  font-size: 0.8em;
}

.text-big {
  font-size: 1.2em;
}

.text-large {
  font-size: 1.5em;
}

.mt0 {
  margin-top: 0px !important;
}

.mt1 {
  margin-top: 15px !important;
}

.mt2 {
  margin-top: 30px !important;
}

.mt3 {
  margin-top: 45px !important;
}

.mt4 {
  margin-top: 60px !important;
}

.mt5 {
  margin-top: 75px !important;
}

.mt6 {
  margin-top: 90px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb1 {
  margin-bottom: 15px !important;
}

.mb2 {
  margin-bottom: 30px !important;
}

.mb3 {
  margin-bottom: 45px !important;
}

.mb4 {
  margin-bottom: 60px !important;
}

.mb5 {
  margin-bottom: 75px !important;
}

.mb6 {
  margin-bottom: 90px !important;
}

.p0 {
  padding: 0px !important;
}

.p1 {
  padding: 7.5px !important;
}

.p2 {
  padding: 15px !important;
}

.p3 {
  padding: 22.5px !important;
}

.p4 {
  padding: 30px !important;
}

.p5 {
  padding: 37.5px !important;
}

.p6 {
  padding: 45px !important;
}

/*------------------------------------*\
    HEADER LARGE
\*------------------------------------*/
.menu-push {
  padding-left: 90px;
}

@media only screen and (max-width: 768px) {
  .menu-push {
    padding-left: 0;
  }
}

.header-nav-wrapper {
  position: fixed;
  top: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 900;
  width: 90px;
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper {
    height: auto;
    width: auto;
    top: 15px;
    left: 15px;
    z-index: 999;
  }
}

.header-nav-wrapper .header-nav-button {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 900;
  pointer-events: all;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav-button {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.header-nav-wrapper .header-nav-button .nav-button-icon {
  width: 30px;
  display: inline-block;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav-button .nav-button-text {
    display: none;
  }
}

.header-nav-wrapper .header-nav {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: rgba(16, 22, 85, 0.9);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 890;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 200px 50px 120px 80px;
  pointer-events: all;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav .header-logo {
    top: 15px;
    right: 15px;
    width: 75px;
    left: auto;
  }
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav {
    padding: 80px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header-nav-wrapper .header-nav .links-main, .header-nav-wrapper .header-nav .links-second {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav .links-main, .header-nav-wrapper .header-nav .links-second {
    max-width: 100% !important;
  }
}

.header-nav-wrapper .header-nav .links-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 60%;
}

.header-nav-wrapper .header-nav .links-second {
  right: 0;
  max-width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav .links-second {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.header-nav-wrapper .header-nav .links-socials {
  position: absolute;
  bottom: 50px;
  left: 0;
  height: 50px;
  font-size: 1.5em;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav .links-socials {
    bottom: 25px;
  }
}

.header-nav-wrapper .header-nav .menu-item {
  position: relative;
}

.header-nav-wrapper .header-nav .menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5px;
  height: 3px;
  width: 0;
  background-color: #fe330a;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.header-nav-wrapper .header-nav .menu-item.current-menu-item::before, .header-nav-wrapper .header-nav .menu-item:hover::before {
  width: calc(100% + 10px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.header-nav-wrapper .header-nav .links-main .menu-item {
  font-size: 4vh;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav .links-main .menu-item {
    font-size: 1.5em;
  }
}

.header-nav-wrapper .header-nav .links-second {
  text-transform: uppercase;
}

.header-nav-wrapper .header-nav .links-second .menu-item {
  font-size: 1.5em;
  margin-top: 5px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav .links-second .menu-item {
    font-size: 1.5em;
  }
}

.header-nav-wrapper .header-nav .links-second .menu-item::before {
  left: auto;
  right: -5px;
}

.header-nav-wrapper .header-nav.show {
  left: 0;
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item {
  -webkit-animation: fadeInLeft .4s both;
          animation: fadeInLeft .4s both;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item:nth-child(1) {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item:nth-child(2) {
  -webkit-animation-delay: .65s;
          animation-delay: .65s;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item:nth-child(3) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item:nth-child(4) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item:nth-child(5) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}

.header-nav-wrapper .header-nav.show .links-main .menu-item:nth-child(6) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.header-nav-wrapper .header-nav.show .links-second {
  -webkit-animation: fadeInRight .4s both;
          animation: fadeInRight .4s both;
  -webkit-animation-delay: .85s;
          animation-delay: .85s;
}

@media only screen and (max-width: 768px) {
  .header-nav-wrapper .header-nav.show .links-second {
    -webkit-animation: fadeInLeft .4s both;
            animation: fadeInLeft .4s both;
  }
}

.header-logo {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 850;
  text-align: center;
}

.header-logo .logo-img {
  max-height: 100%;
}

/*------------------------------------*\
    HEADER MOBILE
\*------------------------------------*/
/*------------------------------------*\
    GLOBALES PAGES
\*------------------------------------*/
ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

@media only screen and (max-width: 768px) {
  section.content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.content img {
  vertical-align: bottom;
  height: auto;
}

.content h1, .content h2 {
  line-height: 1;
}

.content h2 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.5;
}

.content h3 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.2;
}

.content h4 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1;
}

.content h5, .content h6 {
  margin: 0;
}

.content * + h2, .content * + h3, .content * + h4, .content * + h5 {
  margin-top: 1em;
}

.content h1 + *, .content h2 + *, .content h3 + *, .content h4 + *, .content h5 + * {
  margin-top: 0.75em;
}

.content p {
  margin: 0;
}

.content p + p {
  margin-top: 0.5em;
}

.content p {
  margin: 0;
}

.content * + p, .content * + ul {
  margin-top: 0.5em;
}

.content ul {
  padding: 0;
  list-style-type: none;
}

.content ul li {
  margin-left: 1em;
  text-indent: -1em;
}

.content ul li::before {
  content: '▸ ';
  padding-left: 1em;
  width: 0;
  display: inline-block;
}

.content li + li {
  margin-top: 0.25em;
}

.post-content {
  font-size: 15px;
}

.post-content hr {
  margin-top: 3em !important;
  margin-bottom: 3em !important;
  border: 0;
  height: 1px;
  background-color: white;
}

.post-content blockquote {
  margin-right: 0;
  margin-left: 0;
}

.post-content p {
  line-height: 1.5;
}

.post-content h1 + *, .post-content h2 + * {
  margin-top: 2em;
}

.post-content h3 + *, .post-content h4 + *, .post-content h5 + * {
  margin-top: 0.5em;
}

.post-content * + h1, .post-content * + h2, .post-content * + h3, .post-content * + h4, .post-content * + h5 {
  margin-top: 1.2em;
}

.post-content p {
  line-height: 1.5;
}

.post-content p a:not([class]) {
  color: #31a5be;
}

/*------------------------------------*\
    HOMEPAGE
\*------------------------------------*/
.blue-overlay::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: rgba(26, 41, 80, 0.5);
}

.home-header {
  position: relative;
}

.home-header .home-header-item {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-size: cover;
  background-position: center;
  background-color: #010306;
  background-blend-mode: luminosity;
}

.home-header .home-header-item .col-text {
  -ms-flex-item-align: center;
      align-self: center;
}

@media only screen and (max-width: 768px) {
  .home-header .home-header-item .col-text {
    margin-top: 50%;
    padding-left: 0px !important;
  }
}

@media only screen and (max-width: 768px) {
  .home-header .home-header-item .col-hide {
    display: none;
  }
}

.home-header .home-header-item .slider-legend {
  position: relative;
  border: 3px solid currentcolor;
  max-width: 650px;
  margin-right: -45px;
  margin-left: auto;
  padding-right: 60px;
  padding-left: 15px;
  padding-top: 30px;
  padding-bottom: 40px;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  .home-header .home-header-item .slider-legend {
    margin: 10px;
  }
}

.home-header .home-header-item .slider-title {
  font-size: 2.5em;
  font-weight: normal;
  text-transform: uppercase;
}

.home-header .home-header-item .slider-title::before {
  content: '/';
  color: #fe330a;
  display: inline-block;
  margin-right: .25em;
}

@media only screen and (max-width: 768px) {
  .home-header .home-header-item .slider-title {
    font-size: 1.7em;
  }
}

.home-header .home-header-item .slider-link {
  position: absolute;
  left: 15px;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.home-header .circle {
  position: absolute;
  right: 45%;
  bottom: 10%;
}

@media only screen and (max-width: 768px) {
  .home-header .circle {
    left: 5%;
    bottom: 5%;
  }
}

.home-header .home-header-nav {
  position: absolute;
  height: 250px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-image: url("../img/elements/wave-1.png");
  background-size: cover;
  background-position: top right;
  z-index: 10;
}

.home-header .home-header-nav .home-header-arrows {
  position: absolute;
  bottom: 40px;
  right: 90px;
}

@media only screen and (max-width: 768px) {
  .home-header .home-header-nav .home-header-arrows {
    right: 25px;
  }
}

.slide-arrow {
  margin: 5px;
}

.slide-arrow.prev-arrow::before {
  content: '';
  overflow: hidden;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
  -webkit-transform: rotate(-45deg) translateY(25%);
          transform: rotate(-45deg) translateY(25%);
}

.slide-arrow.next-arrow::before {
  content: '';
  overflow: hidden;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
  -webkit-transform: rotate(135deg) translateX(25%);
          transform: rotate(135deg) translateX(25%);
}

.home-intro {
  position: relative;
}

.home-intro .circle {
  position: absolute;
  left: 30%;
  bottom: 30%;
}

.home-intro .intro-slider-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 5;
}

.home-intro .intro-slider-tabs .slick-dots {
  width: 100%;
  margin-right: -15px;
}

.home-intro .intro-slider-tabs .slick-dots li {
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px;
  border: 2px solid currentcolor;
}

.home-intro .intro-slider-tabs .slick-dots li.slick-active::before {
  content: '/ ';
  color: #fe330a;
}

@media only screen and (max-width: 480px) {
  .home-intro .intro-slider-tabs .slick-dots li {
    float: left;
    width: 50%;
  }
}

.home-intro .intro-slider-content {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.home-intro .home-intro-img {
  position: relative;
  z-index: -1;
}

.home-intro .home-intro-text {
  margin-left: 30px;
  margin-top: -30px;
  padding: 30px;
  padding-bottom: 40px;
  border: 3px solid currentcolor;
  max-width: 650px;
  position: relative;
  margin-bottom: 45px;
}

.home-intro .slider-link {
  position: absolute;
  bottom: 0;
  left: 30px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.slider-links {
  position: relative;
}

.slider-links .slick-list {
  padding-left: 20%;
  padding-right: 20%;
  overflow: visible;
}

@media only screen and (max-width: 768px) {
  .slider-links .slick-list {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.slider-links .home-link-item {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  z-index: -1;
  position: relative;
}

.slider-links .home-link-item .home-link-caption {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.75);
          transform: translateY(-50%) scale(0.75);
  max-width: 350px;
  display: inline-block;
  font-size: 1.5em;
  border: 2px solid white;
  text-align: center;
  -webkit-transition: all .75s ease;
  transition: all .75s ease;
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .slider-links .home-link-item .home-link-caption {
    font-size: 1.25em;
    max-width: 200px;
  }
}

.slider-links .home-link-item.slick-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 2;
}

.slider-links .home-link-item.slick-active .home-link-caption {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.slider-links .slider-links-arrows {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.slider-links .slider-links-arrows .slide-arrow {
  margin: 0;
}

.slider-links .slider-links-arrows .prev-arrow {
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-100%) translateX(-100%) scale(0.9);
          transform: translateY(-100%) translateX(-100%) scale(0.9);
}

.slider-links .slider-links-arrows .next-arrow {
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-100%) translateX(100%) scale(0.9);
          transform: translateY(-100%) translateX(100%) scale(0.9);
}

.slider-links .slider-links-dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.slider-links .slider-links-dots .slick-dots li {
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
  height: 4px;
  width: 50px;
  background-color: white;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.slider-links .slider-links-dots .slick-dots li.slick-active, .slider-links .slider-links-dots .slick-dots li:hover {
  background-color: #31a5be;
}

.home-news {
  background-color: rgba(26, 41, 80, 0.8);
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-news .home-news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 100%;
}

.home-news .home-news-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-news .home-news-slider {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  min-width: 0;
}

.home-video {
  position: relative;
  padding-bottom: 60px;
}

.home-video .circle {
  position: absolute;
  right: 20%;
  top: 5%;
}

.home-video .waves {
  position: absolute;
  top: 0;
  left: 0;
  height: 110%;
  width: 100%;
  background-image: url("../img/elements/wave.svg");
  background-position: top center;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}

.home .footer {
  margin-top: -50px;
}

/*------------------------------------*\
    POST LOOP
\*------------------------------------*/
.post-item {
  position: relative;
}

.post-item .post-item-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.post-item .post-date {
  padding-left: 20px;
  background-image: url("../img/icons/icon-time.svg");
  background-position: top left;
  background-size: auto 90%;
  background-repeat: no-repeat;
}

.post-item .view-article {
  padding: 5px 15px;
  display: inline-block;
  margin-top: 0.5em;
}

/*------------------------------------*\
    POST
\*------------------------------------*/
.post-header {
  min-height: 70vh;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-header h1 {
  position: relative;
  z-index: 20;
  text-transform: uppercase;
}

.post-header::after {
  content: '';
  position: absolute;
  height: 250px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-image: url("../img/elements/wave-1.png");
  background-size: cover;
  background-position: top right;
  z-index: 10;
}

.post-header .circle {
  background-color: #fe330a;
  position: absolute;
  right: 25%;
  bottom: 8%;
}

.post-header--alt::after {
  background-image: url("../img/elements/wave-2.png");
  background-position: top left;
}

.post-header--alt .circle {
  background-color: #ffff33;
  left: 25%;
}

.section-title {
  font-size: 2.5em;
  text-align: center;
}

/*------------------------------------*\
    SPECIFICITIES
\*------------------------------------*/
.filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.filter-button {
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.filter-button.selected {
  background-color: #fe330a;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.grid-items .grid-item {
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  position: relative;
  min-height: 200px;
}

.grid-items .grid-item.filtered-item {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.grid-items .grid-item.grid-scale-anm {
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.grid-items .grid-item-legend {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  text-transform: uppercase;
}

.grid-items .lieu {
  display: block;
  position: absolute;
  bottom: 10%;
  opacity: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.grid-items .grid-item:hover .grid-item-legend {
  bottom: 30%;
}

.grid-items .grid-item:hover .lieu {
  bottom: 15%;
  opacity: 1;
}

/*------------------------------------*\
    PROGRAMMATION
\*------------------------------------*/
.programmation-content .circle {
  position: absolute;
  bottom: 50px;
  left: 20%;
}

.programmation-intro .circle {
  position: absolute;
  bottom: -150px;
  right: 5%;
}

/*------------------------------------*\
    SINGLE
\*------------------------------------*/
.single-actu .post-wrapper .circle {
  position: absolute;
  left: -20px;
  bottom: 20%;
}

.single-actu .post-wrapper .button {
  padding: 8px 10px;
  margin-top: 1.5em;
}

/*------------------------------------*\
    PARTENAIRES
\*------------------------------------*/
.grid-partenaires {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.grid-partenaires .partenaire-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 150px;
          flex: 1 1 150px;
  max-width: 150px;
  height: 140px;
  margin: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.grid-partenaires .partenaire-item img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.grid-partenaires .partenaire-item span {
  position: absolute;
  bottom: 5px;
  left: 0;
  opacity: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.grid-partenaires .partenaire-item:hover span {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  bottom: 20px;
  opacity: 1;
}

.grid-partenaires .partenaire-item:hover img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0.3;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

/*------------------------------------*\
    OTHERS
\*------------------------------------*/
@media only screen and (max-width: 768px) {
  .gallery-container {
    height: 100vh;
    overflow: auto;
  }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-image: url("../img/elements/footer.png");
  background-size: cover;
  background-position: top center;
  padding-top: 70px !important;
}

@media only screen and (max-width: 768px) {
  .footer {
    text-align: center;
    padding-top: 100px !important;
  }
  .footer .col + .col {
    margin-top: 1em;
  }
}

.footer .logo-img {
  max-width: 150px;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-menu .nav-item + .nav-item {
  margin-top: 5px;
}

.newsletter h3 {
  font-weight: normal;
  text-transform: uppercase;
}

.newsletter .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter .form-field .email-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.newsletter .form-field .subscribe {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  width: 25px;
  text-transform: uppercase;
  font-weight: normal;
}

.newsletter .small {
  font-size: 0.8em;
}

#cookie-notice {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

#cookie-notice .cn-set-cookie {
  color: #ffffff;
  background-color: #005BA8;
  text-decoration: none;
  font-size: 0.9em;
  padding: 3px 6px 2px 6px;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Edit link */
.post-edit-link {
  display: block;
}

/*------------------------------------*\
    DUST JAVASCRIPT EFFECT
\*------------------------------------*/
.dusts {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.dusts .dust {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/*------------------------------------*\
    ANIMATIONS
\*------------------------------------*/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
/*------------------------------------*\
    INTERNET EXPLORER 9-10
\*------------------------------------*/
/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=main.css.map */
