* {
  outline: none;
}
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,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
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;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  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;
  border-radius: 0;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  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;
  padding: 0;
}
textarea {
  overflow: auto;
  border-radius: 0;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* GRID ======================================================================== */
.clear:before,
.clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}
body {
  width: 100%;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
/* EXTRA ======================================================================= */
img.scale {
  max-width: 100%;
  height: auto;
}
::selection {
  background: #b7b7b7;
  color: #fff;
}
::-moz-selection {
  background: #b7b7b7;
  color: #fff;
}
/* CMS ========================================================================= */
.uniform__potty {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.erroneous {
  border-color: crimson !important;
  border: 1px solid crimson !important;
}
.error {
  margin: 0px 0;
  text-align: center;
  color: crimson;
}
.success {
  margin: 10px 0;
  text-align: center;
}
/* PLUGINS ===================================================================== */
/*!
 * animsition v4.0.2
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
.animsition,
.animsition-overlay {
  position: relative;
  opacity: 0;
  animation-fill-mode: both;
}
.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd;
}
.animsition-loading,
.animsition-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 2;
}
.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  transform: translateZ(0);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  animation-name: animsition-loading;
}
@keyframes animsition-loading {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation-name: fade-in;
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  animation-name: fade-out;
}
@keyframes fade-in-up {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up {
  animation-name: fade-in-up;
}
@keyframes fade-out-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-500px);
    opacity: 0;
  }
}
.fade-out-up {
  animation-name: fade-out-up;
}
@keyframes fade-in-up-sm {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up-sm {
  animation-name: fade-in-up-sm;
}
@keyframes fade-out-up-sm {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100px);
    opacity: 0;
  }
}
.fade-out-up-sm {
  animation-name: fade-out-up-sm;
}
@keyframes fade-in-up-lg {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up-lg {
  animation-name: fade-in-up-lg;
}
@keyframes fade-out-up-lg {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-1000px);
    opacity: 0;
  }
}
.fade-out-up-lg {
  animation-name: fade-out-up-lg;
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-down {
  animation-name: fade-in-down;
}
@keyframes fade-out-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(500px);
    opacity: 0;
  }
}
.fade-out-down {
  animation-name: fade-out-down;
}
@keyframes fade-in-down-sm {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-down-sm {
  animation-name: fade-in-down-sm;
}
@keyframes fade-out-down-sm {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100px);
    opacity: 0;
  }
}
.fade-out-down-sm {
  animation-name: fade-out-down-sm;
}
.fade-in-down-lg {
  animation-name: fade-in-down;
}
@keyframes fade-out-down-lg {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(1000px);
    opacity: 0;
  }
}
.fade-out-down-lg {
  animation-name: fade-out-down-lg;
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left {
  animation-name: fade-in-left;
}
@keyframes fade-out-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-500px);
    opacity: 0;
  }
}
.fade-out-left {
  animation-name: fade-out-left;
}
@keyframes fade-in-left-sm {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left-sm {
  animation-name: fade-in-left-sm;
}
@keyframes fade-out-left-sm {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100px);
    opacity: 0;
  }
}
.fade-out-left-sm {
  animation-name: fade-out-left-sm;
}
@keyframes fade-in-left-lg {
  0% {
    transform: translateX(-1500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left-lg {
  animation-name: fade-in-left-lg;
}
@keyframes fade-out-left-lg {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-1500px);
    opacity: 0;
  }
}
.fade-out-left-lg {
  animation-name: fade-out-left-lg;
}
@keyframes fade-in-right {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right {
  animation-name: fade-in-right;
}
@keyframes fade-out-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(500px);
    opacity: 0;
  }
}
.fade-out-right {
  animation-name: fade-out-right;
}
@keyframes fade-in-right-sm {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right-sm {
  animation-name: fade-in-right-sm;
}
@keyframes fade-out-right-sm {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100px);
    opacity: 0;
  }
}
.fade-out-right-sm {
  animation-name: fade-out-right-sm;
}
@keyframes fade-in-right-lg {
  0% {
    transform: translateX(1500px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right-lg {
  animation-name: fade-in-right-lg;
}
@keyframes fade-out-right-lg {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(1500px);
    opacity: 0;
  }
}
.fade-out-right-lg {
  animation-name: fade-out-right-lg;
}
@keyframes rotate-in {
  0% {
    transform: rotate(-90deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,
  to {
    -webkit-transform-origin: center center;
  }
  to {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
.rotate-in {
  animation-name: rotate-in;
}
@keyframes rotate-out {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,
  to {
    -webkit-transform-origin: center center;
  }
  to {
    transform: rotate(90deg);
    transform-origin: center center;
    opacity: 0;
  }
}
.rotate-out {
  animation-name: rotate-out;
}
@keyframes rotate-in-sm {
  0% {
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,
  to {
    -webkit-transform-origin: center center;
  }
  to {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
.rotate-in-sm {
  animation-name: rotate-in-sm;
}
@keyframes rotate-out-sm {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,
  to {
    -webkit-transform-origin: center center;
  }
  to {
    transform: rotate(45deg);
    transform-origin: center center;
    opacity: 0;
  }
}
.rotate-out-sm {
  animation-name: rotate-out-sm;
}
@keyframes rotate-in-lg {
  0% {
    transform: rotate(-180deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,
  to {
    -webkit-transform-origin: center center;
  }
  to {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
.rotate-in-lg {
  animation-name: rotate-in-lg;
}
@keyframes rotate-out-lg {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,
  to {
    -webkit-transform-origin: center center;
  }
  to {
    transform: rotate(180deg);
    transform-origin: center center;
    opacity: 0;
  }
}
.rotate-out-lg {
  animation-name: rotate-out-lg;
}
@keyframes flip-in-x {
  0% {
    transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
}
.flip-in-x {
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-out-x {
  0% {
    transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
}
.flip-out-x {
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-in-x-nr {
  0% {
    transform: perspective(100px) rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(100px) rotateX(0deg);
    opacity: 1;
  }
}
.flip-in-x-nr {
  animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-out-x-nr {
  0% {
    transform: perspective(100px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(100px) rotateX(90deg);
    opacity: 0;
  }
}
.flip-out-x-nr {
  animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-in-x-fr {
  0% {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
}
.flip-in-x-fr {
  animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-out-x-fr {
  0% {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}
.flip-out-x-fr {
  animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-in-y {
  0% {
    transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in-y {
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-out-y {
  0% {
    transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
}
.flip-out-y {
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-in-y-nr {
  0% {
    transform: perspective(100px) rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(100px) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in-y-nr {
  animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-out-y-nr {
  0% {
    transform: perspective(100px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(100px) rotateY(90deg);
    opacity: 0;
  }
}
.flip-out-y-nr {
  animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-in-y-fr {
  0% {
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in-y-fr {
  animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes flip-out-y-fr {
  0% {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
  to {
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }
}
.flip-out-y-fr {
  animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@keyframes zoom-in {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-in {
  animation-name: zoom-in;
}
@keyframes zoom-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.7);
  }
  50%,
  to {
    opacity: 0;
  }
}
.zoom-out {
  animation-name: zoom-out;
}
@keyframes zoom-in-sm {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-in-sm {
  animation-name: zoom-in-sm;
}
@keyframes zoom-out-sm {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
  }
  50%,
  to {
    opacity: 0;
  }
}
.zoom-out-sm {
  animation-name: zoom-out-sm;
}
@keyframes zoom-in-lg {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-in-lg {
  animation-name: zoom-in-lg;
}
@keyframes zoom-out-lg {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.4);
  }
  50%,
  to {
    opacity: 0;
  }
}
.zoom-out-lg {
  animation-name: zoom-out-lg;
}
@keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.overlay-slide-in-top {
  top: 0;
  height: 0;
  animation-name: overlay-slide-in-top;
}
@keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.overlay-slide-out-top {
  top: 0;
  height: 100%;
  animation-name: overlay-slide-out-top;
}
@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  animation-name: overlay-slide-in-bottom;
}
@keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  animation-name: overlay-slide-out-bottom;
}
@keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
.overlay-slide-in-left {
  width: 0;
  animation-name: overlay-slide-in-left;
}
@keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.overlay-slide-out-left {
  left: 0;
  width: 100%;
  animation-name: overlay-slide-out-left;
}
@keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
.overlay-slide-in-right {
  right: 0;
  width: 0;
  animation-name: overlay-slide-in-right;
}
@keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.overlay-slide-out-right {
  right: 0;
  width: 100%;
  animation-name: overlay-slide-out-right;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* VARIABLES =================================================================== */
/* STYLES ====================== */
body {
  font-family: "sofia-pro", sans-serif;
  color: black;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
}
.container {
  margin-left: 25%;
  width: 75%;
  position: relative;
}
header {
  margin: 40px 0;
}
header .logo {
  display: block;
  background-image: url('../images/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 290px;
  height: 62px;
  margin-left: -195px;
  position: relative;
}
header nav {
  margin-top: 60px;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
header nav a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  position: relative;
}
header nav a.active {
  font-weight: 700;
}
header nav a:after {
  content: '';
  left: 0;
  right: 100%;
  bottom: 6px;
  position: absolute;
  background: black;
  height: 1px;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav a:hover:after {
  right: 0%;
  opacity: 1;
}
header nav menu {
  display: block;
  margin-top: 25px;
}
.gal {
  position: relative;
  margin-top: -180px;
  margin-left: 100px;
  right: 0;
  left: 0;
}
.gal:after {
  content: '';
  background: black;
  width: 0px;
  height: 1px;
  display: block;
  position: absolute;
  left: -100px;
  bottom: 40px;
  animation-name: stretch;
  animation-duration: 1s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.gal.single figure {
  position: relative;
  overflow: hidden;
}
.gal.single img {
  margin-top: -10px;
  margin-bottom: -10px;
  width: 110%;
  height: auto;
  display: block;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  transition: all 0.15s ease;
}
.slider figure,
.socialslider figure {
  margin: 0 1px;
}
.slider figure img,
.socialslider figure img {
  max-height: 500px;
  cursor: pointer;
}
.slider .slick-prev,
.socialslider .slick-prev {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-appearance: none;
          appearance: none;
  width: 60px;
  border: none;
  font-size: 0px;
  background-image: url('../images/left.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
  background-color: transparent;
}
.slider .slick-next,
.socialslider .slick-next {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-appearance: none;
          appearance: none;
  width: 60px;
  border: none;
  font-size: 0px;
  background-image: url('../images/right.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
  background-color: transparent;
}
.filter {
  position: absolute;
  top: 174px;
  right: 5%;
  left: 0;
  text-align: right;
  margin-left: 100px;
}
.filter a {
  text-decoration: none;
  text-transform: uppercase;
  color: #b7b7b7;
  letter-spacing: 1px;
  font-size: 10px;
  margin-left: 15px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.filter a.active {
  color: black;
  font-weight: 700;
}
.filter a:after {
  content: '';
  left: 0;
  right: 100%;
  bottom: 9px;
  position: absolute;
  background: black;
  height: 1px;
  opacity: 0;
  transition: all 0.3s ease;
}
.filter a:hover:after {
  right: 0%;
  opacity: 1;
}
#grid {
  position: absolute;
  top: 200px;
  margin-left: 100px;
  right: 5%;
  left: 0;
}
main {
  margin-top: 34px;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  width: 100%;
}
main .content {
  max-width: 340px;
}
main h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}
main a {
  text-decoration: none;
  color: black;
  position: relative;
}
main a:after {
  content: '';
  left: 0;
  right: 100%;
  bottom: 7px;
  position: absolute;
  background: black;
  height: 1px;
  opacity: 0;
  transition: all 0.3s ease;
}
main a:hover:after {
  right: 0%;
  opacity: 1;
}
main form {
  width: 40%;
  margin-right: 10%;
  display: inline-block;
  float: left;
  max-width: 300px;
}
main form label {
  display: block;
  margin: 10px 0 2px 0;
  text-transform: uppercase;
  font-size: 11px;
}
main form input[type="text"],
main form input[type="email"] {
  border: 1px solid black;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
}
main form textarea {
  border: 1px solid black;
  display: block;
  box-sizing: border-box;
  width: 100%;
  resize: vertical;
  min-height: 100px;
  padding: 5px;
  margin-bottom: 20px;
}
main form button {
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid black;
  text-align: center;
  font-family: "sofia-pro", sans-serif;
  text-transform: uppercase;
  background: white;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  transition: all 0.3s ease;
}
main form button:hover {
  background: black;
  color: white;
}
main .info {
  width: 46%;
  margin-right: 4%;
  display: inline-block;
  float: left;
  margin-top: 75px;
}
main .contact {
  width: 100%;
}
main .contact:before,
main .contact:after {
  content: "";
  display: table;
}
main .contact:after {
  clear: both;
}
main .contact:before,
main .contact:after {
  content: "";
  display: table;
}
main .contact:after {
  clear: both;
}
footer {
  position: relative;
  margin-top: 100px;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  padding-bottom: 60px;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  width: 90%;
}
footer a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
footer .fcontainer {
  display: flex;
  flex-direction: row;
}
footer .data,
footer .data2 {
  width: 50%;
}
footer .data2 {
  display: flex;
  justify-content: flex-end;
}
footer .plug {
  position: relative;
}
footer .plug:after {
  content: '';
  background: black;
  height: 1px;
  position: absolute;
  left: 0;
  top: 11px;
  right: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .plug:hover {
  color: black;
}
footer .plug:hover:after {
  opacity: 1;
  right: 0%;
}
footer .social {
  display: none;
}
footer .social a {
  display: inline-block;
  padding: 8px;
}
.juicer-feed {
  width: 0!important;
  height: 0!important;
  opacity: 0!important;
}
.juicer-feed .referral {
  display: none!important;
  visibility: hidden;
}
.juicer-feed .j-stacker {
  position: relative;
  height: 0!important;
}
.juicer-feed .j-stacker .j-stack {
  height: 0!important;
}
.juicer-feed .j-stacker .j-stack .feed-item {
  border: none;
  position: absolute;
  width: 0!important;
  height: 0!important;
  background: unset;
}
.juicer-feed .j-stacker .j-stack .feed-item .j-poster {
  display: none;
  visibility: hidden;
}
.juicer-feed .j-stacker .j-stack .feed-item .j-image {
  position: relative;
  height: 0!important;
  width: 0!important;
  padding-bottom: 0;
  overflow: hidden;
}
.juicer-feed .j-stacker .j-stack .feed-item .j-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 0!important;
  width: 0!important;
}
.juicer-feed .j-stacker .j-stack .feed-item .j-text {
  padding: 0;
}
.juicer-feed .j-stacker .j-stack .feed-item .j-text .j-meta {
  display: none;
  visibility: hidden;
}
@keyframes stretch {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    filter: grayscale(100%);
  }
  to {
    opacity: 1;
    filter: grayscale(0%);
  }
}
.no-cssanimations header nav {
  opacity: 1;
}
.no-cssanimations .gal img {
  opacity: 1;
}
.no-cssanimations main {
  opacity: 1;
}
.no-cssanimations footer {
  opacity: 1;
}
/* MEDIA QUERY'S =============== */
@media only screen and (max-width: 1120px) {
  .slider figure,
  .socialslider figure {
    margin: 0 1px;
  }
  .slider figure img,
  .socialslider figure img {
    max-height: 400px;
  }
}
@media only screen and (max-width: 1020px) {
  .container {
    margin-left: 5%;
    width: 95%;
    position: relative;
  }
  header {
    margin: 40px 0;
  }
  header .logo {
    margin-left: 0;
  }
  footer {
    width: 95%;
  }
}
@media only screen and (max-width: 720px) {
  .container {
    width: 100%;
    margin-left: 0;
  }
  header {
    text-align: center;
  }
  header .logo {
    display: block;
    margin: 0 auto;
    width: 220px;
    height: 47px;
  }
  header nav {
    margin: 25px 10px 15px 10px;
  }
  header nav div {
    display: inline-block;
    padding: 0 8px;
  }
  header nav menu {
    display: none;
  }
  .gal {
    position: relative;
    top: inherit;
    margin: 0;
  }
  .gal:after {
    display: none;
  }
  .gal.single:after {
    display: none;
  }
  main {
    margin-top: 20px !important;
    position: relative;
  }
  main .content {
    margin: 0 20px;
    max-width: inherit;
    text-align: center;
  }
  main .contact {
    margin: 0 1%;
    width: 98%;
  }
  main .contact form {
    width: 100%;
    display: block;
    float: none;
    margin: 0 auto 40px auto;
  }
  main .contact .info {
    width: 100%;
    display: block;
    float: none;
    margin: 0;
    text-align: center;
  }
  .slider figure,
  .socialslider figure {
    margin: 0;
  }
  .slider figure img,
  .socialslider figure img {
    max-height: inherit;
    max-width: 100vw;
    height: auto;
    margin: 0;
  }
  .filter {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding-top: 6px;
    border-top: 1px solid #b7b7b7;
  }
  #grid {
    position: relative;
    top: 0;
    margin-left: 10px;
    margin-right: 10px;
    right: 0;
    left: 0;
  }
  #grid figure {
    margin: 0 2px 4px 2px;
  }
  #grid figure img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  #grid:after {
    display: none;
  }
  footer {
    margin-top: 50px !important;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    width: calc(100% - 40px);
    top: inherit;
    left: 0;
    right: 0;
  }
  footer .fcontainer {
    justify-content: space-between;
    flex-direction: column;
  }
  footer .data,
  footer .data2 {
    width: 100%;
    justify-content: center;
  }
  footer .data,
  footer .plug {
    float: none;
    display: block;
  }
  footer .social {
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  header nav {
    max-width: 300px;
    margin: 26px auto 0 auto;
  }
}
