@charset "UTF-8";
/*  */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* USAGE MEDIA QUERIES
  div {
    height: 390px;

    @include breakpoint(mobile) {
      margin-bottom: 15px;
    }
  }
*/
/* ------------------------------
 *  fonts
 *  ----------------------------- */
@font-face {
  font-family: 'fontello';
  src: url("../_fonts/fontello.eot?316092");
  src: url("../_fonts/fontello.eot?316092#iefix") format("embedded-opentype"), url("../_fonts/fontello.woff?316092") format("woff"), url("../_fonts/fontello.ttf?316092") format("truetype"), url("../_fonts/fontello.svg?316092#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?316092#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.icon-facebook:before {
  content: '\e800'; }

/* 'ţáÇ' */
.icon-twitter:before {
  content: '\e801'; }

/* 'ţáü' */
.icon-linkedin:before {
  content: '\e802'; }

/* 'ţáé' */
.icon-youtube:before {
  content: '\e803'; }

/* 'ţáâ' */
.icon-instagramm:before {
  content: '\e804'; }

/* 'ţáä' */
.icon-gplus:before {
  content: '\e805'; }

/* 'ţáů' */
.icon-behance:before {
  content: '\e806'; }

/* 'ţáć' */
.icon-resize-full-alt:before {
  content: '\e807'; }

/* 'ţáç' */
.icon-arrow-bottom:before {
  content: '\e808'; }

/* 'ţáł' */
.icon-arrow-top:before {
  content: '\e809'; }

/* 'ţáë' */
.icon-arrow-left:before {
  content: '\e80a'; }

/* 'ţáŐ' */
.icon-arrow-right:before {
  content: '\e80b'; }

/* 'ţáő' */
/* ------------------------------
 *  global styles
 *  ----------------------------- */
* {
  margin: 0px;
  padding: 0px; }

html {
  width: 100%;
  height: 100%;
  font-size: 18px; }

body {
  font-family: 'Lato',Times,Times New Roman,serif;
  font-size: 18px;
  color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  background: #ebebeb url("../_images/img-bg.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

input, select, textarea {
  font-family: 'Lato',Times,Times New Roman,serif;
  font-size: 13px; }

a {
  color: #000;
  cursor: pointer;
  text-decoration: none; }

a:hover {
  color: #000;
  text-decoration: none; }

img {
  border: none; }

.conSP {
  height: 0px;
  float: none !important;
  clear: both !important;
  font-size: 0px; }

.conNV {
  display: none; }

.conVS {
  display: block !important; }

.txtNV {
  display: block;
  text-indent: -1000em;
  overflow: hidden; }

.conNVis {
  visibility: hidden; }

.conLeft {
  float: left; }

.conRight {
  float: right; }

.conHorizontalMargin {
  margin: 0 10px; }

.conVerticalMargin {
  margin: 10px 0; }

.conMargin {
  margin: 10px; }

.conVerticalMarginSmall {
  margin: 4px 0; }

.conVerticalCN {
  display: table-cell;
  vertical-align: middle; }

.conSpacer, .conSpacer20, .conSpacer80, .conSpacer40 {
  display: block !important;
  height: 10px;
  float: none;
  clear: both; }

.conSpacer20 {
  height: 20px; }

.conSpacer80 {
  height: 80px; }

.conSpacer40 {
  height: 40px; }

.conMarginCN {
  margin: 0 auto;
  display: block;
  width: auto; }

.conPadding5 {
  padding: 5px; }

.conPadding10 {
  padding: 10px; }

.conHeight100 {
  height: 100%; }

.conInlineSpacer {
  display: block;
  height: 10px; }

.conCN {
  text-align: center; }

.conRGT {
  text-align: right !important; }

.conLFT {
  text-align: left !important; }

.txtUpper {
  text-transform: uppercase; }

.txtLower {
  text-transform: lowercase !important; }

.txtSmall {
  font-size: 11px !important;
  line-height: normal !important; }

.txtThrough {
  text-decoration: line-through; }

img.centerImage {
  display: block;
  margin: 0 auto; }

.borderRadius {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  behavior: url(ie-css3.htc); }

.conNoBorder {
  border: 0 !important; }

.conNoMargin {
  margin: 0 !important; }

.txtItalic {
  font-style: italic; }

.txtUpper {
  text-transform: uppercase; }

.lnkTransparent, .conTransition {
  /*Transition*/
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.lnkTransparent:hover {
  opacity: 0.7; }

.conTransitionEaseOut {
  /*Transition*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.conFastTransition {
  /*Transition*/
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.conFastTransitionOpacity {
  /*Transition*/
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.conNoSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

sup, sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
  bottom: 9px;
  font-size: 50%; }

*[data-toggle=tooltip] {
  cursor: help; }

/* ------------------------------
 *  cookie message
 *  ----------------------------- */
#cookies-message {
  padding: 8px 0px;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  position: fixed;
  bottom: 0px;
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 999;
  color: #fff; }

a#cookies-more {
  color: #fff;
  text-decoration: underline; }

a#accept-cookies-checkbox {
  background-color: #000;
  padding: 5px 10px;
  display: inline-block;
  margin-left: 10px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  color: #f87f56; }

/* ------------------------------
 *  global elements styles
 *  ----------------------------- */
.imgTopLogo {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 101;
  width: 100px;
  height: auto; }

.imgTopLogo.imgLogoHide {
  opacity: 0; }

#lnkFullscreen {
  position: absolute;
  top: 6px;
  color: #fff;
  font-size: 30px;
  left: 50%;
  margin-left: -12px;
  z-index: 101; }

/*#ck_top_menu_1 {
	position: absolute;
	z-index: 101;
}*/
.slicknav_menu {
  background-color: transparent;
  position: absolute;
  z-index: 100;
  top: 0;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.slicknav_menu .slicknav_menutxt {
  font-family: 'Oswald', sans-serif; }

.slicknav_menu.slicknav_menu_open {
  background-color: #323232;
  overflow: scroll; }

.slicknav_nav {
  text-align: center; }

.slicknav_nav a {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  text-transform: uppercase; }

.slicknav_nav a.conIcon {
  display: inline-block;
  padding: 5px 10px; }

.slicknav_nav a.lnkPeople {
  padding-left: 20%;
  text-align: left; }

body > nav {
  display: none; }

.navTriangle {
  position: absolute;
  top: -12px;
  right: 60px; }

.txtNavColumnTitle {
  display: block;
  color: #fff;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px 0;
  margin: 5px 0;
  border-bottom: 1px solid #f87f56;
  border-top: 1px solid #f87f56; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body > nav > nav a span {
    top: -2px; } }
.section {
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px; }

#sectionHome {
  background-image: url("../_images/img-mobile-homeslide.jpg"); }

#sectionHomeIdea {
  background-image: url("../_images/img-mobile-ideaslide.jpg"); }

#sectionHomeAbout {
  background-image: url("../_images/img-mobile-about.jpg");
  text-align: center; }

#sectionHomeAbout h3 {
  font-weight: normal;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 15px; }

#sectionHomeAbout .txtWork {
  font-size: 16px;
  font-style: italic;
  margin: 0 0 2px 0; }

#sectionHomeAbout .txtPerson {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  margin: 0 0 15px 0; }

.section .fp-tableCell > * {
  z-index: 1;
  position: relative; }

.section .fp-tableCell .conSectionBg, .section .fp-tableCell .conSectionBgLight {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0; }

.section .fp-tableCell .conSectionBgLight {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.4s;
  -khtml-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.section .fp-tableCell .conSectionBgLight.active {
  background-color: rgba(0, 0, 0, 0.6); }

.conHomeSlideText, .conHomeSlideText2 {
  margin: 10px auto;
  text-align: center;
  display: block;
  font-style: italic;
  line-height: 18px;
  font-size: 15px; }

.conHomeSlideText2 {
  margin: 0;
  margin-bottom: 20px; }

.lnkArrowDown, .lnkArrowUp {
  position: absolute;
  bottom: 8px;
  right: 10px;
  color: #fff;
  font-size: 20px;
  z-index: 99; }

.lnkArrowUp {
  right: auto;
  left: 10px; }

.lnkArrowDown:hover, .lnkArrowUp:hover {
  color: #fff; }

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #000; }

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1); }

.lnkButton {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  padding: 10px 50px;
  border: 2px solid #000;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 3px; }

.lnkHomeButton {
  color: #fff;
  border-color: #fff; }

#sectionHomeIdea h2 {
  margin: 8px 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: normal; }

.sectionPeople {
  padding: 0; }

.sectionPeople .slide {
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  padding: 0 20px;
  text-align: center; }

.sectionPeople .slide h2, .sectionPeople .slide h3 {
  font-size: 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 0 5%;
  line-height: 32px;
  margin-bottom: 15px; }

span.conLine {
  display: block;
  width: 30px;
  height: 2px;
  margin: 5px auto 15px auto;
  background-color: #ef8a67; }

a.lnkPeopleWebsite {
  color: #fff;
  border-bottom: 1px dashed #fff;
  font-style: italic; }

a.lnkPeopleWebsite:hover {
  color: #fff;
  border-color: #fff; }

.txtIntro {
  margin: 20px auto;
  width: 100%;
  line-height: normal;
  font-size: 14px;
  text-align: justify;
  display: none; }

.displayButton {
  width: 140px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  margin: 10px auto 0 auto;
  padding: 1px 0;
  display: inline-block; }
  .displayButton:hover {
    color: #fff; }

p.txtIntroSmall {
  font-size: 12px;
  line-height: 14px; }

.fp-slidesNav.bottom {
  bottom: 0; }

#fp-nav ul li a span, .fp-slidesNav ul li a span {
  background-color: #fff; }

.conSocialIcons {
  display: block;
  text-align: center;
  margin-bottom: 10px; }

.conSocialIcons .conIcon {
  color: #f87f56;
  margin: 0 5px; }

a i.icon-facebook:hover {
  color: #3b5998; }

a i.icon-twitter:hover {
  color: #00b6f1; }

a i.icon-linkedin:hover {
  color: #0976b4; }

a i.icon-youtube:hover {
  color: #cd201f; }

a i.icon-instagramm:hover {
  color: #3f729b; }

a i.icon-gplus:hover {
  color: #dd4b39; }

a i.icon-behance:hover {
  color: #1769ff; }

.txtQuote {
  position: relative;
  margin: 55px auto 20px auto;
  width: 100%;
  line-height: 130%;
  font-size: 20px; }

.txtQuoteSmall {
  font-size: 16px;
  line-height: 115%; }

.txtQuote span {
  position: absolute;
  top: -5px;
  left: 5%;
  color: #f87f56;
  font-size: 150px;
  font-style: italic; }

.conText {
  line-height: 110%;
  font-size: 13px;
  text-align: justify;
  display: none; }

.conText p {
  margin-bottom: 10px; }

.conTextInterview p {
  margin-bottom: 0; }

.conTextInterview p.txtTitle {
  margin-top: 10px;
  margin-bottom: 3px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-style: normal; }

.conTextInterview strong {
  margin-top: 10px;
  display: block; }

.slide3 .txtCategory, .slide4 .txtCategory, .slide5 .txtCategory,
.slide3 .conLine, .slide4 .conLine, .slide5 .conLine,
.slide3 h3, .slide4 h3, .slide5 h3 {
  display: none; }

.txtCounter {
  position: absolute;
  bottom: 8px;
  right: 50px;
  font-size: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  display: none; }

/**** LOADER ****/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: gray; }

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #6a3cbb;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */ }

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */ }

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff6599;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */ }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */ }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */ } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */ }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */ } }
.slide .loader {
  position: absolute;
  display: none; }

.section.active .conLoading .loader {
  display: block; }

.slide0:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 50%;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }
.slide0 .fp-tableCell {
  z-index: 101;
  position: relative; }

.slide0 .bottomInfo {
  position: absolute;
  bottom: 50px;
  left: 0;
  margin-bottom: 0;
  width: 100%; }

.slide0 .fp-tableCell h2 {
  margin-top: 25px; }

.slide0 .fp-tableCell h2 span {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  font-family: Georgia,Times,Times New Roman,serif;
  text-transform: none; }

/* iPhone 4 Portrait */
@media screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  #sectionHomeIdea h2 {
    margin: 6px 0;
    font-size: 22px;
    line-height: 22px; }

  .conHomeSlideText, .conHomeSlideText2 {
    font-size: 13px;
    line-height: 15px;
    margin: 10px 0; } }
/* iPhone 5 Portrait */
@media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  #sectionHomeIdea h2 {
    margin: 6px 0;
    font-size: 25px;
    line-height: 25px; }

  .conHomeSlideText, .conHomeSlideText2 {
    font-size: 15px;
    line-height: 18px;
    margin: 10px 0; } }
/* iPhone 6 Portrait */
@media screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  #sectionHomeIdea h2 {
    margin: 6px 0; }

  .conHomeSlideText, .conHomeSlideText2 {
    font-size: 17px;
    line-height: 21px;
    margin: 10px 0; }

  .conText {
    font-size: 14px; } }
/* Small phones */
@media screen and (max-device-width: 320px) and (max-device-height: 534px) and (orientation: portrait) {
  .txtIntro {
    font-size: 13px;
    line-height: 16px; }

  .conText {
    font-size: 12px; } }
@media screen and (max-width: 767px) and (orientation: landscape) {
  span.conLine {
    margin: 3px auto 8px auto; }

  .sectionPeople .slide h2, .sectionPeople .slide h3 {
    margin-bottom: 0;
    font-size: 24px; }

  p.txtIntro {
    margin: 10px auto;
    font-size: 13px;
    line-height: 15px;
    display: none; }

  p.txtIntroSmall {
    font-size: 11px;
    margin: 5px 0 0 0;
    line-height: 13px; }

  .txtQuote {
    padding-top: 5px;
    display: inline; }

  .txtQuote span {
    font-size: 100px; }

  .fp-slidesNav.bottom {
    bottom: 0; }

  .sectionPeople .slide1 h2 {
    display: inline;
    padding: 0 5px 0 0; }

  .sectionPeople .slide1 a.lnkPeopleWebsite {
    position: relative;
    top: -5px; }

  .slide2 .txtCategory, .slide3 .txtCategory, .slide4 .txtCategory, .slide5 .txtCategory {
    display: none; }

  .slide2 .conLine, .slide3 .conLine, .slide4 .conLine, .slide5 .conLine,
  .slide3 h3, .slide4 h3, .slide5 h3 {
    display: none; }

  .sectionPeople .slide2 h3 {
    display: block;
    margin-bottom: 30px; }

  .slide3 .conText {
    font-size: 12px;
    line-height: 13px; }

  .slide4 .conText, .slide5 .conText {
    font-size: 11px;
    line-height: 12px; }

  .slide4 .conTextInterview p.txtTitle, .slide5 .conTextInterview p.txtTitle {
    margin-top: 5px;
    margin-bottom: 0; } }
/* tablets portrait */
@media (min-width: 768px) {
  body {
    font-size: 20px; }

  .imgTopLogo {
    width: 192px; }

  .slicknav_nav a.lnkPeople {
    padding-left: 0; }

  .txtIntro, p.txtIntroSmall {
    font-size: 20px;
    line-height: 150%; }

  .sectionPeople .slide h2, .sectionPeople .slide h3 {
    font-size: 36px;
    line-height: normal; }

  .txtQuote {
    font-size: 30px;
    padding-top: 5px;
    display: inline;
    margin-left: 50px;
    margin-right: 50px; }

  .txtQuote span {
    font-size: 100px;
    left: -50px; }

  .sectionPeople .slide2 h3 {
    display: block;
    margin-bottom: 30px; }

  .slide3 .txtCategory, .slide4 .txtCategory, .slide5 .txtCategory,
  .slide3 .conLine, .slide4 .conLine, .slide5 .conLine,
  .slide3 h3, .slide4 h3, .slide5 h3 {
    display: block; }

  .conText {
    font-size: 20px; }

  .txtCounter {
    display: block; } }
/* tablets landscape */
@media (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
  .txtIntro, p.txtIntroSmall {
    font-size: 16px;
    line-height: 120%; }

  .txtQuote {
    font-size: 26px; }

  .txtQuoteSmall {
    font-size: 20px;
    line-height: 110%; }

  .conText {
    font-size: 16px; }

  .txtCounter {
    display: block; } }
.boxHomepageGrid {
  display: block;
  width: 100%;
  margin-top: 35px;
  position: relative; }
  .boxHomepageGrid:before, .boxHomepageGrid:after {
    content: "";
    display: table; }
  .boxHomepageGrid:after {
    clear: both; }
  @media (max-width: 767px) {
    .boxHomepageGrid {
      width: 100vw;
      margin-top: 0; } }

.boxSquare {
  display: block;
  width: 12.5vw;
  height: 12.5vw;
  background-color: #fff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .boxSquare.width3x {
    width: 37.5vw; }
  .boxSquare.width2x {
    width: 25vw; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .boxSquare {
      width: 16.6666vw;
      height: 16.6666vw; }
      .boxSquare.width3x {
        width: 49.9998vw; }
      .boxSquare.width2x {
        width: 33.3332vw; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .boxSquare {
      width: 25vw;
      height: 25vw; }
      .boxSquare.width3x {
        width: 75vw; }
      .boxSquare.width2x {
        width: 50vw; } }
  @media (max-width: 767px) {
    .boxSquare {
      width: 50vw;
      height: 50vw;
      float: left; }
      .boxSquare.width3x {
        width: 100vw; }
      .boxSquare.width2x {
        width: 100vw; } }

.boxLogo {
  width: 25vw;
  padding-bottom: 25vw;
  position: relative; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .boxLogo {
      width: 33.3333vw;
      height: 33.3333vw; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .boxLogo {
      width: 50vw;
      height: 50vw; } }
  @media (max-width: 767px) {
    .boxLogo {
      width: 100vw;
      height: 100vw; } }
  .boxLogo img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

@media screen and (min-width: 1200px) and (max-width: 1281px) {
  .boxSquare {
    width: 16.6666vw;
    height: 16.6666vw; }

  .boxLogo {
    width: 33.3333vw;
    height: 33.3333vw; } }
/* simple */
.flip-container {
  -webkit-perspective: 1000;
  -khtml-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d; }

/*
.flip-container:hover .flipper, .flip-container.hover .flipper, #flip-toggle.flip .flipper {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    filter: FlipH;
    -ms-filter: "FlipH";
}
*/
/* START: Accommodating for IE */
.flip-container:hover .back, .flip-container.hover .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.flip-container:hover .front, .flip-container.hover .front {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg); }

/* END: Accommodating for IE */
.flip-container, .front, .back {
  width: 100%;
  height: 100%; }

.flipper {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 0.6s;
  -moz-transition: 0.6s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative; }

.front, .back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -moz-transform: rotateY(0deg);
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  -o-transform: rotateY(0deg);
  -ms-transition: 0.6s;
  -ms-transform-style: preserve-3d;
  -ms-transform: rotateY(0deg);
  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  position: absolute;
  top: 0;
  left: 0; }

.front {
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.back {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; }
  .back:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(47, 153, 219, 0.9);
    z-index: 1;
    content: ''; }
  .back .txtName {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 10;
    font-size: 20px;
    font-weight: 700; }
  .back .txtCategoryName {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 10;
    font-size: 14px; }

svg {
  display: block;
  position: absolute;
  top: 80vh;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100; }

/*animated scroll arrow animation*/
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate(0, -5px);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: translate(0, 5px);
    opacity: 0; } }
@-moz-keyframes bounce {
  0% {
    -moz-transform: translate(0, -5px);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -moz-transform: translate(0, 5px);
    opacity: 0; } }
@keyframes bounce {
  0% {
    transform: translate(0, -5px);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: translate(0, 5px);
    opacity: 0; } }
.bounce {
  -moz-animation: bounce 1s ease-in-out infinite;
  -webkit-animation: bounce 1s ease-in-out infinite;
  animation: bounce 1s ease-in-out infinite; }

@keyframes arrow1 {
  0% {
    opacity: 0; }
  5% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes arrow1 /*Safari and Chrome*/ {
  0% {
    opacity: 0; }
  5% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes arrow2 {
  0% {
    opacity: 0; }
  15% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes arrow2 /*Safari and Chrome*/ {
  0% {
    opacity: 0; }
  15% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes arrow3 {
  0% {
    opacity: 0; }
  35% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes arrow3 /*Safari and Chrome*/ {
  0% {
    opacity: 0; }
  35% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
path.a1 {
  animation: arrow1 1.3s infinite;
  -webkit-animation: arrow1 1.3s infinite; }

path.a2 {
  animation: arrow2 1.3s infinite;
  -webkit-animation: arrow2 1.3s infinite; }

path.a3 {
  animation: arrow3 1.3s infinite;
  -webkit-animation: arrow3 1.3s infinite; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  position: fixed;
  top: 78px;
  right: 50px;
  z-index: 103;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: .7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner, .hamburger--spin.is-active .hamburger-inner::before, .hamburger--spin.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger {
  outline: none; }
  .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #f33286; }
  @media (max-width: 991px) {
    .hamburger {
      position: absolute;
      top: 0;
      left: 0; }
      .hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
        background-color: #f33286; } }

.boxLeftMenu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 33vw;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 100;
  padding: 110px 20px 20px 50px;
  font-family: 'Lato', Arial, sans-serif; }
  .boxLeftMenu.is-active {
    left: 0; }
  @media (max-width: 991px) {
    .boxLeftMenu {
      width: 100vw;
      padding: 70px 20px 20px 20px;
      overflow: scroll; } }
  .boxLeftMenu ul {
    list-style: none; }
  .boxLeftMenu > ul > li {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase; }
    .boxLeftMenu > ul > li a {
      color: #000; }
      .boxLeftMenu > ul > li a:hover, .boxLeftMenu > ul > li a.active {
        color: #eb408b; }
    .boxLeftMenu > ul > li > ul {
      padding-left: 20px;
      margin: 10px 0;
      display: block; }
      .boxLeftMenu > ul > li > ul > li {
        font-size: 17px;
        font-weight: 700;
        text-transform: none;
        display: block;
        margin-bottom: 10px; }
        .boxLeftMenu > ul > li > ul > li > ul {
          font-size: 14px;
          padding-left: 20px;
          margin: 10px 0;
          position: relative;
          display: none; }
          .boxLeftMenu > ul > li > ul > li > ul:after {
            position: absolute;
            left: 0;
            top: 3px;
            bottom: 0;
            width: 1px;
            background-color: #f55f9f;
            content: ''; }
          .boxLeftMenu > ul > li > ul > li > ul > li {
            display: block;
            margin-bottom: 8px; }

.menuFullPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 102;
  background-color: #6538b7;
  display: none;
  overflow-y: scroll; }
  @media (max-width: 991px) {
    .menuFullPage {
      padding-top: 50px; } }
  .menuFullPage .logoWhite {
    position: absolute;
    top: 60px;
    left: 60px; }
    @media (max-width: 991px) {
      .menuFullPage .logoWhite {
        top: 12px;
        right: 10px;
        left: auto;
        max-width: 55px; } }
  .menuFullPage .fbBtn {
    display: inline-block;
    margin-top: 30px;
    position: absolute;
    padding: 10px 21px 10px 15px;
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 25px;
    font-weight: 700;
    color: #4267b2;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
    width: 200px;
    bottom: -60px;
    left: 60px; }
    @media (max-width: 767px) {
      .menuFullPage .fbBtn {
        padding: 5px 15px 5px 10px; } }
    .menuFullPage .fbBtn i {
      margin-right: 6px; }
    .menuFullPage .fbBtn:hover {
      background-color: transparent;
      color: #fff; }
  .menuFullPage .hamburger-box {
    position: absolute;
    top: 60px;
    right: 60px; }
  .menuFullPage .flexCenter {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
    @media (max-width: 991px) {
      .menuFullPage .flexCenter {
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        align-items: flex-start; } }
  .menuFullPage .menuContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    position: relative; }
    @media (max-width: 991px) {
      .menuFullPage .menuContent {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 300px; } }
  .menuFullPage ul {
    list-style: none; }
    .menuFullPage ul a {
      color: #fff; }
  .menuFullPage .menuBoxStyle .menuItem {
    padding: 0;
    height: 65px;
    border: 1px solid #fff;
    border-bottom: none;
    font-family: "sofia-pro",sans-serif;
    font-weight: 700;
    font-size: 22px;
    font-size: 1.46667rem;
    line-height: 65px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: block;
    text-align: center;
    color: #fff; }
    @media (max-width: 991px) {
      .menuFullPage .menuBoxStyle .menuItem {
        height: auto;
        font-size: 16px;
        line-height: 28px;
        padding: 6px 0;
        border: none;
        border-bottom: 1px solid #744dbd; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .menuFullPage .menuBoxStyle .menuItem {
        font-style: 20px;
        line-height: 34px; } }
    .menuFullPage .menuBoxStyle .menuItem:hover {
      background-color: #fff;
      color: #6538b7; }
  .menuFullPage .menuBoxStyle li:last-of-type .menuItem {
    border-bottom: 1px solid #fff; }
    @media (max-width: 991px) {
      .menuFullPage .menuBoxStyle li:last-of-type .menuItem {
        border-color: #744dbd; } }
  .menuFullPage .left {
    width: 320px;
    margin-right: 30px;
    position: relative; }
    @media (max-width: 991px) {
      .menuFullPage .left {
        width: 100%;
        margin-right: 0; } }
  .menuFullPage .right {
    width: 350px;
    margin-left: 30px; }
    @media (max-width: 991px) {
      .menuFullPage .right {
        width: 100%;
        margin-left: 0; } }
  .menuFullPage .listWithCategoryBtn {
    padding: 37px 46px;
    border: 1px solid #fff; }
    @media (max-width: 991px) {
      .menuFullPage .listWithCategoryBtn {
        padding: 10px;
        text-align: center;
        border: none; } }
    .menuFullPage .listWithCategoryBtn .categoryListBox.active button {
      color: #ff6599; }
    .menuFullPage .listWithCategoryBtn .categoryListBox li:last-of-type .categoryList {
      margin-bottom: 0; }
    .menuFullPage .listWithCategoryBtn .categoryList {
      padding-left: 28px;
      border-left: 1px solid #936ed6;
      display: none;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        .menuFullPage .listWithCategoryBtn .categoryList {
          margin-top: 10px; } }
      .menuFullPage .listWithCategoryBtn .categoryList li {
        margin-bottom: 8px; }
        @media (max-width: 991px) {
          .menuFullPage .listWithCategoryBtn .categoryList li {
            text-align: left; } }
        .menuFullPage .listWithCategoryBtn .categoryList li:last-of-type {
          margin-bottom: 0; }
      .menuFullPage .listWithCategoryBtn .categoryList a {
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
    .menuFullPage .listWithCategoryBtn button {
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      line-height: 31px;
      font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
      font-weight: 400;
      margin-bottom: 16px;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease;
      outline: none; }
      @media (max-width: 991px) {
        .menuFullPage .listWithCategoryBtn button {
          font-size: 15px;
          font-weight: 400;
          margin-bottom: 10px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .menuFullPage .listWithCategoryBtn button {
          font-size: 17px; } }

.flexCenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  @media (max-width: 991px) {
    .flexCenter {
      -webkit-box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      align-items: flex-start; } }

#votingWindow, #votingWindow-step2, #votingWindow-step3 {
  background-color: #6a3cbb;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  position: relative; }
  @media (max-width: 767px) {
    #votingWindow, #votingWindow-step2, #votingWindow-step3 {
      height: inherit;
      min-height: 100%;
      overflow-y: auto; } }
  #votingWindow img.statuete, #votingWindow-step2 img.statuete, #votingWindow-step3 img.statuete {
    margin-right: 80px; }
  #votingWindow .votingContent, #votingWindow-step2 .votingContent, #votingWindow-step3 .votingContent {
    width: 100%;
    height: 100%; }
    @media (max-width: 767px) {
      #votingWindow .votingContent, #votingWindow-step2 .votingContent, #votingWindow-step3 .votingContent {
        height: auto; } }
    #votingWindow .votingContent .data, #votingWindow-step2 .votingContent .data, #votingWindow-step3 .votingContent .data {
      flex: 1;
      -webkit-flex: 1;
      color: #fff; }
      @media (max-width: 991px) {
        #votingWindow .votingContent .data, #votingWindow-step2 .votingContent .data, #votingWindow-step3 .votingContent .data {
          flex: auto;
          -webkit-flex: auto;
          width: 100%; } }
      @media (min-width: 768px) and (max-width: 991px) {
        #votingWindow .votingContent .data, #votingWindow-step2 .votingContent .data, #votingWindow-step3 .votingContent .data {
          max-width: 600px; } }
    #votingWindow .votingContent .txtVotingTitle, #votingWindow .votingContent .txtName, #votingWindow-step2 .votingContent .txtVotingTitle, #votingWindow-step2 .votingContent .txtName, #votingWindow-step3 .votingContent .txtVotingTitle, #votingWindow-step3 .votingContent .txtName {
      font-size: 36px;
      line-height: 44px;
      font-family: "sofia-pro",sans-serif;
      font-weight: 900; }
      @media (max-width: 991px) {
        #votingWindow .votingContent .txtVotingTitle, #votingWindow .votingContent .txtName, #votingWindow-step2 .votingContent .txtVotingTitle, #votingWindow-step2 .votingContent .txtName, #votingWindow-step3 .votingContent .txtVotingTitle, #votingWindow-step3 .votingContent .txtName {
          font-size: 22px;
          line-height: 32px; } }
    #votingWindow .votingContent .txtVotingTitle, #votingWindow-step2 .votingContent .txtVotingTitle, #votingWindow-step3 .votingContent .txtVotingTitle {
      margin: 0; }
    #votingWindow .votingContent .txtName, #votingWindow-step2 .votingContent .txtName, #votingWindow-step3 .votingContent .txtName {
      color: #ff6599;
      letter-spacing: -0.025px; }
    #votingWindow .votingContent .txtDesc, #votingWindow-step2 .votingContent .txtDesc, #votingWindow-step3 .votingContent .txtDesc {
      margin: 40px 0 36px 0;
      font-size: 18px;
      line-height: 32px; }
      @media (max-width: 991px) {
        #votingWindow .votingContent .txtDesc, #votingWindow-step2 .votingContent .txtDesc, #votingWindow-step3 .votingContent .txtDesc {
          font-size: 16px;
          line-height: 28px;
          margin-top: 20px;
          margin-bottom: 15px; } }
  #votingWindow form input:not([type="checkbox"]), #votingWindow-step2 form input:not([type="checkbox"]), #votingWindow-step3 form input:not([type="checkbox"]) {
    width: 90%;
    max-width: 400px;
    border: none;
    background-color: #5325a4;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 18px;
    line-height: 22px;
    color: #fff; }
    @media (max-width: 991px) {
      #votingWindow form input:not([type="checkbox"]), #votingWindow-step2 form input:not([type="checkbox"]), #votingWindow-step3 form input:not([type="checkbox"]) {
        font-size: 16px;
        line-height: 20px;
        padding: 8px 20px;
        width: 100%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #votingWindow form input:not([type="checkbox"]), #votingWindow-step2 form input:not([type="checkbox"]), #votingWindow-step3 form input:not([type="checkbox"]) {
        max-width: 300px; } }
  #votingWindow form input::-webkit-input-placeholder, #votingWindow-step2 form input::-webkit-input-placeholder, #votingWindow-step3 form input::-webkit-input-placeholder {
    color: #fff; }
  #votingWindow form input::-moz-placeholder, #votingWindow-step2 form input::-moz-placeholder, #votingWindow-step3 form input::-moz-placeholder {
    color: #fff; }
  #votingWindow form input:-ms-input-placeholder, #votingWindow-step2 form input:-ms-input-placeholder, #votingWindow-step3 form input:-ms-input-placeholder {
    color: #fff; }
  #votingWindow form input:-moz-placeholder, #votingWindow-step2 form input:-moz-placeholder, #votingWindow-step3 form input:-moz-placeholder {
    color: #fff; }
  #votingWindow form ul, #votingWindow-step2 form ul, #votingWindow-step3 form ul {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0; }
    #votingWindow form ul li, #votingWindow-step2 form ul li, #votingWindow-step3 form ul li {
      margin-bottom: 15px; }
      #votingWindow form ul li:last-of-type, #votingWindow-step2 form ul li:last-of-type, #votingWindow-step3 form ul li:last-of-type {
        margin-bottom: 0; }
    #votingWindow form ul label, #votingWindow-step2 form ul label, #votingWindow-step3 form ul label {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        #votingWindow form ul label, #votingWindow-step2 form ul label, #votingWindow-step3 form ul label {
          width: 100%; } }
    #votingWindow form ul span, #votingWindow-step2 form ul span, #votingWindow-step3 form ul span {
      font-size: 12px;
      line-height: 16px;
      flex: 1;
      -webkit-flex: 1; }
      #votingWindow form ul span em, #votingWindow-step2 form ul span em, #votingWindow-step3 form ul span em {
        font-style: normal;
        text-decoration: underline; }
    #votingWindow form ul input, #votingWindow-step2 form ul input, #votingWindow-step3 form ul input {
      width: 18px;
      height: 18px;
      margin: 3px 15px 0 0; }
  #votingWindow .stepBox, #votingWindow-step2 .stepBox, #votingWindow-step3 .stepBox {
    max-width: 820px; }
    @media (max-width: 991px) {
      #votingWindow .stepBox, #votingWindow-step2 .stepBox, #votingWindow-step3 .stepBox {
        max-width: inherit;
        width: 100%;
        padding: 35px 15px 0 15px; } }
  #votingWindow .btnBox, #votingWindow-step2 .btnBox, #votingWindow-step3 .btnBox {
    position: absolute;
    bottom: 90px;
    left: 90px;
    right: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
    @media (max-width: 991px) {
      #votingWindow .btnBox, #votingWindow-step2 .btnBox, #votingWindow-step3 .btnBox {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 30px 15px; } }
    #votingWindow .btnBox ul, #votingWindow-step2 .btnBox ul, #votingWindow-step3 .btnBox ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      justify-content: space-between; }
      #votingWindow .btnBox ul .lnkButton, #votingWindow-step2 .btnBox ul .lnkButton, #votingWindow-step3 .btnBox ul .lnkButton {
        width: 180px;
        background-color: transparent;
        border-color: #fff;
        color: #fff;
        padding: 12px 0;
        margin: 0; }
        @media (max-width: 991px) {
          #votingWindow .btnBox ul .lnkButton, #votingWindow-step2 .btnBox ul .lnkButton, #votingWindow-step3 .btnBox ul .lnkButton {
            width: 110px;
            padding-top: 2px;
            padding-bottom: 4px;
            background-color: #fff;
            color: #6a3cbb;
            height: 35px; } }
        #votingWindow .btnBox ul .lnkButton:hover, #votingWindow-step2 .btnBox ul .lnkButton:hover, #votingWindow-step3 .btnBox ul .lnkButton:hover {
          border-color: #ff6599;
          background-color: #ff6599; }
        @media (max-width: 991px) {
          #votingWindow .btnBox ul .lnkButton span, #votingWindow-step2 .btnBox ul .lnkButton span, #votingWindow-step3 .btnBox ul .lnkButton span {
            font-size: 13px; } }
        @media (max-width: 991px) {
          #votingWindow .btnBox ul .lnkButton i, #votingWindow-step2 .btnBox ul .lnkButton i, #votingWindow-step3 .btnBox ul .lnkButton i {
            font-size: 13px; } }
        #votingWindow .btnBox ul .lnkButton.fancybox-close-small, #votingWindow-step2 .btnBox ul .lnkButton.fancybox-close-small, #votingWindow-step3 .btnBox ul .lnkButton.fancybox-close-small {
          color: #fff;
          border: 1px solid #fff;
          border-radius: 25px; }
          @media (max-width: 991px) {
            #votingWindow .btnBox ul .lnkButton.fancybox-close-small, #votingWindow-step2 .btnBox ul .lnkButton.fancybox-close-small, #votingWindow-step3 .btnBox ul .lnkButton.fancybox-close-small {
              background-color: #fff;
              color: #6a3cbb;
              height: 35px; } }
          @media (max-width: 991px) {
            #votingWindow .btnBox ul .lnkButton.fancybox-close-small i, #votingWindow-step2 .btnBox ul .lnkButton.fancybox-close-small i, #votingWindow-step3 .btnBox ul .lnkButton.fancybox-close-small i {
              font-size: 13px; } }
          #votingWindow .btnBox ul .lnkButton.fancybox-close-small:after, #votingWindow-step2 .btnBox ul .lnkButton.fancybox-close-small:after, #votingWindow-step3 .btnBox ul .lnkButton.fancybox-close-small:after {
            display: none; }

#votingWindow .fancybox-close-small, #votingWindow-step2 .fancybox-close-small, #votingWindow-step3 .fancybox-close-small {
  top: 50px;
  right: 75px; }
  @media (max-width: 991px) {
    #votingWindow .fancybox-close-small, #votingWindow-step2 .fancybox-close-small, #votingWindow-step3 .fancybox-close-small {
      top: 10px;
      right: 5px; } }
  #votingWindow .fancybox-close-small:after, #votingWindow-step2 .fancybox-close-small:after, #votingWindow-step3 .fancybox-close-small:after {
    background-color: transparent;
    position: static;
    top: inherit;
    right: inherit;
    font-size: 60px;
    color: #fff; }
    @media (max-width: 991px) {
      #votingWindow .fancybox-close-small:after, #votingWindow-step2 .fancybox-close-small:after, #votingWindow-step3 .fancybox-close-small:after {
        font-size: 50px; } }
  #votingWindow .fancybox-close-small:hover:after, #votingWindow-step2 .fancybox-close-small:hover:after, #votingWindow-step3 .fancybox-close-small:hover:after {
    background: transparent;
    color: #ff6599; }

#votingWindow .btnBox ul .lnkButton.fancybox-close-small {
  left: 0;
  top: auto; }

#votingWindow-step2 .txtInfoForm {
  background-color: #5325a4;
  padding: 20px;
  border-radius: 40px;
  margin-top: 40px;
  text-align: center; }
  @media (max-width: 991px) {
    #votingWindow-step2 .txtInfoForm {
      font-size: 16px;
      padding: 10px;
      margin-top: 20px; } }

@media (max-width: 991px) {
  #votingWindow-step3 .txtVotingTitle {
    position: absolute;
    width: 200px;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }

#ck_top_menu_1 {
  border-bottom: 0; }

.boxSquare.hamburger {
  background-color: #673ab7;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .boxSquare.hamburger:hover {
    background-color: #ff4081;
    opacity: 1; }
  .boxSquare.hamburger.is-active:hover {
    background-color: transparent;
    opacity: .7; }

.boxSquare.box10 {
  background-color: #5125a0;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .boxSquare.box10 .logo30 {
    max-height: 80px; }
  .boxSquare.box10 .logoTxt {
    margin: -7px 0 0 20px; }

.boxSquare.box13 {
  background-color: #5a2dab; }

.boxSquare.box18 {
  background-color: #5125a0; }

.boxSquare.box19 {
  background-color: #5a2dab; }

.boxSquare.box20 {
  background-color: #6f44bd; }

.boxSquare.box26 {
  background-color: #5a2dab; }

.boxSquare.box27 {
  background-color: #6f44bd; }

.boxSquare.box40 {
  background-color: #5125a0; }

.boxSquare.box41 {
  background-color: #5a2dab; }

.boxSquare.box42 {
  background-color: #6f44bd; }

.boxSquare.box44 {
  background-color: #6f44bd; }

.boxSquare.box45 {
  background-color: #5a2dab; }

.boxSquare.box46 {
  background-color: #5125a0; }

.back:after {
  background-color: #ff4081; }

.boxSquare .boxContent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
.boxSquare.boxContent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
.boxSquare .boxWithLogo {
  color: #fff;
  text-align: center;
  width: 100%; }
  .boxSquare .boxWithLogo .txtTitle {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 9px;
    line-height: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px; }
  .boxSquare .boxWithLogo .arawLogo {
    max-width: 70px;
    margin-right: 20px; }
  .boxSquare .boxWithLogo .limitedWidthImg {
    max-width: 150px; }
  .boxSquare .boxWithLogo .imgCenter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
    .boxSquare .boxWithLogo .imgCenter .limitedSize {
      margin: 0 20px; }
      .boxSquare .boxWithLogo .imgCenter .limitedSize:first-of-type {
        margin-top: 20px;
        max-width: 125px; }
      .boxSquare .boxWithLogo .imgCenter .limitedSize:last-of-type {
        max-height: 43px;
        max-width: 100px; }

body {
  background: #fff;
  font-family: 'Lato', Arial, sans-serif; }

.bodyHome {
  overflow: auto;
  overflow-x: hidden; }
  @media (max-width: 767px) {
    .bodyHome {
      overflow: scroll; } }

.boxIdea {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  font-family: 'Lato', Arial, sans-serif; }
  @media (min-width: 768px) and (max-width: 991px) {
    .boxIdea {
      height: 100vh; } }
  .boxIdea .boxWithImg {
    background-image: url("../_images/2017/subpages-right-bg.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .boxIdea .wrapperIdea {
    background-color: rgba(106, 60, 187, 0.5);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    min-height: 100vh; }
    @media (min-width: 768px) and (max-width: 991px) {
      .boxIdea .wrapperIdea {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center; } }
    .boxIdea .wrapperIdea .boxIdeaText {
      display: block;
      width: 100%;
      color: #fff;
      padding: 80px 20px 40px 20px;
      font-size: 15px;
      position: static;
      top: auto;
      -webkit-transform: translate(0);
      -khtml-transform: translate(0);
      -moz-transform: translate(0);
      -ms-transform: translate(0);
      -o-transform: translate(0);
      transform: translate(0); }
      .boxIdea .wrapperIdea .boxIdeaText .txtTitle {
        font-weight: 700;
        margin: 0 0 30px 0;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        font-size: 18px; }
        .boxIdea .wrapperIdea .boxIdeaText .txtTitle:after {
          position: absolute;
          bottom: -10px;
          left: 0;
          right: 0;
          height: 4px;
          background-color: #f33286;
          content: ''; }
      .boxIdea .wrapperIdea .boxIdeaText p.txtIdea {
        line-height: 180%; }
        .boxIdea .wrapperIdea .boxIdeaText p.txtIdea > a {
          color: #fff;
          text-decoration: underline;
          -webkit-transition: 0.4s;
          -khtml-transition: 0.4s;
          -moz-transition: 0.4s;
          -ms-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          .boxIdea .wrapperIdea .boxIdeaText p.txtIdea > a:hover {
            color: #f33286; }
      .boxIdea .wrapperIdea .boxIdeaText .lnkList {
        display: inline-block;
        margin: 30px auto 0 auto;
        padding: 5px 25px;
        border: 1px solid #fff;
        -webkit-border-radius: 30px;
        -khtml-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        .boxIdea .wrapperIdea .boxIdeaText .lnkList:hover {
          background-color: #fff;
          color: #6a3cbb; }

.imgTopLogo {
  left: auto;
  right: 20px;
  width: 50px; }
  @media (max-width: 767px) {
    .imgTopLogo {
      right: 6px; } }

.txtCategory {
  font-size: 18px;
  text-align: left;
  color: #28a3e8;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 30px;
  font-style: normal;
  line-height: 30px;
  padding: 0 80px; }
  .txtCategory span {
    font-size: 30px;
    display: inline-block;
    padding-right: 5px; }

.conTextSlider h2, .conTextSlider h3 {
  text-align: left;
  padding: 0 80px; }

.conCN {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  list-style: none; }

.lnkButton {
  display: inline-block;
  margin: 30px 0;
  padding: 10px 25px;
  border: 1px solid #2b9ada;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  color: #2b9ada;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: none; }
  .lnkButton:hover {
    background-color: #2b9ada;
    color: #fff; }
  .lnkButton.voteButton {
    background-color: #f33a87;
    border-color: #f33a87;
    color: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 16px; }
  .lnkButton.socialBtn {
    border-color: #3b5998;
    background-color: #3b5998;
    color: #fff;
    font-size: 13px;
    margin: 0 7px;
    padding: 8px 15px 8px 10px; }
    .lnkButton.socialBtn i {
      margin-right: 3px;
      -webkit-transition: 0.4s;
      -khtml-transition: 0.4s;
      -moz-transition: 0.4s;
      -ms-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .lnkButton.socialBtn:hover {
      background-color: transparent;
      color: #3b5998; }
      .lnkButton.socialBtn:hover i {
        color: #3b5998; }

.conSocialIcons .conIcon {
  color: #b8b8b8;
  position: absolute;
  bottom: 30px;
  left: 30px; }
  .ms-right .conSocialIcons .conIcon {
    left: auto;
    right: 30px; }

.conSectionPhoto .txtNo {
  padding: 10px 25px 10px 10px;
  color: #b8b8b8;
  font-weight: 400;
  background-color: #fff;
  top: auto;
  bottom: 45px;
  left: auto;
  right: 0;
  font-size: 28px;
  font-family: 'Lato', Arial, sans-serif; }
  .conSectionPhoto .txtNo span {
    color: #000;
    font-weight: 700; }
  .ms-left .conSectionPhoto .txtNo {
    padding: 10px 10px 10px 25px;
    left: 0;
    right: auto; }

@media (max-width: 767px) {
  #ck_top_menu_1 {
    display: none; } }
.boxHomepageGrid {
  background-color: #5125a0; }

.boxContent.mobileLogo {
  display: flex !important;
  display: -webkit-flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  height: 53px;
  padding-right: 10px; }
  .boxContent.mobileLogo .logo30 {
    max-height: 30px; }
  .boxContent.mobileLogo .logoTxt {
    max-height: 27px;
    margin: -2px 0 0 5px; }

.boxIdeaText .lnkFBShare {
  top: 80px !important;
  right: 20px !important; }

/*# sourceMappingURL=style-mobile.css.map */
