@import url("http://fast.fonts.net/t/1.css?apiType=css&projectid=9d5abc4f-8427-44fa-b719-1b29f6bb7ed9");

@font-face {
  font-family: "Nexa W05 Regular";
  src: url("./fonts/14c2540d-2c31-4e55-9124-62a04f793f87.woff2") format("woff2"), url("./fonts/f5f48fc0-38ca-47aa-942c-3f1d266d9b20.woff") format("woff");
}

@font-face {
  font-family: "Nexa W05 Bold";
  src: url("./fonts/1b920530-d311-452f-9645-e6bf4bb204c2.woff2") format("woff2"), url("./fonts/beb66147-d106-479f-bd7f-b52fa11bf1b0.woff") format("woff");
}

* {
  box-sizing: border-box;
}

body {
  background-color: #3D4543;
  color: #FFF;
  font-family: "Nexa W05 Regular";
  font-size: 1rem;
}

.container {
  display: flex;
  flex-flow: wrap;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto;
  max-width: 600px;
}

@media (min-width:1200px) {
  .container {
    flex-flow: nowrap;
    max-width: 100%;
  }
}

/* contact wrap */

.container-col__contact {
  display: flex;
  width: 100%;
  justify-content: center;
  height: 40%;
}

@media (min-width:1200px) {
  .container-col__contact {
    flex: 0 0 30%;
    height:100%;
  }
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 20px 20px 20px 20px;
  margin-bottom: 40px;
  padding: 15px 30px 20px 30px;
  margin: 0 auto;
}

@media (min-width:1200px) {
  .contact-wrapper {
    padding: 50px 30px 30px 60px;
  }
}

@media (min-width:1400px) {
  .contact-wrapper {
    padding: 50px 80px 30px 80px;
  }
}

.contact-wrapper svg {
  max-width: 300px;
  height: auto;
}

@media (min-width:768px) {
  .contact-wrapper svg {
    max-width: 350px;
  }
}

.contact-titles {
  margin-bottom: 15px;
}

.contact-sub-titles {
  display: flex;
  font-size: 1.1rem;
  color: #FFB548;
  margin-bottom: 15px;
  line-height:1.1;
}

@media (min-width:1200px) {
  .contact-sub-titles {
    margin-bottom: 40px;
  }
}

.contact-sub-titles span {
  margin-right: 15px;
}

@media (min-width:1200px) {
  .contact-sub-titles {
    font-size: 1.3rem;
    margin-bottom: 100px;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #FFF;
  line-height: 1.1;
  padding-bottom:15px;
}

@media (min-width:1200px) {
  .contact-details {
    font-size: 1.3rem;
    padding-bottom:0px;
  }
}

.contact-details span {
  margin-bottom: 5px;
}

.contact-details a {
  color: #FFF;
  text-decoration: underline;
  text-decoration-color: #FFB548;
}

.contact-licence {
  font-size: 0.8rem;
}

@media (min-width:1200px) {
  .contact-licence {
    margin-top: auto;
  }
}

/* light svg */

.container-col__light {
  width: 100%;
  display: flex;
  height: 60%;
  margin-top: auto;
  margin-top: auto;
}

@media (min-width:1200px) {
  .container-col__light {
    flex: 1;
    padding-right: 10px;
    height:100%;
    justify-content: center;
  }
}

@media (min-width:1400px) {
  .container-col__light {
    padding-right: 20px;
  }
}

.container-col__light--holder {
  position: relative;
  height: 0;
  width: 100%;
  padding: 0;
  padding-bottom: 120%;
  display: flex;
}

.container-col__light--holder::before {
  content: '';
}

.container-col__light svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width:1200px) {
  .container-col__light svg {
    height: 100%;
    width: auto;
    display: block;
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


#light-shade.is-animating {
  -webkit-animation: flicker 0.8s forwards;
  -moz-animation: flicker 0.8s forwards;
  -o-animation: flicker 0.8s forwards;
  animation: flicker 0.8s forwards;
}

.st-text {
  opacity:0;
} 

.st-text.is-animating {
  -webkit-animation: flicker 0.8s forwards;
  -moz-animation: flicker 0.8s forwards;
  -o-animation: flicker 0.8s forwards;
  animation: flicker 0.8s forwards;
}

/* keyframes */

@keyframes flicker {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flickerOut {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  31% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    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) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
