@keyframes Rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes Expose {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
.expose {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s, clip-path 1s ease 1s;
  transition: opacity 1s ease 1s, clip-path 1s ease 1s;
  -webkit-transform: translateZ(0);
}

.expose--shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

@keyframes Levitate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes SphereLevitation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -15%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes LevitateShadow {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
/***** CONTAINERS *****/
.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.container, .bookmarks-manager-00 .bookmarks-manager__container {
  position: relative;
}
.container:after, .bookmarks-manager-00 .bookmarks-manager__container:after {
  content: "";
  display: block;
  clear: both;
}

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

.column {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1px;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.6666666667%;
}

/***** MODULES *****/
.dropdown {
  position: relative;
  display: block;
}
.dropdown__header {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.dropdown__list-container {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 100;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dropdown__list > li {
  display: block;
}
.dropdown__list a {
  display: block;
}
.dropdown--expanding .dropdown__list-container {
  position: relative;
  top: 0;
}

.bookmarks-manager {
  margin: 0 auto;
}
.bookmarks-manager .bookmarks-manager__bookmarks {
  text-align: center;
}
.bookmarks-manager .bookmarks-manager__bookmark-container {
  display: block;
}
.bookmarks-manager .bookmarks-manager__bookmark {
  cursor: pointer;
}
.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;
  min-height: 3px;
}
@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;
}
.bookmarks-manager .bookmarks-manager__next {
  display: none;
  cursor: pointer;
}

.ajax-bookmarks-manager {
  max-width: 900px;
  margin: 0 auto;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmarks {
  text-align: center;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container {
  display: block;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark {
  cursor: pointer;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none;
}
.ajax-bookmarks-manager .ajax-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) {
  .ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
    display: block;
  }
}
.ajax-bookmarks-manager .ajax-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;
}

.bookmarks-manager-00 {
  margin: 0 auto;
  max-width: 500px;
}
@media (min-width: 768px) {
  .bookmarks-manager-00 {
    max-width: 1100px;
  }
}
.bookmarks-manager-00 .bookmarks-manager__wrapper {
  position: relative;
}
.bookmarks-manager-00 .bookmarks-manager__inner {
  position: relative;
}
.bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
  padding: 0;
}
.bookmarks-manager-00 .bookmarks-manager__bookmarks {
  text-align: center;
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmarks {
    text-align: left;
  }
}
.bookmarks-manager-00 .bookmarks-manager__bookmark-container {
  display: block;
  padding: 10px 10px 16px 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmark-container {
    display: block;
  }
}
.bookmarks-manager-00 .bookmarks-manager__bookmark-container .note__header {
  display: none;
}
.bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  padding: 20px 0 0 0;
}
.bookmarks-manager-00 .bookmarks-manager__bookmark {
  cursor: pointer;
}
.bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none;
}
.bookmarks-manager-00 .bookmarks-manager__content-container {
  display: none;
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__content-container {
    display: block;
  }
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmarks-column {
    float: left;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px 0 0;
  }
}
@media (min-width: 1100px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmarks-column {
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__contents-column {
    float: right;
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1100px) {
  .bookmarks-manager-00 .bookmarks-manager__contents-column {
    padding-left: 40px;
  }
}
.bookmarks-manager-00 .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;
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmark-content {
    height: 60vh;
  }
}
@media (min-width: 1700px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmark-content {
    height: 50vh;
  }
}
.bookmarks-manager-00 .bookmarks-manager__next {
  display: block;
}

.spectacular-numered-bookmarks {
  counter-reset: spectacularNumeredBookmarks;
}
.spectacular-numered-bookmarks .spectacular-numered-bookmark__number:before {
  content: counters(spectacularNumeredBookmarks, ".", decimal-leading-zero);
  counter-increment: spectacularNumeredBookmarks;
}

.simple-bookmark {
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0;
  cursor: pointer;
  color: #535353;
  padding: 0 0 10px 0;
}
@media (min-width: 650px) {
  .simple-bookmark {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .simple-bookmark {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .simple-bookmark {
    font-size: 18px;
  }
}
@media (min-width: 1700px) {
  .simple-bookmark {
    font-size: 20px;
  }
}
.simple-bookmark__wrapper {
  display: inline-block;
  position: relative;
  padding: 0 0 8px 0;
}
.simple-bookmark__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -100%;
  opacity: 0;
  width: 100%;
  height: 2px;
  background: #FF931E;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.simple-bookmark.active {
  color: #000;
}
.simple-bookmark.active .simple-bookmark__wrapper:before {
  left: 0;
  opacity: 1;
}

.picture-bookmark {
  width: 120px;
}
@media (min-width: 480px) {
  .picture-bookmark {
    width: 140px;
  }
}
@media (min-width: 900px) {
  .picture-bookmark {
    width: 180px;
  }
}
@media (min-width: 1300px) {
  .picture-bookmark {
    width: 220px;
  }
}
.picture-bookmark__wrapper {
  position: relative;
}
.picture-bookmark__picture {
  padding: 0 0 100% 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.picture-bookmark__picture:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #D91E9D;
  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;
}
@media (min-width: 1300px) {
  .picture-bookmark__picture:before {
    height: 6px;
  }
}
.picture-bookmark__picture:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  opacity: 0.3;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.picture-bookmark.active .picture-bookmark__picture:before {
  opacity: 1;
}
.picture-bookmark.active .picture-bookmark__picture:after {
  opacity: 0;
}

.picture-bookmark--large {
  width: 160px;
}
@media (min-width: 480px) {
  .picture-bookmark--large {
    width: 200px;
  }
}
@media (min-width: 1300px) {
  .picture-bookmark--large {
    width: 240px;
  }
}

@media (min-width: 768px) {
  .extended-picture-bookmark {
    text-align: left;
  }
}
.extended-picture-bookmark__picture {
  width: 100px;
  margin: 0;
  display: block;
}
@media (min-width: 1300px) {
  .extended-picture-bookmark__picture {
    width: 120px;
  }
}
.extended-picture-bookmark__picture-container {
  padding: 0 0 20px 0;
}
.extended-picture-bookmark__title {
  font-size: 20px;
  font-weight: 400;
}
.extended-picture-bookmark__subtitle {
  font-size: 13px;
  font-weight: 400;
  padding: 4px 0 0 0;
}

.small-simple-bookmark {
  font-weight: 400;
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  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;
  padding: 0 10px 15px 10px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .small-simple-bookmark {
    padding: 5px 0;
  }
}
.small-simple-bookmark__wrapper {
  position: relative;
  padding: 0 10px 10px 10px;
  display: inline-block;
}
@media (min-width: 992px) {
  .small-simple-bookmark__wrapper {
    display: block;
    padding: 4px 0 10px 0;
  }
}
@media (min-width: 1500px) {
  .small-simple-bookmark__wrapper {
    padding: 10px 0;
  }
}
.small-simple-bookmark__wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #8010A7;
  position: absolute;
  bottom: 0;
  left: -50%;
  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;
}
@media (min-width: 992px) {
  .small-simple-bookmark__wrapper:before {
    bottom: 2px;
  }
}
@media (min-width: 1300px) {
  .small-simple-bookmark__wrapper:before {
    bottom: 2px;
  }
}
.small-simple-bookmark:hover {
  color: #8010A7;
}

.small-simple-bookmark.active {
  font-weight: 700;
}
.small-simple-bookmark.active .small-simple-bookmark__wrapper:before {
  opacity: 1;
  left: 0;
}

.details-list {
  list-style-type: none;
}
.details-list .details-list__item {
  display: block;
}
.details-list .details-list__title {
  cursor: pointer;
}
.categorized-items__categories {
  text-align: center;
  list-style-type: none;
}
.categorized-items__categories > li {
  display: block;
  cursor: pointer;
}
.categorized-items__no-items {
  float: none;
  display: none;
}
.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;
}

.categorized-items-00 .categorized-items__categories-container {
  padding: 0 0 30px 0;
}
@media (min-width: 480px) {
  .categorized-items-00 .categorized-items__categories-container {
    padding: 0 0 50px 0;
  }
}
@media (min-width: 992px) {
  .categorized-items-00 .categorized-items__categories-container {
    padding: 0 0 70px 0;
  }
}
.ajax-categorized-items__categories-container {
  padding: 0 0 50px 0;
}
@media (min-width: 992px) {
  .ajax-categorized-items__categories-container {
    padding: 0 0 80px 40px;
  }
}
@media (min-width: 1500px) {
  .ajax-categorized-items__categories-container {
    padding: 0 0 80px 0;
  }
}
.ajax-categorized-items__no-items {
  float: none;
  display: block;
}
.ajax-categorized-items__contents-container {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.ajax-categorized-items__content {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ajax-categorized-items__pager-container {
  position: relative;
  padding: 80px 0 0 0;
}
@media (min-width: 650px) {
  .ajax-categorized-items__pager-container {
    padding: 100px 0 0 0;
  }
}
@media (min-width: 1800px) {
  .ajax-categorized-items__pager-container {
    padding: 120px 0 0 0;
  }
}
.ajax-categorized-items__pager-container .decorated-section__decoration-container {
  top: 40px;
  left: 0;
  display: block;
}
@media (min-width: 650px) {
  .ajax-categorized-items__pager-container .decorated-section__decoration-container {
    top: 60px;
  }
}
@media (min-width: 1800px) {
  .ajax-categorized-items__pager-container .decorated-section__decoration-container {
    top: 80px;
  }
}

/***** MENU *****/
.slide-menu {
  position: fixed;
  z-index: 4000;
  height: 100%;
  display: block;
  text-align: center;
  width: 100%;
  background: #e64a19;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 1300px) {
  .slide-menu {
    display: none;
  }
}
.slide-menu .slide-menu__wrapper {
  min-height: 100%;
  position: relative;
}
.slide-menu .slide-menu__inner {
  padding: 40px 20px;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: left;
    padding: 40px 60px;
  }
}
.slide-menu__header {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .slide-menu__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 16;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media (min-width: 992px) {
  .slide-menu__header {
    padding: 20px 32px;
  }
}
@media (min-width: 1300px) {
  .slide-menu__header {
    padding: 20px 64px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__header {
    padding: 20px 120px;
  }
}
.slide-menu__header > .column {
  float: none;
  width: auto;
}
@media (min-width: 992px) {
  .slide-menu__header > .column {
    float: left;
    width: 33.33%;
  }
}
.slide-menu__header .slide-menu__claim-container {
  display: none;
}
@media (min-width: 992px) {
  .slide-menu__header .slide-menu__claim-container {
    display: block;
    padding: 12px 0 0 0;
  }
}
@media (min-width: 1700px) {
  .slide-menu__header .slide-menu__claim-container {
    padding-top: 16px;
  }
}
.slide-menu__site-logo {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .slide-menu__menu-container {
    position: absolute;
    top: 16%;
    height: 84%;
    left: 0;
    width: 55%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 40px 0 100px;
  }
}
@media (min-width: 992px) {
  .slide-menu__menu-container {
    width: 50%;
  }
}
@media (min-width: 1100px) {
  .slide-menu__menu-container {
    padding-left: 132px;
  }
}
@media (min-width: 1300px) {
  .slide-menu__menu-container {
    top: 12%;
    height: 88%;
  }
}
@media (min-height: 768px) {
  .slide-menu__menu-container {
    top: 16%;
    height: 84%;
  }
}
@media (min-width: 1700px) {
  .slide-menu__menu-container {
    padding-left: 16%;
  }
}
@media (min-width: 768px) {
  .slide-menu__menu-wrapper {
    height: 100%;
    position: relative;
  }
}
.slide-menu__menu-container-inner {
  padding: 20px 32px 32px 32px;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 420px) {
  .slide-menu__menu-container-inner {
    padding: 40px 64px 64px 64px;
  }
}
@media (min-width: 768px) {
  .slide-menu__menu-container-inner {
    padding: 20px 40px 40px 40px;
  }
}
.slide-menu__extra-data-container {
  background: #FF931E;
}
@media (min-width: 768px) {
  .slide-menu__extra-data-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .slide-menu__extra-data-container {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .slide-menu__extra-data-container:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 300px;
    height: 300px;
    background: url("../img/logo-origo-sign-secondary.svg") no-repeat center;
    background-size: contain;
    -webkit-transform: translate3d(60%, -50%, 0);
    -moz-transform: translate3d(60%, -50%, 0);
    transform: translate3d(60%, -50%, 0);
  }
}
@media (min-width: 1100px) {
  .slide-menu__extra-data-container:before {
    width: 400px;
    height: 400px;
    -webkit-transform: translate3d(52%, -50%, 0);
    -moz-transform: translate3d(52%, -50%, 0);
    transform: translate3d(52%, -50%, 0);
  }
}
@media (min-width: 1500px) {
  .slide-menu__extra-data-container:before {
    width: 480px;
    height: 480px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__extra-data-container:before {
    width: 560px;
    height: 560px;
  }
}
.slide-menu__extra-data-container-inner {
  padding: 20px 32px 60px 32px;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 420px) {
  .slide-menu__extra-data-container-inner {
    padding: 32px 40px 100px 40px;
  }
}
@media (min-width: 768px) {
  .slide-menu__extra-data-container-inner {
    padding: 32px 64px;
    margin-top: 16%;
  }
}
@media (min-width: 1100px) {
  .slide-menu__extra-data-container-inner {
    padding: 32px 100px;
  }
}
@media (min-width: 1300px) {
  .slide-menu__extra-data-container-inner {
    margin-top: 12%;
  }
}
@media (min-width: 1500px) {
  .slide-menu__extra-data-container-inner {
    padding: 32px 140px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__extra-data-container-inner {
    padding: 40px 180px;
  }
}
.slide-menu__social-media-container {
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.slide-menu__social-media-container-inner {
  padding: 20px 32px;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 420px) {
  .slide-menu__social-media-container-inner {
    padding: 32px 40px 40px 40px;
  }
}
@media (min-width: 768px) {
  .slide-menu__social-media-container-inner {
    margin: 0;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .slide-menu__social-media-container-inner {
    padding: 32px;
  }
}
@media (min-width: 1300px) {
  .slide-menu__social-media-container-inner {
    padding: 32px 64px 32px 64px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__social-media-container-inner {
    padding: 32px 120px 40px 120px;
  }
}

/** 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.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
}
.slide-menu--slide-fade .slide-menu__inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
}
.slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in 0.4s;
  -moz-transition: opacity 0.3s ease-in 0.4s;
  -o-transition: opacity 0.3s ease-in 0.4s;
  transition: opacity 0.3s ease-in 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;
}

/***** OVERLAYERS *****/
/*.overlayer-content {
display: none !important;
}

.ajax-overlayer-button {
cursor: pointer;
}
.ajax-overlayer-close {
cursor: pointer;
}

.overlayer {
position: fixed;
display: none;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 7000;
background: $light-color;
color: #000;
overflow-y: auto;
padding: 0;

	> .wrapper {
		> div {

		}
	}

	.overlayer__loading-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 6900;
	display: none;
	font-size: $huge-font-size;
	color: $light-color;
	}

	.overlayer__inner {
	margin: 0 auto;
	position: relative;
	padding: 50px 20px;
	max-width: 100%;
	@include box-sizing(border-box);

		@media (min-width: $rwd-480) {
		padding: 70px 40px;
		}

		@media (min-width: $rwd-768) {
		}

		@media (min-width: $rwd-992) {
		padding: 60px 60px;
		max-width: 900px;
		}

		@media (min-width: $rwd-1300) {

		padding: 80px 60px;
		}

		@media (min-width: $rwd-1500) {

		}

		@media (min-width: $rwd-1700) {

		}
	}

	.overlayer__close {
	position: absolute;
	top: 20px;
	right: 20px;
	@include transition(all .2s linear);
	z-index: 7000;
	display: block;
	cursor: pointer;

		@media (min-width: $rwd-480) {
		top: 20px;
		}

		@media (min-width: $rwd-768) {
		right: 20px;
		}

		@media (min-width: $rwd-1300) {
		top: 30px;
		right: 30px;
		}
	}

	.overlayer__content {
	display: none;
	width: 100%;
	}
}

.overlayer-00 {
color: $dark-color-01;
}

.overlayer-02 {
background: $primary-color;
color: $light-color;

	.overlayer__inner {
	height: 100%;
	padding: 0;
	max-width: 100%;
	}

	.overlayer__content-wrapper {
	height: 100%;
	padding: 0;
	}

	.overlayer__content {
	height: 100%;
	padding: 0;
	}
}

.popup-01 {
background: rgba(0, 0, 0, .7);

	> .wrapper {
		> div {
		vertical-align: middle;
		}
	}

	.overlayer__inner {
	padding: 20px;
	margin: 0 auto;
	background: none;
	}
}

.overlayer-02 {
	.overlayer__decoration-container-01 {
	content: '';
	display: block;
	position: fixed;
	width: 70%;
	left: -10%;
	bottom: -8%;

		@media (min-width: $rwd-650) {
		width: 60%;
		}

		@media (min-width: $rwd-768) {
		width: 50%;
		}

		@media (min-width: $rwd-900) {
		width: 40%;
		bottom: -12%;
		left: -5%;
		}

		@media (min-width: $rwd-992) {
		width: 36%;
		bottom: -16%;
		left: -8%;
		}

		@media (min-width: $rwd-1300) {
		bottom: -10%;
		left: -5%;
		width: 30%;
		}

	}

	.overlayer__decoration-01 {
	padding: 0 0 100% 0;
	background: url('../img/drafts/racket.png') no-repeat center;
	background-size: contain;
	}

	.overlayer__decoration-container-02 {


		@media (min-width: $rwd-992) {
		content: '';
		display: block;
		position: fixed;
		width: 24%;
		bottom: 2%;
		right: -2%;
		}

		@media (min-width: $rwd-1300) {
		bottom: 30%;
		right: -6%;
		}

		@media (min-width: $rwd-1700) {
		bottom: 25%;
		right: -6%;
		}

	}

	.overlayer__decoration-02 {
	padding: 0 0 100% 0;
	background: url('../img/drafts/racket-01.png') no-repeat center;
	background-size: contain;
	}

	.overlayer__loading-layer {

	}

	.overlayer__inner {

	}

	.overlayer__close {

	}

	.overlayer__content {

	}
}
*/
.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

/***** ICONS *****/
.extended-icon, .large-icon-play, .icon-instagram, .icon-facebook, .icon-arrow-with-belt {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -10000px;
  text-align: left;
}
.extended-icon:before, .large-icon-play:before, .icon-instagram:before, .icon-facebook:before, .icon-arrow-with-belt:before, .extended-icon:after, .large-icon-play:after, .icon-instagram:after, .icon-facebook:after, .icon-arrow-with-belt:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -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:after, .large-icon-play:after, .icon-instagram:after, .icon-facebook:after, .icon-arrow-with-belt:after {
  opacity: 0;
  -webkit-transition: all 0.2s linear 0.1s;
  -moz-transition: all 0.2s linear 0.1s;
  -o-transition: all 0.2s linear 0.1s;
  transition: all 0.2s linear 0.1s;
}

.extended-icon--interactive, .large-icon-play {
  cursor: pointer;
}
.extended-icon--interactive:hover:before, .large-icon-play:hover:before, .extended-icon--interactive:focus:before, .large-icon-play:focus:before {
  opacity: 0;
  -webkit-transition: all 0.2s linear 0.1s;
  -moz-transition: all 0.2s linear 0.1s;
  -o-transition: all 0.2s linear 0.1s;
  transition: all 0.2s linear 0.1s;
}
.extended-icon--interactive:hover:after, .large-icon-play:hover:after, .extended-icon--interactive:focus:after, .large-icon-play:focus:after {
  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 */
.icon-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.icon-hamburger__inner {
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger__inner > div {
  position: absolute;
  left: 0;
  height: 2px;
  background: #8010A7;
  width: 100%;
  -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 > div:nth-child(4) {
  -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__inner > div: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 > div:nth-child(6) {
  -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 {
  background: #8010A7;
  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;
}

.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;
  left: auto;
  right: 0;
  width: 24px;
  -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;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--medium .icon-hamburger__inner > div {
  background: #8010A7;
}

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff;
}

.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-half-hamburger {
  display: block;
  width: 36px;
  position: relative;
}
.icon-half-hamburger__inner {
  height: 36px;
  position: relative;
  overflow: hidden;
}
.icon-half-hamburger__bar {
  position: absolute;
  left: 0;
  height: 2px;
  background: #000;
  width: 100%;
  -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-half-hamburger__bar:nth-child(1) {
  top: 0;
}
.icon-half-hamburger__bar:nth-child(2) {
  top: 7px;
  width: 50%;
}
.icon-half-hamburger__bar:nth-child(3) {
  top: 14px;
  width: 0;
}
.icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(2), .icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(3), .icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(2), .icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(3) {
  width: 100%;
}

.icon-half-hamburger.open .icon-half-hamburger__inner {
  overflow: visible;
}
.icon-half-hamburger.open .icon-half-hamburger__bar {
  background: #fff;
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(1) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(2) {
  opacity: 0;
  left: -100%;
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(3) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-half-hamburger--light .icon-half-hamburger__bar {
  background: #fff;
}

.icon-spectacular-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-spectacular-hamburger {
    width: 24px;
  }
}
.icon-spectacular-hamburger__inner {
  height: 15px;
  position: relative;
  overflow: hidden;
}
.icon-spectacular-hamburger__inner > div {
  position: absolute;
  left: 0;
  height: 2px;
  background: #C4C4C4;
  width: 100%;
  -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;
}
@media (min-width: 992px) {
  .icon-spectacular-hamburger__inner > div {
    background: #f3ddc3;
  }
}
.icon-spectacular-hamburger__inner > div:nth-child(1),
.icon-spectacular-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-spectacular-hamburger__inner > div:nth-child(2),
.icon-spectacular-hamburger__inner > div:nth-child(5) {
  top: 6px;
}
.icon-spectacular-hamburger__inner > div:nth-child(3),
.icon-spectacular-hamburger__inner > div:nth-child(6) {
  top: 12px;
  width: 50%;
}
.icon-spectacular-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-spectacular-hamburger__inner > div: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-spectacular-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item {
  background: #8010A7;
  left: -100%;
}
.icon-spectacular-hamburger__inner > .icon-spectacular-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-spectacular-hamburger__inner > .icon-spectacular-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-spectacular-hamburger__inner > .icon-spectacular-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-spectacular-hamburger:hover .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item, .icon-spectacular-hamburger:focus .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item {
  left: 0;
}

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner {
  overflow: visible;
}
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(1),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 100%;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(2),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(5) {
  opacity: 0;
  left: -100%;
}
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(3),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(6) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 100%;
}

.icon-spectacular-hamburger--medium .icon-spectacular-hamburger__inner > div {
  background: #FF931E;
}

/* icon arrow */
.icon-simple-arrow {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrows/icon-simple-arrow-right.svg") no-repeat center;
  background-size: contain;
  -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: 1700px) {
  .icon-simple-arrow {
    width: 28px;
    height: 28px;
  }
}

.icon-simple-arrow--light {
  background-image: url("../img/icons/arrows/icon-simple-arrow-right-light.svg");
}

.icon-simple-arrow--up {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.icon-simple-arrow--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-simple-arrow--down {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-simple-arrow--secondary {
  background-image: url("../img/icons/arrows/icon-simple-arrow-right-secondary.svg");
}

.icon-arrow-with-belt {
  width: 48px;
  height: 48px;
}
@media (min-width: 1100px) {
  .icon-arrow-with-belt {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1300px) {
  .icon-arrow-with-belt {
    width: 64px;
    height: 64px;
  }
}
.icon-arrow-with-belt:before {
  background-image: url("/img/icons/arrows/icon-arrow-right.svg");
}
.icon-arrow-with-belt:after {
  background-image: url("/img/icons/arrows/icon-arrow-right-secondary.svg");
}

.icon-arrow-with-belt--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-arrow-with-belt--light:before {
  background-image: url("/img/icons/arrows/icon-arrow-right-light.svg");
}
.icon-arrow-with-belt--light:after {
  background-image: url("/img/icons/arrows/icon-arrow-right-secondary.svg");
}

.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:hover {
  border-color: #e64a19;
}

.icon-arrow--lighter {
  border-color: #D4D4D4;
}

.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: 8px;
  height: 8px;
  border-width: 2px;
}

.icon-arrow--very-small {
  width: 8px;
  height: 8px;
  border-width: 1px;
}

.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-arrow--dark {
  border-color: #C4C4C4;
}

.icon-arrow--dark-grey {
  border-color: #C4C4C4;
}

.icon-arrow--dark-grey-02 {
  border-color: #535353;
}

.icon-arrow--medium {
  border-color: #8010A7;
}

.icon-arrow--light {
  border-color: #fff;
}

.icon-arrow--primary {
  border-color: #e64a19;
}

/* icon spectacular arrow */
.icon-spectacular-arrow {
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
}
@media (min-width: 1300px) {
  .icon-spectacular-arrow {
    width: 48px;
    height: 48px;
  }
}
.icon-spectacular-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/icons/arrow-right.svg") no-repeat center right;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.disabled .icon-spectacular-arrow:hover:before {
  padding: 0;
}

.icon-spectacular-arrow.icon-spectacular-arrow--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-spectacular-arrow--large {
  width: 28px;
  height: 24px;
}
@media (min-width: 1700px) {
  .icon-spectacular-arrow--large {
    width: 32px;
    height: 28px;
  }
}

/* icon nice arrow */
.icon-nice-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-nice-arrow:before, .icon-nice-arrow:after {
  content: "";
  display: block;
  position: absolute;
  background: #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-nice-arrow:before {
  width: 3px;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
}
.icon-nice-arrow:after {
  height: 3px;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}

.icon-nice-arrow--down {
  top: -3px;
}

.icon-nice-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px;
  top: 0;
}

.icon-nice-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px;
  top: 0;
}

.icon-nice-arrow--medium-10:before, .icon-nice-arrow--medium-10:after {
  background: #f3ddc3;
}

.icon-nice-arrow--light:before, .icon-nice-arrow--light:after {
  background: #fff;
}

.icon-nice-arrow--small {
  width: 12px;
  height: 12px;
}
.icon-nice-arrow--small.icon-nice-arrow--left {
  left: 2px;
}

.icon-nice-arrow--small.icon-nice-arrow--right {
  left: -2px;
}

.icon-nice-arrow--large {
  width: 20px;
  height: 20px;
}
@media (min-width: 1300px) {
  .icon-nice-arrow--large {
    width: 24px;
    height: 24px;
  }
}

/* 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-left--medium {
  border-right-color: #8010A7;
}

.icon-triangular-arrow-left--light {
  border-right-color: #fff;
}

.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-up--medium {
  border-bottom-color: #8010A7;
}

.icon-triangular-arrow-up--light {
  border-bottom-color: #fff;
}

.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-right--medium {
  border-left-color: #8010A7;
}

.icon-triangular-arrow-right--light {
  border-left-color: #fff;
}

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

.icon-triangular-arrow-down--medium {
  border-top-color: #8010A7;
}

.icon-triangular-arrow-down--light {
  border-top-color: #fff;
}

/* icon cross */
.icon-plus {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden;
  background: url("../img/icons/icon-plus.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.icon-plus--large {
  width: 26px;
  height: 26px;
}
.icon-plus--large:before {
  height: 4px;
  margin: -2px 0 0 0;
}
.icon-plus--large:after {
  width: 4px;
  margin: 0 0 0 -2px;
}

.icon-plus--large-thin {
  width: 26px;
  height: 26px;
}

.icon-plus--small {
  width: 15px;
  height: 15px;
}

.icon-plus--very-small {
  width: 12px;
  height: 12px;
}

.icon-plus--light {
  background-image: url("../img/icons/icon-plus-light.svg");
}

.icon-plus--medium:before, .icon-plus--medium:after {
  background: #8010A7;
}

.icon-plus--grey:before, .icon-plus--grey:after {
  background: #ACACAC;
}

.icon-plus--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-minus {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden;
}
.icon-minus:before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 100%;
  left: 0;
  top: 50%;
  height: 3px;
  margin: -1.5px 0 0 0;
}

.icon-minus--small {
  width: 16px;
  height: 16px;
}
.icon-minus--small:before {
  height: 2px;
  margin: -1px 0 0 0;
}

.icon-minus--very-small {
  width: 12px;
  height: 12px;
}
.icon-minus--very-small:before {
  height: 2px;
  margin: -1px 0 0 0;
}

.icon-minus--light:before {
  background: #fff;
}

/* extended icon */
.simple-extended-icon {
  display: block;
  position: relative;
}
.simple-extended-icon__base-layer {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.simple-extended-icon__above-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
.simple-extended-icon img {
  display: block;
}

@media (min-width: 992px) {
  .simple-extended-icon--later-changing .simple-extended-icon__base-layer {
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .simple-extended-icon--later-changing .simple-extended-icon__above-layer {
    opacity: 1;
  }
}

.icon-facebook {
  width: 20px;
  height: 20px;
}
@media (min-width: 650px) {
  .icon-facebook {
    width: 24px;
    height: 24px;
  }
}
.icon-facebook:before {
  background-image: url("../img/icons/social-media/icon-facebook.svg");
}
.icon-facebook:after {
  background-image: url("../img/icons/social-media/icon-facebook-light.svg");
}

.icon-facebook--secondary:before {
  background-image: url("../img/icons/social-media/icon-facebook-secondary.svg");
}
.icon-facebook--secondary:after {
  background-image: url("../img/icons/social-media/icon-facebook-light.svg");
}

.icon-instagram {
  width: 20px;
  height: 20px;
}
@media (min-width: 650px) {
  .icon-instagram {
    width: 24px;
    height: 24px;
  }
}
.icon-instagram:before {
  background-image: url("../img/icons/social-media/icon-instagram.svg");
}
.icon-instagram:after {
  background-image: url("../img/icons/social-media/icon-instagram-light.svg");
}

.icon-instagram--secondary:before {
  background-image: url("../img/icons/social-media/icon-instagram-secondary.svg");
}
.icon-instagram--secondary:after {
  background-image: url("../img/icons/social-media/icon-instagram-light.svg");
}

/* player */
.icon-play {
  border-left: 10px solid #000;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  width: 0;
  position: relative;
  left: 1px;
}
@media (min-width: 420px) {
  .icon-play {
    border-left: 16px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media (min-width: 768px) {
  .icon-play {
    border-left: 20px solid #000;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    left: 2px;
  }
}
@media (min-width: 1500px) {
  .icon-play {
    border-left: 26px solid #000;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    left: 3px;
  }
}

.icon-play--light {
  border-left-color: #fff;
}

.icon-pause {
  position: relative;
  width: 12px;
  height: 12px;
}
@media (min-width: 420px) {
  .icon-pause {
    height: 16px;
  }
}
@media (min-width: 768px) {
  .icon-pause {
    width: 18px;
    height: 24px;
  }
}
@media (min-width: 1500px) {
  .icon-pause {
    width: 20px;
    height: 28px;
  }
}
.icon-pause:before, .icon-pause:after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .icon-pause:before, .icon-pause:after {
    width: 6px;
  }
}
@media (min-width: 1500px) {
  .icon-pause:before, .icon-pause:after {
    width: 7px;
  }
}
.icon-pause:before {
  left: 0;
}
.icon-pause:after {
  right: 0;
}

.icon-pause--light:before, .icon-pause--light:after {
  background: #fff;
}

.icon-bullet {
  position: relative;
  width: 24px;
  height: 24px;
}
.icon-bullet:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FF931E;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
}
@media (min-width: 1300px) {
  .icon-bullet:before {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
  }
}

/** icons-end **/
.container:after, .bookmarks-manager-00 .bookmarks-manager__container:after {
  content: "";
  display: block;
  clear: both;
}

@media (min-width: 993px) {
  .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.flex-container--immediately {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-container--horizontally-center {
  align-items: center;
}

@media (min-width: 993px) {
  .flex-container--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 993px) {
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(1) {
    padding-left: 18px;
    padding-right: 0;
  }
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(2) {
    padding-right: 18px;
    padding-left: 0;
    padding-top: 0;
  }
}
@media (min-width: 1100px) {
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(1) {
    padding-left: 30px;
  }
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(2) {
    padding-right: 30px;
  }
}
@media (min-width: 1500px) {
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(1) {
    padding-left: 48px;
  }
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(2) {
    padding-right: 48px;
  }
}

.flex-column {
  min-height: 1px;
  padding: 20px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .flex-column {
    padding: 0;
  }
}
.flex-column:first-child {
  padding-top: 0;
}

.flex-column--space {
  padding-top: 40px;
}
@media (min-width: 993px) {
  .flex-column--space {
    padding-top: 0;
  }
}

.flex-column--small-space {
  padding-top: 20px;
}
@media (min-width: 993px) {
  .flex-column--small-space {
    padding-top: 0;
  }
}

.flex-column--no-top-space {
  padding-top: 0;
}

@media (min-width: 993px) {
  .flex-column--8 {
    min-width: 66.66%;
    max-width: 66.66%;
  }
}

@media (min-width: 993px) {
  .flex-column--8.flex-column--space:nth-child(1) {
    padding-right: 12px;
  }
  .flex-column--8.flex-column--space:nth-child(2) {
    padding-left: 12px;
  }
}
@media (min-width: 1301px) {
  .flex-column--8.flex-column--space:nth-child(1) {
    padding-right: 20px;
  }
  .flex-column--8.flex-column--space:nth-child(2) {
    padding-left: 20px;
  }
}

@media (min-width: 993px) {
  .flex-column--7 {
    min-width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 993px) {
  .flex-column--6 {
    min-width: 50%;
    max-width: 50%;
  }
}

@media (min-width: 993px) {
  .flex-column--6.flex-column--small-space:nth-child(1) {
    padding-right: 10px;
  }
  .flex-column--6.flex-column--small-space:nth-child(2) {
    padding-left: 10px;
  }
}
@media (min-width: 1100px) {
  .flex-column--6.flex-column--small-space:nth-child(1) {
    padding-right: 16px;
  }
  .flex-column--6.flex-column--small-space:nth-child(2) {
    padding-left: 16px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--small-space:nth-child(1) {
    padding-right: 24px;
  }
  .flex-column--6.flex-column--small-space:nth-child(2) {
    padding-left: 24px;
  }
}

@media (min-width: 993px) {
  .flex-column--6.flex-column--space:nth-child(1) {
    padding-right: 18px;
  }
  .flex-column--6.flex-column--space:nth-child(2) {
    padding-left: 18px;
  }
}
@media (min-width: 1100px) {
  .flex-column--6.flex-column--space:nth-child(1) {
    padding-right: 30px;
  }
  .flex-column--6.flex-column--space:nth-child(2) {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--space:nth-child(1) {
    padding-right: 48px;
  }
  .flex-column--6.flex-column--space:nth-child(2) {
    padding-left: 48px;
  }
}

@media (min-width: 993px) {
  .flex-column--6.flex-column--big-space:nth-child(1) {
    padding-right: 40px;
  }
  .flex-column--6.flex-column--big-space:nth-child(2) {
    padding-left: 40px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--big-space:nth-child(1) {
    padding-right: 60px;
  }
  .flex-column--6.flex-column--big-space:nth-child(2) {
    padding-left: 60px;
  }
}
@media (min-width: 1700px) {
  .flex-column--6.flex-column--big-space:nth-child(1) {
    padding-right: 80px;
  }
  .flex-column--6.flex-column--big-space:nth-child(2) {
    padding-left: 80px;
  }
}

@media (min-width: 993px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 32px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 32px;
  }
}
@media (min-width: 1301px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 48px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 48px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 80px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 80px;
  }
}
@media (min-width: 1700px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 100px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 100px;
  }
}

@media (min-width: 993px) {
  .flex-column--5 {
    min-width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 993px) {
  .flex-column--4 {
    min-width: 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 993px) {
  .flex-column--4.flex-column--space:nth-child(1) {
    padding-right: 24px;
  }
  .flex-column--4.flex-column--space:nth-child(2) {
    padding-left: 12px;
    padding-right: 12px;
  }
  .flex-column--4.flex-column--space:nth-child(3) {
    padding-left: 24px;
  }
}
@media (min-width: 1301px) {
  .flex-column--4.flex-column--space:nth-child(1) {
    padding-right: 40px;
  }
  .flex-column--4.flex-column--space:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flex-column--4.flex-column--space:nth-child(3) {
    padding-left: 40px;
  }
}

@media (min-width: 993px) {
  .flex-column--3 {
    min-width: 25%;
    max-width: 25%;
  }
}

.hawk-layered-section {
  position: relative;
}
.hawk-layered-section__base-layer {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.hawk-layered-section__layer {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
.hawk-layered-section__layer-inner, .hawk-layered-section__base-layer-inner {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  min-height: 0;
  width: 100%;
  position: relative;
}

.hawk-layered-section__layer--full-width {
  width: 100%;
}

.hawk-layered-section--same-height-applied .hawk-layered-section__base-layer,
.hawk-layered-section--same-height-applied .hawk-layered-section__layer {
  height: 100%;
}
.hawk-layered-section--same-height-applied .hawk-layered-section__base-layer-inner,
.hawk-layered-section--same-height-applied .hawk-layered-section__layer-inner {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #212121;
  background: #fdfdfd;
}

a, div, img, span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

a img {
  border: 0;
}

strong {
  text-transform: uppercase;
  font-weight: normal;
}

a {
  color: #212121;
  text-decoration: none;
  transition: all 0.2s linear;
}

img {
  display: inline-block;
  max-width: 100%;
}

header,
section,
article {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

ol {
  counter-reset: counter;
  padding: 0 0 0 30px;
}

p + ol {
  margin: -5px 0 0 0;
}

ul {
  list-style-type: none;
}

ol li {
  list-style-type: none;
  padding: 0 0 5px 0;
  position: relative;
  display: block;
}

ol li:before {
  content: counters(counter, ".") ". ";
  counter-increment: counter;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  margin: 0 5px 0 0;
}

address {
  text-align: center;
  font-style: normal;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 34px;
  letter-spacing: 2px;
  padding: 30px 0;
}

sup {
  font-size: 60%;
}

.nowrap {
  white-space: nowrap;
}

/***** HEADERS *****/
h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 48px;
}

h2 {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
}

h1.type-02 {
  border-bottom: 3px solid #e64a19;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

h1.type-02--light {
  border-color: #fff;
}

.simple-header {
  padding: 0 0 20px 0;
}
@media (min-width: 768px) {
  .simple-header {
    text-align: left;
  }
}

.simple-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
}
@media (min-width: 1300px) {
  .simple-title {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}
@media (min-width: 1700px) {
  .simple-title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 2px;
  }
}

/***** TEXT *****/
.std-text {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1700px) {
  .std-text {
    font-size: 18px;
    line-height: 26px;
  }
}
.std-text p {
  font-size: 16px;
  line-height: 24px;
  padding: 5px 0;
}
@media (min-width: 1700px) {
  .std-text p {
    font-size: 18px;
    line-height: 26px;
  }
}
.std-text p:first-child {
  padding-top: 0;
}
.std-text p:last-child {
  padding-bottom: 0;
}

.std-text--large {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1301px) {
  .std-text--large {
    font-size: 20px;
    line-height: 28px;
  }
}
.std-text--large p {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1301px) {
  .std-text--large p {
    font-size: 20px;
    line-height: 28px;
  }
}

.text {
  text-align: center;
}
@media (min-width: 768px) {
  .text {
    text-align: left;
  }
}
.text p {
  padding: 5px 0;
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .text p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1700px) {
  .text p {
    font-size: 20px;
    line-height: 28px;
  }
}
.text p:first-child {
  padding-top: 0;
}
.text p:last-child {
  padding-bottom: 0;
}
.text--center {
  text-align: center;
}
@media (min-width: 768px) {
  .text--center {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .text--type-04 {
    text-align: justify;
  }
}

@media (min-width: 1300px) {
  .text--larger p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .text--larger p {
    font-size: 22px;
    line-height: 30px;
  }
}
.text--larger p:first-child {
  padding-top: 0;
}
.text--larger p:last-child {
  padding-bottom: 0;
}

p {
  line-height: 36px;
  font-size: 24px;
  padding: 15px 0;
  margin: 0;
  font-weight: 400;
}

.dark p {
  font-weight: 300;
}

.break {
  display: block;
}

.single {
  font-size: 22px;
  text-align: center;
  width: 820px;
  text-transform: uppercase;
  margin: 10px auto 0 auto;
  letter-spacing: 5px;
  line-height: 44px;
}

.distinguished {
  color: #e64a19;
}

p a {
  background: #e64a19;
  padding: 0 5px 0 3px;
  color: #fff;
}

p.type-01 {
  font-size: 26px;
  line-height: 38px;
}

p.type-02 {
  letter-spacing: 2px;
  width: auto;
  padding: 20px 0;
}

p.header-paragraph {
  padding-bottom: 0;
  padding-top: 0;
}

p.type-03 {
  font-size: 18px;
  text-transform: uppercase;
  padding: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

p.type-04 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
}

/***** MENU *****/
#menu {
  position: fixed;
  left: 0;
  bottom: 65px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
}

#menu nav {
  width: 1250px;
  margin: 0 auto;
}

#menu nav ul {
  list-style-type: none;
  text-align: center;
  padding: 0 0 5px 0;
  overflow: hidden;
  position: relative;
}

#menu nav ul li {
  float: left;
  width: 14.2%;
  padding: 0;
}

#menu nav ul li a {
  display: block;
  padding: 10px 0;
  color: #212121;
}

#menu.dark a {
  color: #fff;
}

.hidden-link {
  display: none;
  position: absolute;
  padding: 10px;
  z-index: 1000;
  top: -75%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s linear;
}
.hidden-link:hover a {
  color: #e64a19 !important;
}

/***** LISTS *****/
.footnotes {
  padding: 28px 30px 0 30px;
}

.footnotes li {
  padding: 5px 0;
}

.footnotes li span {
  margin: 0 5px 0 0;
}

.plain {
  width: 80%;
  margin: 40px auto 0 auto;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 28px;
}

.plain > li {
  display: block;
}

.plain > li:after {
  content: "";
  display: block;
  width: 110px;
  height: 6px;
  background: #003471;
  margin: 40px auto;
}

.horizontal {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
}

.horizontal > li {
  display: inline-block;
  border-left: 4px solid #fff;
  padding: 4px 15px;
}

.horizontal > li:first-child {
  border: 0;
  padding-left: 0;
}

.simple-ordered-list {
  list-style-type: none;
  counter-reset: simpleOrderedList;
  font-size: 18px;
  line-height: 26px;
  padding: 10px 0 10px 40px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .simple-ordered-list {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1700px) {
  .simple-ordered-list {
    font-size: 20px;
    line-height: 28px;
  }
}
.simple-ordered-list > li:before {
  content: counters(simpleOrderedList, "") ")";
  counter-increment: simpleOrderedList;
}

/***** TABLES *****/
.std-table {
  border-collapse: collapse;
  margin: 20px 0;
}
.std-table td,
.std-table th {
  font-size: 14px;
  padding: 4px 10px;
  border: 1px solid #D4D4D4;
  border-collapse: collapse;
  vertical-align: top;
  text-align: center;
}
.std-table th {
  background: #F8F8F8;
}

.table-title {
  font-size: 16px;
  font-weight: 700;
}

.table-title--shy {
  font-weight: 500;
}

.shy {
  font-size: 13px;
  line-height: 21px;
  font-weight: 300;
  color: #535353;
  padding: 4px 0;
}

.currency {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  padding: 0;
}

/***** CONTAINERS *****/
.content {
  width: 1250px;
  margin: 0 auto;
  padding: 0 40px 120px 40px;
}

.content--no-bottom-padding {
  padding-bottom: 0;
}

.content--small-bottom-padding {
  padding-bottom: 60px;
}

.boxes {
  width: 945px;
  margin: 40px auto 20px auto;
}

.boxes .row {
  text-align: center;
  position: relative;
  padding: 0;
}

.boxes article {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 100%;
  width: 285px;
  padding: 0 30px;
}

.boxes article .inner {
  display: table;
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  background: #fff;
}

.boxes article .inner > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.boxes article .inner > div > div {
  padding: 20px 20px 35px 20px;
}

.boxes article h2 {
  font-size: 14px;
  letter-spacing: 0;
}

.boxes article p {
  width: 90%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.boxes article .wrapper {
  height: 60px;
  padding: 0 0 18px 0;
}

.boxes article.highest {
  position: static;
}

.boxes article:nth-child(1) {
  left: 0;
}

.boxes article.highest:nth-child(1) {
  margin-left: 0;
}

.boxes article:nth-child(2) {
  left: 33.3%;
}

.boxes article.highest:nth-child(2) {
  margin-left: 33.3%;
}

.boxes article:nth-child(3) {
  left: 66.6%;
}

.boxes article.highest:nth-child(3) {
  margin-left: 66.7%;
}

.boxes article .price {
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
  width: auto;
  padding: 5px 0;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

.boxes article .price span {
  color: #bdbdbd;
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  bottom: 0;
}

.boxes article .price span.before {
  right: 115%;
}

.boxes article .price span.after {
  left: 105%;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.wrapper img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}

.container, .bookmarks-manager-00 .bookmarks-manager__container {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.side-a {
  float: left;
  width: 50%;
}

.side-b {
  float: right;
  width: 50%;
}

.progressbar {
  background: rgba(189, 189, 189, 0.2);
}

.progressbar .progress {
  background: #e64a19;
  height: 4px;
}

#info {
  position: fixed;
  top: 0;
  right: 0;
  text-align: right;
}

#info.dark p {
  color: #fff;
}

#info p {
  text-align: right;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 25px;
  letter-spacing: 2px;
}

.fixed-label {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  letter-spacing: 2px;
  background: #e64a19;
  color: #fff;
}
.fixed-label a {
  color: #fff;
  position: relative;
  display: inline-block;
}
.fixed-label a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  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;
}
.fixed-label a:hover:before, .fixed-label a:focus:before {
  opacity: 1;
}

.simple-carousel {
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.std-carousel {
  padding: 20px 0 0 0;
}
@media (min-width: 768px) {
  .std-carousel {
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 1100px) {
  .std-carousel {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 1300px) {
  .std-carousel {
    padding-top: 40px;
  }
}
.std-carousel .owl-nav {
  display: none;
}
@media (min-width: 480px) {
  .std-carousel .owl-nav {
    display: block;
  }
}
@media (min-width: 768px) {
  .std-carousel .owl-prev {
    left: 0;
  }
}
@media (min-width: 1100px) {
  .std-carousel .owl-prev {
    left: -20px;
  }
}
@media (min-width: 1300px) {
  .std-carousel .owl-prev {
    left: 0;
  }
}
@media (min-width: 1700px) {
  .std-carousel .owl-prev {
    left: -20px;
  }
}
@media (min-width: 768px) {
  .std-carousel .owl-next {
    right: 0;
  }
}
@media (min-width: 1100px) {
  .std-carousel .owl-next {
    right: -20px;
  }
}
@media (min-width: 1300px) {
  .std-carousel .owl-next {
    right: 0;
  }
}
@media (min-width: 1700px) {
  .std-carousel .owl-next {
    right: -20px;
  }
}

.subsection {
  padding: 30px 0 0 0;
}

.subsection__header {
  padding: 0 0 40px 0;
}

.subsection-title {
  font-size: 22px;
}

.video-section {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.video-section__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.video-section__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-section__content-container {
  position: relative;
  z-index: 4;
  height: 100%;
}

.main-section {
  padding: 0;
  position: relative;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-section:after {
  content: "";
  display: block;
  clear: both;
}

.main-section__main-content-container {
  position: relative;
  z-index: 4;
  min-width: 50%;
  max-width: 50%;
}

.main-section__side-content-container {
  padding: 0;
  min-width: 50%;
  max-width: 50%;
}

.main-section__side-content-container:before {
  content: "";
  display: block;
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  -moz-background: -moz-radial-gradient(closest-side, rgba(25, 25, 33, 0.42), rgba(0, 0, 0, 0));
  -webkit-background: -webkit-radial-gradient(closest-side, rgba(25, 25, 33, 0.42), rgba(0, 0, 0, 0));
  -o-background: -o-radial-gradient(closest-side, rgba(25, 25, 33, 0.42), rgba(0, 0, 0, 0));
  -ms-background: -ms-radial-gradient(closest-side, rgba(25, 25, 33, 0.42), rgba(0, 0, 0, 0));
  background: radial-gradient(closest-side, rgba(25, 25, 33, 0.42), rgba(0, 0, 0, 0));
}

.main-section__side-content {
  position: relative;
  z-index: 4;
}

.main-section__logo-container {
  padding: 0 0 40px 0;
}
@media (min-width: 480px) {
  .main-section__logo-container {
    padding-bottom: 64px;
  }
}
@media (min-width: 1500px) {
  .main-section__logo-container {
    padding-bottom: 80px;
  }
}
@media (min-width: 1700px) {
  .main-section__logo-container {
    padding-bottom: 120px;
  }
}

.main-section__logo {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .main-section__logo {
    margin: 0;
  }
}

.scrollable-section {
  position: relative;
}
@media (min-width: 768px) {
  .scrollable-section {
    height: 60vh;
  }
}
@media (min-width: 1700px) {
  .scrollable-section {
    height: 50vh;
  }
}

.mCustomScrollbar {
  padding: 0 0 0 40px;
}

.mCS_no_scrollbar {
  padding: 0;
}

.reference {
  position: relative;
  padding: 0 20px;
  max-width: 440px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .reference {
    max-width: 600px;
  }
}
@media (min-width: 1100px) {
  .reference {
    max-width: 720px;
  }
}
@media (min-width: 1300px) {
  .reference {
    max-width: 800px;
  }
}
@media (min-width: 1700px) {
  .reference {
    padding: 0 24px;
    max-width: 860px;
  }
}
.reference:before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: url("../img/icon-quote.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 1700px) {
  .reference:before {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 992px) {
  .reference__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.reference__author-container {
  padding: 20px 0 0 0;
}
@media (min-width: 992px) {
  .reference__author-container {
    width: 140px;
    padding: 0 40px 0 0;
    min-width: 180px;
  }
}
@media (min-width: 1300px) {
  .reference__author-container {
    padding-right: 64px;
  }
}
@media (min-width: 1700px) {
  .reference__author-container {
    min-width: 200px;
  }
}

.author-signature {
  font-size: 14px;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 700;
  color: #e64a19;
  display: block;
  text-align: center;
}
@media (min-width: 1300px) {
  .author-signature {
    font-size: 16px;
  }
}
.author-signature__logo-container {
  padding: 0 0 8px 0;
}
.author-signature__logo {
  display: block;
  width: 180px;
  margin: 0 auto;
}
@media (min-width: 1700px) {
  .author-signature__logo {
    width: 200px;
  }
}

@media (min-width: 768px) {
  .pictured-section__container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
}
.pictured-section__picture-container {
  padding: 64px 0 0 0;
}
@media (min-width: 768px) {
  .pictured-section__picture-container {
    padding: 0 80px 0 0;
  }
}
@media (min-width: 1300px) {
  .pictured-section__picture-container {
    padding: 0 100px 0 0;
  }
}
@media (min-width: 1700px) {
  .pictured-section__picture-container {
    padding: 0 140px 0 0;
  }
}
.pictured-section__picture-wrapper {
  display: block;
  width: 180px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
}
@media (min-width: 992px) {
  .pictured-section__picture-wrapper {
    width: 188px;
  }
}
@media (min-width: 1300px) {
  .pictured-section__picture-wrapper {
    width: 240px;
  }
}
@media (min-width: 1700px) {
  .pictured-section__picture-wrapper {
    width: 280px;
  }
}
.pictured-section__picture {
  display: block;
  width: 100%;
}

.bounded-section {
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bounded-section {
    margin: 0;
  }
}

.large-icon-play {
  width: 96px;
  height: 96px;
}
@media (max-width: 1400px) {
  .large-icon-play {
    width: 72px;
    height: 72px;
  }
}
.large-icon-play:before {
  background-image: url("/img/icons/button-play.svg");
}
.large-icon-play:after {
  background-image: url("/img/icons/button-play-inverse.svg");
}

.large-icon-button {
  margin: 0;
  text-align: center;
  background: none;
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.large-icon-button__icon {
  margin: 0 auto;
}
.large-icon-button__content {
  padding: 12px 0 0 0;
  font-size: 20px;
}
@media (max-width: 1400px) {
  .large-icon-button__content {
    font-size: 16px;
  }
}
.large-icon-button:hover .large-icon-button__icon:before {
  opacity: 0;
}
.large-icon-button:hover .large-icon-button__icon:after {
  opacity: 1;
}

.large-icon-button--light .large-icon-button__content {
  color: #fff;
}

.site-bar {
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
}

.tile {
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
  max-width: 310px;
  margin: 0 auto;
  text-align: center;
  height: 100%;
}
@media (min-width: 1300px) {
  .tile {
    max-width: 100%;
  }
}
.tile__wrapper {
  padding: 20px 28px 28px 28px;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tile__header {
  padding: 0 0 12px 0;
}
@media (min-width: 1501px) {
  .tile__header {
    padding-bottom: 16px;
  }
}
.tile__bottom-bar {
  padding: 32px 0 0 0;
}
@media (min-width: 992px) {
  .tile__bottom-bar {
    padding-top: 16px;
  }
}
.tile--tablet-wide {
  max-width: calc(100% - 40px);
}
@media (min-width: 1300px) {
  .tile--tablet-wide {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .tiles {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
.tiles > li {
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .tiles > li {
    padding: 0;
    min-width: 31%;
    max-width: 31%;
  }
}
.tiles > li:first-child {
  padding-top: 0;
}
.tiles > li:last-child {
  padding-bottom: 0;
}
.tiles--small-space-above {
  margin-top: 10px;
}

.section-content {
  margin: 0 auto;
}
@media (min-width: 1300px) {
  .section-content {
    max-width: 1000px;
  }
}
@media (min-width: 1700px) {
  .section-content {
    max-width: 1100px;
  }
}

.std-label {
  font-weight: 500;
  font-size: 22px;
  color: #e64a19;
}
@media (min-width: 1501px) {
  .std-label {
    font-size: 24px;
  }
}
@media (min-width: 1701px) {
  .std-label {
    font-size: 26px;
  }
}

.std-label--lighter {
  color: #FF7C01;
}

.std-label--lightest {
  color: #EFA00B;
}

.std-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.std-icon {
  height: 15px;
  width: 15px;
  display: block;
}

.extended-icon-header__icon-container {
  padding: 0 0 8px 0;
}
@media (min-width: 1501px) {
  .extended-icon-header__icon-container {
    padding-bottom: 16px;
  }
}
.extended-icon-header__icon {
  display: block;
  margin: 0 auto;
  width: 72px;
  height: auto;
}
@media (min-width: 1501px) {
  .extended-icon-header__icon {
    width: 80px;
  }
}
.extended-icon-header__label-container {
  display: flex;
  justify-content: center;
}
.extended-icon-header__content-container {
  padding: 20px 0 0 0;
}

.spectacular-label-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 118px;
  height: 32px;
  line-height: 32px;
  background: url("/img/bg/signpost/bg-signost-primary.svg") no-repeat center;
  background-size: 100% 100%;
  color: #fff;
}

.spectacular-label-title--lighter {
  background-image: url("/img/bg/signpost/bg-signost-primary-lighter.svg");
}

.spectacular-label-title--lightest {
  background-image: url("/img/bg/signpost/bg-signost-primary-lightest.svg");
}

.std-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1501px) {
  .std-title {
    font-size: 18px;
  }
}
@media (min-width: 1701px) {
  .std-title {
    font-size: 20px;
  }
}

/* references-end */
/***** FORMS *****/
form {
  position: relative;
}

fieldset {
  border: 0;
}

label {
  display: block;
  margin: 0;
}

label:first-of-type {
  padding-left: 0;
}

label:last-of-type {
  padding-right: 0;
}

input,
textarea,
select {
  display: block;
  padding: 8px 20px;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 17px;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  color: rgba(33, 33, 33, 0.3);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  outline-offset: 0;
  color: rgb(33, 33, 33);
}

button,
.button {
  background: #e64a19;
  font-size: 22px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 300;
  color: #fff;
  display: inline-block;
  margin: 0;
  padding: 6px 68px;
  border: 0;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.4);
}

button span,
.button span {
  display: block;
}

.button--stroke {
  box-shadow: none;
  background: none;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  padding-top: 4px;
  padding-bottom: 4px;
}
.button--stroke:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button--stroke:hover, .button--stroke:focus {
  color: #e64a19;
}
.button--stroke:hover:before, .button--stroke:focus:before {
  opacity: 1;
}

.button--small {
  font-size: 17px;
}

.horizontal-buttons > li {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .horizontal-buttons > li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
  }
}
.horizontal-buttons > li:first-child {
  padding-top: 0;
  padding-left: 0;
}
.horizontal-buttons > li:last-child {
  padding-bottom: 0;
  padding-right: 0;
}

form .row {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
}

form .row.information {
  padding: 0;
}

form .button-container {
  text-align: right;
  padding: 0;
}

form header.row {
  padding: 0;
}

form h2 {
  font-size: 14px;
  line-height: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
}

form h2 .distinguished {
  font-weight: 700;
}

form .separator {
  width: 80px;
}

.form-info-container {
  padding: 20px 0 0 0;
}

.form-info {
  display: none;
  font-size: 14px;
  text-align: right;
  letter-spacing: 2px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: rgba(33, 33, 33, 0.3);
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: rgba(33, 33, 33, 0.3);
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: rgba(33, 33, 33, 0.3);
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(33, 33, 33, 0.3);
}

#form-download .button-container {
  padding: 10px 0 0 0;
}

#form-download .button {
  padding-left: 37px;
  padding-right: 37px;
}

.vertical {
  width: auto;
  padding: 0 20px;
}

.vertical label {
  float: none;
  width: auto;
  margin: 0;
  padding: 10px 0;
  overflow: visible;
}

.logo {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}

.logos-group__item {
  padding: 16px 0;
  display: block;
}

.dedicated-logo, .logo-twojamarka {
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  display: block;
  text-indent: -100000px;
  text-align: left;
}

.logo-twojamarka {
  background-image: url("../img/logo-twoja-marka.svg");
  width: 264px;
  height: 48px;
}
@media (min-width: 1500px) {
  .logo-twojamarka {
    width: 300px;
    height: 55px;
  }
}

/***** HEADER *****/
.section-header {
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .section-header {
    padding-bottom: 48px;
  }
}
@media (min-width: 1100px) {
  .section-header {
    padding-bottom: 32px;
  }
}
@media (min-width: 1700px) {
  .section-header {
    padding-bottom: 64px;
  }
}

.section-header--small-spaces {
  padding: 0 0 32px 0;
}
@media (min-width: 768px) {
  .section-header--small-spaces {
    padding-bottom: 40px;
  }
}
@media (min-width: 1100px) {
  .section-header--small-spaces {
    padding-bottom: 20px;
  }
}
@media (min-width: 1700px) {
  .section-header--small-spaces {
    padding-bottom: 40px;
  }
}

/***** MENU *****/
/***** FOOTER *****/
/***** SYMBOLS *****/
.symbol {
  position: relative;
}

.arrow {
  display: block;
  border-right: 4px solid #000;
  border-top: 4px solid #000;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  transition: all 0.2s linear;
}

.arrow.down {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

.arrow.right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow.up {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: 5px;
}

.arrow.light {
  border-color: #fff;
}

.arrow.large {
  width: 28px;
  height: 28px;
  border-width: 8px;
}

.arrow.right.large {
  position: relative;
  left: -8px;
}

.arrow.light {
  border-color: #fff;
}

.arrow.small {
  width: 12px;
  height: 12px;
  border-width: 3px;
}

.symbol.cross {
  width: 24px;
  height: 24px;
}

.symbol.cross .v,
.symbol.cross .h {
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.symbol.cross.light .v,
.symbol.cross.light .h {
  background: #fff;
}

.symbol.cross.dark .v,
.symbol.cross.dark .h {
  background: #3c4d69;
}

.symbol.cross.medium .v,
.symbol.cross.medium .h {
  background: #e64a19;
}

.symbol.cross.darkest .v,
.symbol.cross.darkest .h {
  background: #000;
}

.symbol.cross .v {
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
}

.symbol.cross .h {
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  margin: -1px 0 0 0;
}

.symbol.cross.small {
  width: 8px;
  height: 8px;
}

.symbol.cross.large {
  width: 30px;
  height: 30px;
}

.symbol.cross.extra-large {
  width: 38px;
  height: 38px;
}

.symbol.cross.rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/***** ICONS *****/
.icon {
  display: inline-block;
}

.icon.square {
  /**border: 3px solid #000; **/
  /**-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);**/
}

#upwards {
  display: none;
}

.upwards {
  position: fixed;
  bottom: 20px;
  left: 50%;
  display: block;
  width: 100px;
  margin: 0 0 0 -50px;
  text-align: center;
}

.upwards .arrow {
  border-color: #e64a19;
}

.upwards:hover .arrow {
  border-color: #000;
}

.icon-container {
  text-align: center;
}

.icon-container a {
  display: block;
}

.icons {
  padding: 0;
  list-style-type: none;
  text-align: center;
  margin: 70px auto 0 auto;
}

.icons > li {
  display: inline-block;
  width: 280px;
  padding: 40px 35px;
  vertical-align: text-top;
  margin: 0 0 0 -5px;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
}

.icons > li:first-child {
  padding-left: 0;
}

.icons > li:last-child {
  padding-right: 0;
}

.icons img {
  display: block;
  margin: 0 auto;
  width: auto;
}

.icons span {
  display: block;
}

.icons .wrapper > div {
  vertical-align: middle;
}

.icons p {
  margin: 0 auto;
  font-size: 19px;
  width: auto;
  line-height: 24px;
  font-weight: 400;
}

.icons li a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

.icons .wrapper {
  height: 60px;
  margin: 0 auto 20px auto;
}

.icon-item {
  text-align: center;
}
.icon-item__icon-container {
  position: relative;
  padding: 0 0 32px 0;
}
.icon-item__icon {
  display: block;
  margin: 0 auto;
  width: 160px;
}
.icon-item__description {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.icon-item__description--small {
  font-size: 16px;
  font-style: normal;
  font-weight: 420;
  line-height: 27.106px;
  letter-spacing: 2.259px;
  text-transform: uppercase;
}

.icon-item--east {
  text-align: right;
}
.icon-item--east .icon-item__icon {
  margin: 0 0 0 auto;
}

.icon-item--decorated .icon-item__icon-container {
  padding: 0 0 90px 0;
}
.icon-item--decorated .icon-item__icon-container:before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 5px;
  background: #E64A19;
  bottom: 40px;
  left: 50%;
  margin: 0 0 0 -50px;
}

.note__icon {
  margin: 0 auto;
}
@media (min-width: 993px) {
  .note__icon {
    margin: 0;
  }
}
.note__header {
  padding: 0 0 20px 0;
}

.std-icon-item {
  margin: 0 auto;
  text-align: center;
}
.std-icon-item__header {
  padding: 0 0 12px 0;
}
.std-icon-item__icon-container {
  padding: 0 0 8px 0;
}
@media (min-width: 1301px) {
  .std-icon-item__icon-container {
    padding-bottom: 16px;
  }
}
.std-icon-item__icon {
  display: block;
  width: 48px;
  margin: 0 auto;
}
@media (min-width: 1301px) {
  .std-icon-item__icon {
    width: 64px;
  }
}

@media (min-width: 651px) {
  .std-icon-items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.std-icon-items > li {
  padding: 20px 0;
}
@media (min-width: 651px) {
  .std-icon-items > li {
    padding: 0 32px;
    min-width: 180px;
    max-width: 180px;
  }
}
@media (min-width: 1301px) {
  .std-icon-items > li {
    padding: 0 64px;
  }
}
.std-icon-items > li:first-child {
  padding-top: 0;
}
.std-icon-items > li:last-child {
  padding-bottom: 0;
}

.side-section__row {
  display: flex;
  padding: 80px 0 0 0;
}
.side-section__row:first-child {
  padding-top: 0;
}

.side-section--east {
  text-align: right;
}
.side-section--east .side-section__row {
  justify-content: flex-end;
}

/***** BUTTONS *****/
.button.type-01 {
  padding: 10px;
  background: none;
  box-shadow: none;
  font-size: 14px;
  letter-spacing: 3px;
}

.button.light {
  color: #fff;
}

.button-container {
  text-align: left;
  padding: 20px 0 0 0;
}

.button-container--higher {
  padding-top: 40px;
}
@media (min-width: 1300px) {
  .button-container--higher {
    padding-top: 64px;
  }
}

.button-container--independent {
  text-align: center;
}

.symbol-container {
  display: inline-block;
}

.button-container.down-arrow {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 20px;
  padding: 0;
}

.std-bookmark {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 20px;
}
.std-bookmark.active {
  font-weight: 700;
  color: #e64a19;
}
.std-bookmark:hover {
  color: #e64a19;
}

.overlayer-button {
  cursor: pointer;
  text-decoration: underline;
}

/***** SECTIONS *****/
.loading-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.dark {
  color: #fff;
}

section.dark,
footer.dark {
  background-color: #000;
}

.dark a {
  color: #fff;
}

.section {
  padding: 0;
  position: relative;
}

.section--nearly-light {
  background-color: #F2F2F2;
}

.section-04 {
  background-image: url("../img/bg-02-darkened.jpg");
}

.section-07 .container, .section-07 .bookmarks-manager-00 .bookmarks-manager__container, .bookmarks-manager-00 .section-07 .bookmarks-manager__container {
  padding: 100px 0 0 0;
}

.section-07 .side-a {
  width: 60%;
}

.section-07 .side-b {
  width: 40%;
}

.for-overlayer {
  display: none !important;
}

.overlayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #fff;
  color: #000;
  overflow-y: auto;
  display: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}

.overlayer .overlayer-inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 50px 0;
}

.overlayer section {
  margin: 0 auto;
  position: relative;
  padding: 0;
}

.overlayer .close-icon {
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 5;
  cursor: pointer;
}

.overlayer .close-icon .symbol {
  width: 28px;
  height: 28px;
}

.overlayer .wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: Teko, sans-serif;
  padding: 0;
  margin: 0;
}

.overlayer .wrapper > div {
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 0;
}

.overlayer .wrapper .date {
  font-size: 48px;
  text-align: center;
  text-indent: 0;
}

.overlayer .overlayer-content h1 {
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 40px 0;
  letter-spacing: 4px;
  line-height: 50px;
}

.overlayer .content {
  padding: 0;
  width: auto;
}

.overlayer .content img {
  display: block;
  width: 100%;
  margin: 60px 0 0 0;
}

.overlayer .overlayer-content h2 {
  padding: 30px 0 0 0;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 30px;
}

.overlayer .overlayer-content p,
.overlayer .overlayer-content ol li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.overlayer .overlayer-content p {
  text-align: justify;
  padding: 5px 0;
  text-indent: 0;
}

.overlayer .vimeo {
  position: relative;
  padding-bottom: 56.75%;
  height: 0;
}

/*.overlayer iframe {
display: block;
margin: 0 auto;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}*/
.overlayer .overlayer-content .single {
  text-align: center;
  text-indent: 0;
  color: #fff;
}

.video-overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7000;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  overflow-x: hidden;
  padding: 0;
}
.video-overlayer .overlayer__wrapper {
  height: 100%;
}
.video-overlayer .overlayer__loading-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6900;
  display: none;
  font-size: 52px;
  color: #fff;
}
.video-overlayer .overlayer__inner {
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  margin: 0 20px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .video-overlayer .overlayer__inner {
    max-width: 900px;
    margin: 10px auto;
  }
}
@media (min-width: 1300px) {
  .video-overlayer .overlayer__inner {
    max-width: 1000px;
  }
}
@media (min-width: 1700px) {
  .video-overlayer .overlayer__inner {
    max-width: 1200px;
  }
}
.video-overlayer .overlayer__close {
  position: absolute;
  top: 0;
  right: 0;
  -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;
}
.video-overlayer .overlayer__content {
  display: none;
  width: 100%;
}

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

.video--flat {
  padding-bottom: 42%;
}

.baguette-box {
  list-style-type: none;
  text-align: left;
  padding: 30px 0;
  width: 752px;
  margin: 0 auto;
}

.baguette-box li {
  display: inline-block;
  padding: 0 20px 20px 0;
  margin: 0 0 0 -4px;
}

.baguette-box li a {
  display: block;
  padding: 7px;
  border: 1px solid #777;
  transition: border-color 0.2s linear;
}

.baguette-box li a:hover {
  border-color: #fff;
}

.baguette-box li img {
  display: block;
  width: 150px;
  height: 100px;
  border: 1px solid #222;
}

.carousel-container {
  overflow: hidden;
  padding: 80px 100px 0 100px;
}

/** RESPONSIVE **/
.fp-responsive #menu {
  display: none;
}

.fp-responsive #info {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.fp-responsive .section .content {
  padding-top: 75px;
  padding-bottom: 75px;
}

.fp-responsive .site-bar {
  position: relative;
  padding: 0 0 40px 0;
}
.fp-responsive .site-bar .content {
  padding-top: 40px;
  padding-bottom: 0;
}

.fp-responsive .fp-section,
.fp-responsive .fp-slide,
.fp-responsive .fp-tableCell {
  height: auto !important;
}

/** RWD1600 **/
/** rwd1400 **/
@media (max-width: 1400px) {
  h1 {
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 50px;
  }
  h2 {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 0;
    text-transform: uppercase;
    font-weight: 700;
  }
  h1.type-02 {
    margin-bottom: 10px;
  }
  #info {
    top: 0;
    right: 0;
  }
  #info p {
    font-size: 18px;
  }
  .fixed-label {
    background: #e64a19;
    padding: 10px 20px;
    font-size: 14px;
  }
  .fixed-label a:before {
    bottom: -1px;
  }
  #menu {
    font-size: 14px;
    bottom: 45px;
  }
  #menu nav {
    width: auto;
    padding: 0 40px;
  }
  #menu nav ul li a {
    padding: 6px 0;
  }
  .progressbar .progress {
    height: 3px;
  }
  .upwards {
    bottom: 10px;
  }
  .section-07 .container, .section-07 .bookmarks-manager-00 .bookmarks-manager__container, .bookmarks-manager-00 .section-07 .bookmarks-manager__container {
    padding: 60px 0 0 0;
  }
  .content {
    width: auto;
    padding: 0 80px 80px 80px;
  }
  .content--no-bottom-padding {
    padding-bottom: 0;
  }
  .overlayer .overlayer-inner {
    width: auto;
    padding: 40px;
  }
  p {
    font-size: 20px;
    line-height: 30px;
  }
  p.type-01 {
    font-size: 24px;
    line-height: 34px;
  }
  p.type-03 {
    font-size: 16px;
  }
  p.type-04 {
    font-size: 16px;
  }
  form .row {
    padding: 15px 0;
  }
  input,
  textarea,
  select {
    padding: 7px 20px;
    font-size: 15px;
  }
  button,
  .button {
    font-size: 20px;
  }
  .arrow {
    border-right: 3px solid #000;
    border-top: 3px solid #000;
    width: 14px;
    height: 14px;
  }
  .icons {
    margin-top: 40px;
  }
  .icon-item .icon-item__icon {
    width: 142px;
  }
  .icon-item .icon-item__description {
    font-size: 18px;
  }
  .icon-item--decorated .icon-item__icon-container {
    padding: 0 0 64px 0;
  }
  .icon-item--decorated .icon-item__icon-container:before {
    width: 88px;
    height: 4px;
    bottom: 30px;
    margin: 0 0 0 -44px;
  }
}
/** RWD1200 **/
/** RWD1120 **/
@media (max-width: 1120px) {
  h1 {
    font-size: 36px;
    line-height: 46px;
  }
  #info p {
    font-size: 15px;
  }
  p {
    font-size: 20px;
    line-height: 28px;
  }
  p.type-02 {
    letter-spacing: 1px;
    padding: 15px 0;
  }
  p.header-paragraph {
    padding-bottom: 0;
  }
  p.type-03 {
    font-size: 16px;
  }
  #menu {
    font-size: 14px;
  }
  input,
  textarea {
    font-size: 17px;
  }
  input:focus,
  textarea:focus {
    outline: none;
  }
  button,
  .button {
    font-size: 20px;
  }
  form .row {
    width: 850px;
  }
  .icons {
    margin-top: 30px;
  }
  .icons > li {
    width: 240px;
    padding: 20px 25px;
  }
  .icons img {
    display: block;
    margin: 0 auto;
    height: 72px;
  }
  .icons p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
  }
  .icons .wrapper {
    height: 50px;
  }
  .boxes {
    width: 900px;
  }
  .boxes article {
    height: 100%;
    width: 250px;
    padding: 0 25px;
  }
  .boxes article .inner > div > div {
    padding: 25px 15px;
  }
  .boxes article h2 {
    font-size: 14px;
    letter-spacing: 0;
  }
  .boxes article p {
    font-size: 16px;
    line-height: 22px;
    padding: 10px 0 0 0;
  }
  .boxes article .price {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1px;
    padding: 0;
  }
  .boxes article .price span {
    font-size: 24px;
    font-weight: 400;
  }
  .footnotes {
    padding: 16px 30px 0 30px;
    font-size: 14px;
  }
  .footnotes li {
    padding: 2px 0;
  }
  .footnotes li span {
    margin: 0 5px 0 0;
  }
}
@media (max-width: 1120px) and (min-width: 992px) {
  .section-07 p.type-04 {
    display: none;
  }
  #form-download {
    padding-top: 20px;
  }
  .checkbox {
    padding: 0;
  }
  #form-download .row {
    width: 550px;
  }
  .main-section__side-content-container {
    min-width: 40%;
    max-width: 40%;
  }
}
/** rwd992 */
@media (max-width: 992px) {
  p {
    padding: 20px 0;
  }
  p.type-02 {
    padding: 20px 0;
  }
  p.header-paragraph {
    padding-bottom: 0;
  }
  input,
  textarea {
    width: 100%;
  }
  form .row {
    width: auto !important;
  }
  .icons {
    margin-top: 30px;
  }
  .icons > li {
    width: 240px;
    display: block;
    margin: 20px auto;
    padding: 20px 25px !important;
  }
  .icons p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
  }
  .icons .wrapper {
    height: 50px;
  }
  .boxes {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .boxes article {
    height: auto;
    width: 314px;
    padding: 25px 0;
    position: static;
    float: none;
    margin: 0 auto;
  }
  .boxes .highest {
    float: none;
    margin: 0 auto !important;
  }
  .boxes article .inner > div > div {
    padding: 25px 15px;
  }
  .footnotes {
    padding: 16px 0 0 0;
  }
  .fp-responsive .section-01 .content {
    padding-bottom: 120px;
  }
  .fp-responsive .site-bar .content {
    padding-bottom: 0;
  }
  .main-section {
    padding: 0;
    text-align: left;
  }
  .main-section .button-container {
    text-align: left;
  }
  .main-section__side-content-container {
    position: relative;
  }
  .content {
    text-align: center;
  }
  .button-container {
    text-align: center;
  }
  p.type-01 {
    margin: 0 auto;
  }
  .main-section {
    padding: 0;
  }
  .main-section__side-content-container {
    position: relative;
    width: auto;
  }
}
/** RWD768px **/
@media (max-width: 768px) {
  p.type-01 {
    width: auto;
  }
  .boxes {
    width: 90%;
  }
  .button {
    padding-left: 32px;
    padding-right: 32px;
  }
  .main-section {
    display: block;
    text-align: center;
  }
  .main-section__main-content-container {
    max-width: 100%;
  }
  .main-section__side-content-container {
    padding: 80px 0 0 0;
    max-width: 100%;
  }
  .main-section .button-container {
    text-align: center;
  }
  .site-bar__logo {
    margin: 0 auto;
  }
  .side-section--east {
    text-align: center;
  }
  .side-section--east .side-section__row {
    justify-content: center;
  }
  .icon-item--east {
    text-align: center;
  }
  .icon-item--east .icon-item__icon {
    margin: 0 auto;
  }
}
/** RWD600 **/
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .section-07 .side-a {
    width: auto;
    float: none;
  }
  .section-07 .side-b {
    width: auto;
    float: none;
    padding: 40px 0 0 0;
  }
}
/** RWD480 **/
@media (max-width: 480px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .side-section__row {
    padding-top: 40px;
  }
  .fp-responsive .section .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .fp-responsive .section-01 .content {
    padding-bottom: 90px;
  }
  .fp-responsive .section-01 .site-bar .content {
    padding-bottom: 0;
  }
  .button-container {
    text-align: center;
  }
  form .button-container {
    text-align: center;
  }
  .boxes {
    width: auto;
  }
  h1 {
    font-size: 24px;
    line-height: 34px;
  }
  .overlayer .overlayer-inner {
    padding: 80px 20px 40px 20px;
  }
  .overlayer .overlayer-content h1 {
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 40px;
  }
}
@media (max-width: 340px) {
  .icons > li {
    width: auto;
    padding: 20px 0 !important;
  }
}
.button-container--type-01 {
  text-align: center;
}
@media (min-width: 993px) {
  .button-container--type-01 {
    text-align: left;
  }
}

.button-container--type-02 {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 0 0 0;
}
.button-container--type-02 .button {
  width: 100%;
  padding: 6px 20px;
}
@media (min-width: 993px) {
  .button-container--type-02 {
    text-align: left;
  }
}

.icon-button {
  display: inline-block;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
}
@media (min-width: 1501px) {
  .icon-button {
    font-size: 18px;
  }
}
.icon-button__wrapper {
  position: relative;
  padding: 6px 32px;
}
@media (min-width: 1501px) {
  .icon-button__wrapper {
    padding: 10px 32px;
  }
}
.icon-button__wrapper:before, .icon-button__wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icon-button__wrapper:before {
  background: #F2F2F2;
}
.icon-button__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 8;
}
.icon-button__icon {
  display: block;
  width: 28px;
  min-width: 28px;
}
.icon-button__icon-container {
  padding: 0 12px 0 0;
}

.form-file-field {
  padding: 0;
}
@media (min-width: 650px) {
  .form-file-field__container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.form-file-field__field-container {
  flex-grow: 1;
}
@media (min-width: 650px) {
  .form-file-field__field-container {
    padding: 0 8px 0 0;
  }
}
.form-file-field__button-container {
  padding: 12px 0 0 0;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 650px) {
  .form-file-field__button-container {
    padding: 0 0 0 8px;
  }
}
.form-file-field input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -999;
}

.form-field {
  display: block;
  width: 100%;
  padding: 0;
}
.form-field__wrapper {
  position: relative;
  display: block;
}
.form-field__inner {
  position: relative;
}
.form-field__decoration {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form-field__header {
  padding: 0 0 5px 0;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 420px) {
  .form-field__header {
    padding: 0 0 8px 0;
  }
}
@media (min-width: 769px) {
  .form-field__header {
    text-align: left;
  }
}
@media (min-width: 1501px) {
  .form-field__header {
    font-size: 16px;
  }
}
.form-field__header--more-space {
  padding: 0 0 16px 0;
}
@media (min-width: 768px) {
  .form-field__header--more-space {
    padding: 0 0 20px 0;
  }
}
.form-field__title {
  color: #000;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  -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: 1501px) {
  .form-field__title {
    font-size: 16px;
  }
}
.form-field__title-optional {
  color: #828282;
}
.form-field__core {
  display: block;
  padding: 10px 8px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
  border: 1px solid #BDBDBD;
  color: #000;
  position: relative;
  font-size: 14px;
  text-align: center;
  z-index: 5;
  font-family: europa, sans-serif;
  font-weight: 400;
  outline: none;
  -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;
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.15);
}
@media (min-width: 769px) {
  .form-field__core {
    text-align: left;
  }
}
@media (min-width: 1501px) {
  .form-field__core {
    padding: 14px;
    font-size: 16px;
  }
}
.form-field__core--static {
  color: #ACACAC;
}
.form-field__core::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .form-field__core::-moz-placeholder, .form-field__core:-ms-input-placeholder {
  color: #ACACAC;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .form-field__core::-moz-placeholder, .form-field__core:-ms-input-placeholder {
    text-align: left;
  }
}
.form-field__field-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field__suffix {
  padding: 0 0 0 12px;
}
.form-field.error .form-field__title {
  color: #DB2B39;
}
.form-field.error .form-field__core {
  border-color: #DB2B39;
}

.form-field--underline .form-field__header {
  padding: 0 0 2px 0;
}
@media (min-width: 420px) {
  .form-field--underline .form-field__header {
    padding: 0 0 5px 0;
  }
}
.form-field--underline .form-field__core {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.form-field--horizontal .form-field__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field--horizontal .form-field__header {
  padding: 0 12px 0 0;
}
.form-field--horizontal .form-field__field-container {
  width: 100%;
}

.indent-section {
  text-align: center;
}
@media (min-width: 993px) {
  .indent-section {
    text-align: left;
  }
}
.indent-section__header {
  padding: 0 0 20px 0;
}
@media (min-width: 1501px) {
  .indent-section__header {
    padding-bottom: 32px;
  }
}
.indent-section__content {
  max-width: 650px;
  margin: 0 auto;
}
.indent-section__content--earlier-bounded {
  max-width: 312px;
}
@media (min-width: 769px) {
  .indent-section__content--earlier-bounded {
    max-width: 650px;
  }
}

.choice-field {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
@media (min-width: 1700px) {
  .choice-field {
    width: 18px;
    height: 18px;
  }
}
.choice-field__core {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  opacity: 0;
}
.choice-field__field {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.choice-field__field:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -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: 1700px) {
  .choice-field__field:before {
    width: 12px;
    height: 12px;
  }
}
.choice-field__core:checked ~ .choice-field__field {
  border-color: #000;
}
.choice-field__core:checked ~ .choice-field__field:before {
  background: #e64a19;
}
.choice-field.choice-field--radio .choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.choice-field.choice-field--radio .choice-field__field:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.choice-field.error .choice-field__field {
  border-color: #DB2B39;
}

.choice-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.choice-item__field {
  padding: 2px 0 0 0;
}
.choice-item__description {
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .choice-item__description {
    font-size: 16px;
    line-height: 22px;
    padding-left: 16px;
  }
}

.std-form__field-container {
  padding: 12px 0;
}
@media (min-width: 769px) {
  .std-form__row:first-child .std-form__row-item {
    padding-top: 0;
  }
}
.std-form__row:first-child .std-form__row-item:first-child {
  padding-top: 0;
}
@media (min-width: 769px) {
  .std-form__row:last-child .std-form__row-item {
    padding-bottom: 0;
  }
}
.std-form__row:last-child .std-form__row-item:last-child {
  padding-bottom: 0;
}
@media (min-width: 769px) {
  .std-form__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.std-form__row-item {
  padding: 12px 0;
}
@media (min-width: 769px) {
  .std-form__row-item {
    padding: 12px;
    flex-grow: 1;
  }
}
.std-form__row-item:first-child {
  padding-left: 0;
}
.std-form__row-item:last-child {
  padding-right: 0;
}
.std-form__extended-button-container {
  padding: 20px 0 0 0;
}
@media (min-width: 769px) {
  .std-form__extended-button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.std-form__button {
  padding: 20px 0 0 0;
}
.std-form__button-container {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 993px) {
  .extended-controls {
    display: flex;
    align-items: center;
  }
}
.extended-controls__item {
  padding: 20px 0 0 0;
}
@media (min-width: 993px) {
  .extended-controls__item {
    padding: 0 20px;
  }
}
.extended-controls__item:first-child {
  padding-top: 0;
}
@media (min-width: 993px) {
  .extended-controls__item:first-child {
    padding-left: 0;
  }
}
@media (min-width: 993px) {
  .extended-controls__item:last-child {
    padding-right: 0;
  }
}

.std-dots-carousel {
  position: relative;
}
.std-dots-carousel__item {
  padding: 0 16px 16px 16px;
}
@media (min-width: 993px) {
  .std-dots-carousel__item {
    padding: 0 0 16px 0;
  }
}
.std-dots-carousel__controls-container {
  padding: 32px 0 0 0;
}
@media (min-width: 993px) {
  .std-dots-carousel__controls-container {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
  }
}

.std-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.std-dots > li {
  padding: 0 8px;
}
.std-dots > li:first-child {
  padding-left: 0;
}
.std-dots > li:last-child {
  padding-right: 0;
}

.std-dot {
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #D9D9D9;
}

.std-dot--active {
  background: #e64a19;
}

.steps-item__current {
  font-weight: 700;
}
.steps-item__all {
  font-weight: 700;
}

@media (min-width: 769px) {
  .image-choice-fields {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
.image-choice-fields__item {
  padding: 20px 0 0 0;
}
@media (min-width: 769px) {
  .image-choice-fields__item {
    padding: 0 16px;
    flex-grow: 1;
  }
}
.image-choice-fields__item:first-child {
  padding-top: 0;
}
@media (min-width: 769px) {
  .image-choice-fields__item:first-child {
    padding-left: 0;
  }
}
@media (min-width: 769px) {
  .image-choice-fields__item:last-child {
    padding-right: 0;
  }
}
.image-choice-fields--column {
  display: block;
}
.image-choice-fields--column .image-choice-fields__item {
  padding: 12px 0 0 0;
  flex-grow: 0;
}
.image-choice-fields--column .image-choice-fields__item:first-child {
  padding-top: 0;
}
.image-choice-fields--column .image-choice-field {
  text-align: left;
}

.image-choice-field {
  overflow: visible;
  position: relative;
  cursor: pointer;
  height: 100%;
  text-align: center;
}
.image-choice-field__wrapper {
  position: relative;
  padding: 20px 60px;
  border: 1px solid #828282;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-choice-field__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #e64a19;
  -webkit-box-shadow: 0px 2px 4px rgba(230, 74, 25, 0.3);
  -moz-box-shadow: 0px 2px 4px rgba(230, 74, 25, 0.3);
  box-shadow: 0px 2px 4px rgba(230, 74, 25, 0.3);
  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;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-choice-field__core:checked ~ .image-choice-field__wrapper {
  border-color: transparent;
}
.image-choice-field__core:checked ~ .image-choice-field__wrapper:before {
  opacity: 1;
}
.image-choice-field__core:checked ~ .image-choice-field__wrapper .image-choice-field__description {
  color: #e64a19;
}
.image-choice-field__core:checked ~ .image-choice-field__field {
  opacity: 1;
}
.image-choice-field__field {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 24px;
  height: 24px;
  background: url("/img/icons/icon-checked-primary.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
.image-choice-field__inner {
  position: relative;
  z-index: 4;
}
.image-choice-field__core {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: -2;
}
.image-choice-field__image {
  margin: 0 auto;
  display: block;
  width: 140px;
}
@media (min-width: 993px) {
  .image-choice-field__image {
    width: 160px;
  }
}
.image-choice-field__description-container {
  padding: 16px 0 0 0;
}
.image-choice-field__description {
  font-size: 16px;
  -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: 1501px) {
  .image-choice-field__description {
    font-size: 18px;
  }
}

.radio-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.radio-list__item {
  padding: 10px 0;
}
.radio-list__item:first-child {
  padding-top: 0;
}
.radio-list__item:last-child {
  padding-bottom: 0;
}
.radio-list__label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-list__core {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.radio-list__core:checked + .radio-list__indicator {
  border-color: #e64a19;
  background-color: #e64a19;
  box-shadow: inset 0 0 0 3px #fff;
}
.radio-list__indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #828282;
  position: relative;
  margin-right: 16px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.radio-list__text {
  font-size: 16px;
  text-align: left;
}
@media (min-width: 1501px) {
  .radio-list__text {
    font-size: 18px;
  }
}

.carousel-form__info-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .carousel-form__info {
    text-align: right;
  }
}

.spinner {
  width: 32px;
  height: 32px;
  background: url("/img/icons/varia/icon-loader.svg") no-repeat center;
  background-size: contain;
  margin: 0 auto;
  animation: Rotate infinite linear 2s;
}

.spinner--light {
  background-image: url("/img/icons/varia/icon-loader-light.svg");
}

.spinner--small {
  width: 20px;
  height: 20px;
}

.button-wrapper {
  display: inline-block;
  position: relative;
}
.button-wrapper__inner {
  position: relative;
}
.button-wrapper__spinner {
  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;
  position: absolute;
  top: 50%;
  left: 100%;
  padding: 0 0 0 10px;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  z-index: 2;
  text-align: center;
}

.small-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (min-width: 769px) {
  .small-title {
    font-size: 16px;
  }
}
@media (min-width: 1701px) {
  .small-title {
    font-size: 18px;
  }
}

.full-section__header {
  padding: 0 0 64px 0;
}
@media (min-width: 651px) {
  .full-section__header {
    padding-bottom: 80px;
  }
}
@media (min-width: 993px) {
  .full-section__header {
    padding-bottom: 100px;
  }
}
@media (min-width: 1301px) {
  .full-section__header {
    padding-bottom: 120px;
  }
}
@media (min-height: 780px) {
  .full-section__header {
    padding-bottom: 148px;
  }
}
@media (min-height: 860px) {
  .full-section__header {
    padding-bottom: 180px;
  }
}
.full-section__footer {
  padding: 64px 0 0 0;
}
@media (min-width: 651px) {
  .full-section__footer {
    padding-top: 80px;
  }
}
@media (min-width: 993px) {
  .full-section__footer {
    padding-top: 100px;
  }
}
@media (min-width: 1301px) {
  .full-section__footer {
    padding-top: 120px;
  }
}
@media (min-height: 780px) {
  .full-section__footer {
    padding-top: 148px;
  }
}
@media (min-height: 860px) {
  .full-section__footer {
    padding-top: 180px;
  }
}

@media (min-width: 992px) {
  .section-13 {
    background-image: url("/img/bg/bg-contact.jpg");
    background-position: center right;
    background-size: cover;
  }
}
@media (min-width: 992px) {
  .moved-west {
    padding: 0 20% 0 0;
  }
}
@media (min-width: 1300px) {
  .moved-west {
    padding: 0 32% 0 0;
  }
}

.header p {
  padding: 0;
}

/* new */
p.type-01--small {
  font-size: 20px;
  font-style: normal;
  font-weight: 390;
  line-height: 30px;
}

.std-header--small {
  font-size: 40px;
  font-style: normal;
  font-weight: 450;
  line-height: 43px;
  letter-spacing: 2.824px;
  text-transform: uppercase;
}

.smallest-pretitle {
  color: #E64A19;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.smallest-pretitle--space-above {
  margin-top: 48px;
}

.smallest-title {
  color: #FFF;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .std-image {
    margin: 0 !important;
  }
}
.std-image--space-above {
  padding-top: 18px;
}
.std-image--space-below {
  padding-bottom: 28px;
}
.std-image--small-logo {
  width: 253px;
  height: 37px;
}
.std-image--big-logo {
  width: 100%;
  height: auto;
}
.std-image--medium-logo {
  width: 205px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .side-section__row--more-space-above {
    margin-top: 50px;
  }
}

.two-columns-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .two-columns-container {
    flex-direction: row;
    gap: 64px;
  }
}
.two-columns-container__column:first-child {
  width: 100%;
}
@media (min-width: 768px) {
  .two-columns-container__column:first-child {
    width: 30%;
  }
}
.two-columns-container__column:last-child {
  width: 100%;
}
@media (min-width: 768px) {
  .two-columns-container__column:last-child {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .two-columns-container__column--mobile-center {
    display: flex;
    justify-content: center;
  }
}
.two-columns-container__column--hide-mobile {
  display: none;
}
@media (min-width: 768px) {
  .two-columns-container__column--hide-mobile {
    display: block;
  }
}
.two-columns-container__column-main {
  width: 100%;
}
@media (min-width: 1100px) {
  .two-columns-container__column-main {
    flex: 0 0 calc(66.66% - 14px);
    max-width: calc(66.66% - 14px);
  }
}
.two-columns-container__column-main--special-space {
  padding: 4px;
  box-sizing: border-box;
}
.two-columns-container__column-side {
  width: 100%;
}
@media (min-width: 1100px) {
  .two-columns-container__column-side {
    flex: 0 0 calc(33.33% - 14px);
    max-width: calc(33.33% - 14px);
  }
}
.two-columns-container__column-side--special-space {
  padding: 4px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .two-columns-container--row-from-desktop {
    flex-direction: column;
    gap: 32px;
  }
}
@media (min-width: 1100px) {
  .two-columns-container--row-from-desktop {
    flex-direction: row;
    gap: 32px;
  }
}

.std-text--medium {
  color: #000;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 390;
  line-height: normal;
}
@media (min-width: 768px) {
  .std-text--medium {
    font-size: 24px;
  }
}
.std-text--underline {
  text-decoration: underline;
}
.std-text--bold {
  font-weight: 500;
}
.std-text--light {
  color: #fff;
}
.std-text--space-above {
  margin-top: 24px;
}
.std-text--small-space-above {
  margin-top: 14px;
}
.std-text--small p, .std-text--small {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
@media (max-width: 768px) {
  .std-text--mobile-center {
    text-align: center;
  }
}

.button-container--small-space-above {
  margin-top: 14px;
}

.image-choice-field__description--small {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .image-choice-field__wrapper--v-venter {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .image-choice-field__wrapper--v-venter .image-choice-field__description-container {
    padding: 0;
  }
}

.extended-icon-header__content-container--no-spaces {
  padding: 0;
}

.subsection-space-above {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .subsection-space-above {
    margin-top: 120px;
  }
}
@media (min-width: 1100px) {
  .subsection-space-above {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  .subsection-space-above {
    margin-top: 150px;
  }
}

.subsection-space-below {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .subsection-mobile-spaces {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .subsection-tablet-spaces {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 992px) {
  .subsection-tablet-spaces {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.std-table {
  background: #FFF;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 20px;
}
@media (min-width: 992px) {
  .std-table {
    margin: 20px 0;
  }
}
.std-table__row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #B7B7B7;
  width: 100%;
}
.std-table__row > div {
  padding: 22px;
}
.std-table__row > div:nth-child(1), .std-table__row > div:nth-child(2) {
  border-right: 1px solid #B7B7B7;
}
.std-table__row > div:nth-child(1) {
  width: 30%;
}
.std-table__row > div:nth-child(2) {
  width: 30%;
}
.std-table__row > div:nth-child(3) {
  width: 16%;
}
.std-table__row > div:nth-child(4) {
  width: 6%;
}
.std-table__row > div:nth-child(5) {
  width: 18%;
}
.std-table__row:first-child > div {
  padding: 16px;
  border-right: none;
  background-color: #F2F2F2;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .std-table__row:first-child > div {
    font-size: 19px;
  }
}
.std-table__row:first-child > div:nth-child(4) {
  font-weight: 400;
}

@media (min-width: 992px) {
  .scrollable-content {
    max-height: 50vh;
    position: relative;
  }
}
.scrollable-content__inner {
  margin: 0 0 80px 0;
}
@media (min-width: 992px) {
  .scrollable-content__inner {
    margin: 10px;
  }
}

.simple-picture__picture {
  max-width: unset;
}
.simple-picture__picture--icon {
  width: 109px;
  height: 105px;
}

.tile--to-left {
  text-align: left;
}

.tile__wrapper--bigger {
  padding: 35px 20px;
}
@media (min-width: 768px) {
  .tile__wrapper--bigger {
    padding: 54px 62px 40px 70px;
  }
}
.tile__wrapper--smaller {
  padding: 35px 20px;
}
@media (min-width: 768px) {
  .tile__wrapper--smaller {
    padding: 66px 80px 50px 26px;
  }
}

.simple-title--big {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .simple-title--big {
    font-size: 32px;
    line-height: normal;
  }
}
.simple-title--bigger {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media (min-width: 992px) {
  .simple-title--bigger {
    font-size: 41px;
    line-height: normal;
  }
}
@media (max-width: 992px) {
  .simple-title--mobile-center {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pictured-section__container--reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .pictured-section__container--reverse-mobile .pictured-section__picture-container {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .pictured-section__container--to-left {
    justify-content: left;
  }
}

.pictured-section__picture-wrapper--simple {
  box-shadow: unset;
}
@media (min-width: 1300px) {
  .pictured-section__picture-wrapper--simple {
    width: 395px;
  }
}

.button-container--small .button {
  font-size: 17px;
  font-style: normal;
  font-weight: 390;
  line-height: normal;
  letter-spacing: 1px;
}

.bounded-section--small-space-above {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .only-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

.table-tiles-container {
  margin: 20px 0 50px 0;
}

.table-tile {
  background: #FFF;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
  margin: 0 40px 40px 40px;
  font-size: 16px;
}
.table-tile:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .table-tile {
    margin: 0 20px 20px 20px;
  }
}
.table-tile > div {
  padding: 20px;
}
.table-tile > div span {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.table-tile > div:nth-child(odd) {
  background-color: #F2F2F2;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.scrollable-content .simple-header {
  padding: 0 0 32px 0;
}

.image-ratio {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.image-ratio::before {
  display: block;
  content: "";
  padding-top: 70%;
}
.image-ratio__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.image-ratio--squere::before {
  padding-top: 105%;
}
.image-ratio--box-shadow {
  filter: drop-shadow(2px 7px 4px rgba(0, 0, 0, 0.1098039216));
}

.wrapper-box {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
  align-items: stretch;
}
@media (min-width: 650px) {
  .wrapper-box {
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1100px) {
  .wrapper-box {
    justify-content: space-between;
  }
}

.box-info {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (min-width: 650px) {
  .box-info {
    flex: 0 0 50%;
    margin-right: 30px;
    max-width: calc(50% - 30px);
  }
  .box-info:nth-child(2n) {
    margin-right: 0;
  }
  .box-info:nth-child(1) {
    margin-bottom: 60px;
  }
  .box-info:nth-child(2) {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .box-info {
    flex: 0 0 50%;
    margin-right: 80px;
    max-width: calc(50% - 80px);
  }
  .box-info:nth-child(2n) {
    margin-right: 0;
  }
  .box-info:nth-child(1) {
    margin-bottom: 60px;
  }
  .box-info:nth-child(2) {
    margin-bottom: 60px;
  }
}
@media (min-width: 1100px) {
  .box-info {
    flex: 0 0 25%;
    margin-right: 30px;
    max-width: calc(25% - 23px);
  }
  .box-info:nth-child(2n) {
    margin-right: 30px;
  }
  .box-info:nth-child(4n) {
    margin-right: 0;
  }
  .box-info:nth-child(1) {
    margin-bottom: 0;
  }
  .box-info:nth-child(2) {
    margin-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .box-info {
    margin-right: 80px;
    max-width: calc(25% - 60px);
  }
  .box-info:nth-child(2n) {
    margin-right: 80px;
  }
  .box-info:nth-child(4n) {
    margin-right: 0;
  }
}
.box-info__icon {
  position: absolute;
  top: 10px;
  left: 10px;
}
.box-info__content {
  margin-top: 20px;
  flex: 1;
}
.box-info__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 420;
  line-height: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.box-info__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 390;
  line-height: 22px;
  text-align: center;
}
.box-info__text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 390;
  line-height: 22px;
  text-align: center;
  padding-bottom: 0;
}

.social-media-link {
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
  z-index: 1;
  padding: 10px;
  box-sizing: border-box;
}
.social-media-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s linear;
}
.social-media-link:hover::before {
  transform: scale(1.15);
}
.social-media-link--linkedin::before {
  background-image: url("/img/icons/social-media/linked-in.svg");
}

.info-box {
  background-color: #fff;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-box__wrapper {
  padding: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1100px) {
  .info-box__wrapper--start-from-desktop {
    justify-content: flex-start;
  }
}
.info-box--blue {
  background-color: #003471;
  box-shadow: none;
  margin-left: 0;
  color: #fff;
}

.info-lead {
  max-width: 500px;
  text-align: center;
}
@media (min-width: 1100px) {
  .info-lead {
    max-width: 560px;
  }
}
.info-lead__icon-wrapper {
  padding-bottom: 16px;
}
.info-lead__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.info-lead__icon--large {
  width: 48px;
  height: 48px;
}
.info-lead__title {
  padding-bottom: 16px;
}
.info-lead__content {
  padding-bottom: 16px;
}
.info-lead__contact {
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .info-lead__contact {
    flex-direction: row;
    gap: 16px;
  }
}
.info-lead--center {
  text-align: center;
}
@media (min-width: 1100px) {
  .info-lead--start-from-desktop {
    text-align: left;
  }
}

.link-with-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #e64a19;
  font-size: 14px;
}
@media (min-width: 768px) {
  .link-with-icon {
    font-size: 16px;
  }
}
.link-with-icon__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.link-with-icon span {
  text-decoration: underline;
}

span.display-block {
  display: block;
}
