/* ==========================================================================
   SPECIFICS
   --------------------------------------------------------------------------
   * INVERTING CLICKABLE COLORS (commented and ready to use)
      : Nav
      : Tabs
      : Switcher
      : Dropdown

   * STRUCTURE
      : Content layouts: 2 even column, with a divider (50%) (Override/complement)

   * COMPONENTS
      : Steps bar (Override/complement)
      : Result (New)
      : Attachment upload box (New)

   * PAGETYPES
      : Search jobs
         : Wrapper (Override/complement)
         : Main (Override/complement)
         : Section (Override/complement)
   ========================================================================== */

/* INVERTING CLICKABLE COLORS: Nav
   -------------------------------------------------------------------------- */

/* INVERTING CLICKABLE COLORS: Tabs
   -------------------------------------------------------------------------- */

/* INVERTING CLICKABLE COLORS: Switcher
   -------------------------------------------------------------------------- */

/* INVERTING CLICKABLE COLORS: Dropdown
   -------------------------------------------------------------------------- */

/* STRUCTURE: Content layouts: 2 even column, with a divider (50%) (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .grid--2--divider > .grid__item {
        max-width: none;
    }

    .grid--2--divider > .grid__item:nth-of-type(odd) {
        flex: 0 0 calc(.375 * var(--grid--columns--1) * var(--grid--columns--amount) + ((.375 * var(--grid--columns--amount)) - 1) * var(--grid--columns--gap));
    }

    .grid--2--divider > .grid__item:nth-of-type(even) {
        flex-grow: 1;
    }

    .grid--2--divider > .grid__item:nth-of-type(even) {
        flex-grow: 1;
    }

}

/* COMPONENTS: Steps bar (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .list--steps .list__item__text__subtitle {
        margin-bottom: -0.6rem;
        width: 1.6rem;
        height: 1.6rem;
        text-indent: -9999px;
        overflow: hidden;
    }

}

/* COMPONENTS: Result (New)
   -------------------------------------------------------------------------- */

.article--result + .article--result {
    margin-top: 1.2rem;
}

.article--result .article__header__text__title a {
    color: var(--color--clickeable);
}

.article--result .article__header__text__subtitle {
    margin-top: var(--spacer--xxs);
}

.article--result .article__header__actions {
    display: flex;
    align-items: center;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--result {
        border-radius: var(--boxes--border--radius);
        border-width: 0.1rem;
        border-style: solid;
        border-color: var(--boxes--border--color);
    }

    .article--result .article__header {
        flex-direction: column;
        align-items: stretch;
    }

    .article--result .article__header > * {
        width: 100%;
        padding-right: var(--boxes--padding--outers);
        padding-left: var(--boxes--padding--outers);
    }

    .article--result .article__header__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        min-height: var(--boxes__heading--height);
        padding: var(--boxes--padding--outers) var(--boxes--padding--outers);
    }

    .article--result .article__header__text__title {
        font-size: 1.8rem;
    }

    .article--result .article__header__text__subtitle {
        font-size: 1.4rem;
    }

    .article--result .article__header__actions {
        border-top-width: 0.1rem;
        border-top-style: solid;
        border-top-color: var(--boxes--border--color);
        padding-top: var(--boxes--padding--inners);
        padding-bottom: var(--boxes--padding--inners);
    }

    .article--result .article__header__actions > * + * {
        margin-left: var(--boxes--padding--inners);
    }

    .article--result .article__header__actions .button {
        display: block;
        min-height: 0;
        border-radius: 0;
        border-top-width: 0;
        border-right-width: 0;
        border-bottom-color: transparent;
        border-left-width: 0;
        background-color: transparent;
        padding: 0;
        font-size: 1.2rem;
        text-transform: uppercase;
        line-height: 1.4rem;
        color: var(--color--clickeable);
    }

    .article--result .article__header__actions .button:hover {
        background-color: transparent;
        border-bottom-color: var(--color--clickeable);
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .article--result {
        padding-top: calc(var(--boxes--padding--inners) * .5);
        padding-bottom: calc(var(--boxes--padding--inners) * .5);
    }

    .article--result .article__header__actions > * + * {
        margin-left: var(--spacer--s);
    }

    .onlyDesktop {
        float: right!important;
        margin-bottom: 5rem;
    }

}

/* COMPONENTS: Attachment upload box (New)
   -------------------------------------------------------------------------- */

.article--attachments-upload {
    border-radius: var(--boxes--border--radius);
    border-width: 0.1rem;
    border-style: dashed;
    border-color: var(--boxes--border--color);
    background-color: #FFFFFF;
    padding: var(--boxes--padding--outers) var(--boxes--padding--outers);
}

.article--attachments-upload .article__header {
    margin-bottom: var(--boxes--padding--outers);
    border-bottom-width: 0.1rem;
    border-bottom-style: solid;
    border-bottom-color: var(--dividers--border--color);
    padding-bottom: var(--boxes--padding--outers);
}

.article--attachments-upload .article__header .fv {
    vertical-align: middle;
}

/* PAGETYPES: Search jobs: Wrapper (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .body--search-jobs .main__wrapper {
        --main--padding--bottom: 0;
    }

}

/* PAGETYPES: Search jobs: Main (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .body--search-jobs .main {
        --main--background--color: var(--color--brand--sub-2);
    }

}

/* PAGETYPES: Search jobs: Section (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .section--search-jobs .section__content__results {
        padding: var(--spacer--m) 0;
        border-bottom-width: 0.1rem;
        border-bottom-style: solid;
        border-bottom-color: var(--dividers--border--color);
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .section--search-jobs {
        border-radius: var(--boxes--border--radius) var(--boxes--border--radius) 0 0;
        background-color: #FFFFFF;
        padding: var(--spacer--l) var(--spacer--l)
    }

    .section--search-jobs.section--collapsible-form-search .form--search {
        top: var(--spacer--l);
    }

    .section--search-jobs.section--collapsible-form-search .form--search .form__toggle {
        right: var(--spacer--l);
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section--search-jobs .section__header {
        display: none;
    }

    .section--search-jobs .section__header + .section__content {
        margin-top: 0;
    }

    .section--search-jobs .section__content + .section__content {
        border-radius: var(--boxes--border--radius) var(--boxes--border--radius) 0 0;
        background-color: #FFFFFF;
        padding: var(--spacer--xl) var(--spacer--xxxl);
    }

    .section--search-jobs .section__content__results {
        border-top-width: 0.1rem;
        border-top-style: solid;
        border-top-color: var(--dividers--border--color);
    }

}

/* BANNER HEADER */
.banner__wrapper {
    flex-flow: column;
    align-items: flex-start;
}

.header__logo {
    margin: 4.8rem 0;
}

.banner__text {
    max-width: 55rem;
}

.banner__text__title {
    font-size: 5.5rem;
    line-height: 7.4rem;
    letter-spacing: -0.35rem;
    font-weight: 400;
    margin: 0;
}

.banner__text__subtitle {
    font-size: 4.2rem;
    line-height: 4.8rem;
    letter-spacing: -0.28rem;
    font-weight: 300;
    margin: 0.4rem 0;
    text-transform: none;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .header__logo {
        margin: 2.4rem 0;
    }
    .banner__text {
        max-width: 49.5rem;
    }
    .banner__text__title {
        font-size: 4.5rem;
        line-height: 6rem;
        letter-spacing: -0.28rem;
        margin: 0.8rem 0;
    }
    .banner__text__subtitle {
        font-size: 3.2rem;
        line-height: 3.8rem;
        letter-spacing: -0.22rem;
        margin: 0;
    }
}

/* SECTION JOIN */
.section__join {
    background-color: #000000;
    color: #FFFFFF;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}

.section__join .article__header__text__title {
    font-weight: 400;
    margin: 1.6rem 0;
}

.section__join .article__header__text__paragraph {
    font-size: 2rem;
}

div[class*="fieldSpec"] .labelRequiredIcon {
    color: #FFFFFF;
}

.section__header + * {
    margin-top: var(--spacer--l);
}

.RadioButtonListFormField.fieldSpec fieldset > legend {
    font-weight: 400;
    line-height: 2.4rem;
    font-size: 1.4rem;
}

.RadioButtonListContainer {
    display: flex;
}

div[class*="fieldSpec"].RadioButtonListFormField .cb {
    width: 30%;
}

.fieldSpec.legend--terms {
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.link, .article--details .article__content__view__field__value a, div[class*="fieldSpec"] div[class*="description"] a {
    font-weight: 400;
    color: #007cb0;
}

.form [class$="Button"], .button {
    min-width: 10rem;
}

.form--grid .fieldSpec.clear {
    clear: both;
}

@media all and (min-width: 751px){
    .form--grid:not(.form--grid--1) .fieldSpec.button-bar{
        float: right;
        margin-top: -8rem;
    }
}

.only--mobile {
    margin-top: 2.8rem;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .section__join {
        padding-top: 2.4rem;
        padding-bottom: 4.4rem;
    }
    .section__join .article__header__text__title {
        font-size: 2.4rem;
    }
    .section__join .article__header__text__paragraph {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    * + .article__header__text__paragraph {
        margin-top: var(--spacer--xs);
    }
}

/* SECTION EXPLORE */
.section__explore {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}

.section__explore .section__content {
    display: flex;
    border-radius: 1rem;
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.25);
    position: relative;
    min-height: 41.1rem;
    overflow: hidden;
    height: 41.1rem;
}

.section__content--image {
    background-image: var(--section__explore--image);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    width: 75rem;
}

.shape__left {
	display: block;
	height: 41.rem;
	padding: 7.8rem 12rem 2.8rem 3.8rem;
	min-height: 49.1rem;
	width: 65.9rem;
	background-image: var(--overlapping--shape);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	position: relative;
}

.section__innovation {
	padding-bottom: 4.8rem;
	text-align: center;
}

.section__innovation .article__header__text__title {
	font-weight: 400;
}

.section__innovation .article__header__text__paragraph {
	font-size: 2rem;
	margin: 1.6rem 0;
}

.section__explore .section__content__text--shape {
    min-height: 40.8rem;
    width: 52rem;
    color: #ffffff;
}

.section__explore .article__header__text__title {
    font-weight: 400;
    margin: 0;
}

.section__explore .article__header__text__paragraph {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 1.6rem 0;
}

.section__explore .button {
    margin-top: 0.8rem;
}

/* Media query to target tablet and mobile */
@media all and (max-width:1024px) {
    .section__explore .section__content {
        max-height: fit-content;
        flex-direction: column-reverse;
        background-color: #007cb0;
        height: inherit;
        bottom: 4rem;

    }

    .shape__left {
        padding: 7.8rem 3rem 2.8rem 3rem;
    }

    .section__content--image {
        background-image: var(--section__explore--image);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: contain;
        width: 100%;
        height: 23rem;
    }

    .shape__left {
        height: fit-content;
        width: 100%;
        background-image: var(--overlapping--shape--vertical);
        background-position: center top;
        background-size: cover;
        position: relative;
        bottom: 8rem;
        margin-bottom: -8rem;
    }

    .section__explore .section__content__text--shape {
        width: 100%;
    }
}

/* SECTION WOMEN */
.section__women {
    padding-bottom: 4.8rem;
    padding-top: 4.8rem;
}

.section__women .section__content {
    display: flex;
    border-radius: 1rem;
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.25);
    position: relative;
    min-height: 31.9rem;
    overflow: hidden;
    background-color: #007cb0;
}

.section__content--left {
    padding: 6.8rem 2.8rem 2.8rem 3.8rem;
}

.swiper__container {
    width: 90%;
    display: block;
    height: 32rem;
    padding: 2.8rem 2.8rem 2.8rem 7.8rem;
    min-height: 30.9rem;
    background-image: url('../images/frame__slider.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    position: relative;
    margin: 0 auto;
}

.swiper-slide.contain {
    width: 63rem;
    display: flex;
    padding-top: 2rem;
    padding-left: 1rem;
}

.contain .slide__image img {
    width: 18.9rem;
    height: 18.9rem;
    border-radius: 0.5rem;
}

.contain .slide__text {
    width: 52%;
    padding-left: 2rem;
    color: #000;
}

.contain .slide__text h5 {
    padding-bottom: 1rem;
}

.section__women .section__content__text--shape {
    min-height: 40.8rem;
    width: 52rem;
    color: #ffffff;
}

.section__women .article__header__text__title {
    font-weight: 400;
    margin: 0;
}

.section__women .article__header__text__paragraph {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin: 1.6rem 0;
}

.section__women .button {
    margin-top: 0.8rem;
}

.swiper-button-next--women,.swiper-button-prev--women {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next--women.swiper-button-disabled,.swiper-button-prev--women.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next--women:after,.swiper-button-prev--women:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev--women,.swiper-container-rtl .swiper-button-next--women {
    left: 1rem;
    right: auto
}

.swiper-button-prev--women:after,.swiper-container-rtl .swiper-button-next--women:after {
    content: 'prev'
}

.swiper-button-next--women,.swiper-container-rtl .swiper-button-prev--women {
    right: 1rem;
    left: auto
}

.swiper-button-next--women:after,.swiper-container-rtl .swiper-button-prev--women:after {
    content: 'next'
}

.swiper-button-next--women:after,
.swiper-button-prev--women:after {
    --swiper-navigation-size: 4.1rem;
    color: #ffffff;
}

.swiper-button-next--women,
.swiper-container-rtl .swiper-button-prev--women {
    right: -4.3rem;
    height: 4.1rem;
    width: 2.4rem;
}

.swiper-button-prev--women,
.swiper-container-rtl .swiper-button-next--women {
    left: -4.3rem;
    height: 4.1rem;
    width: 2.4rem;
}

.swiper-pagination-bullet {
    background: #000000;
    width: 0.8rem;
    height: 0.8rem;
}

.swiper-pagination--women {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: 2rem;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination--women.swiper-pagination-hidden {
    opacity: 0
}

.section__women .swiper-pagination--women.swiper-pagination-bullets, .section__women .swiper-pagination-custom, .section__women .swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__women .swiper-pagination--women.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.6rem;
}

.section__women .swiper-pagination--women .swiper-pagination-bullet {
    opacity: 1;
    color: #ffffff;
}

.section__women .swiper-pagination-bullet-active {
    background: #26890d;
    width: 1.2rem;
    height: 1.2rem;
}

div[id*="multipleDatasetEntry"] {
    padding-top: 4rem;
}

.removeDatasetRow {
    position: absolute;
    margin-top: -3rem;
}

/* Media query to target tablet and mobile */
@media all and (max-width:751px) {

    .button-bar__wrap {
        width: 100%;
    }

    .form [class$="Button"], .button {
        width: 100%;
    }

    .section__women .section__content {
        flex-direction: column;
        background-color: #fff;
    }

    .swiper__container {
        background-repeat: no-repeat;
        background-position: center top;
        position: relative;
        height: fit-content;
        width: 100%;
        padding: 2.8rem 5.8rem 2.8rem 5.8rem;
        margin: 0 auto;
        text-align: center;
    }

    .contain .slide__text {
        color: #000!important;
    }

    .swiper-button-next--women::after, .swiper-button-prev--women::after {
        color: #000;
    }

    .swiper-slide.contain {
        display: flex;
        padding-top: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .slide__image {
        padding-bottom: 3rem;
    }

    .swiper-slide.contain .slide__image{
        padding-left: 1rem;
        padding-bottom: 3rem;
    }

    .contain .slide__text {
        width: 21rem;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 2rem;
        color: #ffffff;
      }

    .swiper-pagination--women {
        width: 65%;
    }

    .section__innovation .article__header__text__paragraph {
        font-size: 1.8rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:425px) {
    .swiper-button-next--women:after, .swiper-button-prev--women:after {
        --swiper-navigation-size: 3.4rem;
    }
    .section__blog .swiper-pagination--women.swiper-pagination-bullets, .section__blog .swiper-pagination-custom, .section__blog .swiper-pagination-fraction {
        display: none;
    }
    .swiper-button-prev--women, .swiper-container-rtl .swiper-button-next--women {
        left: 2.2rem;
    }
    .swiper-button-next--women, .swiper-container-rtl .swiper-button-prev--women {
        right: 2.2rem;
    }
}

/* SECTION TECHNOLOGY */
.section__technology {
    background-image: var(--section__technology--background);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 42.4rem;
    color: #ffffff;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}

.section__technology .section__content__text {
    max-width: 90rem;
}

.section__technology .article__header__text__title {
    font-weight: 400;
}

.section__technology .article__header__text__paragraph {
    font-size: 2rem;
    margin: 1.6rem 0;
}

.list__buttons {
    margin-top: 0.8rem;
}

.button__animated {
    font-size: 1.6rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-top: 0.6rem solid #86bc25;
    padding: 1.6rem 5.8rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    min-height: 8rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0.4rem;
}

.button__animated::after {
    content: "";
    background: #86bc25;
    position: absolute;
    z-index: -1;
    padding: 1.6rem 5.8rem;
    display: block;
    transition: all 0.35s;
    left: 0;
    right: 0;
    top: -100%;
    bottom: 100%;
}

.button__animated:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.35s;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .section__technology {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }
    .section__technology .article__header__text__title {
        font-size: 2.4rem;
    }
    .section__technology .article__header__text__paragraph{
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
}

/* SECTION VIDEO */
.section__video {
    padding-bottom: 4.8rem;
}

.section__video .swiper-slide__one {
    background-image: var(--section__video--image--one);
    background-size: cover;
    background-position: center right;
}

.section__video .swiper-slide__two {
    background-image: var(--section__video--image--two);
    background-size: cover;
}

.section__video .section__content {
    box-shadow: 0 0.2rem 2.5rem 0 rgba(0, 0, 0, 0.25);
    min-height: 45.6rem;
}

.section__video .section__content__text {
    text-align: center;
    max-width: 74.6rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4.8rem;
}

.section__video .article__header__text__title {
    font-weight: 400;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
    color: #ffffff;
    line-height: 4.2rem;
    margin-bottom: 4.2rem;
}

.play-icon {
    display: inline-block;
    width: 8.4rem;
    height: 8.4rem;
    background-image: var(--play--icon);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}

.swiper-button-next--video,.swiper-button-prev--video {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next--video.swiper-button-disabled,.swiper-button-prev--video.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next--video:after,.swiper-button-prev--video:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev--video,.swiper-container-rtl .swiper-button-next--video {
    left: 1rem;
    right: auto
}

.swiper-button-prev--video:after,.swiper-container-rtl .swiper-button-next--video:after {
    content: 'prev'
}

.swiper-button-next--video,.swiper-container-rtl .swiper-button-prev--video {
    right: 1rem;
    left: auto
}

.swiper-button-next--video:after,.swiper-container-rtl .swiper-button-prev--video:after {
    content: 'next'
}

.swiper-button-next--video:after,
.swiper-button-prev--video:after {
    --swiper-navigation-size: 4.8rem;
    color: #ffffff;
}

.swiper-button-next--video,
.swiper-container-rtl .swiper-button-prev--video {
    right: 3.2rem;
}

.swiper-button-prev--video,
.swiper-container-rtl .swiper-button-next--video {
    left: 3.2rem;
}

.swiper-pagination--video {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: 2.5rem;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination--video.swiper-pagination-hidden {
    opacity: 0
}

.section__video .swiper-pagination--video.swiper-pagination-bullets, .section__video .swiper-pagination-custom, .section__video .swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__video .swiper-pagination--video.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.6rem;
}

.section__video .swiper-pagination--video .swiper-pagination-bullet {
    opacity: 1;
    color: #ffffff;
    width: 1rem;
    height: 1rem;
}

.section__video .swiper-pagination-bullet-active {
    background: #26890d;
    width: 1.4rem;
    height: 1.4rem;
}

/* Media query to target only mobile */
@media all and (max-width:768px) {
    .section__video .section__content__text {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
        padding-top: 2.4rem;
    }
    .section__video .article__header__text__title {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-bottom: 3.7rem;
    }
    .play-icon {
        width: 7rem;
        height: 7rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:425px) {
    .swiper-button-next--video:after, .swiper-button-prev--video:after {
        --swiper-navigation-size: 3.4rem;
    }
    .section__blog .swiper-pagination--video.swiper-pagination-bullets, .section__blog .swiper-pagination-custom, .section__blog .swiper-pagination-fraction {
        display: none;
    }
    .swiper-button-prev--video, .swiper-container-rtl .swiper-button-next--video {
        left: 2.2rem;
    }
    .swiper-button-next--video, .swiper-container-rtl .swiper-button-prev--video {
        right: 2.2rem;
    }
}

/* SECTION JOURNEYS */
.section__journeys {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
}

.section__journeys .section__content {
    border-radius: 1rem;
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    min-height: 36.9rem;
    position: relative;
    overflow: hidden;
}

.section__journeys .article__header__text__title {
    font-weight: 400;
    text-align: center;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    align-items: stretch;
}

.section__journeys .swiper-container {
    z-index: unset;
}

.section__journeys .swiper-wrapper {
    z-index: 1;
}

.section__journeys .swiper-wrapper {
    height: 36.9rem;
}

.section__journeys .swiper-slide {
    position: relative;
    display: flex;
}

.swiper-slide.swiper-one{
    background-image: var(--section__jurney--image--one);
    background-size: cover;
    background-position: center right;
}

.swiper-slide.swiper-two{
    background-image: var(--section__jurney--image--two);
    background-size: cover;
    background-position: center right;
}

.swiper-slide.swiper-three{
    background-image: var(--section__jurney--image--three);
    background-size: cover;
    background-position: center right;
}

.section__journeys .swiper-slide .slide__image {
    display: inline-block;
    width: 31.8rem;
    height: 31.9rem;
    overflow: hidden;
    border-radius: 0.4rem;
    margin-right: 2rem;
}

.section__journeys .swiper-slide .slide__image img {
    max-width: 100%;
}

.section__journeys .swiper-slide .slide__text {
    isplay: inline-block;
    width: 46.1rem;
    position: relative;
    padding: 7.8rem 3.8rem 2.8rem 7.8rem;
    color: #fff;
}

.section__journeys .slide__text__title {
    margin-bottom: 0.6rem;
}

.section__journeys .slide__text__subtitle {
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
}

.quote {
    font-size: 2.7rem;
    padding-bottom: 2rem;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}

.swiper-two .quote {
    font-size: 2.4rem;
    padding-bottom: 2rem;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}

.name {
    font-size: 1.6rem;
    padding-bottom: 2rem;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}

.readme {
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
}

.section__journeys .swiper-slide .slide__text .button {
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: auto;
}

.section__journeys .swiper__frame {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

.section__journeys .swiper-button-next:after,
.section__journeys .swiper-button-prev:after {
    --swiper-navigation-size: 4.1rem;
    color: #ffffff;
}

.section__journeys .swiper-button-next,
.section__journeys .swiper-container-rtl .swiper-button-prev {
    right: 2.4rem;
}

.section__journeys .swiper-button-prev,
.section__journeys .swiper-container-rtl .swiper-button-next {
    left: 2.4rem;
}

.section__journeys .swiper-button-next, .swiper-button-prev {
    z-index: 3;
}

.section__journeys .swiper-pagination-bullets {
    position: relative;
    bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0;
}

.section__journeys .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.6rem;
}

.section__journeys .swiper-pagination-bullet {
    opacity: 1;
}

.section__journeys .swiper-pagination-bullet-active {
    background: #26890d;
    width: 1.2rem;
    height: 1.2rem;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .section__journeys .section__content {
        min-height: 36.9rem;
    }
    .section__journeys .swiper-wrapper {
        width: 85%;
    }
    .section__journeys .swiper-slide .slide__image {
        width: 25%;
    }
    .section__journeys .swiper-slide .slide__text {
        width: 58%;
    }
    .section__journeys .swiper__frame {
        display: none;
    }
    .section__journeys .swiper-button-next:after,
    .section__journeys .swiper-button-prev:after {
        --swiper-navigation-size: 3.1rem;
        color: #ffffff;
    }
    .section__journeys .swiper-slide .slide__text .button {
        position: relative;
        margin-top: 2rem;
    }
}

@media all and (max-width:768px) {
    .section__journeys .section__content {
        padding-top: 3.8rem;
        padding-bottom: 3.8rem;
    }
    .section__journeys .swiper-wrapper {
        width: 80%;
    }
    .section__journeys .swiper-slide .slide__text {
        width: 53%;
    }
}

/* Media query to target only mobile */
@media all and (max-width:425px) {
    .section__journeys .section__content {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }
    .section__journeys .article__header__text__title {
        font-size: 2.4rem;
    }
    .section__journeys .swiper-slide {
        flex-flow: column;
    }
    .section__journeys .swiper-wrapper {
        width: 60%;
        margin: 2.4rem auto 2.8rem;
    }
    .section__journeys .swiper-slide .slide__image {
        width: 60%;
        height: auto;
        margin-right: 0;
    }
    .section__journeys .swiper-slide .slide__text {
        width: 60%;
        margin-top: 2rem;
    }
    .section__journeys .swiper-button-next, .section__journeys .swiper-button-prev {
        top: 20%;
    }
    .section__journeys .swiper-slide .slide__text .button {
        width: 123%;
        margin-left: -4.4rem;
    }
}

/* SECTION BLOG */
.section__blog {
    padding-bottom: 4.8rem;
}

.section__blog .section__wrapper{
    position: relative;
}

.carouselBlog.swiper-container {
    width: 88%;
    padding: 1.6rem 1.2rem;
    box-sizing: content-box;
}

.carouselBlog .swiper-slide {
    padding: 2.4rem 2.45rem;
    border-radius: 1rem;
    box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.25);
    min-height: 38rem;
    box-sizing: border-box;
    position: relative;
}

.carouselBlog .swiper-slide:nth-child(even) {
    background-color: #007cb0;
    color: #ffffff;
}

.carouselBlog .article__header__text__title {
    font-weight: 400;
    margin: 0;
}

.carouselBlog .paragraph {
    line-height: 2.4rem;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.carouselBlog .button {
    width: calc(100% - 2.45rem * 2);
    position: absolute;
    bottom: 1.6rem;
}

.swiper-button-next--blog,.swiper-button-prev--blog {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

.swiper-button-next--blog.swiper-button-disabled,.swiper-button-prev--blog.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next--blog:after,.swiper-button-prev--blog:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev--blog,.swiper-container-rtl .swiper-button-next--blog {
    left: 1rem;
    right: auto
}

.swiper-button-prev--blog:after,.swiper-container-rtl .swiper-button-next--blog:after {
    content: 'prev'
}

.swiper-button-next--blog,.swiper-container-rtl .swiper-button-prev--blog {
    right: 1rem;
    left: auto
}

.swiper-button-next--blog:after,.swiper-container-rtl .swiper-button-prev--blog:after {
    content: 'next'
}

.swiper-button-next--blog:after,
.swiper-button-prev--blog:after {
    --swiper-navigation-size: 4.8rem;
    color: #000000;
}

.swiper-button-next--blog,
.swiper-container-rtl .swiper-button-prev--blog {
    right: 3.2rem;
}

.swiper-button-prev--blog,
.swiper-container-rtl .swiper-button-next--blog {
    left: 3.2rem;
}

.swiper-pagination--blog {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    bottom: -2.7rem;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination--blog.swiper-pagination-hidden {
    opacity: 0
}

@media all and (min-width:812px) {
    .section__blog .swiper-pagination--blog .swiper-pagination-bullet,
    .section__blog .swiper-pagination--blog .swiper-pagination-bullet-active {
        display: none;
    }

    .swiper-button-next--blog.swiper-button-disabled, .swiper-button-prev--blog.swiper-button-disabled{
        display: none;
    }

}

.section__blog .swiper-pagination--blog.swiper-pagination-bullets, .section__blog .swiper-pagination-custom, .section__blog .swiper-pagination-fraction {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__blog .swiper-pagination--blog.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.6rem;
}

.section__blog .swiper-pagination--blog .swiper-pagination-bullet {
    opacity: 1;
    color: #53565a;
    width: 1rem;
    height: 1rem;
}

.section__blog .swiper-pagination-bullet-active {
    background: #26890d;
    width: 1.4rem!important;
    height: 1.4rem!important;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .carouselBlog .swiper-slide {
        min-height: 40.8rem;
    }

    .carouselBlog .article__header__text__title {
        font-size: 2.4rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:425px) {
    .carouselBlog.swiper-container {
        width: 70%;
    }
    .swiper-button-next--blog:after, .swiper-button-prev--blog:after {
        --swiper-navigation-size: 3.4rem;
    }
    .section__blog .swiper-pagination--blog.swiper-pagination-bullets, .section__blog .swiper-pagination-custom, .section__blog .swiper-pagination-fraction {
        display: none;
    }
    .swiper-button-prev--blog, .swiper-container-rtl .swiper-button-next--blog {
        left: 2.2rem;
        height: 4.1rem;
        width: 2.4rem;
    }
    .swiper-button-next--blog, .swiper-container-rtl .swiper-button-prev--blog {
        right: 2.2rem;
        height: 4.1rem;
        width: 2.4rem;

    }
}

/* Media query to target only small mobile */
@media all and (max-width:320px) {
    .carouselBlog .swiper-slide {
        min-height: 51.8rem;
    }
}

/* SECTION TALENT */
.section__talent {
    background-color: #000000;
    height: 18rem;
}

.section__talent .section__wrapper {
    color: #ffffff;
    display: flex;
    flex-direction: row;
    padding-top: 5rem;
}

.header--talent__title {
    font-weight: 400;
    font-size: 3rem;
    padding-bottom: 2rem;
}

.paragraph--talent {
    font-weight: 400;
    font-size: 2rem;
}

.section__button {
    width: 13.5rem;
}

.section__button .button--primary {
    width: 13.5rem;
    height: 4rem;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .section__talent {
        max-height: 27.1rem;
        height: fit-content;
    }

    .section__talent .section__wrapper {
        flex-direction: column;
    }

    .paragraph--talent {
        padding-bottom: 2rem;
    }

    .section__button {
        width: 100%;
        padding-bottom: 2rem;
    }

    .section__button .button--primary {
        width: 100%;
    }
}

/* SECTION SOCIAL */
.section__social {
    background-color: #86bc25;
    height: 16.5rem;
    margin-top: 0;
}

.section__social .section__wrapper {
    color: #000000;
    display: flex;
    flex-direction: column;
    padding-top: 4rem;
}

.section__social .main__content.clearfix {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__social__item {
    height: 4rem;
    max-width: 4rem;
 }

 .footer__social {
    justify-content: space-between;
    width: 36rem;
  }

/* SECTION FOOTER */
.footer {
    border-top-width: 0.1rem;
    border-top-style: solid;
    border-top-color: var(--dividers--border--color);
    margin: 0 auto;
    width: 100%;
    background-color: var(--footer--background--color);
    color: var(--footer--font--color);
}

.footer__content {
    display: inline;
  }

.footer__paragraph {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.alert--error {
	background-color: #da3535;
}

/* SUCCES PAGE */

.body--success {
    background-color: black;
}

.body--success .main {
    background-color: black;
    color: white;
}

.logo.logo--header__succes {
    background-image: var(--logo--succes--background--image);
  }

.section--success .grid--1 h2,h3 {
    padding-bottom: 4rem;
}

.section--success .banner__text__subtitle {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: -0.2rem;
}

.button.button--bluesky {
    font-size: 2.2rem;
    color: #62b5e5;
    background-color: white;
    width: 40%;
    padding: 2rem;
    border-width: 0.2rem;
}

.button.button--bluesky:hover {
    background-color: #62b5e5;
    color: white;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .button.button--bluesky {
        width: 100%;
    }
}
