@charset "UTF-8";
/* RWD */
@-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 *****/
.logo {
  display: block;
  text-indent: -10000px;
  text-align: left;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  overflow: hidden;
}

/***** 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;
}

.std-link:hover, .std-link:focus {
  color: #e08921;
}

/***** TEXT *****/
.copyright {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .copyright {
    font-size: 16px;
    line-height: 24px;
  }
}

.inline-code {
  font-style: italic;
  white-space: nowrap;
}

/***** 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 *****/
/***** 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;
  }
}

.section-subheader {
  padding: 0 0 32px 0;
}

.section-subtitle {
  font-size: 18px;
}

.section-subtitle--large {
  font-size: 24px;
}

.subsection-header {
  padding: 0 0 20px 0;
}

.subsection-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
}

.subsection-title--small {
  font-size: 16px;
}

.inline-descripted-title {
  font-weight: 700;
  font-size: 13px;
}
.inline-descripted-title__description {
  font-weight: 400;
  font-style: italic;
}
.inline-descripted-title__description:before {
  content: "–";
  padding: 0 4px;
}

.simple-title {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 1300px) {
  .simple-title {
    font-size: 20px;
  }
}
@media (min-width: 1700px) {
  .simple-title {
    font-size: 22px;
  }
}

/***** HEADER *****/
/***** FORMS *****/
/***** 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;
}

.simple-ordered-list {
  padding: 0 0 0 40px;
}
.simple-ordered-list > li {
  padding: 10px 0;
}
.simple-ordered-list p {
  padding: 4px 0;
}

.extended-unordered-list {
  padding: 0 0 0 40px;
}
.extended-unordered-list > li {
  padding: 8px 0;
}
.extended-unordered-list__header {
  padding: 0 0 12px 0;
}

/***** CONTAINERS *****/
.article {
  max-width: 800px;
}
.article__header {
  padding: 0 0 32px 0;
}
.article__subheader {
  padding: 40px 0 20px 0;
}
.article__details {
  padding: 0 0 20px 0;
}
.article__external-content {
  padding: 32px 0;
}
.article__footer {
  padding: 40px 0 0 0;
}

.article-external-content__header {
  padding: 8px 0;
}

.article-details__author {
  font-size: 14px;
}
.article-details__date-container {
  padding: 8px 0 0 0;
}
.article-details__date {
  font-size: 12px;
  color: #eeeeee;
  font-style: italic;
}

.article-item {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .article-item {
    text-align: left;
    padding: 0 0 0 40px;
    border-left: 1px solid #777777;
    margin: 0;
  }
}
@media (min-width: 1500px) {
  .article-item {
    max-width: 800px;
  }
}
.article-item__header {
  padding: 0 0 20px 0;
}
.article-item__bottom {
  padding: 20px 0 0 0;
}

.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;
}

.comments-list {
  list-style-type: none;
}
.comments-list > li {
  display: block;
  padding: 20px 0;
}

.comments-section__comment-form {
  padding: 32px 0 0 0;
}

.comment {
  border-top: 1px solid #fff;
  background: #333333;
  padding: 32px 20px;
  max-width: 700px;
  margin: 0 0 0 40px;
}
@media (min-width: 1100px) {
  .comment {
    padding: 32px 40px;
    max-width: 800px;
  }
}
.comment__info-container {
  padding: 0 0 32px 0;
}
@media (min-width: 768px) {
  .comment__info-container {
    padding: 0 32px 0 0;
    width: 33%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media (min-width: 1100px) {
  .comment__info-container {
    width: 30%;
  }
}
@media (min-width: 768px) {
  .comment__content-container {
    width: 66%;
  }
}
@media (min-width: 1100px) {
  .comment__content-container {
    width: 70%;
  }
}
.comment__date-container {
  padding: 4px 0 0 0;
}
@media (min-width: 768px) {
  .comment__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.comment--admin {
  background: #2a2a2a;
  margin: 0;
}

.date {
  color: #777777;
  font-size: 12px;
}

.std-icon-item {
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .std-icon-item {
    margin: 0;
    text-align: left;
  }
}
.std-icon-item__icon {
  height: 80px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .std-icon-item__icon {
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .std-icon-item__icon {
    height: 100px;
  }
}
@media (min-width: 1700px) {
  .std-icon-item__icon {
    height: 120px;
  }
}
@media (min-width: 768px) {
  .std-icon-item__icon--mobile {
    display: none;
  }
}
.std-icon-item__icon--desktop {
  display: none;
}
@media (min-width: 768px) {
  .std-icon-item__icon--desktop {
    display: block;
  }
}
.std-icon-item__icon-container {
  padding: 0 0 8px 0;
}
@media (min-width: 1300px) {
  .std-icon-item__icon-container {
    padding-bottom: 12px;
  }
}
.std-icon-item__header {
  padding: 0 0 20px 0;
  position: relative;
  margin: 0 0 20px 0;
}
@media (min-width: 1300px) {
  .std-icon-item__header {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
}
.std-icon-item__header:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 64px;
  height: 2px;
  background: #e08921;
  margin: 0 0 0 -32px;
}
@media (min-width: 768px) {
  .std-icon-item__header:before {
    margin: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .icon-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.icon-items > li {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .icon-items > li {
    width: 46%;
  }
}
@media (min-width: 1700px) {
  .icon-items > li {
    width: 22%;
    padding: 0;
  }
}
.icon-items > li:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .icon-items > li:nth-child(2) {
    padding-top: 0;
  }
}
.icon-items > li:last-child {
  padding-bottom: 0;
}

/***** SECTIONS *****/
/***** FOOTER *****/
/***** 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);
}
.button--small {
  font-size: 16px;
  padding: 8px 40px;
}

.simple-button {
  font-weight: 500;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #c4c4c4;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.simple-button:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e08921;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.simple-button:hover, .simple-button:focus {
  color: #fff;
}
.simple-button:hover:before, .simple-button:focus:before {
  bottom: -6px;
}
