* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: "AndaleMono";
    src: url("../fonts/andale-mono.ttf") format("truetype");
}

@font-face {
    font-family: "Daxline Pro";
    src: url("../fonts/daxline-pro-regular.ttf") format("truetype");
}




@keyframes reveal-up {
    0%   {transform: translateY(50px); opacity: 0;}
    100% {transform: translateY(0px); opacity: 1;}
}

@keyframes reveal-up-less-opacity {
    0%   {transform: translateY(50px); opacity: 0;}
    100% {transform: translateY(0px); opacity: .65;}
}

@keyframes hide-down {
    0%   {transform: translateY(0px); opacity: 1;}
    100% {transform: translateY(50px); opacity: 0;}
}

@keyframes hide-up {
    0%   {transform: translateY(0px); opacity: 1;}
    100% {transform: translateY(-200px); opacity: 0;}
}

@keyframes hide-up-less {
    0%   {transform: translateY(0px); opacity: 1;}
    100% {transform: translateY(-50px); opacity: 0;}
}

@keyframes reveal-right {
    0%   {transform: translateX(-100px); opacity: 0;}
    100% {transform: translateX(0px); opacity: 1;}
}

@keyframes opacity-animation {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes opacity-animation-reverse {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fade-out {
    from {opacity: 1;}
    to {opacity: 0;}
}

.typed-cursor,
.typing-cursor {
    animation-duration: 1s;
    animation-name: opacity-animation;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}


.list-item {
    display: block;
    margin: .25em 0;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

.list-item.animate,
.paragraph.animate,
.read-more.animate,
.section-personality .title.animate,
.section-benefits .verb.animate,
.section-experiences .content-left.animate,
.section-experiences .content-right .logo-container.animate,
.section-together .together-block.animate,
.section-together .text-together h2.animate,
.section-contact .offices .office.animate {
    animation-duration: 1s;
    animation-name: reveal-up;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

.section-contact .social a.animate,
.section-contact .contact-us p.animate {
    animation-duration: 1s;
    animation-name: reveal-up-less-opacity;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

.list-item.animate-backward,
.paragraph.animate-backward,
.read-more.animate-backward {
    animation-duration: 0.3s;
    animation-name: hide-up-less;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

.section-benefits .verb.animate-backward {
    animation-duration: 1s;
    animation-name: hide-down;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

.section-together .text-together-5 ol li.animate,
.list-item.animate-backward {
    animation-duration: 0.2s;
    animation-name: reveal-right;
}

.section-benefits .verb.animate,
.section-benefits .verb.animate-backward {
    animation-duration: 0.5s;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    color: #333;
    font-family: "Mukta", sans-serif;
    font-size: 16px;
    font-weight: 300;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

a.underlined {
    display: inline-block;
    position: relative;
    text-decoration: none !important;
    line-height: 1.25em
}

a.underlined::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #FF9A00;
    transition: all 0.5s ease;
}

@media screen and (min-width: 1024px) {
    a.underlined:hover {
        color: #FF9A00;
    }
}

a.underlined:hover::after {
    width: 40%;
}


/* Navigation
----------------------------------------------------------------------------- */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 80px;
    padding: 30px 45px;
    z-index: 25000;
    overflow: hidden;
}

.navigation.navigation-light #mobile-menu-button span {
    background-color: #000;
}

.navigation.navigation-light a:hover,
.navigation.navigation-light a.selected {
    color: #000;
}

.navigation .logo.invisible {
    opacity: 0 !important;
}

.navigation .logo path {
    transition: all 0.5s ease;
    fill: #FFF;
}

.navigation .logo rect {
    fill: #FF9A00;
}

.navigation.navigation-light .logo path {
    fill: #000;
}

.navigation .logo {
    float: left;
    transition: all 0.1s ease;
}

.navigation .logo svg {
    cursor: pointer;
    display: block;
    height: auto;
    width: 130px;
    height: 30px;
}

.navigation a,
.navigation-mobile a {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    transition: color 1s ease;
    opacity: 0.75;
}

.navigation-mobile .menu > a:not(:last-of-type)::after {
    content: "";
    display: block;
    margin: .25em auto;
    margin-top: .45em;
    height: 2px;
    width: 33%;
    background-color: #5E5E5E;
}

.navigation a:hover,
.navigation a.selected,
.navigation-mobile a.selected {
    opacity: 1;
    color: #fff;
}

.navigation .menu,
.navigation .lang {
    float: right;
}

.navigation .menu {
    margin-right: 40px;
}

.navigation .menu a + a {
    margin-left: 2vw;
}

.navigation .lang {
    position: relative;
    padding-left: 40px;
}

.navigation .lang::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    color: #FFF;
    transition: all 1s ease;
}

.navigation.navigation-light .lang::before {
    color: #000;
}

.navigation .lang a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
}

.navigation .lang a + a {
    margin-left: .5vw;
}

.scroll-up,
.scroll-down {
    display: none;
    cursor: pointer;
    position: fixed;
    right: 10px;
    height: 30px;
    line-height: 30px;
    width: 30px;
    color: #fff;
    background: blue;
    text-align: center;
    z-index: 200000;
}
.scroll-up { bottom: 50px; }
.scroll-down { bottom: 10px; }


/* Section general styles
----------------------------------------------------------------------------- */

.section {
    overflow: hidden;
    box-sizing: border-box;
}

.section .content {
    padding: 0 10vw;
    height: 76vh;
    position: relative;
    z-index: 10;
}

.backgrounds {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.background.active {
    opacity: 1;
}


/* Section homepage
----------------------------------------------------------------------------- */

.down-arrow {
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    width: 100%;
    max-width: 500px;
    left: 50%;
    height: 80px;
    transform: translateX(-50%);
    text-align: center;
    z-index: 9999
}

.down-arrow img {
    display: block;
    margin: auto;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 1s ease;
}

.section-index .title_wrapper {
    display: block;
    margin: auto;
    height: 190px;
    width: 740px;
    position: relative;
}

.section-index .wrapper,
.section-index .logo_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
}

.section-index .wrapper {
    padding: 10px 0;
    height: 90px;
}

.section-index .wrapper .cursor {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    transition: all 0.5s ease;
    width: 4px;
}

.section-index .logo_wrapper {
    height: 70px;
    overflow: hidden;
    top: 10px;
}

.section-index .logo_wrapper:after {
    display: none;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.75) 100%);
}

.section-index .logo_wrapper .logo {
    position: absolute;
    left: 100%;
    top: 0;
    transition: left 1.5s ease-out;
    width: 340px;
    height: 70px;
    display: block;
}

.section-index .logo_wrapper .logo .letter {
    fill: #000;
}
.section-index .logo_wrapper .logo .point {
    fill: #FF9A00;
}

.section-index .logo {
    margin-right: 25px;
}

.section-index .title {
    color: #333;
    font-size: 45px;
    font-family: "AndaleMono";
    font-weight: normal;
    margin: 0 0 0 0;
    width: 360px;
    height: 145px;

    position: absolute;
    right: 0;
    top: 42px;
}

.section-index .social {
    position: absolute;
    bottom: 30px;
    right: 45px;
    text-align: center;
}

.section-index .social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 5px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 50%;
    opacity: .65;
    transition: all 0.5s ease;
}

.section-index .social a:hover {
    background-color: rgba(0,0,0,0.15);
    transform: scale(1.2);
    opacity: 1;
}

.section-index .social a img {
    vertical-align: sub;
    width: 70%;
    height: 70%;
}

.section-index .social a img.text-top {
    vertical-align: text-top;
}


/* Section corporate cultures
----------------------------------------------------------------------------- */
.section-corporate {
    background: #000;
    overflow: hidden;
    transition: all 0.5s ease;
}

.section-corporate .label {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 65px 0;
}

.section-corporate .background-1 {
    background-image: url("../images/background-corporate-1.jpg");
}

.section-corporate .background-2 {
    background-image: url("../images/background-corporate-2.jpg");
}

.section-corporate .background-3 {
    background-image: url("../images/background-corporate-4.jpg");
}

.section-corporate:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0,0,0,0.65)
}

.section-corporate p {
    display: none;
    transition: opacity 0.5s ease;
}

.section-corporate p.read-more {
    display: block;
    cursor: pointer;
    margin-bottom: 0 !important;
    opacity: 0;
    float: left;
    z-index: 9999;
}

.section-corporate p strong {
    color: #FF9900;
}

.section-corporate .hidden {
    opacity: 0.4 !important;
}

.section-corporate .content-left {
    float: left;
    width: 56%;
}

.section-corporate .content-left,
.section-corporate .content-left p,
.section-corporate .content-left p.list,
.section-corporate .content-left p.list .list-item {
    overflow: hidden;
}

.section-corporate .content-left p {
    color: #fff;
    font-size: 1.7vw;
    line-height: 1.15em;
    margin: 0 0 30px 0;
}

.section-corporate .content-left p.list {
    font-size: 1.5vw;
}

.section-corporate .content-left p.list .list-item {
    font-size: 1.2vw;
    font-weight: 300;
}

.section-corporate .content-right {
    display: none;
    position: absolute;
    top: -20vh;
    right: 0;
    bottom: -20vh;
    padding-top: 20vh;
    padding-left: 3vw;
    transition: all 0.75s ease;
    width: 34.5vw;
    background-color: rgba(0,0,0,0.55);
}

.section-corporate .content-right p,
.section-corporate .content-right span {
    color: #fff;
    font-size: 1.7vw;
    line-height: 1.15em;
    margin: 0 0 15px 0;
}

.section-corporate .content-right p.paragraph-2 {
    margin-top: 60px;
    margin-bottom: 40px;
}

.section-corporate .content-right span.coding {
    display: inline !important;
    position: relative;
    left: -15px;
    font-size: 3vw;
    font-family: "AndaleMono";
}

.section-corporate .content-right .typed-cursor {
    font-size: 3vw;
}


/* Section our personality
----------------------------------------------------------------------------- */
.section-personality {
    background: #000;
}

.section-personality .content {
    padding-right: 50%;
}

.section-personality .label {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 60px 0;
}

.section-personality .title {
    margin: 0 0 15px 0;
    cursor: pointer;
    font-size: 6vw;
    font-weight: bold;
    line-height: 1em;
    text-transform: uppercase;
    color: #5A5A5A;
    transition: all 0.5s ease;
}

.section-personality .title:hover {
    color: #DFDFDF;
}

.section-personality .title.selected {
    color: #FF9A00;
}

.section-personality .description {
    color: #999;
    font-size: 1.4vw;
    line-height: 1.3em;
    font-weight: 300;
    margin: 0 0 15px 0;
}

.section-personality .description strong {
    color: #eee;
    font-weight: inherit;
}

.section-personality:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0,0,0,0.65);
}

#personality-videos {
    z-index: 0;
    overflow: hidden;
}

.video-personality {
    position: absolute;
    overflow: hidden;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s ease;
}

.video-personality video {
    overflow: hidden;
    opacity: 0;
    z-index: 0;
    transition: all 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Section your benefits
----------------------------------------------------------------------------- */
.section-benefits {
    background: #000 url(../images/background-benefits.jpg) no-repeat center center;
    background-size: cover
}

.section-benefits .label {
    color: #FFF;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 60px 0;
}

.section-benefits .submenu {
    float: left;
    font-size: 18px;
    width: 53%;
}

.section-benefits .submenu .benefits-submenu-1 {
    margin-top: 0 !important;
}

.section-benefits .submenu a {
    position: relative;
    color: #fff;
    cursor: pointer;
    display: block;
    line-height: 1em;
    font-weight: bold;
    transition: all 0.5s ease;
    opacity: 0.5;
}

.section-benefits .submenu a,
.section-benefits .verb {
    font-size: 4vw;
}

/*.section-benefits .submenu a.active,
.section-benefits .submenu a.selected,
.section-benefits .verb.active {
    font-size: 3vw;
}*/

.section-benefits .submenu a.selected::before {
    color: #FF9A00;
    width: 3.5em;
    opacity: 1;
}

.section-benefits .submenu a span {
    white-space: nowrap;
}

.section-benefits .submenu a:hover,
.section-benefits .submenu a.active {
    opacity: 1;
}

.section-benefits .submenu a.selected {
    color: #FF9A00;
    /*padding-top: 60px;*/
    opacity: 1;
}

.section-benefits .submenu a::before {
    color: #FFF;
    content: "";
    height: 4px;
    width: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #FF9A00;
    opacity: 0;
    transition: all 1s ease;
}

/*.section-benefits .submenu a.selected::before {
    font-size: 5vw;
}*/

/*.section-benefits .submenu a.selected:after {
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-name: opacity-animation-reverse;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}*/


.section-benefits .submenu a:first-child.selected {
    padding-top: 0 !important;
}

.section-benefits .submenu a + a {
    padding-top: 20px;
}

.section-benefits .submenu .message {
    color: #FFF;
    display: block;
    font-size: 1.5vw;
    font-weight: 100;
    line-height: 1.1em;
    opacity: 1;
    margin: 20px 0 30px 0;
}

.section-benefits .text {
    height: 100%;
    overflow: hidden;
    position: relative;
    color: #FFF
}

.section-benefits .text .quote,
.section-benefits .text-benefits {
    transition: all 0.5s ease;
}

.section-benefits .text .quote {
    color: #FF9A00;
    line-height: 1.3em;
}

.section-benefits .text .quote {
    font-size: 1.4vw;
    position: absolute;
    left: 0;
    right: 0;
    width: 90%;
}

.section-benefits .text .quote p {
    margin-top: 0;
}

.section-benefits .text .quote.show {
    opacity: 1;
    animation-name: reveal-up;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}

.section-benefits .text .quote.hide {
    left: 0;
    opacity: 0;
}

.section-benefits .text-benefits {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    animation-name: fade-out;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.section-benefits .text-benefits.show {
    animation-name: reveal-up;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.section-benefits .text-benefits h2 {
    color: #FF9A00;
    font-size: 1.4vw;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.section-benefits .text-benefits ul {
    list-style: none;
    margin-bottom: 3em;
    padding: 0;
}

.section-benefits .text-benefits ul li {
    color: #FFF;
    position: relative;
    font-size: 1.2vw;
    font-weight: 300;
    margin: 0;
    margin-bottom: .75em;
    padding: 0;
    padding-left: .75em;
    line-height: 1.2em;
    overflow: visible;
}

.section-benefits .text-benefits ul li::before {
    content: "_";
    position: absolute;
    left: 0;
    top: 0;
}

.section-benefits .text-benefits ul li + li {
    margin-top: 5px;
}

.section-benefits .submenu-wrapper {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 2.1vw;
    transition: all 0.5s linear;
}

.section-benefits .submenu-wrapper a.active,
.section-benefits .submenu-wrapper:not(:first-child).selected {
    margin-top: 4.5vw;
    margin-bottom: 0;
}

.section-benefits .submenu-wrapper:first-child.selected {
    margin-top: 3.4vw;
}

.section-benefits .verb {
    padding: 0;
    color: #FF9A00;
    opacity: 0;
    cursor: pointer;
    display: block;
    line-height: 1em;
    font-weight: bold;
    height: 0;
    position: relative;
    left: 0;
    top: -0.85em;
    border: 1px solid transparent;
    transform: translateY(0px);
    transition: opacity 1s ease;
    z-index: -10;
}

.section-benefits:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0,0,0,0.85);
}



/* Section experiences
----------------------------------------------------------------------------- */
.section-experiences {
    background: #000 url(../images/shutterstock_279051326.jpg);
    background-size: cover;
}

.section-experiences:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0,0,0,0.8);
}

.section-experiences .label {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 25px 0;
}

.section-experiences .content-left {
    float: left;
    width: 32%;
    font-size: 1.5vw;
    color: #D6D6D6;
}

.section-experiences .content-left p {
    margin: .75em 0;
    line-height: 1.2em;
}

.section-experiences .content-left a {
    color: #FF9A00;
    text-decoration: none;
}

.section-experiences .content-right {
    position: relative;
    float: right;
    width: 64%;
    font-size: 1.6vw;
    color: #999;
    text-align: center;
}

.section-experiences .content-right .logo-container {
    display: inline-block;
    margin: 0 20px 40px 20px;
    box-sizing: border-box;
    width: 7vw;
    max-width: 100px;
    vertical-align: middle;
}

.section-experiences .content-right .logo-container.smaller {
    padding: 0 15px;
}

.section-experiences .content-right .logo-container.smallest {
    padding: 0 20px;
}

.section-experiences .content-right .logo-container img {
    width: 100%;
    vertical-align: middle;
}


/* Section You & Us
----------------------------------------------------------------------------- */
.section-together {
    background: url(../images/background-together-4.jpg) no-repeat center center !important;
    background-size: cover !important;
}

.section-together .background-1 {
    background-image: url("../images/background-together-4.jpg");
}

.section-together .background-2 {
    background-image: url("../images/background-together-4.jpg");
}

.section-together .background-3 {
    background-image: url("../images/background-together-4.jpg");
}

.section-together .background-4 {
    background-image: url("../images/background-together-4.jpg");
}

.section-together .background-5 {
    background-image: url("../images/background-together-4.jpg");
}

.section-together .label {
    color: #FFF;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 60px 0;
}

.section-together .submenu {
    float: left;
    font-size: 18px;
    width: 28%;
}

.section-together .submenu .together-submenu-1 {
    margin-top: 0 !important;
}

.section-together .submenu a {
    display: inline-block;
    position: relative;
    color: #fff;
    margin-bottom: 40px;
    cursor: pointer;
    line-height: 1em;
    font-size: 3vw;
    font-weight: bold;
    transition: all 0.5s ease;
    opacity: 0.5;
}

.section-together .submenu a.selected:after {
    animation-duration: 1s;
    animation-name: typing-cursor;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    color: #FF9A00;
}

.section-together .submenu a span {
    white-space: nowrap;
}

.section-together .submenu a:hover,
.section-together .submenu a.active {
    opacity: 1;
}

.section-together .submenu a.selected {
    color: #FF9A00;
    /*padding-top: 60px;*/
    opacity: 1;
}

.section-together .submenu a::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: -0.15em;
    width: 0;
    height: 1em;
    border-bottom: 4px solid #FF9A00;
    transition: all 0.5s ease;
}

.section-together .submenu a.selected::before {
    width: 100px;
}


.section-together .submenu a:first-child.selected {
    padding-top: 0 !important;
}

.section-together .submenu a + a {
    padding-top: 20px;
}

.section-together .text {
    height: 100%;
    overflow: hidden;
    position: relative;
    color: #FFF
}

.section-together .text .quote,
.section-together .text .text-together {
    transition: all 0.5s ease;
}

.section-together .text .quote.show {
    left: 15%;
    opacity: 1;
}

.section-together .text .quote.hide {
    left: 10vw;
    opacity: 0;
}

.section-together .text .text-together {
    padding-top: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    animation-name: fade-out;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.section-together .text .text-together > a {
    text-decoration: none;
}

.section-together .text .text-together.show {
    animation-name: fade-in;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.section-together .text .text-together h2 {
    color: #FF9A00;
    font-size: 1.7vw;
    line-height: 1em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.section-together .text .text-together > h2 {
    padding-left: 2.5%;
}

.section-together .text-together ul {
    list-style: none;
    margin-bottom: 3em;
    padding: 0;
}

.section-together .text-together ul li {
    color: #FFF;
    position: relative;
    font-size: 1.2vw;
    font-weight: 300;
    margin: 0;
    margin-bottom: .75em;
    padding: 0;
    padding-left: .75em;
    line-height: 1.2em;
    overflow: visible;
}

.section-together .text-together ul li::before {
    content: "_";
    position: absolute;
    left: 0;
    top: 0;
}

/*.section-together .text .text-together ul li + li {
    margin-top: 10px;
}*/

.section-together .submenu-wrapper {
    margin-top: 1vw;
    margin-bottom: 3.5vw;
}

.section-together .verb {
    padding: 0;
    color: #FF9A00;
    opacity: 0;
    cursor: pointer;
    display: block;
    line-height: 1em;
    font-weight: bold;
    height: 0;
    position: relative;
    top: -0.65em;
    border: 1px solid transparent;
    transition: all 1s ease;
}

.section-together:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0,0,0,0.75);
}

.section-together .together-block {
    display: inline-block;
    box-sizing: border-box;
    width: 33%;
    padding: 0 2.5% 3.5% 2.5%;
    vertical-align: top;
    transition: all 0.5s ease;
}

.section-together .together-block h2 {
    font-size: 1.7vw !important;
}

.section-together .together-block p {
    margin: .5em 0;
    font-size: 1.3vw;
    line-height: 1.3em;
    color: #FFF;
}

.section-together .together-block p:first-child {
    margin-top: 0;
}

.section-together .together-block.full-width {
    padding-bottom: 2%;
    width: 100%;
}

.section-together .together-block.half-width {
    width: 49%;
}

.section-together .together-block.full-width  h2 {
    font-size: 1.9vw !important;
}

.section-together .together-block.half-width  h2 {
    margin: 0;
    line-height: 1.1em;
}

.section-together .together-block.knowledge  h2 {
    color: #FF9A00;
    line-height: 1em;
    font-size: 1.9vw;
    margin: 0;
    margin-bottom: .25em;
    text-transform: uppercase;
}

.section-together .together-block.knowledge  h2:last-of-type {
    margin-top: 2em;
}

.section-together .together-block.knowledge  a {
    text-decoration: underline;
}

.section-together .together-block.full-width  a {
    color: #FF9A00;
}

.section-together .together-block.vertical-bottom {
    vertical-align: bottom;
    width: 100%;
}

.section-together .together-block.vertical-bottom a {
    color: #FF9A00;
}

.section-together .together-block p.location {
    margin: 0;
    text-transform: uppercase;
}

.section-together .together-block p.date {
    margin-top: 0;
    font-size: 0.9vw;
    color: #999999;
}

.section-together .text-together-3 .together-block.blog-block,
.section-together .text-together-5 .together-block.first {
    width: 60%;
}

.section-together .text-together-3 .together-block.blog-block p,
.section-together .text-together-5 .together-block.first p {
    margin-bottom: 0.75em;
}

.section-together .text-together-3 .together-block.blog-link,
.section-together .text-together-5 .together-block.aside {
    margin-left: 2.5%;
}

.section-together .text-together-3 .together-block.blog-link,
.section-together .text-together-3 .together-block.blog-link a,
.section-together .text-together-5 .together-block.aside,
.section-together .text-together-5 .together-block.aside a {
    font-size: 1.4vw;
    font-weight: 400;
    color: #FF9A00;
}

.section-together .text-together-5 .together-block.jobs-link a {
    font-size: 1.5vw;
    color: #FF9A00;
}

.section-together .text-together-3 a {
    color: #FF9A00;
    text-decoration: none;
}

.section-together .text-together-3 a h2 {
    text-decoration: underline;
}

.section-together .text-together-3 a p {
    margin-bottom: 1em;
}

.section-together .text-together-5 .together-block.aside {
    width: 100%;
}

.section-together .text-together-5 ol {
    color: #FF9A00;
    font-size: 1.2vw;
}

.section-together .text-together-5 ol li {
    opacity: 0;
}

.section-together .text-together-5 ol li span {
    color: #FFF;
}

.section-together .text-together-4 p {
    font-size: 1.05vw;
}

.section-together .text-together-4.show {
    padding: 0;
    padding-top: 0;
}

.section-together .text-together-4 {
    display: flex;
    flex-direction: row;
}

.section-together .text-together-4 .together-block {
    box-sizing: border-box;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
}

.section-together .text-together-4 .together-block a {
    margin-top: auto;
}

.section-together .text-together-5 .together-block .responsive-video {
    margin-top: 20px;
}

.partner-logo {
    display: block;
    height: 50px;
    margin-top: 30px;
    padding: 0;
    opacity: .75;
    transition: all 0.5s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Section blog
----------------------------------------------------------------------------- */

.section-blog .mobile-label {
    color: #000;
}

.section-blog .label {
    color: #000;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 60px 0;
}

/* Section contact
----------------------------------------------------------------------------- */

.section-contact {
    background: #000 url(../images/background-contact.png) no-repeat center center;
    background-size: cover;
}

.section-contact:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: rgba(0,0,0,0.75);
}

.section-contact .content {
    position: relative;
    padding: 0 5vw;
}

.section-contact .label {
    color: #FFF;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 13vh 0;
}

.section-contact .offices {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15vh;
    width: 100%;
}

.section-contact .offices .office {
    float: left;
    width: 15.5%;
    text-align: center;
    opacity: 0;
}

.section-contact .offices .office:first-child {
    margin-left: -2.5vw;
}

.section-contact .offices .office .office-info-wrapper {
    display: inline-block;
    padding: .5em;
    text-align: left;
}

.section-contact .offices .office-name {
    position: relative;
    display: block;
    margin-bottom: .5em;
    font-size: 1.8vw;
    font-weight: bold;
    opacity: 1;
    transition: all 0.5s ease;
    color: #FF9A00;
}

.section-contact .offices .office-name.headquarters::before {
    position: absolute;
    top: -38%;
    left: 0;
    content: "Headquarters";
    font-size: 1.5vw;
    display: block;
    font-weight: 300;
    color: #FF9A00;
}

.section-contact .offices .office-info {
    white-space: nowrap;
    color: #FFF;
    font-size: 1vw;
}

.contact-us a, .office-info a {
    color: #FFF;
}

.office-info a {
    opacity: 0.65;
    transition: all 0.15s ease;
}

.office-info a:hover {
    opacity: 1;
}

.office-info a.underlined::after {
    height: 1px;
}

.office-info a.underlined:hover::after {
    width: 100%;
}

.section-contact .contact-us {
    text-align: center;
    margin-top: 28vh;
    color: #FFF;
}

.section-contact .contact-us .mail,
.section-contact .contact-us .phone {
    opacity: 0.75;
    font-size: 1.5vw;
    transition: all 0.5s ease;
}


.section-contact .contact-us .mail a .underline {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid #B8B8B8;
    width: 100%;
    transition: all 0.5s ease;
}

.section-contact .contact-us .mail a:hover .underline {
    width: 50%;
    transform: translateX(-50%) scaleY(2);
}

.section-contact .contact-us .mail {
    margin-bottom: .5em;
}

.section-contact .contact-us a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    height: 1.5em;
}

.section-contact .contact-us .subtitle {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3em;
}

.section-contact .contact-us p {
    margin: 0;
}

.section-contact .social {
    margin-top: 10vh;
    text-align: center;
}

.section-contact .social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-left: 5px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #FFF;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.section-contact .social a:hover {
    background-color: #696969;
    transform: scale(1.2);
    opacity: 1;
}

.section-contact .social a img {
    vertical-align: text-top;
    width: 70%;
    height: 70%;
}

.social a img.text-bottom {
    position: relative;
    top: -2px;
    left: 1px;
}


/* Mobile */

.navigation-mobile {
    display: none;
}

#mobile-menu-button {
    display: none;
    width: 25px;
    height: 25px;
    position: relative;
    top: 5px;
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 25000;
}

#mobile-menu-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #FFF;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#mobile-menu-button span:nth-child(1) {
    top: 0px;
}

#mobile-menu-button span:nth-child(2),#mobile-menu-button span:nth-child(3) {
    top: 8px;
}

#mobile-menu-button span:nth-child(4) {
    top: 16px;
}

#mobile-menu-button.open span:nth-child(1),
#mobile-menu-button.open span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#mobile-menu-button.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#mobile-menu-button.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.benefits-mobile-text {
    display: none;
}

.portrait-only,
.mobile-label,
.mobile-only,
.mobile-only::after,
.mobile-only::before {
    display: none !important;
}

/* Short-height, desktop screens*/

@media screen and (min-width: 1024px) and (max-height: 795px) {
    .section-corporate .label,
    .section-personality .label,
    .section-benefits .label {
        margin-bottom: 30px;
    }

    .section-corporate .content-left p {
        line-height: 1.05em;
        margin-bottom: .85em;
    }

    .section-benefits .submenu-wrapper {
        margin-bottom: 1.2em;
    }

    .section-benefits .submenu-wrapper:first-child.selected {
        margin-top: 1.2em;
    }

}

@media screen and (max-width: 1600px) {
    .section-experiences .label {
        margin: 0 0 15px 0;
    }

    .section-experiences .content-right .logo-container {
        width: 7vw;
        max-width: 80px;
        margin: 0 20px 20px 20px;
    }
}

@media screen and (max-width: 1024px) {

    a.underlined:hover::after {
        display: none !important;
    }

    .landscape-only {
        display: initial;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-label,
    .mobile-only,
    .mobile-only::after,
    .mobile-only::before {
        display: block !important;
    }

    .mobile-label {
        display: block;
        position: absolute;
        top: 38px;
        left: 50%;
        transform: translateX(-40%);
        color: #fff;
        text-transform: uppercase;
        font-size: 20px;
        z-index: 999999;
    }

    .navigation {
        height: auto;
        padding: 5vw;
        padding-top: 3vw;
        padding-bottom: 0;
    }

    .navigation a {
        font-size: 16px;
    }

    .navigation .lang a {
        font-size: 14px;
    }

    .navigation .logo svg {
        width: 120px;
    }

    #mobile-menu-button {
        display: block;
    }

    .menu-wrapper {
        display: none;
    }

    .navigation-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        bottom: 0;
        right: -100%;
        padding-top: 15vh;
        /*transform: translateX(100%);*/
        background-color: rgba(0,0,0,0.95);
        transition: all 0.5s ease;
        text-align: center;
        overflow: hidden;
        z-index: 20000;
    }

    .navigation-mobile.mobile-open {
        left: 0;
        right: 0;
        /*transform: translateX(0%);*/
    }

    .navigation-mobile .lang {
        margin-top: 2.5em;
        text-align: center;
    }

    .navigation-mobile .lang a {
        text-decoration: none;
        font-size: 23px;
        line-height: 23px;
        color: #BABABA;
        opacity: .75;
    }

    .navigation-mobile .lang a + a {
        margin-left: .5em;
    }

    .navigation-mobile .lang a.selected {
        opacity: 1;
        color: #fff;
    }

    .navigation-mobile .menu {
        display: inline-block;
        margin: 0 auto;
    }

    .navigation-mobile .menu > a {
        font-size: 30px;
        line-height: 30px;
        display: block;
        text-align: center;
    }

    .section .content {
        padding: 0 5vw;
        padding-top: 10vh;
    }

    .mobile-section-nav {
        display: none !important;
    }

    /* INDEX */

    .section-index .title_wrapper {
        width: 500px;
    }

    .section-index .wrapper,
    .section-index .logo_wrapper {
        padding: 0;
        top: 0;
        width: 250px;
        height: 70px;
    }

    .section-index .title_wrapper .logo_wrapper .logo {
        width: 90%;
    }

    .section-index .title_wrapper .title_text {
        font-size: 32px;
    }

    .section-index .title_wrapper .typed-cursor {
        font-size: 32px;
    }

    .section-index .title {
        font-size: 32px;
        width: 240px;
        top: 28px;
    }

    .label {
        display: none;
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }


    /* SECTION CORPORATE CULTURES */

    .section-corporate .content-left {
        width: 100%;
        opacity: 1;
    }

    .section-corporate .content-left p {
        width: 55%;
        margin-bottom: 22px;
        font-size: 20px;
    }

    .section-corporate .content-left p.list .list-item {
        font-size: 18px;
        line-height: 20px;
    }

    .section-corporate .read-more,
    .section-corporate .read-more img {
        width: 40px;
    }

    .section-corporate .content .content-right {
        padding-top: 30vh;
    }

    .section-corporate .content-right p.paragraph-2 {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .section-corporate .content-right p {
        font-size: 22px;
    }

    .section-corporate .content-right span.coding {
        left: -5px;
        font-size: 30px;
    }

    .section-corporate .content-right .typed-cursor {
        font-size: 30px;
    }

    /* SECTION PERSONALITY */

    .section-personality .content {
        padding-right: 0;
        width: 90%;
    }

    .section-personality .title {
        font-size: 70px;
    }

    .section-personality .description {
        font-size: 20px;
    }

    /* SECTION YOUR BENEFITS */

    .section-benefits .submenu-wrapper.selected {
        margin-top: 2.25em !important;
    }

    .section-benefits .submenu a:hover {
        opacity: 0.5;
    }

    .section-benefits .submenu a.selected:hover {
        opacity: 1;
    }

    .section-benefits .submenu a,
    .section-benefits .submenu a::before,
    .section-benefits .verb {
        font-size: 40px;
    }

    .section-benefits .submenu a.active,
    .section-benefits .submenu a.selected,
    .section-benefits .submenu a.active::before,
    .section-benefits .submenu a.selected::before,
    .section-benefits .verb.active {
        font-size: 45px;
    }

    .section-benefits .verb {
        top: -.75em;
    }

    .section-benefits .submenu .message {
        padding-right: 2em;
        font-size: 25px;
        line-height: 1.1em;
    }

    .section-benefits .text-benefits ul li + li {
        margin-top: 0;
    }

    .section-benefits .text-benefits h2 {
        color: #FF9A00;
        font-size: 18px;
        margin: 0;
        text-transform: uppercase;
    }

    .section-benefits .text-benefits ul {
        margin: 0;
        margin-bottom: 1em;
    }

    .section-benefits .text-benefits ul li {
        color: #FFF;
        font-size: 22px;
        font-weight: 300;
        margin: 0;
        padding: 0;
        padding-left: .75em;
    }

    .section-benefits .text .quote {
        width: 100%;
        left: 0;
        margin-top: 0;
        font-size: 22px;
    }

    .section-benefits .text .quote p {
        margin-top: 0;
    }

    .section-benefits .text .quote.show {
        left: 0;
    }

    .section-benefits .submenu a:after {
        margin-left: 4px;
    }


    /* SECTION EXPERIENCES */

    .section-experiences .content {
        padding-top: 0;
    }

    .section-experiences .content-left {
        margin-top: 2em;
    }

    .section-experiences .label {
        margin-bottom: 10px !important;
    }

    .section-experiences .content-left,
    .section-experiences .content-right {
        padding-top: 0;
        float: none;
        width: 100%;
    }

    .section-experiences .content-left p {
        margin-top: 0;
        margin-bottom: .25em;
        font-size: 20px;
    }

    .section-experiences .content-right {
        margin-top: 20px;
        top: 0;
    }

    .section-experiences .content-right .logo-container {
        width: 10%;
        margin: 1.35% 2.75%;
        height: auto;
        vertical-align: middle;
    }

    .section-experiences .content-right .logo-container.smaller {
        padding: 0 5px;
    }

    .section-experiences .content-right .logo-container.smallest {
        padding: 0 10px
    }


    /* SECTION YOU & US */

    .section-together .submenu {
        position: relative;
        top: 10px;
        margin-bottom: 20px;
        float: none;
        width: 100%;
        white-space: nowrap;
    }

    .section-together .submenu br {
        display: none;
    }

    .section-together .submenu a {
        margin: 0;
        font-size: 22px;
    }

    .section-together .submenu a:hover,
    .section-together .submenu a.active {
        opacity: 0.5;
    }

    .section-together .submenu a.selected {
        opacity: 1;
    }

    .section-together .submenu a:not(:last-child)::after {
        content: "|";
        margin-left: .25em;
        color: #FFF;
        opacity: 0.5;
    }

    .section-together .submenu a::before {
        border-bottom-width: 2px;
    }

    .section-together .submenu a.selected::before {
        width: 90%;
    }

    .section-together .together-block {
        width: 100% !important;
        padding-right: 0 !important;
    }

    .section-together .text-together-1 .together-block {
        width: 33% !important;
        margin-bottom: .75em;
        padding-right: 1.5em !important;
    }

    .section-together .text .text-together h2,
    .section-together .text .text-together h3 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    .section-together .together-block.half-width  h3:last-of-type {
        margin-top: 1em;
    }

    .section-together .text .text-together p {
        font-size: 18px;
        font-weight: normal;
        margin: 0;
    }

    .section-together .text .text-together ul {
        margin: 0;
    }

    .section-together .text .text-together ul li {
        font-size: 18px;
        line-height: 22px;
    }

    .section-together .text-together-3 .together-block.blog-link,
    .section-together .text-together-5 .together-block.aside {
        margin-left: 0;
    }

    .section-together .text-together-5 .together-block.aside a {
        margin-top: 20px;
        font-size: 18px;
    }

    .section-together .text {
        overflow: visible;
    }

    .section-together .text-together {
        overflow: visible;
        margin-top: 20px;
    }

    .section-together .text-together-5 .together-block.first {
        padding-bottom: 10px;
    }

    .section-together .text-together ul li {
        margin: 0;
    }

    .section-together .text-together-4 {
        flex-direction: column;
    }

    .section-together .text-together-4 .together-block {
        padding: 0;
        margin: 0;
    }

    .partner-logo {
        height: 25px;
        margin: 0;
        margin-bottom: 25px;
        margin-top: 10px;
        padding: 0;
    }

    .partner-logo.smaller {
        height: 20px;
    }

    .section-together .together-block,
    .section-together .text .text-together > h2 {
        padding-left: 0;
        padding-right: 0;
    }

    /* SECTION CONTACT*/

    .section-contact .contact-us {
        margin-top: 10vh;
    }

    .section-contact .contact-us .mail {
        margin-bottom: .1em;
    }

    .section-contact .contact-us .mail a {
        border-bottom: 1px solid #B8B8B8;
    }

    .section-contact .contact-us .mail,
    .section-contact .contact-us .phone {
        font-size: 25px;
    }

    .section-contact .contact-us .mail a .underline {
        display: none;
    }

    .section-contact .social {
        margin-top: 5vh;
    }

    .section-contact .social a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .section-contact .offices {
        display: block;
        position: absolute;
        bottom: 5vh;
        left: 50px;
    }

    .section-contact .offices .office {
        float: none;
        width: 60%;
        text-align: left;
    }

    .section-contact .offices .office:first-child {
        margin-left: 0;
    }

    .section-contact .offices .office .office-info-wrapper {
        display: block;
        padding: 0;
    }

    .section-contact .offices .office-name {
        font-size: 30px;
        line-height: 34px;
        margin: 0;
    }

    .section-contact .offices .office-name.headquarters::before {
        top: -22px;
        font-size: 22px;
        transition: all 0.5s ease;
    }

    .section-contact .offices .office-name:not(.selected),
    .section-contact .offices .office-name:not(.selected)::before {
        color: #FFF;
        opacity: 0.75;
    }

    .section-contact .offices .office-info {
        display: none;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .section-contact .offices .office-info.headquarters {
        display: block;
    }

    .section-contact .offices .office-info p {
        line-height: 20px;
        margin: 0;
    }

    /* END SECTION ARROW */
    .down-arrow {
        bottom: 30px;
        height: 30px;
    }

    .down-arrow img {
        height: 100%;
    }

}

@media screen and (max-width: 1024px) and (max-height: 650px) {

    .section-corporate .content-right {
        padding-top: 3em;
    }

    .section-experiences .content-left {
        margin-top: 5.5em;
    }

    .section-experiences .content-right {
        margin-top: 10px;
    }

}

/* PORTRAIT ONLY OVERRIDES */

@media screen and (max-width: 768px) {

    .landscape-only {
        display: none !important;
    }

    .portrait-only {
        display: initial !important;
    }

    .navigation-mobile .lang {
        margin-top: 2.5em;
    }

    .mobile-label {
        top: 18px;
    }

    .section .content {
        padding-top: 5vh;
    }


    /* SECTION CORPORATE CULTURES */

    .section-corporate .content-left.animate-backward {
        animation-duration: 1s;
        animation-name: hide-up;
        animation-iteration-count: 1;
        animation-timing-function: ease;
    }

    .section-corporate .content-left.invisible {
        opacity: 0;
    }

    .section-corporate .content-left p.visible {
        opacity: 1 !important;
    }

    .section-corporate .content-left p {
        width: 80%;
    }

    .section-corporate .content .content-right {
        background-color: transparent;
        position: absolute;
        padding: 0;
        padding-top: 1em;
        padding-left: 10%;
        top: 30px;
        left: 0;
        width: 100%;
    }


    /* SECTION YOUR BENEFITS */

    .mobile-section-nav a.active,
    .mobile-section-nav a.selected {
        color: #FF9A00;
        opacity: 1;
    }

    .mobile-section-nav {
        display: block !important;
        position: relative;
        top: -20px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .mobile-section-nav a {
        display: inline-block;
        color: #FFF;
        font-size: 3.8vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.2em;
        width: 25%;
        opacity: 0.75;
        transition: all 0.5s ease;
    }

    .mobile-section-nav a:not(:first-of-type) {
        padding-left: .75em;
    }

    .mobile-section-nav a + a {
        border-left: 1px solid #C2C2C2;
    }

    .section-benefits .submenu {
        float: none;
        width: 100%;
    }

    .section-benefits .submenu .message {
        margin: 10px 0;
        margin-top: .75em;
    }

    .section-benefits .submenu-wrapper {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .section-benefits .submenu-wrapper.visible {
        visibility: visible;
        height: auto;
        opacity: 1;
    }

    .section-benefits .text .text-benefits {
        display: none;
    }

    .section-benefits .text-benefits {
        position: relative;
        padding-top: 1em;
    }

    .benefits-mobile-text {
        display: block;
    }


    /* SECTION EXPERIENCES */

    .section-experiences .content {
        padding-top: 0;
    }

    .section-experiences .content-left {
        margin-top: 2em;
    }

    .section-experiences .content-left,
    .section-experiences .content-right {
        padding-top: 15px;
    }

    .section-experiences .content-left p {
        margin-bottom: .75em;
    }

    .section-experiences .content-right {
        margin-top: 24px;
    }

    .section-experiences .content-right .logo-container {
        width: 15%;
        margin: 2%;
    }


    /* SECTION YOU & US */

    .section-together .submenu {
        top: -20px;
        margin-bottom: 0;
    }

    .section-together .together-block,
    .section-together .text-together-1 .together-block {
        width: 100% !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }

    .section-together .text-together-1 .together-block {
        padding-bottom: 3.5% !important;
    }

    /* SECTION CONTACT */

    .section-contact .contact-us .mail,
    .section-contact .contact-us .phone {
        font-size: 40px;
    }

    .section-contact .social a {
        width: 50px;
        height: 50px;
        line-height: 40px;
    }

}

/* MOBILE SPECIFIC OVERRIDES */

@media screen and (max-width: 480px) {

    .section .content {
        padding: 0 5vw;
        padding-top: 2.75vh;
    }

    .navigation .logo svg {
        width: 75px;
    }

    .navigation-mobile {
        padding-top: 17vh;
    }

    .navigation-mobile .lang {
        margin-top: 0;
    }

    .navigation-mobile .lang a {
        margin-top: 2.75em;
    }

    .navigation-mobile .lang a {
        font-size: 20px;
        line-height: 20px;
    }

    .navigation-mobile .menu > a {
        font-size: 25px;
        line-height: 25px;
    }

    .label {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .mobile-label {
        top: 15px;
        font-size: 16px;
    }

    .section-index .social {
        left: 0;
        right: 0;
        bottom: 40px;
    }

    .mobile-section-nav {
        overflow: visible;
        top: .5em;
        margin-bottom: 40px;
        z-index: 999999999;
        white-space: nowrap;
    }

    .mobile-section-nav a + a::before {
        font-size: 10px;
    }

    .mobile-section-nav a:not(:first-of-type) {
        padding-left: .25em;
    }


    /* SECTION INDEX */

    .section-index .title_wrapper {
        width: 300px;
    }

    .section-index .wrapper,
    .section-index .logo_wrapper {
        padding: 0;
        top: 0;
        width: 150px;
        height: 70px;
    }

    .section-index .title_wrapper .logo_wrapper .logo {
        width: 90%;
    }

    .section-index .title_wrapper .title_text {
        font-size: 20px;
    }

    .section-index .title_wrapper .typed-cursor {
        font-size: 20px;
    }

    .section-index .title {
        font-size: 20px;
        width: 140px;
        top: 32px;
    }


    /* SECTION CORPORATE */

    /*.section-corporate .label {
        display: block;
    }*/

    .section-corporate .content-left p {
        width: 100%;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .section-corporate .content-left p.list .list-item {
        font-size: 13px;
        line-height: 17px;
    }

    .section-corporate .read-more,
    .section-corporate .read-more img {
        width: 30px;
    }

    .section-corporate .content-right {
        padding-top: 35px;
        padding-left: 35px;
    }

    .section-corporate .content-right p {
        font-size: 16px;
    }

    .section-corporate .content-right span.coding {
        left: -5px;
        font-size: 24px;
    }

    .section-corporate .content-right .typed-cursor {
        font-size: 24px;
    }


    /* SECTION PERSONALITY */

    .section-personality .title {
        font-size: 40px;
    }

    .section-personality .description {
        font-size: 16px;
    }


    /* SECTION YOUR BENEFITS */

    .section-benefits .submenu-wrapper.selected {
        margin-top: 1.25em !important;
    }

    .section-benefits .submenu-wrapper:first-child.selected {
        margin-top: 1.3em !important;
    }

    .section-benefits .submenu a::before {
        height: 2px;
        bottom: -4px;
    }

    .section-benefits .submenu a,
    .section-benefits .submenu a::before,
    .section-benefits .verb {
        font-size: 14px;
    }

    .section-benefits .submenu a.active,
    .section-benefits .submenu a.selected,
    .section-benefits .submenu a.active::before,
    .section-benefits .submenu a.selected::before,
    .section-benefits .verb.active {
        font-size: 23px;
    }

    .section-benefits .verb {
        top: -.75em;
    }

    .section-benefits .submenu .message {
        margin: 10px 0;
        font-size: 18px;
        line-height: 1.1em;
    }

    .section-benefits .text-benefits h2 {
        font-size: 14px;
        margin: 0;
    }

    .section-benefits .text-benefits ul li {
        font-size: 15px;
        padding-left: .75em;
    }

    .section-benefits .text .quote {
        width: 100%;
        left: 0;
        font-size: 16px;
    }


    /* SECTION EXPERIENCES */

    .section-experiences .content-left p {
        margin-top: 0;
        font-size: 16px;
    }

    .section-experiences .content-right {
        margin-top: 8px;
    }

    .section-experiences .content-right .logo-container.smaller {
        padding: 0 5px;
    }

    .section-experiences .content-right .logo-container.smallest {
        padding: 0 10px
    }


    /* SECTION YOU & US */

    .section-together .submenu {
        top: -5px;
        margin-bottom: 25px;
    }

    .section-together .submenu a {
        margin: 0;
        font-size: 4.26vw;
    }

    html[lang^="ca"] .section-together .submenu a,
    html.raona_lang_ca .section-together .submenu a {
        font-size: 3.42vw;
    }

    html[lang^="es"] .section-together .submenu a,
    html.raona_lang_es .section-together .submenu a {
        font-size: 3.92vw;
    }

    .section-together .text .text-together h2,
    .section-together .text .text-together h3 {
        font-size: 15px !important;
        margin-bottom: 0;
    }

    .section-together .text .text-together p {
        font-size: 16px;
        line-height: 1.1em;
        font-weight: 300;
        margin: 0;
    }


    .section-together .text .text-together ul li {
        font-size: 11px;
        line-height: 12px;
    }

    .section-together .together-block {
        width: 100% !important;
        margin-bottom: .25em;
    }

    .section-together .text-together-1 .together-block {
        padding-bottom: 0 !important;
    }

    .section-together .text-together-5 .together-block.aside a {
        margin-top: 20px;
        font-size: 16px;
    }

    .section-together .text-together {
        margin-top: -10px;
    }


    /* SECTION CONTACT*/

    .section-contact .contact-us {
        margin-top: 8vh;
    }

    .section-contact .contact-us .mail,
    .section-contact .contact-us .phone {
        font-size: 18px;
    }

    .section-contact .social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .section-contact .offices {
        bottom: 0;
        left: 20px;
    }

    .section-contact .offices .office-name {
        font-size: 20px;
        line-height: 22px;
        margin: 0;
    }

    .section-contact .offices .office-name.headquarters::before {
        top: -15px;
        font-size: 15px;
    }

    .section-contact .offices .office-info {
        display: none;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-contact .offices .office-info p {
        line-height: 12px;
        margin: 0;
    }


    /* END SECTION ARROW */
    .down-arrow {
        bottom: 10px;
        height: 15px;
    }

    .down-arrow img {
        height: 100%;
    }

}

/* LOW SCREEN HEIGHT MOBILE SPECIFIC OVERRIDES */

@media screen and (max-height: 480px) {

    .section-benefits .text-benefits {
        padding-top: .25em;
    }

    .section-benefits .text-benefits ul {
        margin-bottom: .35em;
    }

    .section-benefits .text-benefits ul li {
        font-size: 14px;
        padding-left: .75em;
    }

    .section-together .text .text-together-1 p,
    .section-together .text .text-together-4 p {
        font-size: 13px;
    }

    .section-contact .content {
        padding-top: 0;
    }

    .section-contact .contact-us {
        margin-top: 6vh;
    }

    .partner-logo {
        height: 20px;
    }

}

/* NARROW MOBILE SPECIFIC OVERRIDES */

@media screen and (max-width: 350px) {

    .navigation-mobile {
        padding-top: 50px;
    }

    .navigation-mobile .lang a {
        margin-top: 2em;
    }

    /* SECTION INDEX */

    .section-index .title_wrapper {
        width: 250px;
    }

    .section-index .wrapper,
    .section-index .logo_wrapper {
        padding: 0;
        top: 0;
        width: 120px;
        height: 60px;
    }

    .section-index .title_wrapper .logo_wrapper .logo {
        width: 90%;
    }

    .section-index .title_wrapper .title_text {
        font-size: 20px;
    }

    .section-index .title_wrapper .typed-cursor {
        font-size: 20px;
    }

    .section-index .title {
        font-size: 20px;
        width: 120px;
        top: 32px;
    }

}
