@-webkit-keyframes arrowTurnUp {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(180deg); } }
@keyframes arrowTurnUp {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(180deg); } }
@-webkit-keyframes arrowTurnDown {
  0% {
    -webkit-transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(0); } }
@keyframes arrowTurnDown {
  0% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(0); } }
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

*:focus {
  outline: none; }

img {
  display: inline-block;
  max-width: 100%; }

/***** HEADERS *****/
/***** TEXT *****/
.line {
  display: block; }

/***** LISTS *****/
ul {
  list-style-type: none; }

.dropdown {
  position: relative;
  display: block;
  max-width: 300px; }
  .dropdown .dropdown__header {
    padding: 10px 50px 10px 15px;
    border: 1px solid #444;
    position: relative;
    cursor: pointer; }
    .dropdown .dropdown__header .icon {
      position: absolute;
      top: 50%;
      right: 16px;
      margin: -4px 0 0 0;
      -webkit-animation-name: arrowTurnDown;
      -moz-animation-name: arrowTurnDown;
      animation-name: arrowTurnDown;
      -webkit-animation-duration: 0.2s;
      -moz-animation-duration: 0.2s;
      animation-duration: 0.2s; }
  .dropdown .dropdown__title {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px; }
  .dropdown .dropdown__list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    font-size: 12px;
    padding: 15px 10px;
    background: #fafafa;
    border: 1px solid #dddddd;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10; }
    .dropdown .dropdown__list > li {
      display: block;
      padding: 5px 0; }
    .dropdown .dropdown__list a {
      display: block; }

.dropdown.dropdown--open .dropdown__header .icon {
  -webkit-animation-name: arrowTurnUp;
  -moz-animation-name: arrowTurnUp;
  animation-name: arrowTurnUp;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg); }

.horizontal-list > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 -5px;
  padding: 0 35px; }
.horizontal-list > li:first-child {
  padding-left: 0; }
.horizontal-list > li:last-child {
  padding-right: 0; }

/***** CONTAINERS *****/
.site-content {
  margin: 0 auto; }

.wrapper {
  display: table;
  width: 100%;
  height: 100%; }
  .wrapper > div {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center; }

.container {
  position: relative; }
  .container:after {
    content: '';
    display: block;
    clear: both; }
  .container .column {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .container .col-9 {
    width: 75%; }
  .container .col-8 {
    width: 66.6666666667%; }
  .container .col-6 {
    width: 50%; }
  .container .col-4 {
    width: 33.3333333333%; }
  .container .col-3 {
    width: 25%; }
  .container .col-2 {
    width: 16.6666666667%; }
  .container .middle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    margin: 0 0 0 -25%; }

.container--reverse .column {
  float: right; }

.container--same-height-columns {
  position: relative; }
  .container--same-height-columns .column {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%; }
  .container--same-height-columns .column--highest {
    position: static; }

.video {
  display: block;
  position: relative;
  padding-bottom: 56.75%;
  height: 0;
  margin: 0 auto; }
  .video iframe,
  .video video {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }

/***** MODULES *****/
.bookmarks-manager {
  max-width: 900px;
  margin: 0 auto; }
  .bookmarks-manager .bookmarks-manager__bookmarks {
    text-align: center; }
    @media (min-width: 768px) {
      .bookmarks-manager .bookmarks-manager__bookmarks {
        padding: 0 0 20px 0; } }
  .bookmarks-manager .bookmarks-manager__bookmark-container {
    display: block; }
    @media (min-width: 768px) {
      .bookmarks-manager .bookmarks-manager__bookmark-container {
        display: inline-block; } }
  .bookmarks-manager .bookmarks-manager__bookmark {
    cursor: pointer;
    padding: 20px; }
    @media (min-width: 1300px) {
      .bookmarks-manager .bookmarks-manager__bookmark {
        padding-left: 40px;
        padding-right: 40px; } }
  .bookmarks-manager .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none; }
  .bookmarks-manager .bookmarks-manager__content-container {
    display: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
    @media (min-width: 768px) {
      .bookmarks-manager .bookmarks-manager__content-container {
        display: block; } }
  .bookmarks-manager .bookmarks-manager__content-wrapper {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }

.simple-bookmark {
  font-weight: 700; }
  .simple-bookmark .simple-bookmark__number {
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 5px 0; }

.simple-bookmark.active {
  color: #c67517; }

.details-list {
  list-style-type: none;
  max-width: 700px;
  margin: 0 auto; }
  .details-list .details-list__item {
    display: block; }
  .details-list .details-list__title {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 700;
    border-bottom: 1px solid #e08921; }
    .details-list .details-list__title .details-list__arrow {
      position: absolute;
      top: 13px;
      right: 5px; }
  .details-list .details-list__content {
    padding: 10px 20px; }

.categorized-items__categories {
  text-align: center;
  list-style-type: none;
  padding: 0 0 40px 0; }
  .categorized-items__categories > li {
    display: block;
    padding: 10px 0;
    cursor: pointer; }
    @media (min-width: 480px) {
      .categorized-items__categories > li {
        display: inline-block;
        padding: 0 20px; } }
    .categorized-items__categories > li.active {
      color: #e08921;
      font-weight: 700; }
.categorized-items__item {
  display: block; }
.categorized-items__no-items {
  float: none;
  display: block;
  padding: 20px;
  text-align: center; }
.categorized-items__content-container {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

/***** FORMS *****/
/***** HEADER *****/
/***** MENU *****/
.slide-menu {
  position: fixed;
  z-index: 4000;
  height: 100%;
  display: block;
  text-align: center;
  width: 100%;
  background: #1e1e1e;
  overflow-x: hidden;
  overflow-y: auto; }
  .slide-menu .slide-menu__inner {
    padding: 80px 60px; }

/** fade **/
.slide-menu--fade {
  display: none; }

.slide-menu--fade.slide-menu--top {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--fade.slide-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto; }

.slide-menu--fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0; }

.slide-menu--fade.slide-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto; }

/** slide **/
.slide-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear; }

.slide-menu--slide.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: 0; }

.slide-menu--slide.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto; }

.slide-menu--slide.slide-menu--right.slide-menu--open {
  right: 0; }

.slide-menu--slide.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%; }

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
  bottom: 0; }

.slide-menu--slide.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto; }

.slide-menu--slide.slide-menu--left.slide-menu--open {
  left: 0; }

/** slide-fade **/
.slide-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0.4s;
  -moz-transition: all 0.3s linear 0.4s;
  -o-transition: all 0.3s linear 0.4s;
  transition: all 0.3s linear 0.4s; }
  .slide-menu--slide-fade .slide-menu__inner {
    opacity: 0;
    -webkit-transition: opacity 0.3s linear 0;
    -moz-transition: opacity 0.3s linear 0;
    -o-transition: opacity 0.3s linear 0;
    transition: opacity 0.3s linear 0; }

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear; }
  .slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
    opacity: 1;
    -webkit-transition: opacity 0.3s linear 0.4s;
    -moz-transition: opacity 0.3s linear 0.4s;
    -o-transition: opacity 0.3s linear 0.4s;
    transition: opacity 0.3s linear 0.4s; }

.slide-menu--slide-fade.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  top: 0; }

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0; }

.slide-menu--slide-fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%; }

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
  bottom: 0; }

.slide-menu--slide-fade.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
  left: 0; }

/***** FOOTER *****/
/***** SECTIONS *****/
.overlayer-content {
  display: none !important; }

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7000;
  background: rgba(0, 0, 0, 0.8);
  color: #000;
  overflow-y: auto;
  padding: 0; }
  .overlayer .overlayer__spinner-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6900;
    display: none;
    font-size: 38px; }
  .overlayer .overlayer__inner {
    margin: 40px auto;
    max-width: 1360px;
    position: relative;
    padding: 80px 60px;
    background: #eeeeee; }
  .overlayer .overlayer__close {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 7000;
    display: block;
    cursor: pointer; }
  .overlayer .overlayer__content {
    display: none; }

.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999; }

/***** ICONS *****/
/* icon hamburger */
.icon-hamburger {
  display: block;
  width: 27px;
  position: relative; }
  .icon-hamburger__inner {
    height: 17px;
    position: relative;
    overflow: hidden; }
    .icon-hamburger__inner > div {
      position: absolute;
      left: 0;
      height: 3px;
      background: #000;
      width: 100%;
      -webkit-border-radius: 1.5px;
      -moz-border-radius: 1.5px;
      border-radius: 1.5px;
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .icon-hamburger__inner > div:nth-child(1),
    .icon-hamburger__inner > div:nth-child(4) {
      top: 0; }
    .icon-hamburger__inner > div:nth-child(2),
    .icon-hamburger__inner > div:nth-child(5) {
      top: 7px; }
    .icon-hamburger__inner > div:nth-child(3),
    .icon-hamburger__inner > div:nth-child(6) {
      top: 14px; }
    .icon-hamburger__inner > .icon-hamburger__hover-item {
      background: #e08921;
      left: -100%; }
      .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4) {
        -webkit-transition: all 0.6s linear;
        -moz-transition: all 0.6s linear;
        -o-transition: all 0.6s linear;
        transition: all 0.6s linear; }
      .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(5) {
        -webkit-transition: all 0.4s linear;
        -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
        transition: all 0.4s linear; }
      .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear; }
  .icon-hamburger:hover > .icon-hamburger__inner > .icon-hamburger__hover-item, .icon-hamburger:focus > .icon-hamburger__inner > .icon-hamburger__hover-item {
    left: 0;
    opacity: 1; }

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible; }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg); }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
    opacity: 0;
    left: -100%; }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg); }
  .icon-hamburger.open .icon-hamburger__inner > .icon-hamburger__hover-item {
    opacity: 0; }
    .icon-hamburger.open .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4), .icon-hamburger.open .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
      left: 0;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
.icon-hamburger.open:hover > .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4), .icon-hamburger.open:hover > .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6), .icon-hamburger.open:focus > .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4), .icon-hamburger.open:focus > .icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.icon-hamburger--medium > div {
  background: #e08921; }

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff; }
.icon-hamburger--light .icon-hamburger__inner > .icon-hamburger__hover-item {
  background: #e08921; }

.icon-hamburger--large {
  width: 32px; }
  .icon-hamburger--large .icon-hamburger__inner {
    height: 20px; }
    .icon-hamburger--large .icon-hamburger__inner > div {
      height: 4px;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px; }
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(1),
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(4) {
      top: 0; }
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(2),
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(5) {
      top: 8px; }
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(3),
    .icon-hamburger--large .icon-hamburger__inner > div:nth-child(6) {
      top: 16px; }

.icon-hamburger--small {
  width: 20px;
  height: 12px; }
  .icon-hamburger--small .icon-hamburger__inner > div {
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px; }
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(1),
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(4) {
    top: 0; }
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(2),
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(5) {
    top: 5px; }
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(3),
  .icon-hamburger--small .icon-hamburger__inner > div:nth-child(6) {
    top: 10px; }

/* icon cross */
.icon-cross {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden; }
  .icon-cross > div {
    position: absolute;
    background: #000;
    display: block; }
  .icon-cross > div:nth-child(1) {
    width: 100%;
    left: 0;
    top: 50%;
    height: 3px;
    margin: -1.5px 0 0 0; }
  .icon-cross > div:nth-child(2) {
    width: 3px;
    top: 0;
    left: 50%;
    margin: 0 0 0 -1.5px;
    height: 100%; }

.icon-cross--large {
  width: 26px;
  height: 26px; }
  .icon-cross--large > div:nth-child(1) {
    height: 4px;
    margin: -2px 0 0 0; }
  .icon-cross--large > div:nth-child(2) {
    width: 4px;
    margin: 0 0 0 -2px; }

.icon-cross--small {
  width: 16px;
  height: 16px; }
  .icon-cross--small > div:nth-child(1) {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-cross--small > div:nth-child(2) {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-cross--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }

/* icon arrow */
.icon-arrow {
  position: relative;
  width: 14px;
  height: 14px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.icon-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px; }

.icon-arrow--up {
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 3px; }

.icon-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px; }

.icon-arrow--down {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -3px; }

.icon-arrow--small {
  width: 10px;
  height: 10px;
  border-width: 2px; }

.icon-arrow--left.icon-arrow--small {
  left: 2px; }

.icon-arrow--up.icon-arrow--small {
  top: 2px; }

.icon-arrow--right.icon-arrow--small {
  left: -2px; }

.icon-arrow--down.icon-arrow--small {
  top: -2px; }

.icon-arrow--large {
  width: 18px;
  height: 18px;
  border-width: 3px; }

/* icon triangular icon */
.icon-triangular-arrow-left {
  border-right: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-left--small {
  border-right-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px; }

.icon-triangular-arrow-left--large {
  border-right-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px; }

.icon-triangular-arrow-up {
  border-bottom: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-up--small {
  border-bottom-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px; }

.icon-triangular-arrow-up--large {
  border-bottom-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px; }

.icon-triangular-arrow-right {
  border-left: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-right--small {
  border-left-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px; }

.icon-triangular-arrow-right--large {
  border-left-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px; }

.icon-triangular-arrow-down {
  border-top: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-down--small {
  border-top-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px; }

.icon-triangular-arrow-down--large {
  border-top-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px; }

/* extended icon */
.extended-icon {
  position: relative;
  display: inline-block; }
  .extended-icon__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .extended-icon:hover .extended-icon__layer, .extended-icon:focus .extended-icon__layer {
    opacity: 1; }

/***** BUTTONS ******/
.button-container {
  text-align: center;
  clear: both;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.more-content-button {
  display: none; }
  .more-content-button .simple-button__icon-top {
    opacity: 0; }

html {
  font-family: Lato, Verdana, sans-serif;
  font-weight: 400;
  font-size: 14px;
  background: #2e2e2e;
  color: #eeeeee; }

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }
  a img {
    border: 0; }

/***** TEXT *****/
.text {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 1px; }
  @media (min-width: 1300px) {
    .text {
      font-size: 14px;
      line-height: 24px; } }
  @media (min-width: 1500px) {
    .text {
      font-size: 15px;
      line-height: 27px; } }
  .text p {
    padding: 10px 0; }
    .text p:first-child {
      padding-top: 0; }
    .text p:last-child {
      padding-bottom: 0; }

.copyright {
  font-size: 14px;
  line-height: 20px; }
  @media (min-width: 768px) {
    .copyright {
      font-size: 16px;
      line-height: 24px; } }

/***** PICTURES *****/
.single-picture {
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.3); }

/***** MENU *****/
@media (min-width: 768px) {
  .slide-menu.slide-menu--slide-fade {
    position: static;
    height: auto;
    background: #161616;
    border-bottom: 2px solid #404040;
    overflow-x: visible;
    overflow-y: visible; } }
@media (min-width: 768px) {
  .slide-menu.slide-menu--slide-fade .slide-menu__inner {
    opacity: 1;
    padding: 0 45px; } }

#main-menu-toggler {
  position: fixed;
  z-index: 6500;
  top: 20px;
  right: 20px;
  cursor: pointer; }
  @media (min-width: 768px) {
    #main-menu-toggler {
      display: none; } }

.menu {
  font-size: 18px;
  letter-spacing: 1px; }
  @media (min-width: 768px) {
    .menu {
      font-size: 12px;
      letter-spacing: 2px;
      text-align: right; } }
  @media (min-width: 1300px) {
    .menu {
      max-width: 1550px;
      margin: 0 auto; } }
  .menu:after {
    content: '';
    display: block;
    clear: both; }
  @media (min-width: 768px) {
    .menu > ul {
      float: right; } }
  .menu > ul > li {
    display: block;
    padding: 15px 0; }
    @media (min-width: 768px) {
      .menu > ul > li {
        float: left;
        padding: 0 10px; } }
    @media (min-width: 768px) {
      .menu > ul > li:first-child {
        padding-left: 0; } }
    @media (min-width: 768px) {
      .menu > ul > li:last-child {
        padding-right: 0; } }
  .menu a {
    color: #fff;
    opacity: .7; }
    @media (min-width: 768px) {
      .menu a {
        display: block;
        padding: 16px 15px 16px 15px;
        position: relative; } }
    @media (min-width: 768px) {
      .menu a:before {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
        width: 100%;
        height: 2px;
        background: #e08921; } }
    .menu a:hover, .menu a:focus {
      opacity: 1; }
      @media (min-width: 768px) {
        .menu a:hover:before, .menu a:focus:before {
          left: 0;
          opacity: 1; } }

.simple-menu {
  text-align: center;
  font-size: 16px;
  line-height: 24px; }
  .simple-menu > ul {
    list-style-type: none; }
    .simple-menu > ul > li {
      display: block;
      padding: 5px 0; }
      @media (min-width: 480px) {
        .simple-menu > ul > li {
          display: inline-block;
          padding: 0 15px; } }
      @media (min-width: 1100px) {
        .simple-menu > ul > li {
          padding: 0 25px; } }
      .simple-menu > ul > li:first-child {
        padding-left: 0; }
      .simple-menu > ul > li:last-child {
        padding-right: 0; }
  .simple-menu a {
    color: #eeeeee; }
    .simple-menu a:hover, .simple-menu a:focus {
      color: #fff; }

/***** HEADERS *****/
.section-header {
  padding: 0 0 40px 0;
  text-align: center; }
  @media (min-width: 650px) {
    .section-header {
      padding: 0 0 50px 0; } }
  @media (min-width: 768px) {
    .section-header {
      text-align: left; } }
  @media (min-width: 1500px) {
    .section-header {
      padding: 0 0 70px 0; } }

.section-title {
  font-family: Heuristica, "Times New Roman", serif;
  font-weight: 400;
  color: #fff;
  font-size: 28px;
  letter-spacing: 1px; }
  @media (min-width: 380px) {
    .section-title {
      font-size: 32px; } }
  @media (min-width: 650px) {
    .section-title {
      font-size: 34px; } }
  @media (min-width: 768px) {
    .section-title {
      font-size: 38px; } }
  @media (min-width: 1500px) {
    .section-title {
      font-size: 40px; } }

/***** HEADER *****/
.site-header {
  background: url("../img/bg-top.png") #2a2a2a repeat-x top center; }
  .site-header__layer {
    padding: 80px 0; }
    @media (min-width: 650px) {
      .site-header__layer {
        padding: 80px 0 120px 0; } }
    @media (min-width: 768px) {
      .site-header__layer {
        padding: 80px 0 150px 0; } }
    @media (min-width: 1700px) {
      .site-header__layer {
        padding: 100px 0 170px 0; } }

.site-title {
  text-align: center;
  font-family: Heuristica, "Times New Roman", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #c4c4c4; }
  @media (min-width: 420px) {
    .site-title {
      font-size: 44px; } }
  @media (min-width: 650px) {
    .site-title {
      line-height: 100%;
      padding: 0 60px; } }
  @media (min-width: 768px) {
    .site-title {
      font-size: 52px;
      padding: 0 40px 0 80px; } }
  @media (min-width: 900px) {
    .site-title {
      padding: 0 60px 0 120px; } }
  @media (min-widt: 1300px) {
    .site-title {
      padding: 0 60px 0 140px; } }
  @media (min-width: 1500px) {
    .site-title {
      font-size: 58px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0; } }
  .site-title__inner {
    display: block;
    background: url("../img/logo.png") no-repeat top center;
    padding: 100px 20px 0 20px;
    background-size: 109px 80px;
    color: #c4c4c4;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none; }
    @media (min-width: 420px) {
      .site-title__inner {
        background-size: 123px 90px;
        padding: 110px 20px 0 20px; } }
    @media (min-width: 650px) {
      .site-title__inner {
        padding: 27px 0 0 140px;
        height: 63px;
        background-position: left center;
        text-align: left; } }
    @media (min-width: 768px) {
      .site-title__inner {
        padding: 27px 0 0 151px;
        height: 73px;
        background-size: 136px 100px; } }
    @media (min-width: 1500px) {
      .site-title__inner {
        padding: 30px 0 0 175px;
        height: 80px;
        background-size: 150px 110px; } }
  .site-title__another-color {
    color: #e08921;
    display: block; }
    @media (min-width: 420px) {
      .site-title__another-color {
        display: inline; } }
  .site-title__postscript {
    color: #777777;
    font-size: 12px;
    line-height: 100%;
    margin: -5px 0 0 0;
    letter-spacing: 1px;
    display: block;
    font-family: Lato, Verdana, sans-serif; }
    @media (min-width: 420px) {
      .site-title__postscript {
        margin: -8px 0 0 0; } }
    @media (min-width: 650px) {
      .site-title__postscript {
        padding: 0 0 0 120px;
        margin: -6px 0 0 0; } }
    @media (min-width: 768px) {
      .site-title__postscript {
        font-size: 14px;
        padding: 0 0 0 140px; } }
    @media (min-width: 1500px) {
      .site-title__postscript {
        padding: 0 0 0 156px;
        margin: -9px 0 0 0; } }

/***** FORMS *****/
.form {
  width: auto;
  margin: 0 auto;
  padding: 0; }
  .form__wrapper {
    border: 0;
    display: block;
    max-width: 500px;
    margin: 0 auto; }
    @media (min-width: 900px) {
      .form__wrapper {
        max-width: 1250px; } }
  .form .column {
    float: none;
    width: auto; }
    @media (min-width: 900px) {
      .form .column {
        float: left; } }
  @media (min-width: 900px) {
    .form .col-4 {
      width: 33.33%;
      padding: 0 20px 0 0; } }
  @media (min-width: 900px) {
    .form .col-8 {
      width: 66.66%;
      padding: 0 0 0 20px; } }
  .form__field-container {
    display: block;
    margin: 0 auto;
    padding: 15px 0; }
    @media (min-width: 900px) {
      .form__field-container {
        padding: 10px 0; } }
    @media (min-width: 1100px) {
      .form__field-container {
        padding: 15px 0; } }
  .form__field-container.error .form__field {
    border-color: #930000; }
  .form__field-label {
    display: block;
    padding: 0 0 5px 0;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 22px; }
    @media (min-width: 1100px) {
      .form__field-label {
        font-size: 16px;
        line-height: 24px;
        padding: 0 0 7px 0; } }
  .form__field {
    display: block;
    letter-spacing: 1px;
    padding: 9px;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    border: 2px solid #888888;
    background: #2a2a2a;
    color: #eeeeee;
    font-size: 14px;
    font-family: Lato, Verdana, sans-serif;
    letter-spacing: 1px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }
    .form__field:before {
      content: '';
      display: block; }
    .form__field:focus {
      border-color: #e08921; }
  .form__field--textarea {
    min-height: 200px;
    overflow-x: hidden;
    overflow-y: auto; }
    @media (min-width: 900px) {
      .form__field--textarea {
        min-height: 217px; } }
    @media (min-width: 1100px) {
      .form__field--textarea {
        min-height: 245px; } }
  .form__button-container {
    padding: 30px 0 0 0;
    text-align: center; }
    @media (min-width: 900px) {
      .form__button-container {
        text-align: right;
        padding: 20px 0 0 0; } }
  .form__button-wrapper {
    display: inline-block;
    position: relative; }
  .form__spinner {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    font-size: 20px;
    padding: 0 0 0 10px;
    color: #fff; }
  .form__info-wrapper {
    display: none; }
  .form__info {
    opacity: 0;
    text-align: center;
    padding: 15px 0 0 0; }
    @media (min-width: 900px) {
      .form__info {
        text-align: right; } }

/***** LISTS *****/
.plain-list {
  padding: 0 0 0 20px; }
  .plain-list > li {
    display: block;
    position: relative;
    padding: 2px 0 2px 15px; }
    .plain-list > li:before {
      content: '';
      display: inline-block;
      width: 5px;
      height: 5px;
      margin: 0 7px 0 0;
      vertical-align: middle;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      background: #eeeeee; }
      @media (min-width: 992px) {
        .plain-list > li:before {
          display: block;
          position: absolute;
          top: 50%;
          left: 0;
          margin: -2px 0 0 0; } }

.distinguishing-list {
  list-style-type: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 500; }
  @media (min-width: 420px) {
    .distinguishing-list {
      font-size: 18px;
      line-height: 26px; } }
  @media (min-width: 1100px) {
    .distinguishing-list {
      font-size: 20px;
      line-height: 28px; } }
  @media (min-width: 1300px) {
    .distinguishing-list {
      font-size: 18px;
      line-height: 26px; } }
  @media (min-width: 1500px) {
    .distinguishing-list {
      font-size: 20px;
      line-height: 28px; } }
  .distinguishing-list > li {
    display: block;
    padding: 4px 0; }
    @media (min-width: 1100px) {
      .distinguishing-list > li {
        padding: 10px 0; } }
  .distinguishing-list__distinguished {
    color: #e08921; }

.icons {
  list-style-type: none;
  text-align: center;
  max-width: 630px;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .icons {
      max-width: 750px; } }
  @media (min-width: 1300px) {
    .icons {
      max-width: 100%; } }
  .icons > li {
    display: block;
    padding: 25px 0; }
    @media (min-width: 650px) {
      .icons > li {
        display: inline-block;
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        vertical-align: middle;
        margin: 0 0 0 -5px;
        padding: 35px 0; } }
    @media (min-width: 1300px) {
      .icons > li {
        width: 25%; } }
    @media (max-width: 649px) {
      .icons > li:nth-child(1) {
        padding-top: 0; } }

.icon-item {
  display: block;
  font-size: 18px;
  text-align: center; }
  .icon-item__icon-container {
    padding: 0 0 10px 0; }
  .icon-item__description {
    letter-spacing: 1px; }

.fa-github {
  font-size: 52px; }

.fa-linkedin-in {
  font-size: 40px; }

/***** CONTAINERS *****/
.box {
  display: block;
  position: relative;
  border: 1px solid #777777;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  height: auto;
  padding: 0 0 70% 0;
  width: auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover; }
  .box:hover .box__wrapper:before, .box:focus .box__wrapper:before {
    -webkit-transition: all 0.2s linear 0.4s;
    -moz-transition: all 0.2s linear 0.4s;
    -o-transition: all 0.2s linear 0.4s;
    transition: all 0.2s linear 0.4s;
    opacity: 1; }
  .box:hover .box__layer:before, .box:focus .box__layer:before {
    top: 0;
    opacity: 1;
    -webkit-transition: top 0.3s linear, opacity 0.1s linear;
    -moz-transition: top 0.3s linear, opacity 0.1s linear;
    -o-transition: top 0.3s linear, opacity 0.1s linear;
    transition: top 0.3s linear, opacity 0.1s linear; }
  .box:hover .box__layer:after, .box:focus .box__layer:after {
    bottom: 0;
    opacity: 1;
    -webkit-transition: bottom 0.3s linear, opacity 0.1s linear;
    -moz-transition: bottom 0.3s linear, opacity 0.1s linear;
    -o-transition: bottom 0.3s linear, opacity 0.1s linear;
    transition: bottom 0.3s linear, opacity 0.1s linear; }
  .box:hover .box__inner, .box:focus .box__inner {
    opacity: 1;
    -webkit-transition: all 0.2s linear 0.5s;
    -moz-transition: all 0.2s linear 0.5s;
    -o-transition: all 0.2s linear 0.5s;
    transition: all 0.2s linear 0.5s; }
  .box__wrapper {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #777777; }
    .box__wrapper:before {
      content: '';
      display: block;
      top: -1px;
      left: -1px;
      width: 100%;
      height: 100%;
      position: absolute;
      border: 1px solid #e08921;
      opacity: 0;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
  .box__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .box__layer:before, .box__layer:after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      height: 50%;
      opacity: 0;
      background: rgba(0, 0, 0, 0.9); }
    .box__layer:before {
      -webkit-transition: top 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      -moz-transition: top 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      -o-transition: top 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      transition: top 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      top: -50%; }
    .box__layer:after {
      -webkit-transition: bottom 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      -moz-transition: bottom 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      -o-transition: bottom 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      transition: bottom 0.3s linear 0.2s, opacity 0.3s linear 0.4s;
      bottom: -50%; }
  .box__inner {
    opacity: 0;
    position: relative;
    z-index: 10;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }

.presentation-item {
  text-align: center;
  max-width: 500px;
  margin: 0 auto; }
  @media (min-width: 1100px) {
    .presentation-item {
      max-width: 100%; } }
  .presentation-item__description {
    padding: 30px 0 0 0; }
    @media (min-width: 992px) {
      .presentation-item__description {
        padding: 40px 0 0 0; } }
  .presentation-item__header {
    padding: 0 0 40px 0;
    position: relative; }
    .presentation-item__header:before {
      content: '';
      display: block;
      position: absolute;
      bottom: 19px;
      left: 50%;
      width: 80px;
      height: 1px;
      background: #e08921;
      margin: 0 0 0 -40px; }
  .presentation-item__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 1px; }
    @media (min-width: 420px) {
      .presentation-item__title {
        font-size: 22px;
        line-height: 30px; } }
    @media (min-width: 768px) {
      .presentation-item__title {
        font-size: 20px;
        line-height: 28px; } }
  .presentation-item__description-content {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px; }
    .presentation-item__description-content p {
      padding: 10px 0; }
      .presentation-item__description-content p:first-child {
        padding-top: 0; }
      .presentation-item__description-content p:last-child {
        padding-bottom: 0; }

.presentation-list {
  list-style-type: none; }
  .presentation-list > li {
    display: block;
    padding: 40px 0; }
    @media (min-width: 480px) {
      .presentation-list > li {
        padding: 60px 0; } }
    @media (min-width: 768px) {
      .presentation-list > li {
        display: inline-block;
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 0 0 -4px;
        padding: 30px;
        vertical-align: top; } }
    @media (min-width: 1100px) {
      .presentation-list > li {
        padding: 30px 50px; } }
    @media (min-width: 1300px) {
      .presentation-list > li {
        padding: 40px 15px;
        width: 33.33%; } }
    @media (min-width: 1500px) {
      .presentation-list > li {
        padding: 50px 25px; } }
    @media (max-width: 767px) {
      .presentation-list > li:first-child {
        padding-top: 0; } }
    @media (max-width: 767px) {
      .presentation-list > li:last-child {
        padding-bottom: 0; } }
    @media (max-width: 1299px) {
      .presentation-list > li:nth-child(2n + 1) {
        padding-left: 0; } }
    @media (max-width: 1299px) {
      .presentation-list > li:nth-child(2n + 2) {
        padding-right: 0; } }
    @media (min-width: 768px) {
      .presentation-list > li:nth-child(1), .presentation-list > li:nth-child(2) {
        padding-top: 0; } }
    @media (min-width: 1300px) {
      .presentation-list > li:nth-child(3) {
        padding-top: 0; } }
    @media (min-width: 1300px) {
      .presentation-list > li:nth-child(3n + 1) {
        padding-left: 0;
        padding-right: 30px; } }
    @media (min-width: 1500px) {
      .presentation-list > li:nth-child(3n + 1) {
        padding-right: 50px; } }
    @media (min-width: 1300px) {
      .presentation-list > li:nth-child(3n + 3) {
        padding-right: 0;
        padding-left: 30px; } }
    @media (min-width: 1500px) {
      .presentation-list > li:nth-child(3n + 3) {
        padding-left: 50px; } }

.presentation-item-02 {
  text-align: center;
  max-width: 500px;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .presentation-item-02 {
      max-width: 100%; } }
  .presentation-item-02:after {
    content: '';
    display: block;
    clear: both; }
  @media (min-width: 992px) {
    .presentation-item-02__picture {
      float: left;
      width: 40%; } }
  .presentation-item-02__description {
    padding: 30px 0 0 0; }
    @media (min-width: 992px) {
      .presentation-item-02__description {
        padding: 0 0 0 50px;
        float: left;
        width: 60%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: left; } }
    @media (min-width: 1700px) {
      .presentation-item-02__description {
        padding: 0 0 0 60px; } }
  .presentation-item-02__header {
    padding: 0 0 40px 0;
    position: relative; }
    .presentation-item-02__header:before {
      content: '';
      display: block;
      position: absolute;
      bottom: 28px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #e08921;
      margin: 0; }
      @media (min-width: 992px) {
        .presentation-item-02__header:before {
          left: 0;
          margin: 0;
          height: 2px;
          width: 100%;
          bottom: 28px; } }
  .presentation-item-02__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 1px; }
    @media (min-width: 420px) {
      .presentation-item-02__title {
        font-size: 22px;
        line-height: 30px; } }
    @media (min-width: 1500px) {
      .presentation-item-02__title {
        font-size: 26px;
        line-height: 34px; } }
  .presentation-item-02__description-content {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px; }
    @media (min-width: 1500px) {
      .presentation-item-02__description-content {
        font-size: 15px;
        line-height: 25px; } }
    .presentation-item-02__description-content p {
      padding: 10px 0; }
      .presentation-item-02__description-content p:first-child {
        padding-top: 0; }
      .presentation-item-02__description-content p:last-child {
        padding-bottom: 0; }

.presentation-list-02 {
  list-style-type: none; }
  .presentation-list-02 > li {
    display: block;
    padding: 40px 0; }
    @media (min-width: 1300px) {
      .presentation-list-02 > li {
        padding: 60px 0; } }
    .presentation-list-02 > li:first-child {
      padding-top: 0; }

/***** SECTIONS *****/
.site-section {
  border-top: 3px solid #dddddd; }
  .site-section__layer {
    padding: 50px 0; }
    @media (min-width: 650px) {
      .site-section__layer {
        padding: 70px 0; } }
    @media (min-width: 1500px) {
      .site-section__layer {
        padding: 90px 0; } }
  .site-section__inner {
    padding: 0 20px; }
    @media (min-width: 768px) {
      .site-section__inner {
        padding: 0 45px; } }
    @media (min-width: 1300px) {
      .site-section__inner {
        padding: 0 60px; } }
    @media (min-width: 1500px) {
      .site-section__inner {
        max-width: 1550px;
        margin: 0 auto; } }

.site-section--light {
  background: #3d3d3d; }

.section-02 .section-header {
  padding: 0 0 20px 0; }
  @media (min-width: 650px) {
    .section-02 .section-header {
      padding-bottom: 30px; } }
  @media (min-width: 768px) {
    .section-02 .section-header {
      padding-bottom: 20px;
      text-align: left; } }
  @media (min-width: 1700px) {
    .section-02 .section-header {
      padding-bottom: 30px; } }
.section-02 .text {
  text-align: center; }
  @media (min-width: 768px) {
    .section-02 .text {
      text-align: left; } }
.section-02 .container .column {
  float: none;
  width: auto; }
  @media (min-width: 768px) {
    .section-02 .container .column {
      float: left; } }
  @media (min-width: 768px) {
    .section-02 .container .column:nth-child(1) {
      width: 60%;
      padding: 0 20px 0 0; } }
  .section-02 .container .column:nth-child(2) {
    padding: 40px 0 0 0; }
    @media (min-width: 768px) {
      .section-02 .container .column:nth-child(2) {
        padding: 0 0 0 20px;
        width: 40%; } }
    .section-02 .container .column:nth-child(2) .single-picture {
      max-width: 100%; }
      @media (min-width: 420px) {
        .section-02 .container .column:nth-child(2) .single-picture {
          max-width: 350px; } }
      @media (min-width: 768px) {
        .section-02 .container .column:nth-child(2) .single-picture {
          max-width: 100%; } }
      @media (min-width: 992px) {
        .section-02 .container .column:nth-child(2) .single-picture {
          max-width: 350px; } }
      @media (min-width: 1500px) {
        .section-02 .container .column:nth-child(2) .single-picture {
          max-width: 400px; } }

.section-03 .form {
  padding: 30px 0 0 0; }
  @media (min-width: 1300px) {
    .section-03 .form {
      padding: 60px 0 0 0; } }

/***** FOOTER *****/
.site-footer {
  -moz-background: -moz-linear-gradient(top, #e08921 10%, #e08921 40%, #c67517 100%);
  -webkit-background: -webkit-linear-gradient(top, #e08921 10%, #e08921 40%, #c67517 100%);
  -o-background: -o-linear-gradient(top, #e08921 10%, #e08921 40%, #c67517 100%);
  -ms-background: -ms-linear-gradient(top, #e08921 10%, #e08921 40%, #c67517 100%);
  background: linear-gradient(to bottom, #e08921 10%, #e08921 40%, #c67517 100%);
  text-align: center;
  border-top: 2px solid #dddddd; }
  .site-footer__layer {
    padding: 40px 0; }
    @media (min-width: 480px) {
      .site-footer__layer {
        padding: 40px 0 60px 0; } }
    @media (min-width: 768px) {
      .site-footer__layer {
        padding: 50px 0 150px 0; } }
  .site-footer__inner {
    padding: 0 20px; }
    @media (min-width: 768px) {
      .site-footer__inner {
        padding: 0 45px; } }
    @media (min-width: 1300px) {
      .site-footer__inner {
        padding: 0 60px; } }
    @media (min-width: 1500px) {
      .site-footer__inner {
        max-width: 1550px;
        margin: 0 auto; } }
  .site-footer .container .column {
    float: none;
    width: auto; }
    @media (min-width: 860px) {
      .site-footer .container .column {
        float: right; } }
  .site-footer .container .col-4 {
    padding: 30px 0 0 0; }
    @media (min-width: 480px) {
      .site-footer .container .col-4 {
        padding: 40px 0 0 0; } }
    @media (min-width: 860px) {
      .site-footer .container .col-4 {
        width: 40%;
        text-align: left;
        padding: 0; } }
  @media (min-width: 860px) {
    .site-footer .container .col-8 {
      width: 60%; } }
  @media (min-width: 860px) {
    .site-footer .simple-menu {
      text-align: right; } }

/***** BUTTONS *****/
.button {
  clear: both;
  display: inline-block;
  margin: 0 0 0 -5px;
  border: 0;
  cursor: pointer;
  font-weight: 400;
  padding: 10px 50px;
  font-size: 18px;
  font-family: Lato, Verdana, sans-serif;
  letter-spacing: 1px;
  border: 0;
  color: #eeeeee;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -moz-background: -moz-linear-gradient(top, #c67517 20%, #e08921 70%, #e08921 100%);
  -webkit-background: -webkit-linear-gradient(top, #c67517 20%, #e08921 70%, #e08921 100%);
  -o-background: -o-linear-gradient(top, #c67517 20%, #e08921 70%, #e08921 100%);
  -ms-background: -ms-linear-gradient(top, #c67517 20%, #e08921 70%, #e08921 100%);
  background: linear-gradient(to bottom, #c67517 20%, #e08921 70%, #e08921 100%);
  -webkit-box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.2); }
