﻿/* scrollbars */
/* Variables */
:root {
    --scrollbar-size: .75rem;
    --scrollbar-minlength: 1.5rem; /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
    --scrollbar-ff-width: auto; /* FF-only accepts auto, thin, none */
    --scrollbar-track-color: transparent;
    --scrollbar-color: rgba(0,0,0,.2);
    --scrollbar-color-hover: rgba(0,0,0,.3);
    --scrollbar-color-active: rgb(61, 61, 61);
}

.layout-cell {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: var(--scrollbar-ff-width);
}

/* This class controls what elements have the new fancy scrollbar CSS */
.layout-scrollbar {
    scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color);
}
.layout-scrollbar::-webkit-scrollbar {
    height: var(--scrollbar-size);
    width: var(--scrollbar-size);
}
.layout-scrollbar::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-color);
}
.layout-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 3px;
}
.layout-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-color-hover);
}
.layout-scrollbar::-webkit-scrollbar-thumb:active {
    background-color: var(--scrollbar-color-active);
}
.layout-scrollbar::-webkit-scrollbar-thumb:vertical {
    min-height: var(--scrollbar-minlength);
}
.layout-scrollbar::-webkit-scrollbar-thumb:horizontal {
    min-width: var(--scrollbar-minlength);
}

/* module */
.module {
    max-width: 1920px;
    margin: auto;
}

.module__wrapper {
    padding: 0;
}
@media screen and (min-width: 1400px) {
    [class*="__wrapper"] {
        padding-left: 110px;
        padding-right: 110px;
    }
    [class*="__wrapper--wider"] {
        padding-left: 195px;
        padding-right: 195px;
    }
    [class*="__wrapper-wide"],
    [class*="__wrapper--ex"] {
        padding-left: 0;
        padding-right: 0;
    }
    [class*="--pad"] {
        padding: 80px 40px;
    }
    .header__wrapper {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 1920px !important;
    }
    .module--video .row--main {
        padding: 100px;
    }
    .module--cards .module__wrapper {
        padding-right: 0;
        padding-left: 70px;
        /*padding-top: 180px;*/
    }
    .module--cards .module__wrapper .column--pad {
        padding-right: 0
    }

}

.module--intersect {
    margin-top: -116px;
    margin-bottom: -116px;
    position: relative;
    transition: all 0.3s;
    z-index: 10;
}
.body--retails-country .module--intersect {
    padding-top: 60px;
    margin-top: 0;
}
.module--intersect--2 {
    margin-top: -40px;
    margin-bottom: -46px;
    position: relative;
    z-index: 10;
}
.module--intersect + .module > .module__wrapper {
    padding-top: 114px;
}

.module--intersect--2 + .module > .module__wrapper {
    padding-top: 80px;
}

.module--intersect-open {
    margin-top: -151px;
    margin-bottom: -151px;
    position: relative;
    z-index: 10;
}
.module--intersect.module--intersect-open + .module > .module__wrapper {
    padding-top: 174px;
}

.body--homepage .module--intersect {
    margin-top: -75px;
    margin-bottom: -75px;
    position: relative;
}

/* helpers */

.border--b-g{
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 750px) {
    .border--b-t{
        border-bottom: 1px solid transparent;
    }
}

.border--r-g{
    border-right: 1px solid #ccc;
}

.serif {
    font-family: "HalesworthET", serif;
}
.serif.bold {
    font-family: "HalesworthET", serif;
    font-weight: 600;
}

.handscript {
    font-family:"Velocity";
}

.mt-20 {
    margin-top: 20px
}

.mt-10 {
    margin-top: 10px
}

.mb-20 {
    margin-bottom: 20px
}

.info--extra {
    color: #aaa;
}

.column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.column--align-top {
    align-items: flex-start;
}
.column--stretch {
    align-items: stretch;
}
.column--self-align-top {
    align-self: flex-start;
}
.column--self-align-center {
    align-self: center;
}
.module .column__item {
    width: 100%;
}
.module .column__item--side {
    width: 300px;
}
.module .column__item--side2 {
    width: 34%;
}
.module .column__item--main {
    width: calc(100% - 220px);
}
.module .column__item--center:last-of-type {
    margin-right: 220px;
}

.module .article__header {
    flex-direction: column;
}
.module .article__header * {
    width: 100%
}

.module__header__text__title--1 {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 1.75px;
    line-height: 1.1;
}
.module .article__header__text__subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #3d3d3d;
}
.module .module__header__text__subtitle {
    margin: 40px 0 60px
}

.paragraph .button--default {
    margin-top: 20px;
}

.body--retailStore .button.js-scroll-to {
    display: none;
}

/* CARDS */
.card__holder {
    min-height: 460px;
    position: relative;
    overflow-y: hidden;
}

.card__container {
    display: flex;
}
.card__container * {
    transition: all .5s;
}
.card__item {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08),
                0 2px 2px rgba(0,0,0,0.12),
                0 4px 4px rgba(0,0,0,0.16),
                0 8px 8px rgba(0,0,0,0.20);
    margin: 20px 10px;
    width: 216px;
    min-width: 216px;
    font-size: 14px;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: all .5s;
}

.card__item--inactive {
    transform: scale(0.94); /* Inactive cards disminuyen su tamaño*/
}
.card__item--active {
    transform: scale(1.08);
}
.card__item--inactive:before {
    background-color: #EDECEA;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    opacity: .5;
}

.card__title {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.9px;
}

.card__title.card__title--fontsize13 {
    font-size: 13px;
}
.card__subtitle {
    padding-bottom: 7px;
    font-weight: 600;
}

.card__item .content {
    position: relative;
    z-index: 999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    height: 100%
}
.card__item--type1 .content {
    background-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    color: #fff;
}
.card__item--type3 .content {
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%, rgba(0,0,0,1) 100%);
    color: #fff;
    justify-content: flex-end;
}
.card__item--type7 .content {
    background-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.card__item .card__main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    min-height: 100%;
    /*Imagen mas grande se achica con hover*/
    transform: scale(1.3);
    background-size: cover;
    background-repeat:no-repeat;
    background-position:center center;
}
.card__item:hover .card__main-image {
    /*transform: scale(1.3);*/
    transform: scale(1);
}
.body--IE .card__item .card__main-image,
.body--Gecko .card__item .card__main-image {
    min-width: 320px;
    min-height: 420px;
    max-height: 820px;
    max-width: none;
    width: auto;
    transform: translate(-90px, 0px);
}

.card__item--type2 .content {
    background-color: rgba(0, 0, 0, .15);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    text-align: center;
    justify-content: flex-end;
    color: #fff;
}
.card__item--type2 .content .card__subtitle {
    padding-bottom: 7px;
    color: rgba(255,255,255,.5);
}

.card__item--type6 .content {
    border-radius: 20px;
    text-align: center;
    justify-content: flex-end;
    color: #fff;
    padding: 0;
}
.card__item--type6 .content .card__subtitle {
    background-color: #fff;
    color: rgba(61,61,61,.5);
    padding: 16px 20px 0 20px;
    text-align: left;
}
.card__item--type6 .content .card__title {
    background-color: #fff;
    color: #3d3d3d;
    padding: 7px 20px 40px;
    border-radius: 0 0 20px 20px;
    text-align: left;
}

.card__item--type4 .content {
    justify-content: flex-end;
}
.card__item .card__thumb-image {
    width: 97px;
    height: 97px;
    border-radius: 50%;
    border: 5px solid transparent;
}
.card__thumb {
    background: conic-gradient(from 0deg, #fff, #CDC4BA);
    width: 97px;
    height: 97px;
    margin: 30px auto;
    align-self: center;
    border-radius: 50%;
}

.card__item:hover .card__thumb {
    transform: rotate(180deg);
}
.card__item:hover .card__thumb-image {
    transform: rotate(-180deg);
}

.card__item--type4 .card__thumb {
    margin: 0 auto 20px;
}

.card__item--type1 .paragraph {
    flex-grow: 2
}
.card__item--type3 .content {
    justify-content: flex-end;
}
.card__item .button-bar {
    align-self: center;
    padding-top: 10px
}
.card__item .button {
    font-weight: 300;
    min-width: 150px !important;
    float: none !important;
    padding: 5px 20px;
    font-size: 12px;
}

.card__item.card__item--linkedin-quote {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card__item.card__item--linkedin-quote .content {
    border-radius: 0 0 20px 20px;
    height:75%;
    background-color: #fff;
    justify-content: flex-start;
    text-align: center;
}
.card__item.card__item--linkedin-quote .card__thumb {
    background: none;
    width: 97px;
    height: 97px;
    margin-top: -70px;
    margin-bottom: 20px
}
.card__item.card__item--linkedin-quote .card__thumb-image {
    border: 2px solid #fff;
}
.card__main-image--container {
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    min-height: 100%;
    transition: all .5s;
}
.card__item.card__item--linkedin-quote .card__main-image {
    position: static;
    filter: blur(2px);
    border-radius: 0;
}
.card__item--linkedin-quote blockquote.quote {
    font-family: "HalesworthET", serif;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.9px;
    padding-bottom: 10px;
    position: relative;
    padding-top: 10px;
    font-weight: 600;
}
.card__item--linkedin-quote blockquote.quote:before {
    content: "“";
    font-size: 110px;
    opacity: .3;
    position: absolute;
    top: -30px;
    transform: translateX(50%);
}
.card__item--linkedin-quote .quote-name {
    font-size: 12px;
    margin-bottom: 20px;
}

.card__item--linkedin-quote .quote-name span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.card__item--linkedin-quote .quote-link a {
    display: inline-block;
    background-color: #F5F5F5;
    padding: 4px 15px 4px 5px;
    font-size: 12px;
    border-radius: 15px;
    font-weight: 300;
    color: #000;
    transition: all .35s;
}
.card__item--linkedin-quote .quote-link a:hover {
    background-color: rgba(0,0,0,.8);
    color: #fff;
}
.card__item--linkedin-quote .quote-link a span {
    font-weight: 600;
    transition: all 0s;
}
.card__item--linkedin-quote .quote-link a i {
    background-color: #333;
    color: #fff;
    display: inline-block;
    padding: 4px 5px;
    border-radius: 50%;
    margin-right: 5px;
    white-space: nowrap;
}

.card__item--file.card__item .content {
    justify-content: space-between;
    color: #fff;
    text-align: center;
}
.card__icon i.fa {
    font-size: 60px;
    margin-bottom: 20px;
}
.card__item .card__icon {
    opacity: .5;
}
.card__item:hover .card__icon {
    opacity: 1;
}

.card__icon--audio span[class*="bar"] {
    display: inline-block;
    background-color: #fff;
    width: 7px;
    height: 40px;
    border-radius: 5px;
    margin: 0 1px;
    vertical-align: middle;
}
.card__icon--audio span.bar1 {height: 30px;}
.card__icon--audio span.bar2 {height: 48px;}
.card__icon--audio span.bar3 {height: 66px;}
.card__item:hover .card__icon--audio span.bar1 {height: 66px;}
.card__item:hover .card__icon--audio span.bar3 {height: 30px;}

.card__item .duration span {
    position: relative;
    margin: 10px 0 0 10px;
    display: inline-block;
    width: auto;
    padding-left: 15px;
}
.card__item--audio .duration {
    margin-top: -15px;
}
.card__item .duration span:after {
    content: '';
    width: 7px;
    height: 7px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 2px;
}
.card__item .duration span:before {
    content: '';
    width: 15px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    margin-right: 5px;
    position: absolute;
    left: 0px;
    top: 5px;
}

.card__item--file.card__item--video .content {
    justify-content: flex-end;
    color: #fff;
    text-align: left;
    z-index: 999999;
}
.card__item--video.card__item .card__icon {
    background-color: rgba(255,255,255,.2);
    backdrop-filter: blur(2px);
    display: inline-block;
    width: 73px;
    margin: 0 auto 40px;
    border-radius: 50%;
    text-align: center;
    opacity: 1;
    height: 73px;
}
.card__item--video.card__item .card__icon i.fa {
    font-size: 35px;
    margin-bottom: 0;
    line-height: 73px;
    padding-left: 10px
}

.card__item--video.card__item:hover .card__icon {
    background-color: #3d3d3d
}
.body--IE .card__item--video .card__main-image,
.body--Gecko .card__item--video .card__main-image {
    width: 100% !important;
    transform: translate(0px, 0px) !important;
}

.list--categories {
    font-weight: 300;
}
.list--categories .list__item {
    padding: 10px 0;
    transition: all .25s;
}
.list--categories .list__item .link {
    border-bottom: none;
    display: block;
    transform-origin: center left;
}
.list--categories .list__item--active .link:before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 1px;
    margin-right: 5px;
    background-color: #3d3d3d;
}
.list--categories:hover .list__item {
    opacity: .4
}
.list--categories:hover .list__item:hover {
    opacity: 1;
    transform: scale(1.05);
}
.list--categories .list__item--active,
.list--categories:hover .list__item--active,
.list--categories:hover .list__item--active:hover {
    font-weight: 600;
    opacity: 1;
    transform: scale(1);
}

/* helper classes */
[class*="_box"],
[class*="-box"] {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.25)
}

[class*="_box--2"],
[class*="-box--2"] {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 -10px 89px -30px rgba(0,0,0,0.5);
}

[class*="_box--mw840"],
[class*="-box--mw840"] {
    padding: 0;
    max-width: 840px;
    margin: auto;
}

[class*="bgcolor--1"] {background-color: #EDECEA}
[class*="bgcolor--2"] {background-color: #fff;}
[class*="bgcolor--3"] {background-color: #333; color: #fff;}
[class*="bgcolor--3"] * {color: #fff !important;}
[class*="bgcolor--3"] .list--categories .list__item--active .link:before {
    background-color: #fff;
}
[class*="bgcolor--4"] {background-color: #f6f6f6;}
[class*="bgcolor--5"] {background-color: #e0eaeb;}
[class*="bgcolor--6"] {background-color: #f8f8f8;}
[class*="bgcolor--7"] {background-color: #E4E2EE;}

[class*="--bg-gradient--1"] {
    background: #017b69;
    background: -moz-linear-gradient(top, #017b69 0%, #c6ab64 33%, #b36978 66%, #222254 100%);
    background: -webkit-linear-gradient(top, #017b69 0%,#c6ab64 33%,#b36978 66%,#222254 100%);
    background: linear-gradient(to bottom, #017b69 0%,#c6ab64 33%,#b36978 66%,#222254 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#017b69', endColorstr='#222254',GradientType=0 );
    color: #fff;
}
[class*="--bgimage"] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

[class*="--pad"] {
    padding: 40px;
}
[class*="--center"] {
    text-align: center;
}
[class*="--dl-mc"] {
    text-align: center;
}
[class*="--right"] {
    text-align: right;
}

[class*="--mini"] {
    max-width: 60%;
    margin: auto;
}
[class*="--extra-pad-vert"] {
    padding-top: 80px;
    padding-bottom: 80px;
}
/* Exception for last modules with bg white, to avoid big blank space between the module and the footer */
.main section.module:last-of-type [class*="--bgcolor--2"][class*="--extra-pad-vert"] {
    padding-bottom: 0px;
}
[class*="--extra-top-pad"] {
    padding-top: 80px;
}
[class*="--extra-bottom-pad"] {
    padding-bottom: 80px;
}
[class*="--extra-top-mar"] {
    margin-top: 80px;
}
[class*="--separator-top"] {
    border-top: 1px solid #d8d8d8;
}
[class*="--separator-bottom"] {
    border-bottom: 1px solid #d8d8d8;
}

[class*="--separator-top-80"] {
    border-top: 1px solid #d8d8d8;
    margin-top: 80px;
    padding-top: 80px;
}

.section--separator-top-80--noborder {
    border-top: none;
}

[class*="--separator-bottom-80"] {
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 80px;
    padding-bottom: 80px;
}

[class*="--separator-top-40"] {
    border-top: 1px solid #d8d8d8;
    margin-top: 40px;
    padding-top: 40px;
}

[class*="--separator-bottom-40"] {
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.box__square {
    border: 1px solid #d8d8d8;
    padding: 20px;
}
.box__square--content {
    overflow-y: auto;
    max-height: 200px
}
.box__title {
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
    background-color: #fff;
    position: sticky;
    top: 0;
    font-weight: 600;
    display: block;
}

.module--hr-top {
    margin-top: 0 !important;
}

.contain {
    width: 100%;
    object-fit: contain;
}
.cover {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.row {
    display: flex;
    flex-direction: column;
}

.row--bgimage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.icon__container {
    margin-top: 20px;
    font-size: 30px;
}

/* Russian instance branding */
.body--russian-instance .header__logo {
    overflow: visible;
}
.body--russian-instance .header__logo h1 {
    position: relative;
    display: block;
    visibility: hidden;
}

.body--russian-instance .header__logo h1::after {
    position: absolute;
    visibility: visible;
    right: -20px;
    top: 8px;
    content: 'RU'
}

/* home section__content__results */
.body--homepage .module--jobsoffer .article--extra-pad-vert {
    padding-top: 10px;
}
.body--homepage .section__content__results {
    display: flex;
    flex-wrap: wrap;
}
.body--homepage .section__content__results .article--result {
    width: 25%;
    font-size: 14px;
    margin: 0 0 20px;
    padding: 20px;
    display: flex;
}
.body--homepage .section__content__results--3cols .article--result {
    width: 33%;
}
.body--homepage .article--result .article__header__text {
    flex-grow: 2
}
.body--homepage .article--result .article__header__text__subtitle {
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}
.body--homepage .article--result .article__content {
    margin-top: 10px;
}
.body--homepage .article--result .article__header__actions {
    text-align: left;
    white-space: normal;
    padding: 20px 0;
}

.body--homepage .article--result .article__header__text__title--1 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1.25px;
    padding-bottom: 20px;
    line-height: 1.2;
}
.body--homepage .article--result .article__header__text__title--1 a {
    color: #CDC4BA;
    transition: all .5s;
}
.body--homepage .article--result .article__header__text__title--1 a:hover {
    color: #3d3d3d
}

.body--homepage .article--result .article__header .link {
    font-weight: 600;
    position: relative;
    font-size: 18px;
}

.body--homepage .article--result .article__header .link.link__has-icon--right {
    width: auto;
    white-space: normal;
    word-break: normal;
    text-align: left;
    display: inline-block;
}

/* Limit width only in desktop */
@media all and (min-width:1025px){
    .body--homepage .article--result .article__header .link.link__has-icon--right {
        max-width: 170px;
    }
}

.underline {
    text-decoration: underline;
}

/* Job Offers */
.module--jobsoffer {
    width: 100%;
}

.module--jobsoffer .article__header {
    padding-top: 40px;
    padding-bottom: 40px;
}

.module--jobsoffer .article__header--recommendations {
    padding-bottom: 20px;
}

.button-bar--recommendations {
    padding-top: 0!important;
}

.article__content--list-jobsoffer .section__content__results {
    display: flex;
    flex-wrap: wrap;
}
.article__content--list-jobsoffer .section__content__results .article--result {
    width: 33%;
    font-size: 14px;
    margin: 0 0 20px;
    padding: 20px;
    display: flex;
}

.article__content--list-jobsoffer .article__content--result.column__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article__content--list-jobsoffer .article--result .article__header__text__title--1 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1.25px;
    padding-bottom: 10px;
    line-height: 1.2;
}

.article__content--list-jobsoffer .article--result .article__header__text__subtitle {
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}

.article__content--list-jobsoffer .article--result .article__header__text__title--1 a {
    color: #3d3d3d;
    transition: all .5s;
}

.article__content--list-jobsoffer .article--result .column__item:hover .article__header__text__title--1 a,
.article__content--list-jobsoffer .article--result .column__item:hover .article__header__text__subtitle {
    color: #CDC4BA;
}

@media all and (min-width:750px) and (max-width:1024px) {
    .body--homepage .section__content__results .article--result {
        width: 50%;
        margin: 0 0 20px;
        padding: 0 20px 0 0;
    }
    .article--result:last-child {
        border-bottom: 1px solid rgba(61,61,61,.1);
    }
    .article__content--list-jobsoffer .section__content__results .article--result {
        width: 50%;
        margin: 0 0 20px;
        padding: 20px 24px;
        border-bottom: 1px solid #d8d8d8;
    }
}

/* video */
.module--video {
    position: relative;
}

.module--video .article__header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.module--video .row--main {
    /*height: 750px;
    padding: 80px*/
    min-height: 100%;
    padding: 0;
    min-width: 100%;
}

.module--video--cover {
    background-image: linear-gradient(0deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.7) 95%);
    display: block;
    position: absolute;
    width: 100%;
    height: 580px;
    top: -80px;
    left: -80px;
    z-index: 0;
}

.module--video--info {
    position: absolute;
    top: 80px;
    background: transparent;
    left: 80px;
    z-index: 1;
}

.module--video .row--main .article__header__text {
    max-width: 400px;
    position: relative;
}
.module--video .paragraph {
    margin: 20px 0
}

.module--video .row--carousel {
    margin-top: -145px;
    padding-right: 0;
    position: relative;
    z-index: 9999;
}

.module--video .card__holder {
    min-height: 250px;
    margin: 0 auto;
}

.module--video .card__item--active {
    transform: scale(1.08);
}

.module--video .card__item {
    height: 180px;
    min-width: 290px;
    width: 290px;
    margin: 20px 10px;
    background-color: #333;
    color: #fff;
}
.module--video .card__item:first-child {
    margin-left: 20px;
}
.module--video .card__item:last-child {
    margin-right: 20px;
}

.module--video .card__item .content {
    background-image: linear-gradient(270deg, rgba(61,61,61,0.00) 0%, #3D3D3D 95%);
    z-index: 99999;
}
.module--video .card__item a {
    display: flex;
    flex-direction: column;
    height: 100%
}
.module--video .card__item a .card__title {
    flex-grow: 2;
}
.module--video .card__item a .card__subtitle {
    font-weight: 300;
    line-height: 1.1;
}
.module--video .card__item--video.card__item .card__icon {
    width: 50px;
    margin: 0;
    height: 50px;
}
.module--video .card__item--video.card__item .card__icon i.fa {
    font-size: 25px;
    margin-bottom: 0;
    line-height: 52px;
    padding-left: 5px;
}
.module--video .card__title {
    font-size: 22px;
    line-height: 1.1;
}

.module--video .article__header .link {
    font-weight: 600;
    position: relative;
    margin-left: 30px;
    font-size: 18px;
}
.module--video .article__header .link i {
    width: auto;
    font-size: 24px;
    position: absolute;
    left: -30px;
    top: 0;
}
.module--video .article__header .frontVideoPause {
    display: none;
}
.module--video .link.frontVideoFullscreen i {
    font-size: 14px;
    top: 2px;
    background-color: #fff;
    color: #3d3d3d !important;
    padding: 2px 4px;
    border-radius: 2px;
}

.module--copy-2 .article__header__text__title.module__header__text__title--extra-pad-vert {
    padding-top: 0;
}

/* module--marquee-fullwidth */

.module--marquee-fullwidth .module__wrapper {
    padding: 30px 0;
}
.module--marquee-fullwidth .container--semi-narrow {
    max-width: 100%;
}
.module--marquee-fullwidth .column__item {
    width: 32%;
}

/* counter */
.counter--content {
    padding: 50px 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    margin-top: 80px;
    text-align: center;
    font-weight: 300;
    height: 100%;
}
.counter--content p {
   letter-spacing: 0.8px;
}
.counter {
    font-family:"HalesworthET";
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.9px;
    position: relative;
    flex-grow: 2;
    display: flex;
    flex-direction: column;
}
.counter--number {
    display: block;
    font-size: 100px;
    letter-spacing: normal;
    position: relative;
    white-space: nowrap;
}
.counter--label {
    padding: 0 50px;
    display: block;
    white-space: normal;
}
.counter--text {
    margin-top: 40px;
}
.counter sup {
    position: absolute;
    font-size: 40px;
    right: 70px;
    top: 50px
}

.counter--number:after {
    content: attr(data-extra-after);
    font-size: 40px;
    display: inline-block;
    vertical-align: top;
    padding-top: 20px;
}

.counter--number:before {
    content: attr(data-extra-before);
    font-size: 40px;
    display: inline-block;
    vertical-align: top;
    padding-top: 20px;
}

/* block media */
.module--media .article__header {
    margin-bottom: 80px;
}
.module--media .column__item--text {
    align-content: center;
    align-items: center;
    display: flex;
}

/* search home */
.article__box--search-form {
    padding: 0;
    max-width: 1000px;
    margin: auto;
}

.form--search legend {
    font-family:"HalesworthET";
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.2;
    padding: 22px 0;
    width: 100%;
}
.form--search * {
    border-radius: 0 !important;
}

.form--search .fieldSpec {
    padding-bottom: 0;
}

.form--search .fieldSpec.main-field input {
    text-align: left;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 21px !important;
    padding: 25px 0 24px 57px;
    letter-spacing: .9px !important;
    border: none !important;
    border-top: 1px solid #ccc !important;
    border-right: 1px solid #ccc !important
}
.form--search .fieldSpec.main-field input:focus {
    border: solid 1px #000000 !important;
}
.body--Firefox .form--search .fieldSpec.main-field input {
    max-height: 71px;
}

.form--search .select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
}
.form--search .Section + .Section {
    padding-top: 0;
}
.form.form--search .Separator {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.form--search .Section {
    display: block;
    width: 100%
}
.form--search .Section .fieldSpec {
    display: flex;
    width: 25%;
    border-right: 1px solid #ccc;
    vertical-align: middle;
    float: left;
    clear: none;
    height: 70px;
    align-items: center;
    overflow: hidden;
    overflow-y: auto;
    border-top: 1px solid #ccc;
}

.corner-br {
    border-right-color: transparent !important;
}
.form--search .Section1 {
    display: block;
}
.form--search .Section1 .fieldSpec {
    display: inline-block;
    width: 75%;
    border: none;
    height: auto !important;
}
/* Fixes for specific fields */
.form--search .Section .fieldSpec.field--3_284_3 {
    border-right: none;
}
@media (max-width: 750px) {
    .module--video--cover {
        top: 0;
        left: 0;
    }

   .form--search .Section .fieldSpec.field--3_34_3 {
        border-bottom: 1px solid #ccc;
    }
}

.form--search .Section .fieldSpec.button-field {
    border-right-color: transparent;
    background-color: #cdc4ba;
    border-radius: 0 !important;
    width: 25%;
}
.form--search .Section .fieldSpec.button-field * {
    width: 100%;
}
.form--search .Section .fieldSpec.button-field button {
    height: 71px;
    border-radius: 0 !important;
}
@media (max-width: 1024px) {
    .form--search .Section .fieldSpec.button-field button {
        min-width: unset;
    }
}
/* Fix IE */
.body--IE .form--search .Section .fieldSpec.button-field button,
.body--Gecko .form--search .Section .fieldSpec.button-field button {
    height: 77px;
}

.form--search--keywords-only .Section .fieldSpec.button-field button {
    border-radius: 0 0 20px 0 !important;
    margin-top: 0;
}
.form--search .fieldSpec.field--column .description {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 600;
}

.form--search--keywords-only .Section.Section1 {
    width: 100%;
}

.form--search--keywords-only .Section.Section1 .main-field {
    width: 75%;
    float: left;
}

.form--search--keywords-only .fieldSpec.button-field {
    float: left;
    width: 25%;
}
.form--search.form--search--keywords-only .Section .fieldSpec.button-field {
    border-radius: 0 0 20px 0 !important;
}

.form--search--keywords-only .corner-bl {

    border-bottom-left-radius: 20px !important;

}

.body--retails-country .form--search .select2-container--default.select2-container--focus .select2-selection--multiple,
.body--retails-country .form--search .select2-container--default .select2-selection--multiple {
    border: 0;
}

.fieldSearchJobs .select2-container--default .select2-selection--multiple {
    border: 0;
}

@media all and (min-width: 751px) and (max-width: 1400px) {
    .module--cards .module__wrapper .column--pad {
        padding-right: 0;
    }
}

@media all and (min-width: 751px) and (max-width: 1024px) {
    .module--intersect {
        margin-left: 24px;
        margin-right: 24px;
    }
    .form--search--keywords-only .Section.Section1 .main-field {
        width: calc(100% - 250px);
    }

    .form--search--keywords-only .fieldSpec.button-field {
        width: 250px;
    }

}

/* lazy load */
div.lazy{
    background-image: none!important;
}

/* brand section */
.row--bgimage {
    background-size: cover;
}
.row--bgimage--borders .lazy {
    background-image: none;
 }

.row--bgimage--borders {
    position: relative;
    border: solid 60px rgba(0, 0, 0, 0.03);
    background: url(../image/600.jpg) 50%/cover border-box padding-box;
}
.row--bgimage--borders:before {
    position: absolute;
    z-index: -1;
    top: -60px;
    right: -60px;
    bottom: -60px;
    left: -60px;
    border: inherit;
    border-color: transparent;
    background: inherit;
    background-clip: border-box;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    content: "";
}
.row--bgimage--1 .lazy {
    background-image: none;
 }
.row--bgimage--1 {
    background-image: url("../image/650.jpg") !important;
}

.dsk-block {
    display: block;
}
.swiper-wrapper .button-bar {
    text-align: center;
}
.swiper-wrapper .button {
    text-align: center;
    float: none !important;
    margin: 0 auto 12px;
}

.currentSlideInfoBarSubtitle {
    margin: 24px 0 0
}

.signature {
    text-align: center;
}
.signature .module__header__text__title--hero {
    font-size: 85px;
    line-height: 96px;
    margin-bottom: 20px;
    font-weight: 400;
}
.signature .article__header {
    margin-bottom: 0;
}

.module--brand-personality .article__header {
    justify-content: center;
    align-self: center;
    width: 100%;
    text-align: center;
}
.module--brand-personality .row__item {
    margin: 60px;
    position: relative;
    width: calc(100% - 120px);
    height: 600px;
    display: flex;
}

.body--delete-profile .module--detail-data {
    margin-top: -40px;
}

/* students page */
.body--students-page [class*="--extra-pad-vert"] {
    padding-top: 0;
}
.body--students-page .module--marquee-fullwidth+.module--copy [class*="--extra-pad-vert"] {
    padding-top: 80px;
}
.body--students-page .module--copy:last-child [class*="--extra-pad-vert"] {
    padding-bottom: 0;
}

@media all and (max-width: 1024px) {
    .module--job-description .column,
    .module--brands .column,
    .module--media .column,
    .module--cards .column,
    footer .column {
        flex-direction: column;
    }
    .module--media .column__item:first-child {
        max-height: 475px;
        overflow: hidden;
    }
    .module--media [class*="--mini"] {
        max-width: 100%;
        margin: auto;
    }
    .module--media .article__header {
        margin-bottom: 24px;
        line-height: 1;
    }
    .module--brands .column__item,
    .module--cards .column__item {
        width: 100% !important;
    }
    .module--brands .column__item {
        text-align: center;
    }
    .swiper-wrapper {
        margin-top: 30px;
    }
    .module--cards .article__header {
        text-align: center;
        margin-bottom: 24px;
        line-height: 1;
    }
    .module--cards .column__item--side .article__content {
        overflow: hidden;
    }
    .module--cards .column__item--side .article__content .list--categories {
        white-space: nowrap;
        overflow-x: scroll;
    }
    .list--categories .list__item {
        display: inline-block;
        padding: 5px 10px
    }

    .footer .column__item:nth-child(2) {
        margin: 10px 0 20px;
    }
}

@media all and (min-width: 750px) {
    .body--edit-profile .module__header__text__title--1,
    .body--delete-profile .module__header__text__title--1 {
        text-align: center;
    }
    .body--delete-profile .section__content {
        margin: 80px auto 0;
    }
    .body--delete-profile .section__content .form {
        margin: 80px auto 0;
    }
}

@media all and (max-width: 750px) {
    .body--homepage .section__content__results .article--result,
    .article__content--list-jobsoffer .section__content__results .article--result {
        width: 100%;
        padding: 0;
    }
    .column {
        flex-direction: column;
    }
    .column__item {
        width: 100% !important;
    }
    .module--intersect {
        margin-left: 24px;
        margin-right: 24px;
    }
    [class*="--mini"] {
        max-width: 100%;
        margin: auto;
    }
    .signature .article--mini {
        padding-top: 40px;
    }

    .module--marquee-fullwidth .column__item {
        margin-bottom: 20px;
    }
    .module--marquee-fullwidth .column__item img {
        width: 100%;
    }
    .body--homepage .module--brands {
        border-bottom: 58px solid #fff;
    }

    .module .article__header {
        text-align: center;
        margin-bottom: 24px;
        line-height: 1;
    }
    .body--homepage .module--jobsoffer .article__header {
        padding-top: 100px;
        padding-bottom: 0;
    }
    .body--homepage .module--jobsoffer article {
        padding-bottom: 40px;
    }

    .module__header__text__title--1 {
        font-size: 25px;
        letter-spacing: 1.2px;
        /*font-weight: 300;
        color: rgba(0, 0, 0, 0.5);*/
    }
    .module .article__header__text__subtitle {
        font-size: 16px;
    }

    .card__item {
        margin: 20px 10px;
        width: 116px;
        min-width: 116px;
        font-size: 12px;
        height: 217px;
        border-radius: 10px;
        overflow: hidden;
        -webkit-mask-image: -webkit-radial-gradient(white, black);
    }
    .card__item:last-child {
        margin-right: 24px
    }
    .card__holder {
        min-height: 260px;
        width: calc(100% + 24px + 24px);
        margin-right: -24px;
        padding-right: 24px;
        margin-left: -24px;
        padding-left: 24px
    }
    .card__title {
        font-size: 12px;
        letter-spacing: inherit;
    }
    .card__subtitle {
        font-size: 10px;
    }
    .card__item .card__main-image,
    .card__item--inactive .card__main-image {
        border-radius: 10px;
        transform: scale(1.3);
        z-index: 0;
    }
    .card__item--active .card__main-image {
        transform: scale(1);
    }
    .card__thumb {
        width: 53px;
        height: 53px;
        margin: 10px auto;
        align-self: center;
        border-radius: 50%;
    }
    .card__icon i.fa {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .card__item .card__thumb-image {
        width: 53px;
        height: 53px;
        border-radius: 50%;
        border: 2px solid transparent;
    }
    .card__item .content {
        padding: 8px;
        border-radius: 10px;
    }
    .card__item .button {
        min-width: 100% !important;
        padding: 5px 15px;
        font-size: 12px !important;
        border-radius: 20px;
    }
    .card__item--type6 .content {
        border-radius: 10px;
        padding: 0;
    }
    .card__item--type6 .content .card__title {
        padding: 3px 10px 15px;
        border-radius: 0 0 10px 10px;
        text-align: left;
    }
    .card__item--type6 .content .card__subtitle {
        color: rgba(61,61,61,.5);
        padding: 10px 10px 0;
    }
    .card__icon--audio span[class*="bar"] {
        width: 5px;
    }
    .card__item--video.card__item .card__icon {
        margin-bottom: 15px;
        width: 53px;
        height: 53px;
    }
    .card__item--video.card__item .card__icon i.fa {
        font-size: 25px;
        line-height: 60px;
        padding-left: 7px;
    }
    .card__item--linkedin-quote blockquote.quote {
        font-size: 12px;
        letter-spacing: -0.6px;
        padding-top: 0;
    }
    .card__item--linkedin-quote blockquote.quote:before {
        content: "“";
        font-size: 80px;
        opacity: .13;
    }
    .card__item--linkedin-quote .quote-name {
        font-size: 8px;
        margin-bottom: 10px;
        font-style: italic;
    }
    .card__item--linkedin-quote .quote-name span {
        font-size: 10px;
        margin-bottom: 2px;
        font-style: normal;
        font-weight: 500;
    }
    .card__item--linkedin-quote .quote-link a {
        padding: 2px 10px 2px 5px;
        font-size: 8px;
        border-radius: 10px;
    }
    .card__item--linkedin-quote .quote-link a span {
        display: none;
    }
    .card__item.card__item--linkedin-quote .card__thumb {
        background: none;
        margin-top: -36px;
        margin-bottom: 5px;
    }
    .card__item.card__item--linkedin-quote .content {
        height: 80%
    }

    .row--bgimage--borders {
        border-width: 25px 21px 25px 22px
    }

    .module--brands {
        text-align: center;
        overflow: hidden;
    }
    .module--brands .column--pad {
        padding: 40px 0 !important
    }
    .slick-prev:before {
        margin-left: -80px !important;
    }

    .swiper-wrapper {
        margin-top: 30px
    }
    .swiper-wrapper .button {
        float: none !important;
        margin: 0 auto 12px;
        font-size: 12px;
        max-width: 212px;
        padding: 3px;
    }

    .signature .module__header__text__title--hero {
        font-size: 35px;
        line-height: 46px;
        margin-bottom: 30px;
    }

    .module--video .row--main {
        height: 400px;
    }
    .module--video--info {
        padding: 24px !important;
        top: 0;
        left: 0;
    }
    .module--video .row--main .article__header {
        max-width: 300px;
    }
    .module--video .row--carousel {
        margin-top: 0;
        padding: 0 !important;
    }
    .module--video .card__item .content {
        padding: 16px;
    }
    .module--video .card__holder {
        min-height: 180px;
        margin: 0;
        width: 100%;
    }
    .module--video .card__item {
        height: 126px;
        min-width: 204px;
        width: 204px;
    }
    .module--video .card__item--video.card__item .card__icon {
        width: 35px;
        height: 35px;
    }
    .module--video .card__item--video.card__item .card__icon i.fa {
        font-size: 15px;
        line-height: 37px;
    }
    .module--video .card__item a .card__title {
        line-height: 1;
        max-width: 172px;
        overflow-x: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .module--video .card__item a .card__subtitle {
        padding-bottom: 10px;
        max-width: 172px;
        overflow-x: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .module.module--video .article__header {
        text-align: left;
    }

    .module--media.module .article__header {
        text-align: left;
    }
    .module--media .column__item:first-child {
        max-height: 375px;
        overflow: hidden;
    }

    .module--brand-personality .row__item {
        margin: 24px;
        position: relative;
        width: calc(100% - 48px);
        height: 333px;
        display: flex;
    }

    /* form search */
    .form--search legend {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 12px 0;
    }
    .form--search .Section .fieldSpec {
        width: 50%;
        height: 50px;
        font-size: 12px;
    }
    .form--search .Section .fieldSpec:nth-child(odd) {
        border-right-color: transparent;
    }
    .form--search .Section1 .fieldSpec {
        width: 100%;
    }
    .form--search .fieldSpec.main-field input {
        font-size: 12px !important;
        padding: 12px 16px;
        letter-spacing: .9px !important;
        border: none !important;
        border-top: 1px solid #ccc !important;
        height: 42px;
    }
    .form--search .Section .fieldSpec.button-field {
        border-radius: 0 0 8px 0 !important;
    }
    .form--search .Section .fieldSpec.button-field button {
        height: 42px;
        border-radius: 0 0 8px 0 !important;
        min-width: auto;
    }

    .form--search .Section .fieldSpec.button-field {
        border-right-color: transparent;
        background-color: #cdc4ba;
        border-radius: 0 !important;
        width: 25%;
    }

    .select2-results__option {
        font-size: 12px !important;
    }

    [class*="--extra-pad-vert"] {
        padding: 0;
    }
    [class*="_box"],
    [class*="-box"] {
        border-radius: 8px;
    }
    .body:not(.locations--singapore) [class*="--pad"] {
        padding: 40px 24px !important;
    }
    [class*="--dl-mc"] {
        text-align: left;
    }

    [class*="--separator-top-80"] {
        margin-top: 50px;
        padding-top: 50px;
    }

    [class*="--separator-bottom-80"] {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .form--search--keywords-only .Section.Section1 {
        width: 100%;
    }
    .form--search.form--search--keywords-only .Section .fieldSpec.button-field {
        border-radius: 0 0 8px 0 !important;
    }
    .form--search--keywords-only .Section.Section2 {
        float: right;
    }
    .form--search .Section .fieldSpec.button-field {
        width: 34%;
    }
    .form--search .Section.Section1 .main-field {
        width: 66%;
        float: left;
        border-right: 1px solid #cdc4ba !important;
        margin-right: -1px;
    }
    .form--search--keywords-only .Section .fieldSpec.button-field {
        width: 113px;
    }
    .form--search--keywords-only .Section.Section1 .main-field {
        width: calc(100% - 113px);
        float: left;
        border-right: none !important;
        margin-right: 0;
    }

    .form--search--keywords-only.form--search .Section .fieldSpec {
        height: 51px;
    }
    .form--search--keywords-only.form--search .Section .fieldSpec.button-field button {
        height: 43px;
    }
    .body--homepage .module--intersect {
        margin-top: -50px;
        margin-bottom: -50px;
        position: relative;
    }
    .module--intersect + .module > .module__wrapper {
        padding-top: 114px;
    }

    .body--homepage .module--intersect + .module > .module__wrapper {
        padding-top: 64px;
    }

    .module .module__header__text__subtitle {
        margin: 20px 0;
        line-height: 1.5
    }

    .body--homepage .article--result .article__header__text__title--1 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 10px;
        line-height: 1.2;
    }
    .body--homepage .article--result .article__header {
        text-align: left;
        margin-bottom: 0;
    }
    .body--homepage .article--result .article__header__actions {
        padding: 0 0 10px 0;
        margin-top: 0;
    }
    .body--homepage .article--result .article__header .link {
        display: inline-block;
        width: auto;
    }

    .counter--content {
        margin-top: 0;
        padding: 20px
    }
    .counter--number {
        font-size: 80px;
    }

    .counter sup {
        position: absolute;
        font-size: 40px;
        right: 60px;
        top: 50px;
    }

    .body--homepage .module--secondary .module__wrapper {
        padding: 80px 24px;
    }

    .column .button,
    .banner .button {
        width: 100%;
    }

    .body--edit-profile .module__header__text__title--1,
    .body--delete-profile .module__header__text__title--1 {
        color: #000;
        font-weight: 600;
    }
    .body--delete-profile .section__content {
        margin: 49px auto 0;
    }
    .body--delete-profile .section__content .form {
        margin: 49px auto 0;
    }
    .body--delete-profile [class*="--pad"] {
        padding: 69px 24px 0 !important;
    }

    .module--copy .column__item.column__item--pad:first-child {
        padding-bottom: 0 !important;
    }

    .module--copy .column__item.column__item--pad:last-child {
        padding-bottom: 80px !important;
    }
    .module--copy .module__header__text__title--extra-pad-vert {
        padding-bottom: 20px;
    }
    .frontVideoFullscreen {
        position: absolute !important;
        right: 20px;
        top: 52px;
    }

    .module--text .container--pad,
    .module--text .form--pad,
    .module--text .article__header__text--pad {
        padding: 0 !important;
    }
    .module--text .div--pad {
        padding: 20px 0 !important;
    }
    .module--copy.module--text .column__item.column__item--pad:last-child {
        padding-bottom: 20px !important;
    }

    .module--social .module__wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media all and (max-width: 600px) {
    .frontVideoFullscreen {
        position: inherit !important;
        width: auto !important;
        margin: 10px 0 !important;
        display: inline-block;
    }
}

/* Location Pages */
.locations--turkey .module--copy-2 + .module--copy-2 .module__wrapper--extra-pad-vert {
    padding-top:0;
}

.locations--apac .module--image-slider .image-slider--text p {
    text-align: center;
}
.locations--apac .bottomText .link {
    font-weight: 600;
}

/* Indeed */
.tracking--indeed {
    display: none;
}

/* Analytics */
.iframe--analytics {
    display: none;
    visibility: hidden;
}
