/*
* Base
*/
body .text-uppercase {
  text-transform: uppercase;
}
body .text-capitalize {
  text-transform: capitalize;
}
body .text-bigger {
  font-size: 20px;
}
body .text-smaller {
  font-size: 14px;
}
body .nowrap {
  white-space: nowrap;
}
body .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .text-center {
  text-align: center;
}
body .text-justify {
  text-align: justify;
}
body .text-left {
  text-align: left;
}
body .text-right {
  text-align: right;
}
body .text-muted {
  color: $gray_button;
}
body .text-success,
body .text-green {
  color: #58a212;
}
body .text-danger,
body .text-red,
body .text-error {
  color: #ff3700;
}
body .text-black {
  color: #000;
}
body .text-white {
  color: #fff;
}
body .text-warning,
body .text-orange {
  color: $orange;
}
body .text-blackish {
  color: #26252c;
}
body .text-blue {
  color: $blue;
}
body .text-light {
  font-weight: 300;
}
body .text-regular {
  font-weight: 400;
}
body .text-semibold {
  font-weight: 500;
}
body .text-bold {
  font-weight: 700;
}
body .fixed {
  position: fixed !important;
}
body .clearfix {
  clear: both !important;
}
body .pull-left {
  float: left !important;
}
body .pull-right {
  float: right !important;
}
body .pull-none {
  float: none !important;
}
body .inline {
  display: inline-block;
}
body .table {
  display: table;
}
body .table-cell {
  display: table-cell;
}
body .vcenter {
  vertical-align: middle;
}
body .vtop {
  vertical-align: top;
}
body .flex-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
body .nopadding {
  padding: 0 !important;
}
body .nohpadding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body .novpadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body .nolpadding {
  padding-left: 0 !important;
}
body .norpadding {
  padding-right: 0 !important;
}
body .notpadding {
  padding-top: 0 !important;
}
body .nobpadding {
  padding-bottom: 0 !important;
}
body .nomargin {
  margin: 0 !important;
}
body .nohmargin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body .novmargin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body .nolmargin {
  margin-left: 0 !important;
}
body .normargin {
  margin-right: 0 !important;
}
body .notmargin {
  margin-top: 0 !important;
}
body .nobmargin {
  margin-bottom: 0 !important;
}
body .noborder {
  border: 0 !important;
}
body .nolborder {
  border-left: 0 !important;
}
body .norborder {
  border-right: 0 !important;
}
body .nobborder {
  border-bottom: 0 !important;
}
body .notborder {
  border-top: 0 !important;
}
body .with-border {
  border: 1px solid $gray_border;
}
body .noshadow {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
}
body .circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
body .hidden-pc {
  display: block;
}
body .hidden-lg {
  display: block;
}
body .hidden-md {
  display: block;
}
body .hidden-sm {
  display: block;
}
body .hidden-xs {
  display: inherit;
}
body .hidden-tn {
  display: block;
}
body .hidden-utn {
  display: block;
}
body .visible-pc {
  display: none;
}
body .visible-lg {
  display: none;
}
body .visible-md {
  display: none;
}
body .visible-sm {
  display: none;
}
body .visible-xs {
  display: none;
}
body .visible-tn {
  display: none;
}
body .visible-utn {
  display: none;
}
body .hidden {
  display: none;
}
body .visible {
  display: block;
}
@media (max-width: 1219px) {
  body .hidden-pc {
    display: none !important;
  }
  body .visible-pc {
    display: block;
  }
}
@media (max-width: 979px) {
  body .hidden-lg {
    display: none !important;
  }
  body .visible-lg {
    display: block;
  }
}
@media (max-width: 767px) {
  body .hidden-md {
    display: none !important;
  }
  body .visible-md {
    display: block;
  }
}
@media (max-width: 659px) {
  body .hidden-sm {
    display: none !important;
  }
  body .visible-sm {
    display: block;
  }
}
@media (max-width: 499px) {
  body .hidden-xs {
    display: none !important;
  }
  body .visible-xs {
    display: block;
  }
}
@media (max-width: 394px) {
  body .hidden-tn {
    display: none !important;
  }
  body .visible-tn {
    display: block;
  }
}
@media (max-width: 359px) {
  body .hidden-utn {
    display: none !important;
  }
  body .visible-utn {
    display: block;
  }
}
/* normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block /* 1 */;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
@-moz-document url-prefix() {
  a:focus,
  .focusable {
    outline: none !important;
  }
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit /* 1 */;
  font: inherit /* 2 */;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button /* 2 */;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield /* 1 */;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box /* 2 */;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0 /* 1 */;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
::-moz-selection {
  background: #f54a9b;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #f54a9b;
  color: #fff;
  text-shadow: none;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
body {
  -webkit-text-size-adjust: none;
  background: #fff;
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  min-width: 320px;
}
@-ms-viewport;
body {
  font-family: 'Montserrat', 'Roboto', 'Helvetica', sans-serif;
  font-size: 15px;
  color: #26252c;
}
p {
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: #26252c;
  border-bottom: 1px solid #26252c;
  -webkit-transition: border 0.3s ease;
  -moz-transition: border 0.3s ease;
  -ms-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
a:hover {
  border-bottom-color: transparent;
}
a.fancybox-close {
  border: none;
}
h1,
h2,
h3,
h4,
h5 {
  color: #26252c;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: #26252c;
  border-bottom-width: 3px;
}
h1 {
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 32px;
}
h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 14px;
}
h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 14px;
/*text-transform uppercase*/
}
h4 {
  font-weight: bold;
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 11px;
}
h5 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 11px;
}
h1.doc-name {
  font-size: 32px;
  font-weight: bold;
  color: #505050;
}
p.last-update {
  color: #9f9f9f;
  font-size: 14px;
}
/*
* Components
 */
.mode-day .intro.night {
  display: none;
}
.mode-night .intro.day {
  display: none;
}
.mode-night header,
.mode-night #hero {
  background: #000;
}
.mode-night .brand {
  background: url("../img/logo-w.svg");
}
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 10px 30px;
}
header,
#hero {
  -webkit-transition: 0.2s ease-in background-color;
  -moz-transition: 0.2s ease-in background-color;
  -ms-transition: 0.2s ease-in background-color;
  -o-transition: 0.2s ease-in background-color;
  transition: 0.2s ease-in background-color;
}
header .container,
footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 980px) {
  header,
  #hero,
  #stories,
  footer {
    text-align: center;
  }
}
header {
  padding: 40px 0 60px 0;
}
header .container {
  flex-wrap: wrap;
}
header .brand {
  width: 263px;
  height: 50px;
  background: url("../img/logo-b.svg") no-repeat;
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  header .brand {
    margin-right: 0;
  }
}
header .social-links {
  margin-left: auto;
}
@media screen and (max-width: 980px) {
  header .social-links {
    margin-left: 0;
  }
}
header .brand,
header .social-links {
  margin-top: 20px;
}
@media screen and (max-width: 980px) {
  #hero {
    text-align: center;
  }
}
#hero .photo {
  margin-left: auto;
  min-width: 50%;
}
@media screen and (max-width: 980px) {
  #hero .photo {
    margin-left: 0;
  }
}
#hero .photo img {
  -webkit-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  -ms-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  -o-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  margin-bottom: -90px;
  max-width: 660px;
}
@media screen and (max-width: 1400px) {
  #hero .photo img {
    width: 90%;
  }
}
@media screen and (max-width: 1220px) {
  #hero .photo img {
    width: 85%;
  }
}
@media screen and (max-width: 980px) {
  #hero .photo img {
    width: 70%;
    margin-top: 50px;
  }
}
#hero #hero-content {
  max-width: 570px;
  min-width: 50%;
  padding-right: 40px;
}
@media screen and (max-width: 1220px) {
  #hero #hero-content {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 980px) {
  #hero #hero-content {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
#hero #hero-content h1 {
  margin-top: 90px;
}
@media screen and (max-width: 1220px) {
  #hero #hero-content h1 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 980px) {
  #hero #hero-content h1 {
    margin-top: 30px;
  }
}
#hero .intro p {
  font-size: 20px;
  -webkit-opacity: 0.66;
  -moz-opacity: 0.66;
  -ms-opacity: 0.66;
  -o-opacity: 0.66;
  opacity: 0.66;
}
#hero .intro.night p,
#hero .intro.night h1 {
  color: #fff;
}
#hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 980px) {
  #hero .container {
    flex-wrap: wrap;
  }
}
#hero #switch {
  margin-top: -130px;
}
@media screen and (max-width: 1220px) {
  #hero #switch {
    margin-top: -60px;
    display: inline-block;
  }
}
@media screen and (max-width: 980px) {
  #hero #switch {
    margin-top: 0;
  }
}
#hero #switch .switcher {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  color: #b8b7ba;
  display: block;
  border: 1px solid #b8b7ba;
  max-width: 301px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px;
}
#hero #switch .switcher a {
  display: inline-block;
  padding: 15px 28px;
  padding-left: 64px;
  border: none;
  font-weight: 500;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  color: #b8b7ba;
}
#hero #switch .switcher a.active {
  background-color: #4520f4;
  color: #fff;
}
#hero #switch .switcher a.active.day i {
  background: url("../img/mode-day-w.svg") no-repeat;
}
#hero #switch .switcher a.active.night i {
  background: url("../img/mode-night-w.svg") no-repeat;
}
#hero #switch .switcher a i {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 18px;
  vertical-align: middle;
  position: absolute;
  margin-left: -35px;
  margin-top: -3px;
}
#hero #switch .switcher a.day i {
  background: url("../img/mode-day.svg") no-repeat;
}
#hero #switch .switcher a.night i {
  background: url("../img/mode-night.svg") no-repeat;
}
.social-links a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  margin-left: 20px;
  -webkit-transition: 0.1s ease-in transform;
  -moz-transition: 0.1s ease-in transform;
  -ms-transition: 0.1s ease-in transform;
  -o-transition: 0.1s ease-in transform;
  transition: 0.1s ease-in transform;
}
.social-links a.linkedin {
  background-image: url("../img/social-linkedin.svg");
}
.social-links a.twitter {
  background-image: url("../img/social-twitter.svg");
}
.social-links a.facebook {
  background-image: url("../img/social-facebook.svg");
}
.social-links a.soundcloud {
  background-image: url("../img/social-soundcloud.svg");
}
.social-links a.instagram {
  background-image: url("../img/social-instagram.svg");
}
.social-links a.spotify {
  background-image: url("../img/social-spotify.svg");
}
.social-links a.youtube {
  background-image: url("../img/social-youtube.svg");
}
.social-links a:hover {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
footer {
  padding: 90px 0;
}
@media screen and (max-width: 980px) {
  footer .container {
    flex-wrap: wrap;
  }
}
footer .social-links {
  margin-left: auto;
}
@media screen and (max-width: 980px) {
  footer .social-links {
    margin-left: 0;
  }
}
footer .social-links a {
  width: 40px;
  height: 40px;
  background-size: 100%;
}
footer .contact {
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  footer .contact {
    margin-right: 0;
  }
}
footer .social-links,
footer .contact {
  margin-top: 20px;
}
footer h2 {
  line-height: 1.5;
}
footer h2 a {
  color: #f74fb4;
  border-bottom-color: #f74fb4;
}
#stories {
  background: #4520f4;
  color: #fff;
  padding: 130px 0 50px 0;
}
#stories h1,
#stories h2,
#stories h3,
#stories p {
  color: #fff;
}
#stories h2 {
  position: relative;
  z-index: 1;
  margin-top: 90px;
}
#stories h2:before {
  content: "";
  position: absolute;
  width: 410px;
  max-width: 100%;
  height: 200px;
  background: url("../img/stories-headline.svg") no-repeat;
  margin-top: -160px;
  margin-left: -39px;
  z-index: -1;
}
#stories .cta {
  text-align: center;
  text-align: center;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
}
#stories .cta a.btn {
  background-image: linear-gradient(-135deg, #fb57e1 0%, #f3478d 100%);
  -webkit-box-shadow: 0 10px 20px -5px rgba(243,71,141,0.25);
  -moz-box-shadow: 0 10px 20px -5px rgba(243,71,141,0.25);
  -ms-box-shadow: 0 10px 20px -5px rgba(243,71,141,0.25);
  -o-box-shadow: 0 10px 20px -5px rgba(243,71,141,0.25);
  box-shadow: 0 10px 20px -5px rgba(243,71,141,0.25);
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  padding: 25px 90px;
  font-weight: bold;
  color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
@media screen and (max-width: 980px) {
  #stories .cta a.btn {
    padding: 25px 60px;
  }
}
#stories .articles {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#stories .articles .article {
  max-width: 360px;
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 60px;
  border: none;
}
#stories .articles .article h3 {
  background: #fff;
  -webkit-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  -ms-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  -o-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  color: #26252c;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 28px;
  margin-top: -68px;
  z-index: 5;
  position: relative;
  max-width: 330px;
  line-height: 1.5;
}
#stories .articles .article .cover {
  z-index: 3;
  position: relative;
}
#stories .articles .article .cover img {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  margin-left: 10px;
}
@media screen and (max-width: 1220px) {
  header {
    padding: 20px 0 30px 0;
  }
}
@media screen and (max-width: 980px) {
  header {
    padding: 10px 0 10px 0;
  }
  header .social-links {
    display: none;
  }
  #hero h1 {
    font-size: 32px;
  }
  #hero .intro p {
    font-size: 16px;
  }
}
