@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: .8; }
  100% {
    transform: scaleX(1);
    opacity: 1; } }
@keyframes CircleFlash {
  0% {
    transform: scale3d(0, 0, 0); }
  50% {
    transform: scale3d(3, 3, 3); }
  100% {
    transform: scale3d(0, 0, 0); } }
@keyframes CirclePulse {
  0% {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.2, 1.2, 1.2); }
  100% {
    transform: scale3d(1, 1, 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 {
  position: relative; }
  .container:after {
    content: '';
    display: block;
    clear: both; }
  .container .column {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .container .col-9 {
    width: 75%; }
  .container .col-8 {
    width: 66.6666666667%; }
  .container .col-6 {
    width: 50%; }
  .container .col-4 {
    width: 33.3333333333%; }
  .container .col-3 {
    width: 25%; }
  .container .col-2 {
    width: 16.6666666667%; }
  .container .middle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    margin: 0 0 0 -25%; }

.container--reverse .column {
  float: right; }

.container--same-height-columns {
  position: relative; }
  .container--same-height-columns .column {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%; }
  .container--same-height-columns .column--highest {
    position: static; }

/***** MODULES *****/
.dropdown {
  position: relative;
  display: block; }
  .dropdown .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 .dropdown__list-container {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    z-index: 10;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .dropdown .dropdown__list > li {
    display: block; }
  .dropdown .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; }
  .bookmarks-manager-00 .bookmarks-manager__main-container > .column {
    float: none;
    width: auto; }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__main-container > .column {
        float: left; } }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__main-container > .column.col-4 {
        width: 33.33%; } }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__main-container > .column.col-8 {
        width: 66.66%; } }
  .bookmarks-manager-00 .bookmarks-manager__inner {
    position: relative; }
  .bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
    padding: 0 0 10px 0; }
    @media (min-width: 420px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
        padding-bottom: 15px; } }
    @media (min-width: 650px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
        padding-bottom: 25px; } }
    @media (min-width: 992px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
        padding: 0; } }
  .bookmarks-manager-00 .bookmarks-manager__bookmarks {
    text-align: center;
    counter-reset: bookmarks; }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmarks {
        text-align: left; } }
    .bookmarks-manager-00 .bookmarks-manager__bookmarks .numered-bookmark__number:before {
      content: counters(bookmarks,".",decimal-leading-zero) "";
      counter-increment: bookmarks; }
  .bookmarks-manager-00 .bookmarks-manager__bookmark-container {
    display: block;
    padding: 15px 0; }
    @media (min-width: 1100px) {
      .bookmarks-manager-00 .bookmarks-manager__bookmark-container {
        padding: 8px 0; } }
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container:first-child {
      padding-left: 0;
      padding-top: 0; }
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container:last-child {
      padding-right: 0; }
    .bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
      display: none;
      padding: 20px 0 30px 0; }
  .bookmarks-manager-00 .bookmarks-manager__bookmark {
    cursor: pointer; }
  .bookmarks-manager-00 .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: $rwd-1100) {
    		padding: 40px 0 0 0;
    		}
    
    		@media (min-width: $rwd-1300) {
    		padding: 60px 0 0 0;
    		}
    
    		@media (min-width: $rwd-1700) {
    		padding-top: 80px;
    		}**/ }
    @media (min-width: 768px) {
      .bookmarks-manager-00 .bookmarks-manager__content-container {
        display: block;
        padding: 0; } }
  .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; }

.numered-bookmark {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  -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: 1500px) {
    .numered-bookmark {
      font-size: 18px; } }
  .numered-bookmark__inner {
    position: relative; }
    @media (min-width: 1100px) {
      .numered-bookmark__inner {
        padding: 0 0 0 30px; } }
    @media (min-width: 1500px) {
      .numered-bookmark__inner {
        padding-left: 36px; } }
  .numered-bookmark__number-container {
    padding: 0 0 8px 0; }
    @media (min-width: 1100px) {
      .numered-bookmark__number-container {
        position: absolute;
        top: 0;
        left: 0;
        padding: 2px 0 0 0; } }
  .numered-bookmark__number {
    color: #62E6AC;
    font-size: 12px; }
    @media (min-width: 1500px) {
      .numered-bookmark__number {
        font-size: 14px; } }
  .numered-bookmark:hover {
    color: #FF8C5F; }
  .numered-bookmark.active {
    color: #62E6AC; }

.numered-bookmark--medium-10 .numered-bookmark__number {
  color: #FF8C5F; }

.numered-bookmark--always-expanded {
  text-align: left; }
  .numered-bookmark--always-expanded .numered-bookmark__inner {
    padding: 0 0 0 30px; }
  .numered-bookmark--always-expanded .numered-bookmark__number-container {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px 0 0 0; }

@media (min-width: 650px) {
  .numered-bookmark--large {
    font-size: 18px; } }
@media (min-width: 1500px) {
  .numered-bookmark--large {
    font-size: 20px; } }
@media (min-width: 1700px) {
  .numered-bookmark--large {
    font-size: 22px; } }
@media (min-width: 650px) {
  .numered-bookmark--large .numered-bookmark__inner {
    padding-left: 36px; } }
@media (min-width: 1700px) {
  .numered-bookmark--large .numered-bookmark__inner {
    padding-left: 42px; } }
@media (min-width: 650px) {
  .numered-bookmark--large .numered-bookmark__number {
    font-size: 13px; } }
@media (min-width: 1500px) {
  .numered-bookmark--large .numered-bookmark__number {
    font-size: 14px; } }
@media (min-width: 1700px) {
  .numered-bookmark--large .numered-bookmark__number {
    font-size: 15px; } }

.details-list {
  list-style-type: none; }
  .details-list__item {
    display: block; }
  .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: block; }
.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: 9970;
  height: 100%;
  display: block;
  text-align: left;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff; }
  .slide-menu .slide-menu__wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden; }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__wrapper {
        height: 100%; } }
  .slide-menu .slide-menu__inner {
    padding: 80px 0 0 0; }
    @media (min-width: 380px) {
      .slide-menu .slide-menu__inner {
        padding: 100px 0 0 0; } }
    @media (min-width: 650px) {
      .slide-menu .slide-menu__inner {
        padding: 140px 0 0 0; } }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__inner {
        padding: 40px 0; } }
  .slide-menu .slide-menu__header {
    padding: 0 0 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 500; }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__header {
        padding: 30px 40px; } }
    @media (min-width: 1700px) {
      .slide-menu .slide-menu__header {
        padding: 40px 80px; } }
  @media (min-width: 992px) {
    .slide-menu .slide-menu__content {
      padding: 0 80px; } }
  @media (min-width: 1500px) {
    .slide-menu .slide-menu__content {
      padding: 0 10%; } }
  .slide-menu .slide-menu__footer {
    display: none; }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__footer {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 30px 40px 40px 40px; } }
    @media (min-width: 1700px) {
      .slide-menu .slide-menu__footer {
        padding: 40px 80px; } }
  .slide-menu .slide-menu__content-inner {
    position: relative;
    z-index: 200;
    padding: 0 20px;
    max-width: 420px;
    margin: 0 auto; }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__content-inner {
        max-width: 100%;
        margin: 0; } }
    @media (min-width: 1500px) {
      .slide-menu .slide-menu__content-inner {
        max-width: 420px;
        margin: 0 auto; } }
  .slide-menu .slide-menu__menu-container {
    padding: 0 40px; }
    @media (min-width: 992px) {
      .slide-menu .slide-menu__menu-container {
        max-width: 320px;
        margin: 0 auto; } }
  @media (min-width: 992px) {
    .slide-menu .slide-menu__main-container {
      padding: 0 0 0 50%; } }
  .slide-menu .slide-menu__main-container > .column {
    float: none;
    width: auto; }
    .slide-menu .slide-menu__main-container > .column:nth-child(1) {
      padding: 0 20px; }
      @media (min-width: 380px) {
        .slide-menu .slide-menu__main-container > .column:nth-child(1) {
          padding: 0 0 40px 0; } }
      @media (min-width: 420px) {
        .slide-menu .slide-menu__main-container > .column:nth-child(1) {
          padding: 0 40px 40px 40px; } }
      @media (min-width: 650px) {
        .slide-menu .slide-menu__main-container > .column:nth-child(1) {
          padding-bottom: 60px; } }
      @media (min-width: 992px) {
        .slide-menu .slide-menu__main-container > .column:nth-child(1) {
          padding: 0; } }
    .slide-menu .slide-menu__main-container > .column:nth-child(2) {
      padding: 100px 0 40px 0;
      position: relative; }
      @media (min-width: 992px) {
        .slide-menu .slide-menu__main-container > .column:nth-child(2) {
          position: absolute;
          top: 0;
          left: 0;
          width: 50%;
          height: 100%;
          padding: 0; } }
      .slide-menu .slide-menu__main-container > .column:nth-child(2):before {
        content: '';
        display: block;
        width: 200%;
        padding: 0 0 160% 0;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate3d(-50%, 0, 0);
        -moz-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        background: url("../img/shapes/morphic-medium-02.svg") no-repeat top center;
        background-size: contain; }
        @media (min-width: 992px) {
          .slide-menu .slide-menu__main-container > .column:nth-child(2):before {
            left: 0;
            -webkit-transform: translate3d(-50%, -50%, 0);
            -moz-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
            background-position: bottom center; } }
        @media (min-width: 1100px) {
          .slide-menu .slide-menu__main-container > .column:nth-child(2):before {
            background-position: center; } }
  .slide-menu .slide-menu__close-container {
    display: none;
    cursor: pointer; }
    @media (min-width: 1300px) {
      .slide-menu .slide-menu__close-container {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 700; } }
    @media (min-width: 1700px) {
      .slide-menu .slide-menu__close-container {
        top: 40px;
        right: 40px; } }
    .slide-menu .slide-menu__close-container:hover .slide-menu__close {
      -webkit-transform: rotate(270deg);
      -moz-transform: rotate(270deg);
      transform: rotate(270deg); }
  .slide-menu .slide-menu__close {
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }

/** 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); }
  .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; }

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9997;
  background: rgba(0, 0, 0, 0.6);
  color: #000;
  overflow-y: auto;
  padding: 0; }
  .overlayer > .wrapper > div {
    vertical-align: top; }
  .overlayer .overlayer__loading-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6900;
    display: none;
    font-size: 36px;
    color: #fff; }
  .overlayer .overlayer__inner {
    margin: 0 auto;
    position: relative;
    padding: 50px 20px;
    max-width: 100%;
    background: #fff;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    @media (min-width: 480px) {
      .overlayer .overlayer__inner {
        padding: 70px 40px; } }
    @media (min-width: 768px) {
      .overlayer .overlayer__inner {
        margin: 70px 40px; } }
    @media (min-width: 992px) {
      .overlayer .overlayer__inner {
        padding: 80px 60px; } }
    @media (min-width: 1100px) {
      .overlayer .overlayer__inner {
        margin: 70px 60px; } }
    @media (min-width: 1300px) {
      .overlayer .overlayer__inner {
        max-width: 1100px;
        margin: 60px auto;
        padding: 80px; } }
    @media (min-width: 1500px) {
      .overlayer .overlayer__inner {
        max-width: 1200px; } }
  .overlayer .overlayer__close {
    position: absolute;
    top: 15px;
    right: 15px;
    -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; }
    @media (min-width: 480px) {
      .overlayer .overlayer__close {
        top: 20px; } }
    @media (min-width: 768px) {
      .overlayer .overlayer__close {
        top: 20px;
        right: 30px; } }
    @media (min-width: 1300px) {
      .overlayer .overlayer__close {
        top: 30px;
        right: 30px; } }
  .overlayer .overlayer__content {
    display: none;
    width: 100%;
    position: relative;
    z-index: 100; }

.overlayer-01 .overlayer__inner {
  padding: 80px 20px 60px 20px; }
  @media (min-width: 650px) {
    .overlayer-01 .overlayer__inner {
      padding: 100px 40px 60px 40px; } }
  @media (min-width: 768px) {
    .overlayer-01 .overlayer__inner {
      padding: 100px 60px 80px 60px; } }
  @media (min-width: 1300px) {
    .overlayer-01 .overlayer__inner {
      padding: 100px 80px 80px 80px; } }
  @media (min-width: 1500px) {
    .overlayer-01 .overlayer__inner {
      padding: 100px; } }
  .overlayer-01 .overlayer__inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: url("../img/shapes/morphic-stroke-grey-09.svg") no-repeat top left;
    background-size: contain; }
    @media (min-width: 650px) {
      .overlayer-01 .overlayer__inner:before {
        width: 60%; } }
    @media (min-width: 768px) {
      .overlayer-01 .overlayer__inner:before {
        width: 50%; } }
    @media (min-width: 1300px) {
      .overlayer-01 .overlayer__inner:before {
        width: 50%; } }

.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999; }

/***** ICONS *****/
/* icon hamburger */
.icon-hamburger {
  display: block;
  width: 24px;
  position: relative; }
  .icon-hamburger__inner {
    height: 17px;
    position: relative;
    overflow: hidden; }
    .icon-hamburger__inner > div {
      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;
      z-index: 10; }
    .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: #62E6AC;
      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--decorated {
  width: 18px; }
  .icon-hamburger--decorated:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
  .icon-hamburger--decorated:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 39px;
    height: 39px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #000;
    opacity: 0;
    -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--decorated .icon-hamburger__inner {
    height: 14px; }
    .icon-hamburger--decorated .icon-hamburger__inner > div:nth-child(1),
    .icon-hamburger--decorated .icon-hamburger__inner > div:nth-child(4) {
      top: 0; }
    .icon-hamburger--decorated .icon-hamburger__inner > div:nth-child(2),
    .icon-hamburger--decorated .icon-hamburger__inner > div:nth-child(5) {
      top: 6px; }
    .icon-hamburger--decorated .icon-hamburger__inner > div:nth-child(3),
    .icon-hamburger--decorated .icon-hamburger__inner > div:nth-child(6) {
      top: 12px; }
    .icon-hamburger--decorated .icon-hamburger__inner > .icon-hamburger__hover-item {
      background: #fff; }
  .icon-hamburger--decorated:hover:after, .icon-hamburger--decorated:focus:after {
    opacity: 1; }

.icon-hamburger--narrow {
  width: 16px; }

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible; }
  .icon-hamburger.open .icon-hamburger__inner > div {
    background: #62E6AC; }
  .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);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
    opacity: 0;
    left: -100%;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .icon-hamburger.open .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;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }

.icon-hamburger--medium .icon-hamburger__inner > div {
  background: #62E6AC; }

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff; }
.icon-hamburger--light .icon-hamburger__inner > .icon-hamburger__hover-item {
  background: #62E6AC; }

.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-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: #EAEAEA;
      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: #FF8C5F; } }
    .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: #62E6AC;
      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: #62E6AC; }

/* icon arrow */
.icon-arrow {
  position: relative;
  width: 14px;
  height: 14px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.icon-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px; }

.icon-arrow--up {
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 3px; }

.icon-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px; }

.icon-arrow--down {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -3px; }

.icon-arrow--small {
  width: 8px;
  height: 8px;
  border-width: 2px; }

.icon-arrow--another-small {
  width: 6px;
  height: 6px;
  border-width: 2px; }

.icon-arrow--very-small {
  width: 7px;
  height: 7px;
  border-width: 2px; }
  @media (min-width: 1500px) {
    .icon-arrow--very-small {
      width: 8px;
      height: 8px; } }

.icon-arrow--extra-small {
  width: 6px;
  height: 6px;
  border-width: 2px; }

.icon-arrow--left.icon-arrow--small {
  left: 2px; }

.icon-arrow--up.icon-arrow--small {
  top: 2px; }

.icon-arrow--right.icon-arrow--small {
  left: -2px; }

.icon-arrow--down.icon-arrow--small {
  top: -2px; }

.icon-arrow--large {
  width: 18px;
  height: 18px;
  border-width: 3px; }

.icon-arrow--dark {
  border-color: #EAEAEA; }

.icon-arrow--dark-grey {
  border-color: #EAEAEA; }

.icon-arrow--darker-grey {
  border-color: #575756; }

.icon-arrow--dark-grey-02 {
  border-color: #828282; }

.icon-arrow--medium {
  border-color: #62E6AC; }

.icon-arrow--medium-10 {
  border-color: #FF8C5F; }

.icon-arrow--light {
  border-color: #fff; }

/* icon long arrow */
.icon-long-arrow {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/icons/icon-long-arrow-down.svg") no-repeat center;
  background-size: contain; }

.icon-long-arrow--light {
  background-image: url("../img/icons/icon-long-arrow-down-light.svg"); }

.icon-long-arrow--medium {
  background-image: url("../img/icons/icon-long-arrow-down-medium.svg"); }

.icon-long-arrow--medium-10 {
  background-image: url("../img/icons/icon-long-arrow-down-medium-10.svg"); }

.icon-long-arrow--right {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.icon-long-arrow--left {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg); }

/* 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: #62E6AC; }

.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: #62E6AC; }

.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: #62E6AC; }

.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: #62E6AC; }

.icon-triangular-arrow-down--light {
  border-top-color: #fff; }

/* icon cross */
.icon-plus {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden; }
  .icon-plus:before, .icon-plus:after {
    content: '';
    position: absolute;
    background: #000;
    display: block; }
  .icon-plus:before {
    width: 100%;
    left: 0;
    top: 50%;
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus:after {
    width: 2px;
    top: 0;
    left: 50%;
    margin: 0 0 0 -1px;
    height: 100%; }

.icon-plus--very-small {
  width: 12px;
  height: 12px; }

.icon-plus--darker-grey:before, .icon-plus--darker-grey:after {
  background: #575756; }

.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--large-thin:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--large-thin:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--small {
  width: 16px;
  height: 16px; }
  .icon-plus--small:before {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-plus--small:after {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-plus--light:before, .icon-plus--light:after {
  background: #fff; }

@media (min-width: 768px) {
  .icon-plus--light-after-dark:before, .icon-plus--light-after-dark:after {
    background: #fff; } }

.icon-plus--medium:before, .icon-plus--medium:after {
  background: #62E6AC; }

.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--light:before {
  background: #fff; }

/* extended icon */
.extended-icon, .icon-facebook, .icon-phone, .icon-youtube, .icon-instagram, .icon-twitter {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  text-indent: -10000px; }
  .extended-icon:before, .icon-facebook:before, .icon-phone:before, .icon-youtube:before, .icon-instagram:before, .icon-twitter:before, .extended-icon:after, .icon-facebook:after, .icon-phone:after, .icon-youtube:after, .icon-instagram:after, .icon-twitter:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 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; }
  .extended-icon:after, .icon-facebook:after, .icon-phone:after, .icon-youtube:after, .icon-instagram:after, .icon-twitter:after {
    opacity: 0; }
  .extended-icon:hover:before, .icon-facebook:hover:before, .icon-phone:hover:before, .icon-youtube:hover:before, .icon-instagram:hover:before, .icon-twitter:hover:before {
    opacity: 0; }
  .extended-icon:hover:after, .icon-facebook:hover:after, .icon-phone:hover:after, .icon-youtube:hover:after, .icon-instagram:hover:after, .icon-twitter:hover:after {
    opacity: 1; }

.simple-extended-icon {
  position: relative; }
  .simple-extended-icon__base {
    position: relative;
    z-index: 3;
    -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__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    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; }

.icon-facebook {
  width: 24px;
  height: 24px; }
  @media (min-width: 1300px) {
    .icon-facebook {
      width: 28px;
      height: 28px; } }
  @media (min-width: 1700px) {
    .icon-facebook {
      width: 32px;
      height: 32px; } }
  .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-medium.svg"); }

.icon-facebook--light:before {
  background-image: url("../img/icons/social-media/icon-facebook-light.svg"); }
.icon-facebook--light:after {
  background-image: url("../img/icons/social-media/icon-facebook-medium.svg"); }

.icon-facebook--large {
  width: 32px;
  height: 32px; }
  @media (min-width: 768px) {
    .icon-facebook--large {
      width: 38px;
      height: 38px; } }

.icon-phone {
  width: 24px;
  height: 24px; }
  @media (min-width: 1300px) {
    .icon-phone {
      width: 28px;
      height: 28px; } }
  @media (min-width: 1700px) {
    .icon-phone {
      width: 32px;
      height: 32px; } }
  .icon-phone:before {
    background-image: url("../img/icons/icon-phone.svg"); }
  .icon-phone:after {
    background-image: url("../img/icons/icon-phone-medium.svg"); }

.icon-phone--light:before {
  background-image: url("../img/icons/icon-phone-light.svg"); }
.icon-phone--light:after {
  background-image: url("../img/icons/icon-phone-medium.svg"); }

.icon-phone--large {
  width: 32px;
  height: 32px; }
  @media (min-width: 768px) {
    .icon-phone--large {
      width: 38px;
      height: 38px; } }

.icon-youtube {
  width: 24px;
  height: 24px; }
  @media (min-width: 1700px) {
    .icon-youtube {
      width: 28px;
      height: 28px; } }
  .icon-youtube:before {
    background-image: url("../img/icons/social-media/icon-youtube-medium-20.svg"); }
  .icon-youtube:after {
    background-image: url("../img/icons/social-media/icon-youtube-light.svg"); }

.icon-instagram {
  width: 16px;
  height: 16px; }
  .icon-instagram:before {
    background-image: url("../img/icons/social-media/icon-instagram-light.svg"); }
  .icon-instagram:after {
    background-image: url("../img/icons/social-media/icon-instagram-medium.svg"); }

.icon-twitter {
  width: 16px;
  height: 16px; }
  .icon-twitter:before {
    background-image: url("../img/icons/social-media/icon-twitter-light.svg"); }
  .icon-twitter:after {
    background-image: url("../img/icons/social-media/icon-twitter-medium-03.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: 12px solid #000;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent; } }

.icon-play--light {
  border-left-color: #fff; }

.icon-pause {
  position: relative;
  width: 12px;
  height: 12px; }
  @media (min-width: 420px) {
    .icon-pause {
      height: 16px; } }
  .icon-pause:before, .icon-pause:after {
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0; }
  .icon-pause:before {
    left: 0; }
  .icon-pause:after {
    right: 0; }

.icon-pause--light:before, .icon-pause--light:after {
  background: #fff; }

/** icons-end **/
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

*:focus {
  outline: none; }

.hidden {
  opacity: 0; }

.visible {
  opacity: 1; }

html {
  font-family: "neuzeit-grotesk", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000; }

img {
  display: inline-block;
  max-width: 100%; }

button {
  background: none;
  border: 0;
  cursor: pointer; }

/***** LINKS *****/
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }
  a img {
    border: 0; }

.plain-link {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer; }
  .plain-link:hover, .plain-link:focus {
    color: #62E6AC; }

.simple-link {
  color: #62E6AC;
  font-size: 12px; }
  @media (min-width: 420px) {
    .simple-link {
      font-size: 14px; } }

/***** TEXT *****/
.line {
  display: block; }

.text {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-weight: 400; }
  @media (min-width: 420px) {
    .text {
      font-size: 15px;
      line-height: 23px; } }
  @media (min-width: 650px) {
    .text {
      font-size: 16px;
      line-height: 24px; } }
  @media (min-width: 768px) {
    .text {
      text-align: left;
      margin: 0; } }
  @media (min-width: 1500px) {
    .text {
      max-width: 420px;
      font-size: 18px;
      line-height: 26px;
      max-width: 550px; } }
  .text__emphasized {
    font-weight: 900; }
  .text p {
    padding: 5px 0; }
    @media (min-width: 1300px) {
      .text p {
        padding: 10px 0; } }
    .text p:first-child {
      padding-top: 0; }
    .text p:last-child {
      padding-bottom: 0; }
  .text a {
    color: #000; }
    .text a:hover {
      color: #FF8C5F; }

.text--emphasized {
  font-weight: 700; }

.text--full-width {
  max-width: 100%; }

.text--larger {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-align: center; }
  @media (min-width: 992px) {
    .text--larger {
      text-align: left; } }
  @media (min-width: 1300px) {
    .text--larger {
      max-width: 480px;
      font-size: 18px;
      line-height: 28px; } }
  @media (min-width: 1700px) {
    .text--larger {
      font-size: 18px;
      line-height: 28px;
      max-width: 600px; } }

.text--large {
  font-size: 14px;
  line-height: 24px; }
  @media (min-width: 420px) {
    .text--large {
      font-size: 15px;
      line-height: 25px;
      letter-spacing: 1px; } }
  @media (min-width: 1300px) {
    .text--large {
      max-width: 480px;
      font-size: 16px;
      line-height: 26px; } }
  @media (min-width: 1700px) {
    .text--large {
      font-size: 18px;
      line-height: 28px;
      max-width: 600px; } }

.address {
  font-style: normal;
  display: block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .5px; }

.contact-data {
  font-size: 12px;
  line-height: 22px;
  list-style-type: none;
  letter-spacing: .5px; }
  @media (min-width: 1300px) {
    .contact-data {
      font-size: 13px;
      line-height: 23px; } }

/***** PICTURES *****/
.logo-jwg {
  background: url("../img/logo-jwg-dark-grey.svg") no-repeat top left;
  background-size: contain;
  width: 120px;
  height: 28px;
  display: block;
  text-indent: -10000px;
  overflow: hidden;
  text-align: left; }

.logo-jwg--light {
  background-image: url("../img/logo-jwg-light.svg"); }

.logo-jwg--grey {
  background-image: url("../img/logo-jwg-grey.svg"); }

.logo-fundacja-doradzamy-zawodowo {
  background: url("../img/logo-fundacja-doradzamy-zawodowo.svg") no-repeat top left;
  background-size: contain;
  width: 140px;
  height: 38px;
  display: block;
  text-indent: -10000px;
  overflow: hidden;
  text-align: left; }
  @media (min-width: 420px) {
    .logo-fundacja-doradzamy-zawodowo {
      width: 160px;
      height: 42px; } }
  @media (min-width: 1300px) {
    .logo-fundacja-doradzamy-zawodowo {
      width: 180px;
      height: 48px; } }
  @media (min-width: 1700px) {
    .logo-fundacja-doradzamy-zawodowo {
      width: 200px;
      height: 52px; } }

.logo-fundacja-doradzamy-zawodowo--small {
  width: 124px;
  height: 32px; }
  @media (min-width: 1300px) {
    .logo-fundacja-doradzamy-zawodowo--small {
      width: 140px;
      height: 38px; } }

.logo-fundacja-doradzamy-zawodowo--light {
  background-image: url("../img/logo-fundacja-doradzamy-zawodowo-light.svg"); }

.single-image {
  display: block;
  max-width: 100%; }

.single-picture {
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }

.single-icon {
  display: block;
  max-width: 80%;
  margin: 0 auto; }

.single-icon-00 {
  max-width: 120px; }
  @media (min-width: 420px) {
    .single-icon-00 {
      max-width: 160px; } }
  @media (min-width: 1300px) {
    .single-icon-00 {
      max-width: 200px; } }

.flat-image {
  display: block;
  width: auto;
  padding: 0 0 60% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

/***** MENU *****/
.menu-toggler {
  cursor: pointer; }

#menu-toggler {
  position: fixed;
  z-index: 9991;
  top: 20px;
  right: 20px;
  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; }
  @media (min-width: 480px) {
    #menu-toggler {
      top: 25px;
      right: 30px; } }
  @media (min-width: 1300px) {
    #menu-toggler {
      display: none; } }
  @media (min-width: 1700px) {
    #menu-toggler {
      top: 35px;
      right: 35px; } }

.menu {
  counter-reset: menu; }
  .menu__item {
    padding: 10px 0; }
  .menu__item--separated {
    padding-top: 30px; }
  .menu .numered-bookmark__number:before {
    content: counters(menu,".",decimal-leading-zero) "";
    counter-increment: menu; }

.horizontal-menu > ul > li {
  display: block;
  padding: 8px 0; }
  @media (min-width: 768px) {
    .horizontal-menu > ul > li {
      display: inline-block;
      vertical-align: middle;
      padding: 0 20px; } }
  @media (min-width: 768px) {
    .horizontal-menu > ul > li:first-child {
      padding-left: 0; } }
  @media (min-width: 768px) {
    .horizontal-menu > ul > li:last-child {
      padding-right: 0; } }
.horizontal-menu__item {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  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; }

.horizontal-menu--light .horizontal-menu__item {
  color: #fff; }
  .horizontal-menu--light .horizontal-menu__item:hover {
    color: #FF8C5F; }

/***** LISTS *****/
ul {
  list-style-type: none; }

.plain-list {
  list-style-type: none; }
  .plain-list > li {
    display: block; }

.horizontal-list {
  font-size: 14px; }
  @media (min-width: 1700px) {
    .horizontal-list {
      font-size: 18px; } }
  .horizontal-list > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 -5px;
    padding: 0 25px;
    position: relative; }
    @media (min-width: 1700px) {
      .horizontal-list > li {
        padding: 0 45px; } }
    .horizontal-list > li:before {
      content: '/';
      display: block;
      position: absolute;
      top: 0;
      right: -4px; }
  .horizontal-list > li:first-child {
    padding-left: 0; }
  .horizontal-list > li:last-child {
    padding-right: 0; }
    .horizontal-list > li:last-child:before {
      display: none; }

.simple-list {
  list-style-type: none;
  font-size: 14px;
  line-height: 22px;
  text-align: center; }
  @media (min-width: 768px) {
    .simple-list {
      text-align: left; } }
  @media (min-width: 1300px) {
    .simple-list {
      font-size: 16px;
      line-height: 24px; } }
  .simple-list > li {
    position: relative;
    padding: 15px 0; }
    @media (min-width: 768px) {
      .simple-list > li {
        padding: 7px 0 7px 35px; } }
    .simple-list > li:before {
      content: '';
      display: block;
      position: absolute;
      width: 2px;
      height: 2px;
      border: 1px solid #000;
      top: 0;
      left: 50%;
      margin: 0 0 0 -2px; }
      @media (min-width: 768px) {
        .simple-list > li:before {
          top: 17px;
          left: 0;
          margin: 0; } }
    @media (max-width: 767px) {
      .simple-list > li:first-child {
        padding-top: 0; } }
    @media (max-width: 767px) {
      .simple-list > li:first-child:before {
        display: none; } }

.social-media > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px; }
  .social-media > li:first-child {
    padding-left: 0; }
  .social-media > li:last-child {
    padding-right: 0; }

.horizontal-icons > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px; }
  .horizontal-icons > li:first-child {
    padding-left: 0; }
  .horizontal-icons > li:last-child {
    padding-right: 0; }

.files-icons > li {
  display: inline-block;
  padding: 0 7px; }
  .files-icons > li:first-child {
    padding-left: 0; }
  .files-icons > li:last-child {
    padding-right: 0; }

.simple-ordered-list {
  padding: 0 0 0 20px; }
  @media (min-width: 650px) {
    .simple-ordered-list {
      padding-left: 25px; } }
  .simple-ordered-list li {
    padding: 5px 0; }

/*** lists-end ***/
/***** HEADER *****/
.site-header {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center; }
  .site-header__main-wrapper > div {
    vertical-align: bottom; }
    @media (min-width: 992px) {
      .site-header__main-wrapper > div {
        vertical-align: middle; } }
  .site-header__wrapper {
    padding: 100px 0 0 0;
    z-index: 30; }
    @media (min-width: 420px) {
      .site-header__wrapper {
        padding-top: 120px; } }
    @media (min-width: 480px) {
      .site-header__wrapper {
        padding: 140px 0 20px 0; } }
    @media (min-width: 650px) {
      .site-header__wrapper {
        padding: 160px 0 40px 0; } }
    .site-header__wrapper:before {
      content: '';
      display: none;
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      top: 0;
      left: 0;
        /**content: '';
        display: block;
        position: absolute;
        top: 10%;
        left: -20%;
        width: 140%;
        height: 80%;
        background: url('../img/content-shadow.png') no-repeat center;
        background-size: contain;

            @media (min-width: $rwd-480) {
            height: 70%;
            top: 30%;
            }

            @media (min-width: $rwd-992) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 40px;
            background-position: center left;
            }**/ }
    .site-header__wrapper.adjusted-to-window {
      padding: 0; }
  .site-header__inner {
    padding: 0 20px; }
    @media (min-width: 650px) {
      .site-header__inner {
        padding: 0 30px; } }
    @media (min-width: 768px) {
      .site-header__inner {
        padding: 0 40px; } }
    @media (min-width: 992px) {
      .site-header__inner {
        text-align: left; } }
    @media (min-width: 1300px) {
      .site-header__inner {
        padding: 0 80px; } }
    @media (min-width: 1500px) {
      .site-header__inner {
        padding: 0 120px; } }
    @media (min-width: 1700px) {
      .site-header__inner {
        padding: 0 150px; } }
  .site-header__content {
    position: relative;
    z-index: 10; }
  .site-header__downwards-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    @media (min-width: 992px) {
      .site-header__downwards-container {
        text-align: right;
        padding: 0 100px 0 0; } }
    @media (min-width: 1300px) {
      .site-header__downwards-container {
        padding-right: 140px; } }
    @media (min-width: 1700px) {
      .site-header__downwards-container {
        padding-right: 10%; } }

.site-header--main-page {
  color: #191919;
  overflow: visible; }
  .site-header--main-page .site-header__layer {
    background: url("../img/bg-00.svg") no-repeat center bottom;
    background-size: cover;
    margin-bottom: 50px; }
  .site-header--main-page .site-header__wrapper {
    padding: 120px 0 45% 0; }
    @media (min-width: 420px) {
      .site-header--main-page .site-header__wrapper {
        padding-bottom: 40%; } }
    @media (min-width: 650px) {
      .site-header--main-page .site-header__wrapper {
        padding-bottom: 35%; } }
    @media (min-width: 992px) {
      .site-header--main-page .site-header__wrapper {
        padding: 12% 0 0 0; } }
    @media (min-width: 1700px) {
      .site-header--main-page .site-header__wrapper {
        padding: 13% 0 0 0; } }

.site-header--subpage .site-header__layer:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 70%;
  height: 150%;
  background: url("../img/shapes/morphic-stroke-grey-09.svg") no-repeat top left;
  background-size: contain; }

.horizontal .site-header__wrapper {
  padding: 0 0 20% 0; }
  @media (min-width: 992px) {
    .horizontal .site-header__wrapper {
      padding: 12% 0 0 0; } }
  @media (min-width: 1700px) {
    .horizontal .site-header__wrapper {
      padding: 13% 0 0 0; } }

.site-bar {
  z-index: 8900;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left; }
  .site-bar__wrapper {
    position: relative;
    z-index: 5;
    padding: 15px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%; }
    @media (min-width: 420px) {
      .site-bar__wrapper {
        padding: 20px 0; } }
    @media (min-width: 1300px) {
      .site-bar__wrapper {
        padding: 30px 0; } }
  .site-bar__inner {
    padding: 0 20px;
    position: relative;
    height: 100%; }
    @media (min-width: 768px) {
      .site-bar__inner {
        padding: 0 40px; } }
    @media (min-width: 1700px) {
      .site-bar__inner {
        padding: 0 80px; } }

/***** HEADERS *****/
.section-header {
  padding: 0 0 40px 0;
  text-align: center; }
  @media (min-width: 480px) {
    .section-header {
      padding-bottom: 50px; } }
  @media (min-width: 650px) {
    .section-header {
      padding-bottom: 60px; } }
  @media (min-width: 1100px) {
    .section-header {
      padding-bottom: 80px; } }
  @media (min-width: 1700px) {
    .section-header {
      padding-bottom: 100px; } }
  .section-header__inner {
    position: relative;
    padding: 0 20px;
    display: inline-block; }

@media (min-width: 1100px) {
  .section-header--short {
    padding-bottom: 60px; } }

@media (min-width: 768px) {
  .section-header--type-01 {
    text-align: left; } }

@media (min-width: 768px) {
  .section-header--type-02 {
    text-align: right; } }

.section-title-wrapper--huge .section-title-wrapper__introduction {
  padding: 0 0 10px 0; }

.section-title {
  font-weight: 900;
  font-size: 28px;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px; }
  @media (min-width: 420px) {
    .section-title {
      font-size: 34px;
      font-size: 32px; } }
  @media (min-width: 480px) {
    .section-title {
      font-size: 38px;
      font-size: 32px; } }
  @media (min-width: 650px) {
    .section-title {
      font-size: 44px;
      font-size: 36px;
      letter-spacing: 4px; } }
  @media (min-width: 1100px) {
    .section-title {
      font-size: 50px;
      font-size: 44px; } }
  @media (min-width: 1300px) {
    .section-title {
      font-size: 56px;
      font-size: 50px; } }
  @media (min-width: 1500px) {
    .section-title {
      font-size: 50px; } }
  @media (min-width: 1700px) {
    .section-title {
      font-size: 74px;
      font-size: 62px; } }
  .section-title__emphasized {
    font-weight: 400;
    color: #62E6AC; }

.section-title--medium-10 .section-title__emphasized {
  color: #FF8C5F;
  font-weight: 400; }

.section-title--dark-light .section-title__emphasized {
  color: #fff;
  font-weight: 400; }

.section-title--huge {
  font-size: 48px;
  font-size: 27px;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 900; }
  @media (min-width: 420px) {
    .section-title--huge {
      font-size: 56px;
      font-size: 35px;
      margin-bottom: 0; } }
  @media (min-width: 650px) {
    .section-title--huge {
      font-size: 68px;
      letter-spacing: 4px;
      padding-left: 30%;
      font-size: 40px;
      text-align: left;
      margin-bottom: 50px; } }
  @media (min-width: 992px) {
    .section-title--huge {
      font-size: 76px;
      font-size: 40px;
      letter-spacing: 6px;
      padding-left: 45%; } }
  @media (min-width: 1100px) {
    .section-title--huge {
      font-size: 88px;
      font-size: 54px;
      letter-spacing: 9px;
      letter-spacing: 3px; } }
  @media (min-width: 1300px) {
    .section-title--huge {
      font-size: 108px;
      font-size: 60px;
      letter-spacing: 12px;
      letter-spacing: 3px; } }
  @media (min-width: 1500px) {
    .section-title--huge {
      font-size: 120px;
      font-size: 60px; } }
  @media (min-width: 1700px) {
    .section-title--huge {
      font-size: 132px;
      font-size: 74px; } }

.section-title--smaller {
  font-size: 28px;
  letter-spacing: 1px; }
  @media (min-width: 420px) {
    .section-title--smaller {
      font-size: 32px; } }
  @media (min-width: 480px) {
    .section-title--smaller {
      font-size: 36px; } }
  @media (min-width: 650px) {
    .section-title--smaller {
      font-size: 42px; } }
  @media (min-width: 1100px) {
    .section-title--smaller {
      font-size: 46px; } }
  @media (min-width: 1300px) {
    .section-title--smaller {
      font-size: 52px; } }
  @media (min-width: 1500px) {
    .section-title--smaller {
      font-size: 58px; } }

.section-title--small {
  font-size: 22px;
  letter-spacing: 1px; }
  @media (min-width: 420px) {
    .section-title--small {
      font-size: 26px; } }
  @media (min-width: 650px) {
    .section-title--small {
      font-size: 30px; } }
  @media (min-width: 1300px) {
    .section-title--small {
      font-size: 36px; } }
  @media (min-width: 1500px) {
    .section-title--small {
      font-size: 40px; } }
  @media (min-width: 1700px) {
    .section-title--small {
      font-size: 44px; } }

.title-introduction {
  color: #FF8C5F;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px; }
  @media (min-width: 1500px) {
    .title-introduction {
      font-size: 16px; } }

.title-introduction--huge {
  font-size: 16px;
  letter-spacing: 2px; }
  @media (min-width: 420px) {
    .title-introduction--huge {
      font-size: 18px; } }
  @media (min-width: 1100px) {
    .title-introduction--huge {
      font-size: 20px; } }
  @media (min-width: 1300px) {
    .title-introduction--huge {
      font-size: 24px; } }
  @media (min-width: 1500px) {
    .title-introduction--huge {
      font-size: 26px; } }
  @media (min-width: 1700px) {
    .title-introduction--huge {
      font-size: 28px; } }

.subsection-header {
  text-align: center;
  padding: 0 0 30px 0; }
  @media (min-width: 768px) {
    .subsection-header {
      text-align: left;
      padding-bottom: 40px; } }
  @media (min-width: 1300px) {
    .subsection-header {
      padding-bottom: 50px; } }
  .subsection-header__introduction {
    padding: 0 0 10px 0; }
    @media (min-width: 1300px) {
      .subsection-header__introduction {
        padding-bottom: 15px; } }
  .subsection-header.subsection-header--high {
    padding-bottom: 50px; }
    @media (min-width: 650px) {
      .subsection-header.subsection-header--high {
        padding-bottom: 70px; } }
    @media (min-width: 768px) {
      .subsection-header.subsection-header--high {
        padding-bottom: 40px; } }
    @media (min-width: 1100px) {
      .subsection-header.subsection-header--high {
        padding-bottom: 60px; } }

.subsection-title {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 900; }
  @media (min-width: 1500px) {
    .subsection-title {
      font-size: 18px; } }
  @media (min-width: 1700px) {
    .subsection-title {
      font-size: 20px; } }

.section-contents {
  font-size: 14px;
  line-height: 22px;
  max-width: 400px;
  margin: 0 auto;
  font-weight: 400;
  text-align: center; }
  @media (min-width: 420px) {
    .section-contents {
      font-size: 15px;
      line-height: 23px; } }
  @media (min-width: 992px) {
    .section-contents {
      text-align: left;
      max-width: 500px;
      margin: 0; } }
  @media (min-width: 1700px) {
    .section-contents {
      font-size: 18px;
      line-height: 28px; } }
  .section-contents p {
    padding: 10px 0; }
    .section-contents p:first-child {
      padding-top: 0; }
    .section-contents p:last-child {
      padding-bottom: 0; }

.huge-title {
  font-weight: 700;
  font-size: 24px; }
  @media (min-width: 480px) {
    .huge-title {
      font-size: 30px; } }
  @media (min-width: 768px) {
    .huge-title {
      font-size: 34px; } }
  @media (min-width: 1500px) {
    .huge-title {
      font-size: 38px; } }
  @media (min-width: 1700px) {
    .huge-title {
      font-size: 44px; } }
  .huge-title__emphasized {
    margin: -10px 0 0 0;
    font-size: 64px; }
    @media (min-width: 480px) {
      .huge-title__emphasized {
        font-size: 84px; } }
    @media (min-width: 650px) {
      .huge-title__emphasized {
        font-size: 100px; } }
    @media (min-width: 768px) {
      .huge-title__emphasized {
        font-size: 108px; } }
    @media (min-width: 1300px) {
      .huge-title__emphasized {
        font-size: 132px;
        margin: -20px 0 0 0; } }
    @media (min-width: 1500px) {
      .huge-title__emphasized {
        font-size: 156px; } }
    @media (min-width: 1700px) {
      .huge-title__emphasized {
        font-size: 184px;
        margin: -25px 0 0 0; } }

.tiny-title {
  color: rgba(0, 0, 0, 0.42);
  font-size: 16px;
  font-weight: 400; }
  @media (min-width: 480px) {
    .tiny-title {
      font-size: 18px; } }

.site-title {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px; }
  @media (min-width: 1700px) {
    .site-title {
      font-size: 16px; } }
  .site-title__row {
    color: #000;
    text-transform: none;
    font-size: 20px;
    letter-spacing: .5px; }
    @media (min-width: 768px) {
      .site-title__row {
        font-size: 22px; } }
    @media (min-width: 1300px) {
      .site-title__row {
        font-size: 24px; } }
    @media (min-width: 1700px) {
      .site-title__row {
        font-size: 26px; } }

.side-title {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px; }

.subtle-title {
  color: #A9A8A9;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px; }
  @media (min-width: 1700px) {
    .subtle-title {
      font-size: 16px; } }

/* headers-end */
/***** CONTAINERS *****/
.site-wrapper {
  overflow: hidden; }
  @media (min-width: 1300px) {
    .site-wrapper {
      margin: 0 96px 0 0; } }

.site-content {
  margin: 0 auto; }

.video-item {
  position: relative;
  padding: 0 0 60% 0; }
  @media (min-width: 768px) {
    .video-item {
      padding-bottom: 50%; } }
  .video-item__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    .video-item__layer:before {
      content: '';
      display: block;
      position: absolute;
      top: -8px;
      left: -8px;
      width: 100%;
      height: 100%;
      background: #62E6AC;
      z-index: -1; }

.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%; }

.full-dimensions-video {
  /**position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  **/
  position: relative;
  height: 100%;
  width: 100%; }
  .full-dimensions-video__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1; }
  .full-dimensions-video__video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; }
  .full-dimensions-video__content-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 4; }

.full-dimensions-background {
  /**position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  **/
  position: relative;
  height: 100%;
  width: 100%; }
  .full-dimensions-background__background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1; }
  .full-dimensions-background__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
  .full-dimensions-background__content-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 4; }

.carousel-container {
  padding: 0 20px; }
  @media (min-width: 380px) {
    .carousel-container {
      padding: 0 40px; } }
  @media (min-width: 650px) {
    .carousel-container {
      padding: 0 20px 0 0; } }
  @media (min-width: 768px) {
    .carousel-container {
      padding: 0 60px 0 0; } }
  @media (min-width: 1100px) {
    .carousel-container {
      padding: 0 100px 0 0; } }
  @media (min-width: 1300px) {
    .carousel-container {
      padding: 0 40px 0 0; } }
  @media (min-width: 1500px) {
    .carousel-container {
      padding: 0; } }
  @media (min-width: 1800px) {
    .carousel-container {
      padding: 0 20px 0 0; } }

.morphic-section {
  position: relative;
  display: inline-block; }
  .morphic-section:before {
    content: '';
    display: block;
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: url("../img/shapes/morphic-medium.svg") no-repeat top center;
    background-size: 100% auto;
    background-size: contain; }
    @media (min-width: 1100px) {
      .morphic-section:before {
        padding: 60px 40px;
        left: -40px;
        top: -60px; } }
  .morphic-section__wrapper {
    padding: 20px 80px; }
    @media (min-width: 1700px) {
      .morphic-section__wrapper {
        padding: 30px 100px; } }
  .morphic-section__inner {
    position: relative;
    z-index: 100; }

.full-morphic-section {
  position: relative;
  display: inline-block;
  margin: 0 0 20% 0; }
  .full-morphic-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 80px 105% 80px;
    background: url("../img/shapes/morphic-medium-01.svg") no-repeat center;
    background-size: contain;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    margin: -10px 0 0 0; }
    @media (min-width: 420px) {
      .full-morphic-section:before {
        padding: 0 100px 105% 100px; } }
    @media (min-width: 1300px) {
      .full-morphic-section:before {
        width: 140%; } }
  .full-morphic-section__wrapper {
    padding: 20px 0; }
    @media (min-width: 420px) {
      .full-morphic-section__wrapper {
        padding: 30px 0; } }
  .full-morphic-section__inner {
    position: relative;
    z-index: 100; }

@media (min-width: 768px) {
  .full-morphic-section--type-02 {
    margin: 0 0 10% auto; } }
@media (min-width: 992px) {
  .full-morphic-section--type-02 {
    margin: 0 0 0 auto; } }

.sidebar {
  display: none; }
  @media (min-width: 1300px) {
    .sidebar {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      width: 94px;
      height: 100%;
      background: #fff;
      border-left: 2px solid #FF8C5F; } }
  .sidebar__content {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .sidebar__header {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 300px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    transform-origin: left center; }
  .sidebar .icon-hamburger {
    margin: 0 auto; }

.pictures-group__wrapper {
  max-width: 460px;
  margin: 0 auto; }
  @media (min-width: 1500px) {
    .pictures-group__wrapper {
      max-width: 560px; } }
  @media (min-width: 1700px) {
    .pictures-group__wrapper {
      max-width: 620px; } }
.pictures-group__item {
  width: 55%; }
  .pictures-group__item:nth-child(2n + 2) {
    margin: -15% 0 0 auto; }
    @media (min-width: 1500px) {
      .pictures-group__item:nth-child(2n + 2) {
        margin-top: -20%; } }
.pictures-group__picture {
  display: block; }

@media (min-width: 768px) {
  .pictures-group--type-02 .pictures-group__wrapper {
    margin: 0 0 0 auto; } }

.news-item {
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
  transform: scale(0.7); }
  @media (min-width: 768px) {
    .news-item {
      text-align: left;
      transform: scale(1); } }
  @media (min-width: 1500px) {
    .news-item {
      max-width: 380px; } }
  @media (min-width: 1700px) {
    .news-item {
      max-width: 420px; } }
  .news-item__picture {
    display: block;
    width: 240px;
    height: 225px;
    margin: auto;
    background: url("../img/pictures/news/00.jpg") no-repeat center;
    background-size: contain; }
  .news-item__picture-container {
    padding: 0 0 25px 0; }
    @media (min-width: 1500px) {
      .news-item__picture-container {
        padding: 0 0 35px 0; } }
  .news-item__header {
    padding: 0 0 15px 0; }
  .news-item__title {
    font-weight: 900;
    font-size: 20px; }
    @media (min-width: 1300px) {
      .news-item__title {
        font-size: 24px; } }
    @media (min-width: 1500px) {
      .news-item__title {
        font-size: 26px; } }
    @media (min-width: 1700px) {
      .news-item__title {
        font-size: 28px; } }
  .news-item__content {
    font-size: 14px;
    line-height: 22px; }
    @media (min-width: 1700px) {
      .news-item__content {
        font-size: 16px;
        line-height: 24px; } }
  .news-item__button-container {
    padding: 20px 0 0 0; }
    @media (min-width: 768px) {
      .news-item__button-container {
        padding-top: 30px; } }
    @media (min-width: 1300px) {
      .news-item__button-container {
        padding-top: 40px; } }

.simple-carousel {
  max-width: 1500px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .simple-carousel {
      padding: 0 40px; } }
  @media (min-width: 992px) {
    .simple-carousel {
      padding: 0; } }
  @media (min-width: 1100px) {
    .simple-carousel {
      padding: 0 20px; } }
  .simple-carousel .owl-next,
  .simple-carousel .owl-prev {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin: -16px 0 0 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .simple-carousel .owl-prev {
    left: auto;
    right: 100%;
    margin-right: -40px; }
    @media (min-width: 768px) {
      .simple-carousel .owl-prev {
        margin-right: 20px; } }
    @media (min-width: 1100px) {
      .simple-carousel .owl-prev {
        margin-right: 40px; } }
    @media (min-width: 1500px) {
      .simple-carousel .owl-prev {
        margin-right: 20px; } }
    .simple-carousel .owl-prev:hover {
      padding: 0 10px 0 0; }
  .simple-carousel .owl-next {
    left: 100%;
    right: auto;
    margin-left: -40px; }
    @media (min-width: 768px) {
      .simple-carousel .owl-next {
        margin-left: 20px; } }
    @media (min-width: 1100px) {
      .simple-carousel .owl-next {
        margin-left: 40px; } }
    @media (min-width: 1500px) {
      .simple-carousel .owl-next {
        margin-left: 20px; } }
    .simple-carousel .owl-next:hover {
      padding: 0 0 0 10px; }
  .simple-carousel .owl-dots {
    padding: 40px 0 0 0; }
  .simple-carousel .owl-dot span {
    background: #e5e5e5; }
  .simple-carousel .owl-dot.active span {
    background: #62E6AC; }

.person-note {
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .person-note {
      max-width: 100%;
      text-align: left; } }
  @media (min-width: 768px) {
    .person-note__wrapper {
      padding: 0 0 0 80px; } }
  @media (min-width: 1300px) {
    .person-note__wrapper {
      padding-left: 100px; } }
  .person-note__wrapper:after {
    content: '';
    display: block;
    clear: both; }
  .person-note__picture-container {
    padding: 0 0 25px 0; }
    @media (min-width: 768px) {
      .person-note__picture-container {
        float: left;
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px 0 0; } }
  .person-note__picture {
    display: block; }
  @media (min-width: 768px) {
    .person-note__content-container {
      width: 50%;
      float: left;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      padding: 20px 0 0 20px;
      padding-top: 20px; } }
  @media (min-width: 992px) {
    .person-note__content-container {
      padding-top: 80px; } }
  @media (min-width: 1300px) {
    .person-note__content-container {
      padding: 40px 0 0 30px;
      padding-top: 100px; } }
  .person-note__content {
    font-size: 14px;
    line-height: 22px; }
    @media (min-width: 1300px) {
      .person-note__content {
        font-size: 16px;
        line-height: 24px; } }
  .person-note__header {
    padding: 0 0 20px 0; }
  .person-note__title {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase; }
    @media (min-width: 1300px) {
      .person-note__title {
        font-size: 24px; } }

@media (min-width: 768px) {
  .person-note--type-02 {
    text-align: left; } }
@media (min-width: 768px) {
  .person-note--type-02 .person-note__wrapper {
    padding: 0 80px 0 0;
    padding: 0; } }
@media (min-width: 1300px) {
  .person-note--type-02 .person-note__wrapper {
    padding-right: 0px; } }
@media (min-width: 768px) {
  .person-note--type-02 .person-note__picture-container {
    float: right;
    padding: 0 0 0 20px; } }
@media (min-width: 768px) {
  .person-note--type-02 .person-note__content-container {
    padding: 20px 20px 0 0;
    padding-left: 60px;
    padding-top: 20px; } }
@media (min-width: 992px) {
  .person-note--type-02 .person-note__content-container {
    padding-top: 100px; } }
@media (min-width: 1300px) {
  .person-note--type-02 .person-note__content-container {
    padding: 120px 30px 0 80px; } }
@media (min-width: 1500px) {
  .person-note--type-02 .person-note__content-container {
    padding-top: 140px; } }
@media (min-width: 1700px) {
  .person-note--type-02 .person-note__content-container {
    padding-top: 150px; } }
.person-note--type-02 .person-note__content-container:last-child {
  padding-left: 0px; }
  @media (min-width: 420px) {
    .person-note--type-02 .person-note__content-container:last-child {
      padding-left: 60px; } }
  @media (min-width: 768px) {
    .person-note--type-02 .person-note__content-container:last-child {
      padding-left: 60px; } }
  @media (min-width: 1300px) {
    .person-note--type-02 .person-note__content-container:last-child {
      padding-left: 80px; } }

.person-notes-group__item {
  padding: 20px 0; }
  @media (min-width: 420px) {
    .person-notes-group__item {
      padding: 40px 0; } }
  @media (min-width: 768px) {
    .person-notes-group__item {
      padding: 20px 0; } }
  @media (min-width: 992px) {
    .person-notes-group__item:nth-child(2n + 2) {
      margin: -100px 0 0 0; } }
  @media (min-width: 1300px) {
    .person-notes-group__item:nth-child(2n + 2) {
      margin-top: -120px; } }
  @media (min-width: 1700px) {
    .person-notes-group__item:nth-child(2n + 2) {
      margin-top: -140px; } }

.people-carousel {
  margin: 0 auto; }
  @media (min-width: 768px) {
    .people-carousel {
      padding: 0 40px; } }
  @media (min-width: 992px) {
    .people-carousel {
      padding: 0; } }
  @media (min-width: 1100px) {
    .people-carousel {
      padding: 0 20px; } }
  @media (min-width: 1300px) {
    .people-carousel {
      max-width: 1000px;
      margin: 0; } }
  @media (min-width: 1500px) {
    .people-carousel {
      max-width: 1100px; } }
  .people-carousel .owl-next,
  .people-carousel .owl-prev {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin: -16px 0 0 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .people-carousel .owl-prev {
    left: auto;
    right: 100%;
    margin-right: -40px; }
    @media (min-width: 768px) {
      .people-carousel .owl-prev {
        margin-right: 20px; } }
    @media (min-width: 1100px) {
      .people-carousel .owl-prev {
        margin-right: 40px; } }
    @media (min-width: 1300px) {
      .people-carousel .owl-prev {
        margin-right: 0; } }
    @media (min-width: 1500px) {
      .people-carousel .owl-prev {
        margin-right: 20px; } }
    .people-carousel .owl-prev:hover {
      padding: 0 10px 0 0; }
  .people-carousel .owl-next {
    left: 100%;
    right: auto;
    margin-left: -40px; }
    @media (min-width: 768px) {
      .people-carousel .owl-next {
        margin-left: 20px; } }
    @media (min-width: 1100px) {
      .people-carousel .owl-next {
        margin-left: 40px; } }
    @media (min-width: 1300px) {
      .people-carousel .owl-next {
        margin-left: 0; } }
    @media (min-width: 1500px) {
      .people-carousel .owl-next {
        margin-left: 20px; } }
    .people-carousel .owl-next:hover {
      padding: 0 0 0 10px; }
  .people-carousel .owl-dots {
    padding: 40px 0 0 0; }
  .people-carousel .owl-dot span {
    background: #e5e5e5; }
  .people-carousel .owl-dot.active span {
    background: #62E6AC; }

.subsection__button-container {
  text-align: center;
  padding: 30px 0 0 0; }
  @media (min-width: 768px) {
    .subsection__button-container {
      padding-top: 40px;
      text-align: left; } }

.subtle-subsection__header {
  padding: 0 0 20px 0;
  text-align: center; }
  @media (min-width: 420px) {
    .subtle-subsection__header {
      padding-bottom: 30px; } }
  @media (min-width: 768px) {
    .subtle-subsection__header {
      text-align: left; } }
  @media (min-width: 1700px) {
    .subtle-subsection__header {
      padding-bottom: 40px; } }

.logos-list > li {
  display: block;
  padding: 20px 0; }
  @media (min-width: 768px) {
    .logos-list > li {
      display: inline-block;
      vertical-align: middle;
      margin: 0 0 0 -4px;
      width: 33.33%; } }

.logo {
  display: block;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .logo {
      margin: 0; } }
  @media (min-width: 1700px) {
    .logo {
      width: 124px; } }

#questions-list {
  counter-reset: questions; }
  #questions-list > li {
    display: block;
    padding: 5px 0; }
    @media (min-width: 768px) {
      #questions-list > li {
        padding: 10px 0; } }
  #questions-list .question-item__number:before {
    content: counters(questions,".") ".";
    counter-increment: questions; }

#questions-list:after {
  content: '';
  width: 168px;
  background-size: cover;
  height: 192px;
  background-image: url("../img/faq.svg");
  display: none;
  position: absolute;
  top: 0;
  right: 0; }
  @media (min-width: 1100px) {
    #questions-list:after {
      display: block; } }

.question-item__question {
  font-weight: 900;
  font-size: 14px;
  position: relative;
  padding: 0 0 10px 30px;
  -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: 420px) {
    .question-item__question {
      font-size: 15px; } }
  @media (min-width: 650px) {
    .question-item__question {
      font-size: 16px;
      padding: 0 0 15px 40px; } }
  @media (min-width: 1500px) {
    .question-item__question {
      font-size: 18px;
      line-height: 24px; } }
.question-item__number-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  text-align: right; }
.question-item__number {
  color: #FF8C5F; }
.question-item__answer {
  padding: 0 0 20px 30px;
  font-size: 14px;
  padding-right: 100px;
  padding-right: 30px;
  line-height: 18px; }
  @media (min-width: 420px) {
    .question-item__answer {
      font-size: 15px;
      line-height: 21px; } }
  @media (min-width: 768px) {
    .question-item__answer {
      font-size: 16px;
      line-height: 22px;
      padding: 0 0 30px 40px;
      padding-right: 100px; } }
  @media (min-width: 1500px) {
    .question-item__answer {
      font-size: 18px;
      line-height: 24px; } }

.question-item--interactive .question-item__question:hover {
  color: #FF8C5F; }

.label {
  text-transform: uppercase;
  text-align: center; }
  @media (min-width: 768px) {
    .label {
      text-align: left; } }
  .label__header {
    padding: 0 0 10px 0; }
    @media (min-width: 650px) {
      .label__header {
        padding-bottom: 15px; } }
  .label__title {
    color: #62E6AC;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px; }
    @media (min-width: 650px) {
      .label__title {
        font-size: 14px; } }
  .label__content {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0px;
    font-size: 12px; }
    @media (min-width: 380px) {
      .label__content {
        font-size: 15px;
        font-size: 14px;
        letter-spacing: 1px; } }
    @media (min-width: 650px) {
      .label__content {
        font-size: 15px;
        font-size: 14px; } }
    @media (min-width: 768px) {
      .label__content {
        padding: 0 0 0 40px;
        font-size: 12px; } }
    @media (min-width: 992px) {
      .label__content {
        font-size: 14px; } }

.label--light-dark .label__title {
  color: #fff; }

.label--always-expanded {
  text-align: left; }
  .label--always-expanded .label__content {
    padding: 0 0 0 20px;
    font-size: 12px; }
    @media (min-width: 768px) {
      .label--always-expanded .label__content {
        font-size: 14px; } }

.labels-list > li {
  padding: 15px 0; }
  .labels-list > li:first-child {
    padding-top: 10px; }
  .labels-list > li:last-child {
    padding-bottom: 10px; }

.simple-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center; }
  @media (min-width: 650px) {
    .simple-label {
      font-size: 15px; } }
  @media (min-width: 768px) {
    .simple-label {
      text-align: left; } }
  .simple-label__header {
    padding: 0 0 8px 0; }
    @media (min-width: 768px) {
      .simple-label__header {
        display: inline-block;
        vertical-align: top;
        padding: 0 10px 0 0; } }
  .simple-label__title {
    font-weight: 900;
    color: #FF8C5F;
    font-size: 13px; }
    @media (min-width: 650px) {
      .simple-label__title {
        font-size: 14px; } }
  @media (min-width: 768px) {
    .simple-label__content {
      display: inline-block;
      vertical-align: top; } }

.simple-labels-list > li {
  padding: 10px 0; }
  @media (min-width: 768px) {
    .simple-labels-list > li {
      padding: 5px 0; } }

.overlayer-section__header {
  padding: 0 0 60px 0;
  text-align: center; }
  @media (min-width: 650px) {
    .overlayer-section__header {
      padding-bottom: 80px; } }
  @media (min-width: 768px) {
    .overlayer-section__header {
      text-align: left; } }
  @media (min-width: 1700px) {
    .overlayer-section__header {
      padding-bottom: 100px; } }
@media (min-width: 1100px) {
  .overlayer-section__content {
    padding: 0 0 0 40px; } }
@media (min-width: 1300px) {
  .overlayer-section__content {
    padding: 0 0 0 80px; } }

.news-article {
  text-align: left; }
  .news-article__header {
    padding: 0 0 25px 0; }
  .news-article__title {
    font-weight: 900;
    font-size: 20px; }
    @media (min-width: 420px) {
      .news-article__title {
        font-size: 24px; } }
    @media (min-width: 480px) {
      .news-article__title {
        font-size: 26px; } }
    @media (min-width: 1300px) {
      .news-article__title {
        font-size: 30px; } }
    @media (min-width: 1500px) {
      .news-article__title {
        font-size: 38px; } }
  .news-article__picture-container {
    padding: 0 0 40px 0; }
    @media (min-width: 1300px) {
      .news-article__picture-container {
        padding-bottom: 60px; } }
  .news-article__picture {
    margin: 0 auto;
    display: block;
    width: 300px; }
  .news-article__date {
    display: block;
    color: #FF8C5F;
    padding: 0 0 10px 0;
    font-size: 14px; }
    @media (min-width: 1300px) {
      .news-article__date {
        font-size: 16px; } }
  .news-article__inner {
    max-width: 480px;
    margin: 0 auto; }
    @media (min-width: 1500px) {
      .news-article__inner {
        max-width: 560px; } }
  .news-article__content {
    font-size: 14px;
    line-height: 22px; }
    @media (min-width: 420px) {
      .news-article__content {
        font-size: 15px;
        line-height: 23px; } }
    @media (min-width: 650px) {
      .news-article__content {
        font-size: 16px;
        line-height: 24px; } }
    @media (min-width: 1500px) {
      .news-article__content {
        font-size: 18px;
        line-height: 26px; } }
    .news-article__content p {
      padding: 10px 0; }
      .news-article__content p:first-child {
        font-weight: 400; }

.statute {
  list-style-type: none;
  max-width: 760px; }
  .statute__item {
    display: block;
    padding: 20px 0; }
    .statute__item:first-child {
      padding-top: 0; }
    .statute__item:last-child {
      padding-bottom: 0; }

.law-paragraph__order {
  color: #FF8C5F;
  font-weight: 900;
  font-size: 20px;
  padding: 0 0 16px 0; }
  @media (min-width: 420px) {
    .law-paragraph__order {
      font-size: 24px;
      padding-bottom: 20px; } }
  @media (min-width: 1700px) {
    .law-paragraph__order {
      font-size: 28px; } }
.law-paragraph__header {
  padding: 0 0 20px 0; }
  @media (min-width: 1700px) {
    .law-paragraph__header {
      padding-bottom: 30px; } }
.law-paragraph__title {
  font-size: 16px;
  font-weight: 900;
  color: #62E6AC;
  letter-spacing: .5px; }
  @media (min-width: 420px) {
    .law-paragraph__title {
      font-size: 18px; } }
  @media (min-width: 1700px) {
    .law-paragraph__title {
      font-size: 20px; } }
.law-paragraph__content {
  font-size: 14px;
  line-height: 22px; }
  @media (min-width: 650px) {
    .law-paragraph__content {
      font-size: 16px;
      line-height: 24px; } }

/* containers-end */
/***** MODULES *****/
/** modules-end **/
/** DECORATIONS **/
.decorated-section {
  position: relative; }
  .decorated-section__inner {
    position: relative;
    z-index: 20; }

.decoration {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  position: absolute;
  z-index: 5;
  -webkit-transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
  -moz-transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
  -o-transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
  transition: all 0.6s cubic-bezier(0.42, 0.86, 0.75, 1);
  display: none; }

.decoration--layer-01 {
  z-index: 40; }

.decoration--layer-02 {
  z-index: 30; }

.simple-decoration {
  position: relative;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1);
  transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1); }

.simple-decoration--square {
  width: 4px;
  height: 4px;
  background: #62E6AC; }

.decorations-group__item {
  left: 0;
  padding: 0 6px;
  margin: 0 0 0 -4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1);
  transition: all 0.2s cubic-bezier(0.42, 0.86, 0.75, 1); }

/***** GOOGLE MAP *****/
.googlemap-container {
  position: relative;
  overflow: hidden;
  padding: 0 0 80% 0; }
  @media (min-width: 480px) {
    .googlemap-container {
      padding-bottom: 60%; } }
  @media (min-width: 992px) {
    .googlemap-container {
      padding-bottom: 100%; } }
  .googlemap-container__loading-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .googlemap-container__map-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .googlemap-container__layer {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center; }
    @media (min-width: 768px) {
      .googlemap-container__layer {
        text-align: right; } }
    @media (min-width: 992px) {
      .googlemap-container__layer {
        bottom: 40px; } }
    @media (min-width: 1300px) {
      .googlemap-container__layer {
        bottom: 60px; } }
  .googlemap-container .zoom-panel {
    position: absolute;
    top: 20px;
    left: 20px; }
    .googlemap-container .zoom-panel__item {
      padding: 0 0 20px 0; }
      .googlemap-container .zoom-panel__item:last-child {
        padding-bottom: 0; }
    .googlemap-container .zoom-panel__zoom-in {
      cursor: pointer; }
    .googlemap-container .zoom-panel__zoom-out {
      cursor: pointer; }

.googlemap-wrapper {
  position: relative; }
  .googlemap-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #62E6AC;
    z-index: -1; }
    @media (min-width: 992px) {
      .googlemap-wrapper:before {
        left: -8px; } }

.googlemap {
  position: relative;
  height: 110%; }

/***** FORMS *****/
.form {
  width: auto;
  margin: 0 auto;
  padding: 0; }
  .form__wrapper {
    border: 0;
    max-width: 460px;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative; }
    @media (min-width: 768px) {
      .form__wrapper {
        margin: 0;
        max-width: 520px; } }
  .form__inner {
    position: relative;
    z-index: 5; }
  .form__row-item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    @media (min-width: 992px) {
      .form__row-item {
        float: left;
        width: 50%; } }
    @media (min-width: 992px) {
      .form__row-item:nth-child(1) {
        padding: 0 20px 0 0; } }
    @media (min-width: 1300px) {
      .form__row-item:nth-child(1) {
        padding: 0 30px 0 0; } }
    @media (min-width: 992px) {
      .form__row-item:nth-child(2) {
        padding: 0 0 0 20px; } }
    @media (min-width: 1300px) {
      .form__row-item:nth-child(2) {
        padding: 0 0 0 30px; } }
  @media (min-width: 992px) {
    .form__row {
      text-align: left; } }
  .form__row:after {
    content: '';
    display: block;
    clear: both; }
  @media (min-width: 480px) {
    .form__row--street .form__row-item {
      float: left; } }
  @media (min-width: 480px) {
    .form__row--street .form__row-item:nth-child(1) {
      padding-right: 10px; } }
  @media (min-width: 480px) {
    .form__row--street .form__row-item:nth-child(2) {
      padding-left: 10px; } }
  @media (min-width: 480px) {
    .form__row--city-and-postcode .form__row-item {
      float: left; } }
  @media (min-width: 480px) {
    .form__row--city-and-postcode .form__row-item:nth-child(1) {
      padding-right: 10px; } }
  @media (min-width: 480px) {
    .form__row--city-and-postcode .form__row-item:nth-child(2) {
      padding-left: 10px; } }
  @media (min-width: 480px) {
    .form__row-item--street {
      width: 82%; } }
  @media (min-width: 480px) {
    .form__row-item--location-number {
      width: 18%; } }
  @media (min-width: 480px) {
    .form__row-item--postcode {
      width: 42%; } }
  @media (min-width: 480px) {
    .form__row-item--city {
      width: 58%; } }
  .form__content .form__row:first-child .form__field-container {
    padding-top: 0; }
  .form__header {
    padding: 0 0 35px 0;
    text-align: center; }
    @media (min-width: 480px) {
      .form__header {
        padding-bottom: 45px; } }
    @media (min-width: 650px) {
      .form__header {
        padding-bottom: 50px; } }
  .form__title {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px; }
    @media (min-width: 420px) {
      .form__title {
        font-size: 26px; } }
    @media (min-width: 480px) {
      .form__title {
        font-size: 28px; } }
    @media (min-width: 650px) {
      .form__title {
        font-size: 32px; } }
    @media (min-width: 1500px) {
      .form__title {
        font-size: 36px; } }
    @media (min-width: 1700px) {
      .form__title {
        font-size: 40px; } }
  .form__field-container {
    display: block;
    margin: 0 auto;
    padding: 10px 0; }
    @media (min-width: 1700px) {
      .form__field-container {
        padding: 12px 0; } }
  .form__multifields-wrapper {
    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; }
    .form__multifields-wrapper:before {
      content: '';
      display: block;
      position: absolute;
      top: -1px;
      left: -1px;
      width: 100%;
      height: 100%;
      opacity: 0;
      border: 1px solid #E9190F;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
  .form__multifields-wrapper.error {
    padding: 10px; }
    .form__multifields-wrapper.error:before {
      opacity: 1; }
  .form .dropdown__title {
    font-weight: 400; }
  .form .dropdown {
    max-width: 100%; }
  .form__conditions {
    padding: 20px 0; }
  .form__button-container {
    padding: 15px 0 0 0;
    text-align: center; }
    @media (min-width: 768px) {
      .form__button-container {
        text-align: left; } }
    @media (min-width: 1300px) {
      .form__button-container {
        padding-top: 20px; } }
  .form__info-container {
    margin: 0 auto; }
    @media (min-width: 768px) {
      .form__info-container {
        margin: 0; } }
  .form__info-wrapper {
    display: none;
    padding: 30px 0 0 0; }
  .form__info {
    text-align: center;
    font-size: 14px;
    font-weight: 400; }
    @media (min-width: 768px) {
      .form__info {
        text-align: left; } }

.failed {
  color: #E9190F; }

.success {
  color: #090; }

.choice-section {
  text-align: left; }
  .choice-section__wrapper {
    padding: 20px 0; }
  .choice-section__description {
    display: inline-block;
    vertical-align: middle;
    color: #62E6AC; }
    @media (min-width: 1800px) {
      .choice-section__description {
        font-size: 20px; } }
  .choice-section__list-container {
    display: inline-block;
    vertical-align: middle;
    width: 220px; }
    @media (min-width: 1800px) {
      .choice-section__list-container {
        width: 250px; } }

.dropdown-choice-field {
  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;
  display: block; }
  .dropdown-choice-field:hover, .dropdown-choice-field:focus {
    background: #c4c4c4; }
  .dropdown-choice-field input {
    display: none; }
  .dropdown-choice-field .dropdown-choice-field__inner {
    position: relative;
    padding: 5px 10px; }
    .dropdown-choice-field .dropdown-choice-field__inner .dropdown-choice-field__field-container {
      border: 1px solid #000;
      position: absolute;
      top: 0;
      left: 0; }
    .dropdown-choice-field .dropdown-choice-field__inner .dropdown-choice-field__field {
      width: 15px;
      height: 15px; }
  .dropdown-choice-field input[type="checkbox"]:checked + .dropdown-choice-field__inner .dropdown-choice-field__field,
  .dropdown-choice-field input[type="radio"]:checked + .choice-field__inner .dropdown-choice-field__field {
    background: #62E6AC; }

.dropdown-choice-field--radio .dropdown-choice-field__field-container {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }
.dropdown-choice-field--radio .dropdown-choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }

.dropdown-item-description {
  padding: 15px 0 0 0;
  font-size: 14px; }

.spinner {
  font-size: 20px;
  color: #EAEAEA;
  text-align: center;
  margin: 0 auto;
  display: block; }

.spinner--large {
  font-size: 40px; }

.spinner--huge {
  font-size: 40px; }

.spinner--light {
  color: #fff; }

.form-field {
  display: block; }
  .form-field__wrapper {
    position: relative;
    padding: 3px 0;
    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;
    text-align: left;
    width: 100%;
    padding: 2px 0 5px 0;
    -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; }
  .form-field__title {
    color: #000;
    position: relative;
    font-weight: 400;
    font-family: "neuzeit-grotesk", Arial, sans-serif;
    font-size: 12px;
    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;
    letter-spacing: 1px; }
  .form-field__core {
    display: block;
    letter-spacing: 1px;
    padding: 7px 0;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    border: 0;
    background: none;
    color: #000;
    position: relative;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0;
    z-index: 5;
    font-family: "neuzeit-grotesk", Arial, sans-serif;
    font-weight: 400;
    -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;
    /**@media (min-width: $rwd-1800) {
    font-size: $small-font-size-01;
    padding: 8px 10px;
    }**/ }
    @media (min-width: 768px) {
      .form-field__core {
        text-align: left; } }
    @media (min-width: 1700px) {
      .form-field__core {
        font-size: 14px; } }
  .form-field__core::-webkit-input-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: center; }
  .form-field__core:-moz-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: center; }
  .form-field__core::-moz-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: center; }
  .form-field__core:-ms-input-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: center; }
  .form-field__content {
    position: relative;
    padding: 0 0 0 40px;
    max-width: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .form-field__content .form-field__decoration {
      position: relative;
      margin: 2px 0 5px 0; }
  .form-field__button-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; }
  .form-field__description-container {
    position: relative; }
  .form-field__description {
    font-size: 12px;
    color: #828282;
    letter-spacing: 0; }
  .form-field.focus .form-field__header {
    top: 0; }
  .form-field.focus .form-field__decoration {
    background: #62E6AC; }
  .form-field.filled .form-field__header {
    top: 0; }
  .form-field--required .form-field__title:after {
    /**content: '*';
    color: $require-color;
    padding: 0;**/ }

.form-field.error .form-field__decoration {
  background: #E9190F; }

.form-field--textarea .form-field__inner {
  padding: 0; }
.form-field--textarea .form-field__header {
  position: relative; }
.form-field--textarea .form-field__core {
  min-height: 100px;
  resize: vertical; }
  @media (min-width: 650px) {
    .form-field--textarea .form-field__core {
      min-height: 100px; } }
  @media (min-width: 1800px) {
    .form-field--textarea .form-field__core {
      min-height: 140px; } }

.form-field--textarea.error .form-field__core {
  border-color: #E9190F; }

.form-field--dropdown .form-field__inner {
  padding: 0; }
.form-field--dropdown .form-field__header {
  position: relative;
  top: 0;
  padding: 0 0 10px 0; }

.form-field--select .form-field__core {
  color: #575756;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 1;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  /* Removes default arrow from firefox*/
  text-overflow: ""; }
.form-field--select .form-field__inner:after {
  content: '';
  display: block;
  border-top: 7px solid #575756;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -3px 0 0 0;
  z-index: 20; }

.form-field--file input {
  display: none; }
.form-field--file .form-field__inner {
  position: relative;
  padding: 0; }
.form-field--file .form-field__icon-container {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  z-index: 10; }
  @media (min-width: 1100px) {
    .form-field--file .form-field__icon-container {
      display: none; } }
  @media (min-width: 1300px) {
    .form-field--file .form-field__icon-container {
      display: block; } }
.form-field--file .form-field__icon {
  display: block;
  width: 20px;
  height: 20px; }

.single-checkbox__inner {
  padding: 0 0 0 32px;
  position: relative;
  text-align: left; }
.single-checkbox__description {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #828282;
  padding: 0; }
  @media (min-width: 1700px) {
    .single-checkbox__description {
      font-size: 13px;
      line-height: 19px; } }
  .single-checkbox__description p {
    padding: 3px 0; }
    .single-checkbox__description p:first-child {
      padding-top: 0; }
    .single-checkbox__description p:last-child {
      padding-bottom: 0; }
.single-checkbox__field-container {
  position: absolute;
  top: 2px;
  left: 0; }

.choice-field {
  display: block; }
  .choice-field__wrapper {
    padding: 2px;
    border: 1px 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; }
  .choice-field__inner {
    width: 10px;
    height: 10px;
    background: #62E6AC;
    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; }
  .choice-field input {
    width: 0;
    height: 0;
    display: none; }
  .choice-field input:checked ~ .choice-field__wrapper .choice-field__inner {
    opacity: 1; }
  .choice-field.error .choice-field__wrapper {
    border-color: #E9190F; }

.list-choice-field {
  display: block; }
  .list-choice-field__wrapper {
    padding: 8px 15px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative; }
    .list-choice-field__wrapper:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #62E6AC;
      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; }
  .list-choice-field__inner {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
  .list-choice-field__description {
    color: #000;
    font-size: 13px; }
    @media (min-width: 1700px) {
      .list-choice-field__description {
        font-size: 14px; } }
  .list-choice-field input {
    width: 0;
    height: 0;
    display: none; }
  .list-choice-field input:checked ~ .list-choice-field__wrapper:before {
    opacity: .08; }
  .list-choice-field input:checked ~ .list-choice-field__wrapper .list-choice-field__description {
    color: #62E6AC;
    font-weight: 700; }
  .list-choice-field.error .list-choice-field__wrapper {
    border-color: #E9190F; }
  .list-choice-field:hover {
    cursor: pointer; }
    .list-choice-field:hover .list-choice-field__wrapper:before {
      opacity: 0.08; }

.dropdown__list-container {
  padding: 10px 0;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5; }
.dropdown__header {
  padding: 8px 15px;
  border: 1px solid #828282; }
.dropdown__title {
  font-size: 13px; }
  @media (min-width: 1700px) {
    .dropdown__title {
      font-size: 14px; } }
.dropdown__icon-container {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 15px;
  background: #EAEAEA; }
.dropdown__icon {
  position: relative;
  top: -2px; }
  .dropdown__icon--open {
    top: 2px; }
.dropdown--open .dropdown__header {
  border-color: #62E6AC; }
.dropdown.error .dropdown__header {
  border-color: #E9190F; }

/***** FOOTER *****/
.site-footer {
  background: #000;
  color: #fff;
  text-align: center; }
  .site-footer__wrapper {
    padding: 40px 0;
    margin: 0 auto; }
  .site-footer__inner {
    margin: 0 auto;
    position: relative;
    z-index: 5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px; }
    @media (min-width: 768px) {
      .site-footer__inner {
        padding: 0 40px; } }
    @media (min-width: 1300px) {
      .site-footer__inner {
        padding: 0 80px; } }
    @media (min-width: 1700px) {
      .site-footer__inner {
        padding: 0 120px; } }
  .site-footer__content {
    position: relative;
    z-index: 2; }
  .site-footer__container-00 > .column {
    float: none;
    width: auto; }
    @media (min-width: 768px) {
      .site-footer__container-00 > .column {
        float: left; } }
    @media (min-width: 768px) {
      .site-footer__container-00 > .column:nth-child(1) {
        text-align: left;
        width: 30%; } }
    .site-footer__container-00 > .column:nth-child(2) {
      padding: 40px 0; }
      @media (min-width: 768px) {
        .site-footer__container-00 > .column:nth-child(2) {
          text-align: right;
          width: 70%;
          padding: 5px 0 0 0; } }
  .site-footer__container-01 {
    padding: 20px 0 0 0; }
    @media (min-width: 768px) {
      .site-footer__container-01 {
        padding-top: 40px; } }
    @media (min-width: 1300px) {
      .site-footer__container-01 {
        padding-top: 60px; } }
    .site-footer__container-01 > .column {
      float: none;
      width: auto; }
      @media (min-width: 768px) {
        .site-footer__container-01 > .column {
          float: left;
          width: 50%; } }
      @media (min-width: 768px) {
        .site-footer__container-01 > .column:nth-child(1) {
          text-align: left;
          padding: 5px 0 0 0; } }
      .site-footer__container-01 > .column:nth-child(2) {
        padding: 40px 0 0 0; }
        @media (min-width: 768px) {
          .site-footer__container-01 > .column:nth-child(2) {
            text-align: right;
            padding: 0; } }
  .site-footer .logo-fundacja-doradzamy-zawodowo {
    margin: 0 auto; }
    @media (min-width: 768px) {
      .site-footer .logo-fundacja-doradzamy-zawodowo {
        margin: 0; } }

.created-by {
  font-size: 12px;
  letter-spacing: .5px;
  font-weight: 400;
  color: #A9A8A9; }
  @media (min-width: 768px) {
    .created-by {
      text-align: right; } }
  @media (min-width: 768px) {
    .created-by__description {
      display: inline-block;
      vertical-align: middle;
      padding: 2px 10px 0 0; } }
  .created-by__author {
    padding: 10px 0 0 0; }
    @media (min-width: 768px) {
      .created-by__author {
        display: inline-block;
        vertical-align: middle;
        padding: 0; } }
  .created-by .logo-jwg {
    margin: 0 auto; }
    @media (min-width: 768px) {
      .created-by .logo-jwg {
        margin: 0; } }

.copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 1px;
  color: #A9A8A9; }

/***** BUTTONS ******/
.button-container {
  text-align: center;
  clear: both;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.more-content-button {
  display: none; }

.button-wrapper {
  display: inline-block;
  position: relative; }
  .button-wrapper__inner {
    position: relative; }
  .button-wrapper__spinner {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    padding: 0 0 0 10px;
    -webkit-transform: translateZ(0);
    z-index: 2;
    text-align: center; }

.button {
  clear: both;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0 0 0 -3px;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  background: none;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  @media (min-width: 1500px) {
    .button {
      font-size: 14px; } }
  .button .button__wrapper {
    padding: 10px 50px 10px 20px;
    text-align: left;
    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; }
    .button .button__wrapper:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      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;
      z-index: 2;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      transform: translateZ(0); }
    .button .button__wrapper:after {
      content: '';
      display: block;
      position: absolute;
      top: -100%;
      left: 0;
      height: 100%;
      width: 100%;
      background: #191919;
      -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: 2;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      transform: translateZ(0); }
  .button__inner {
    position: relative;
    z-index: 10; }
  .button:hover {
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear; }
    .button:hover .button__wrapper:after {
      top: 0; }

.button--medium .button__wrapper:before {
  background: #62E6AC; }
.button--medium .button__wrapper:after {
  background: #FF8C5F; }

.button--medium-10 .button__wrapper:before {
  background: #FF8C5F; }

.button--full-width {
  display: block;
  width: 100%; }

.downwards {
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px; }
  @media (min-width: 1700px) {
    .downwards {
      font-size: 16px;
      letter-spacing: 2px; } }
  .downwards__icon-container {
    padding: 10px 0 0 0; }
  .downwards__icon {
    margin: 0 auto; }

.downwards--light {
  color: #fff; }

.inline-text-button {
  position: relative;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  color: #000; }
  .inline-text-button:before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #000;
    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; }
  .inline-text-button:hover:before {
    opacity: 1; }

/***** SECTIONS *****/
.site-section {
  position: relative;
  z-index: 5; }
  .site-section__wrapper {
    padding: 30px 0; }
    @media (min-width: 480px) {
      .site-section__wrapper {
        padding: 60px 0; } }
    @media (min-width: 1300px) {
      .site-section__wrapper {
        padding: 80px 0; } }
    @media (min-width: 1500px) {
      .site-section__wrapper {
        padding: 100px 0; } }
  .site-section__layer {
    padding: 0 20px; }
    @media (min-width: 480px) {
      .site-section__layer {
        padding: 0 40px; } }
    @media (min-width: 992px) {
      .site-section__layer {
        padding: 0 80px; } }
    @media (min-width: 1700px) {
      .site-section__layer {
        padding: 0 10%; } }
  .site-section__inner {
    margin: 0 auto;
    position: relative;
    z-index: 5;
    margin: 0 auto;
    padding: 0; }
    @media (min-width: 1100px) {
      .site-section__inner {
        padding: 0 4%; } }
    @media (min-width: 1500px) {
      .site-section__inner {
        padding: 0 5%; } }
  @media (min-width: 1100px) {
    .site-section__inner--type-01 {
      padding-right: 0; } }
  @media (min-width: 1100px) {
    .site-section__inner--type-02 {
      padding-left: 0; } }
  @media (min-width: 768px) {
    .site-section__inner--narrow {
      padding: 0 60px; } }
  @media (min-width: 1100px) {
    .site-section__inner--narrow {
      max-width: 800px;
      margin: 0 auto; } }
  @media (min-width: 1500px) {
    .site-section__inner--narrow {
      max-width: 900px; } }
  .site-section__inner--full-width {
    padding: 0; }
  .site-section__subinner {
    padding: 0 20px; }
    @media (min-width: 768px) {
      .site-section__subinner {
        padding: 0; } }
  .site-section__content {
    position: relative;
    z-index: 2; }

.site-section--disabled {
  display: none; }

.site-section--nearly-light {
  background: #828282; }

.site-section--medium {
  color: #fff; }
  .site-section--medium .site-section__wrapper {
    background: #62E6AC; }

.site-section--dark {
  color: #fff; }
  .site-section--dark a {
    color: #fff; }

.half-background-section {
  position: relative; }
  .half-background-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: 45%;
    background: #828282; }
    @media (min-width: 768px) {
      .half-background-section:before {
        -moz-background: -moz-linear-gradient(top, #828282 0, #828282 10%, #fff 90%);
        -webkit-background: -webkit-linear-gradient(top, #828282 0, #828282 10%, #fff 90%);
        -o-background: -o-linear-gradient(top, #828282 0, #828282 10%, #fff 90%);
        -ms-background: -ms-linear-gradient(top, #828282 0, #828282 10%, #fff 90%);
        background: linear-gradient(to bottom, #828282 0, #828282 10%, #fff 90%); } }
  .half-background-section__inner {
    position: relative;
    z-index: 5; }
    @media (min-width: 768px) {
      .half-background-section__inner {
        padding-bottom: 60px; } }

.illustration--00 {
  text-align: left;
  margin-top: -70px;
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .illustration--00 {
      margin-bottom: -100px; } }

.illustration--01 {
  margin-top: 30px;
  text-align: center; }
  @media (min-width: 860px) {
    .illustration--01 {
      margin-top: 120px;
      margin-bottom: 140px;
      padding-left: 100px; } }

@media (min-width: 992px) {
  .person-notes-group__wrapper {
    padding-left: 100px; } }

.owl-carousel .owl-item img {
  margin: 30px auto;
  width: 50%; }
  @media (min-width: 768px) {
    .owl-carousel .owl-item img {
      width: 100%; } }

.bookmarks-manager-00 .bookmarks-manager__main-container > .column.col-4 {
  width: 100%; }
  @media (min-width: 992px) {
    .bookmarks-manager-00 .bookmarks-manager__main-container > .column.col-4 {
      width: 33.33%; } }

@media (min-width: 768px) {
  .section-01 .site-section__main-container > .column.col-8 {
    width: 100%; } }

.news-article__introduction {
  font-weight: 700;
  line-height: 26px; }

.question-item__subtitle {
  margin: 20px 0; }

.bookmarks-manager__bookmark-content {
  padding: 0 20px; }

.bookmarks-manager-00 .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  padding-left: 20px;
  padding-right: 20px; }

.section-01:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: url("../img/shapes/morphic-stroke-grey-00.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }
  @media (min-width: 768px) {
    .section-01:before {
      top: 60%;
      width: 550px;
      height: 550px; } }
  @media (min-width: 1700px) {
    .section-01:before {
      top: 70%;
      width: 650px;
      height: 650px; } }
.section-01 .site-section__main-container > .column {
  float: none;
  width: auto; }
  @media (min-width: 768px) {
    .section-01 .site-section__main-container > .column {
      float: right; } }
  .section-01 .site-section__main-container > .column:nth-child(2) {
    padding: 30px 0 0 0; }
  @media (min-width: 768px) {
    .section-01 .site-section__main-container > .column.col-4 {
      width: 33.33%;
      padding: 120px 0 0 0; } }
  @media (min-width: 1100px) {
    .section-01 .site-section__main-container > .column.col-4 {
      padding-top: 50px; } }
  @media (min-width: 768px) {
    .section-01 .site-section__main-container > .column.col-8 {
      width: 100%; } }
  @media (min-width: 1100px) {
    .section-01 .site-section__main-container > .column.col-8 {
      width: 66.66%; } }

@media (min-width: 480px) {
  .section-02 {
    padding: 40px 0 0 0; } }
@media (min-width: 1100px) {
  .section-02 {
    padding-top: 0px; } }
.section-02:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 250px;
  height: 500px;
  background: url("../img/shapes/morphic-stroke-grey-01.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }
  @media (min-width: 992px) {
    .section-02:before {
      width: 350px;
      height: 600px; } }
  @media (min-width: 1100px) {
    .section-02:before {
      -webkit-transform: translate3d(-30%, -50%, 0);
      -moz-transform: translate3d(-30%, -50%, 0);
      transform: translate3d(-30%, -50%, 0); } }
  @media (min-width: 1500px) {
    .section-02:before {
      width: 450px;
      height: 800px; } }
  @media (min-width: 1700px) {
    .section-02:before {
      width: 550px;
      height: 950px; } }
.section-02:after {
  content: '';
  display: block;
  position: absolute;
  top: 75%;
  right: 0;
  width: 450px;
  height: 600px;
  background: url("../img/shapes/morphic-stroke-grey-02.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(40%, -50%, 0);
  -moz-transform: translate3d(40%, -50%, 0);
  transform: translate3d(40%, -50%, 0); }
  @media (min-width: 992px) {
    .section-02:after {
      width: 500px;
      height: 700px;
      top: 65%; } }
  @media (min-width: 1500px) {
    .section-02:after {
      width: 600px;
      height: 800px; } }
  @media (min-width: 1700px) {
    .section-02:after {
      width: 650px;
      height: 850px; } }
.section-02 .site-section__row-01 {
  padding: 40px 0 0 0; }
  @media (min-width: 768px) {
    .section-02 .site-section__row-01 {
      padding-top: 80px; } }
  @media (min-width: 1500px) {
    .section-02 .site-section__row-01 {
      padding-top: 120px; } }

@media (min-width: 992px) {
  .section-03 {
    margin: -200px 0 0 0; } }
@media (min-width: 1300px) {
  .section-03 {
    margin: -260px 0 0 0; } }
@media (min-width: 1500px) {
  .section-03 {
    margin: -320px 0 0 0; } }
@media (min-width: 1700px) {
  .section-03 {
    margin: -360px 0 0 0; } }

.section-04:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 35%;
  width: 400px;
  height: 250px;
  background: url("../img/shapes/morphic-stroke-grey-03.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  /**@media (min-width: $rwd-420) {
  width: 500px;
  height: 300px;
  }**/ }
  @media (min-width: 768px) {
    .section-04:before {
      top: 72px; } }
  @media (min-width: 1500px) {
    .section-04:before {
      width: 500px;
      height: 300px; } }

.section-05:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 25%;
  width: 300px;
  height: 240px;
  background: url("../img/shapes/morphic-stroke-grey-04.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(50%, 0, 0);
  -moz-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0); }
  @media (min-width: 420px) {
    .section-05:before {
      width: 400px;
      height: 300px; } }
  @media (min-width: 480px) {
    .section-05:before {
      width: 500px;
      height: 380px;
      top: -50px; } }
  @media (min-width: 768px) {
    .section-05:before {
      top: -80px;
      width: 700px;
      height: 450px;
      right: 0; } }
  @media (min-width: 1700px) {
    .section-05:before {
      top: -80px;
      width: 900px;
      height: 550px;
      right: 0; } }
.section-05:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: 400px;
  height: 220px;
  background: url("../img/shapes/morphic-stroke-grey-05.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(50%, 0, 0);
  -moz-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0); }
  @media (min-width: 480px) {
    .section-05:after {
      width: 550px;
      height: 350px;
      bottom: 5%; } }
  @media (min-width: 768px) {
    .section-05:after {
      bottom: -15%; } }
  @media (min-width: 1500px) {
    .section-05:after {
      width: 700px;
      height: 450px; } }

.section-06 .site-section__main-container > .column {
  float: none;
  width: auto; }
  @media (min-width: 768px) {
    .section-06 .site-section__main-container > .column {
      float: right;
      width: 50%; } }
  .section-06 .site-section__main-container > .column:nth-child(2) {
    padding: 40px 0 0 0; }
    @media (min-width: 420px) {
      .section-06 .site-section__main-container > .column:nth-child(2) {
        padding-top: 60px; } }
.section-06 .site-section__row-01 {
  padding: 80px 0 0 0;
  position: relative; }
  @media (min-width: 480px) {
    .section-06 .site-section__row-01 {
      padding-top: 100px; } }
  @media (min-width: 768px) {
    .section-06 .site-section__row-01 {
      padding: 100px 0 0 33.33%; } }
  @media (min-width: 1700px) {
    .section-06 .site-section__row-01 {
      padding-top: 120px; } }
  .section-06 .site-section__row-01:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 300px;
    background: url("../img/shapes/morphic-stroke-grey-06.svg") no-repeat center;
    background-size: contain;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    z-index: -1; }
    @media (min-width: 420px) {
      .section-06 .site-section__row-01:before {
        width: 500px;
        height: 360px;
        left: -10%; } }
    @media (min-width: 650px) {
      .section-06 .site-section__row-01:before {
        width: 600px;
        height: 420px; } }
    @media (min-width: 1100px) {
      .section-06 .site-section__row-01:before {
        width: 700px;
        height: 520px; } }
    @media (min-width: 1700px) {
      .section-06 .site-section__row-01:before {
        width: 880px;
        height: 700px;
        left: -20%; } }

.section-07:before {
  content: '';
  display: block;
  position: absolute;
  top: 60%;
  left: 0;
  width: 300px;
  height: 500px;
  background: url("../img/shapes/morphic-stroke-grey-07.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }
  @media (min-width: 768px) {
    .section-07:before {
      width: 400px;
      height: 600px;
      top: 70%; } }
.section-07:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
  height: 540px;
  background: url("../img/shapes/morphic-stroke-grey-08.svg") no-repeat center;
  background-size: contain;
  -webkit-transform: translate3d(70%, -50%, 0);
  -moz-transform: translate3d(70%, -50%, 0);
  transform: translate3d(70%, -50%, 0); }
  @media (min-width: 768px) {
    .section-07:after {
      width: 350px;
      height: 700px;
      top: 40%;
      -webkit-transform: translate3d(50%, -50%, 0);
      -moz-transform: translate3d(50%, -50%, 0);
      transform: translate3d(50%, -50%, 0); } }

@media (min-width: 768px) {
  .section-08 .site-section__main-container:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    background: #62E6AC;
    height: 100%; } }
@media (min-width: 992px) {
  .section-08 .site-section__main-container:before {
    left: 45%; } }
@media (min-width: 1500px) {
  .section-08 .site-section__main-container:before {
    left: 40%; } }
.section-08 .site-section__main-container > .column {
  float: none;
  width: auto; }
  @media (min-width: 768px) {
    .section-08 .site-section__main-container > .column {
      float: left; } }
  @media (min-width: 768px) {
    .section-08 .site-section__main-container > .column:nth-child(1) {
      width: 50%;
      padding: 20px 50px 20px 0; } }
  @media (min-width: 992px) {
    .section-08 .site-section__main-container > .column:nth-child(1) {
      width: 45%; } }
  @media (min-width: 1100px) {
    .section-08 .site-section__main-container > .column:nth-child(1) {
      padding: 30px 50px 30px 0; } }
  @media (min-width: 1500px) {
    .section-08 .site-section__main-container > .column:nth-child(1) {
      width: 40%;
      padding-right: 80px; } }
  .section-08 .site-section__main-container > .column:nth-child(2) {
    padding: 100px 0 0 0;
    position: relative; }
    @media (min-width: 650px) {
      .section-08 .site-section__main-container > .column:nth-child(2) {
        padding-top: 140px; } }
    @media (min-width: 768px) {
      .section-08 .site-section__main-container > .column:nth-child(2) {
        width: 50%;
        padding: 30px 0 20px 50px; } }
    @media (min-width: 992px) {
      .section-08 .site-section__main-container > .column:nth-child(2) {
        width: 55%;
        padding-left: 80px; } }
    @media (min-width: 1100px) {
      .section-08 .site-section__main-container > .column:nth-child(2) {
        padding: 40px 0 30px 80px; } }
    @media (min-width: 1500px) {
      .section-08 .site-section__main-container > .column:nth-child(2) {
        width: 60%;
        padding-left: 120px; } }
    .section-08 .site-section__main-container > .column:nth-child(2):before {
      content: '';
      display: block;
      position: absolute;
      top: 50px;
      left: 50%;
      width: 160px;
      margin: 0 0 0 -80px;
      background: #62E6AC;
      height: 1px; }
      @media (min-width: 650px) {
        .section-08 .site-section__main-container > .column:nth-child(2):before {
          top: 70px; } }
      @media (min-width: 768px) {
        .section-08 .site-section__main-container > .column:nth-child(2):before {
          display: none; } }
.section-08 .site-section__row-01 {
  padding: 40px 0 0 0; }
  @media (min-width: 1500px) {
    .section-08 .site-section__row-01 {
      padding-top: 60px; } }

/** sections-end **/
