/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

@font-face {
    font-family: "Museo Sans";
    src: url("../fonts/MuseoSans-300.woff2") format("woff2"),
        url("../fonts/MuseoSans-300.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans";
    src: url("../fonts/MuseoSans-500.woff2") format("woff2"),
        url("../fonts/MuseoSans-500.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans";
    src: url("../fonts/MuseoSans-700.woff2") format("woff2"),
        url("../fonts/MuseoSans-700.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Museo Sans";
    src: url("../fonts/MuseoSans-900.woff2") format("woff2"),
        url("../fonts/MuseoSans-900.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --gap: 36px;
    --gap9: calc(var(--gap) / 4);
    --gap12: calc(var(--gap) / 3);
    --gap24: calc(var(--gap) / 3 * 2);
    --gap18: calc(var(--gap) / 2);
    --gap10: calc(var(--gap) / 4);
    --gap48: calc(var(--gap) / 3 * 4);
    --gap72: calc(var(--gap) * 2);
    --gap108: calc(var(--gap) * 3);

    --font-family-heading: "Museo Sans", "Inter", Verdana, sans-serif;
    --font-family-body: Verdana, sans-serif;

    --color-teal: #40beac;
    --color-indigo: #0000f4;
    --color-indigo2: #0000f3;
}

body {
    line-height: 1.4;
    transition: all 400ms;
    padding: 0;
    margin: 0;
    font-family: 'Museo Sans', sans-serif;
    font-weight: 400;
    background-color: #000000;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

i {
    font-style: italic;
}

a {
    text-decoration: none;
}

.index {
    padding: 36px 72px;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.index h1 {
    font-size: 32px;
    margin: 1em 0;
    font-weight: bold;
}

.index h2 {
    font-size: 24px;
    margin: 1em 0;
    font-weight: bold;
}

.index h3 {
    font-size: 18px;
    margin: 1em 0 0;
    font-weight: bold;
}

.index h4 {
    font-size: 15px;
    margin: 1em 0 0;
    font-weight: bold;
}

.index a {
    color: #111111;
    font-weight: bold;
}

.index ol {
    list-style: decimal;
    margin: 1em 1em 2em 2.5em;
}

.index ol.margin-bottom-normal {
    margin-bottom: 1em;
}

.index ul {
    margin: 1em 1em 2em 1em;
}

.index ol li,
.index ul li {
    margin: 0.5em 0;
}

.index ol li a,
.index ul li a {
    font-weight: 400;
    font-size: 14px;
}

.index p {
    margin: 1em 0;
}

.static-placeholder.flowchart {
    padding: 36px;
}

.static-placeholder>a {
    display: block;
}

.static-placeholder img {
    display: block;
}

.static .demo-static {
    display: block;
    width: 100%;
}

.floating-bar {
    position: fixed;
    z-index: 9;
    font-weight: 700;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
}

.floating-bar .logo {
    display: block;
    position: relative;
    width: 64px;
    margin-top: var(--gap24);
}

.floating-bar .logo img {
    display: block;
    width: 100%;
    opacity: 0;
}

body.logo-white .floating-bar .logo img.white {
    opacity: 1;
}
body.logo-color .floating-bar .logo img.color {
    opacity: 1;
}

.floating-bar .logo img:not(.current) {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.go-away .floating-bar {
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.inside {
    background-color: #F3F3F3;
}

.inside .floating-bar {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.floating-bar .box {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    padding: 0 var(--gap);
}

.floating-bar .icons {
    transition: all 400ms;
}

.floating-bar .icons>a:not(.share):not(.modal-close) {
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    background-size: contain !important;
    margin: 22px 0 22px 1vw;
    vertical-align: top;
    -webkit-transition: all .2s linear 0.1s;
    -moz-transition: all .2s linear 0.1s;
    -ms-transition: all .2s linear 0.1s;
    -o-transition: all .2s linear 0.1s;
    transition: all .2s linear 0.1s;
    padding-left: 30px;
    box-sizing: border-box;
}

.floating-bar .icons>a:not(.share) .icon-label {
    line-height: 1em;
    color: #ffffff;
    font-size: 14px;
}

.floating-bar .icons a.ebook:hover {
    width: 90px;
}

.floating-bar .icons a.download {
    background: transparent url(../img/icon-ebook-white.png) center center no-repeat;
}

.floating-bar .icons .share-menu {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain !important;
    margin: 22px 0 22px 1vw;
    position: relative;
    vertical-align: top;
}

.floating-bar nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.floating-bar nav .menu-language {
    background-color: #2362DD;
    padding: 0 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 86px;
}

.floating-bar nav .menu-language:after {
    content: ' ';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background: transparent url(../images/icon-dropdown-arrow.svg) center center/contain no-repeat;
}

.floating-bar nav .menu-cta {
    background-color: #FF5E00;
    padding: 0 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 86px;
    text-transform: uppercase;
}

body.a1 .floating-bar nav .menu-cta {
    background-color: #AD822B;
}

.floating-bar nav .menu-social {
    display: flex;
    align-items: center;
    margin-right: 13px;
}

.floating-bar nav .menu-social a {
    margin: 0 13px;
}

.floating-bar nav .menu-social a.fb {
    width: 18px;
    height: 18px;
    background: transparent url(../images/icon-fb.svg) center center/contain no-repeat;
}

.floating-bar nav .menu-social a.li {
    width: 18px;
    height: 18px;
    background: transparent url(../images/icon-li.svg) center center/contain no-repeat;
}

.floating-bar nav .menu-social a.insta {
    width: 18px;
    height: 18px;
    background: transparent url(../images/icon-insta.svg) center center/contain no-repeat;
}

.menu-logo {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 0.4em;
    display: block;
}

#menuToggle {
    position: relative;
    padding: 0px;
    z-index: 999;
    width: 86px;
    height: 86px;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box;
}

#menuToggle input {
    display: block;
    width: 86px;
    height: 86px;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 20;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
}

/* #menuToggle:before {
	content: ' ';
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 72px;
	  height: 72px;
	background-repeat: no-repeat;
	  background-image: url(../img/icon/icon-menu-diamond.svg);
	  background-position: center center;
	  background-size: contain;
	  padding: 0px;
} */
#menuToggle .menu-icon {
    display: block;
    position: absolute;
    z-index: 19;
    left: 0px;
    top: 0px;
    width: 86px;
    height: 86px;
    background-repeat: no-repeat;
    background-color: #1800E7;
    background-position: center center;
    background-size: contain;
    padding: 20px;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-radius 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menuToggle .menu-icon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(calc(-100% - 18px), -50%);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #92A1B4;
}

#menuToggle .menu-icon .menu-icon-wrap {
    margin-top: 14px;
}

#menuToggle .menu-icon .menu-icon-wrap>span {
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 12px !important;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 11;
    transform-origin: 2px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle .menu-icon .menu-icon-wrap>span:first-of-type {
    transform-origin: 0% 0%;
}

#menuToggle .menu-icon .menu-icon-wrap>span:nth-of-type(2) {
    transform-origin: 0% 100%;
    margin-bottom: 0px !important;
}

#menuToggle input:checked~.menu-icon {}

#menuToggle input:checked~.menu-icon:before {
    content: 'Close';
}

#menuToggle input:checked~.menu-icon .menu-icon-wrap {
    transform: rotate(0deg);
    margin-top: 12px;
}

#menuToggle input:checked~.menu-icon .menu-icon-wrap span {
    opacity: 1;
    transform: rotate(45deg) translate(5px, 0px);
}

#menuToggle input:checked~.menu-icon .menu-icon-wrap span:nth-of-type(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~.menu-icon .menu-icon-wrap span:nth-of-type(2) {
    transform: rotate(-45deg) translate(-1px, 7px);
    width: 24px;
}

.menu-overlay {
    position: fixed;
    top: -100%;
    right: 0;
    margin: auto;
    width: 40%;
    height: 0px;
    z-index: 9;
    transition: 0.6s;
    -webkit-transition: 0.6s;
    transition-delay: 0.2s;
    /* background: #0167B0; */
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

#menuToggle input:checked~.menu-overlay {
    top: 0% !important;
    pointer-events: none;
    transition-delay: 0.1s;
    height: 100%;
}

#menu {
    position: fixed;
    box-sizing: border-box;
    padding: 72px;
    margin: 0px;
    top: -100%;
    right: 0;
    width: 50%;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.close-menu {
    position: fixed;
    top: 18px;
    right: 18px;
    display: inline-block;
    width: 72px;
    height: 72px;
    background-repeat: no-repeat;
    background-image: url(../img/icon/icon-close-diamond.svg);
    background-position: center center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
    padding: 0px;
}

.menu-logo {
    position: fixed;
    top: 3vw;
    left: 3vw;
    display: inline-block;
    width: 103px;
    height: 61px;
    background-repeat: no-repeat;
    background-image: url(../img/icon/bank-islam-logo-white.svg);
    background-position: center center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
}

.menu-bottom {
    position: absolute;
    bottom: 84px;
    font-size: 14px;
    line-height: 1.6em;
    width: 70%;
}

.menu-bottom .name {
    font-weight: bold;
}

.menu-bottom .contact {
    margin-top: 1em;
}

.menu-bottom .contact a {
    text-decoration: underline;
    margin-top: 0.5em;
    display: inline-block;
}

#menu li {
    padding: 1em 0;
    text-align: left;
    font-size: 22px;
    font-weight: 800;
    font-style: normal;
    display: block;
}

#menu>ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#menu>ul>li li {
    font-size: 18px;
    padding: 0.5em 0;
}

#menu li a {
    display: block;
    padding: 0;
    position: relative;
}

#menu>ul {}

#menu>ul>li {
    display: block;
    box-sizing: border-box;
}

#menu>ul>li.active {}

#menu>ul>li {
    color: #363636;
    text-transform: uppercase;
}

#menu ul li a {
    color: #1800E7;
    cursor: pointer;
}

#menu ul li li a {
    color: #180092;
}

#menu>ul>li .num {
    letter-spacing: 0px;
    line-height: 1em;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #1800E7;
    vertical-align: top;
    margin-right: 4em;
}

#menu>ul ul {
    margin-top: 1em;
    margin-left: 1em;
}

#menu .connect {
    margin: 40px 0 10px;
}

#menu .connect label {
    display: inline-block;
    vertical-align: middle;
}

#menu .connect .social-media-icons {
    display: inline-block;
    vertical-align: middle;
}

#menu .connect .social-media-icons a {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 4px;
    width: 18px;
    height: 18px;
    text-indent: -9999px;
    overflow: hidden;
    background: transparent url(../img/icon-facebook.svg) center center no-repeat;
    background-size: contain;
}

#menu .connect .social-media-icons a.twitter {
    background-image: url(../img/icon-twitter.svg);
}

#menu .connect .social-media-icons a.facebook {
    background-image: url(../img/icon-facebook.svg);
}

#menu .connect .social-media-icons a.instagram {
    background-image: url(../img/icon-instagram.svg);
}

#menu .connect .social-media-icons a.youtube {
    background-image: url(../img/icon-youtube.svg);
}

#menu .connect .social-media-icons a.linkedin {
    background-image: url(../img/icon-linkedin.svg);
}

#menu .copyright {
    font-size: 12px;
    line-height: 1.4em;
}

#menuToggle input:checked~#menu {
    opacity: 1;
    top: 0px;
}

.menu-footer {
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 300;
}

.header .bar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 13px 36px;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.header .bar .left {
    display: flex;
    align-items: center;
}

.header .bar .left>* {
    height: 100%;
}

.header .bar .left .site-switcher {
    display: block;
    height: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
}

.header .bar .left .site-switcher .switcher-trigger {
    display: block;
    height: 100%;
    width: 28px;
    position: relative;
    background-image: url(../images/icons/icon-caret.svg);
    background-position: right center;
    background-size: 12px auto;
    background-repeat: no-repeat;
}

.header .bar .left .site-switcher span {
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background: #000000;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.3s ease;
}

.header .bar .left .site-switcher span:first-child {}

.header .bar .left .site-switcher span:nth-child(2) {
    transform-origin: 50% 50%;
    top: 0%;
}

.header .bar .left .site-switcher span:nth-child(3) {
    top: 50%;
}

.header .bar .left .site-switcher span:nth-child(4) {
    top: 100%;
    transform-origin: 50% 50%;
}

.header .bar .left .site-switcher input {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
    padding: 0px;
    margin: 0px;
}

.header .bar .left .site-switcher input:checked {}

.header .bar .left .site-switcher input:checked~span:nth-child(2) {
    transform: rotate(45deg) translate(6px, 5px);
}

.header .bar .left .site-switcher input:checked~span:nth-child(3) {
    opacity: 0;
}

.header .bar .left .site-switcher input:checked~span:nth-child(4) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header .bar .left .site-switcher .dropdown {}

.header .bar .left .logo {}

.header .bar .left .logo a {
    display: block;
}

.header .bar .left .logo a img {
    display: block;
    height: 36px;
}

.header .bar .right {
    display: flex;
    align-items: center;
}

.header .bar .right .menu {}

.header .bar .menu ul {
    display: flex;
    align-items: center;
}

.header .bar .right .menu ul li {
    margin: 0 12px;
}

.header .bar .middle .menu ul li {
    margin: 0px 16px;
}

.header .bar .menu .icon-box {
    align-items: start;
}

.header .bar .menu>ul>li>a {
    padding: 36px 0;
    position: relative;
    display: flex;
    align-content: center;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.rcb .header .bar .menu>ul>li>a {
    color: #ffffff;
}

.header .bar .menu>ul>li>a .arrow {
    margin-left: 8px;
    display: block;
    width: 9px;
    height: 10px;
    background: transparent url(../images/icon-dropdown-arrow-gold.svg) center center/contain no-repeat;
}

.header .bar .menu ul li.login {
    color: #ffffff;
}

.header .bar .menu ul li.login * {}

.header .bar .menu ul li.login>a {
    border: 0px;
    color: #ffffff;
    background-color: #1800E7;
    padding: 14px 32px;
    font-size: 14px;
}

.header .bar .menu ul li.login>a span {}

.header .bar .menu ul li.login>a.white span {}

.header .bar .menu ul li a {
    display: flex;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0.1em;
    color: #363636;
    cursor: pointer;
}

.header .bar .menu ul li.current>a,
.header .bar .menu ul li:hover>a {}

.header .bar .menu ul li.menu-search a span.icon-search {
    background-image: url(../images/icons/icon-search.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    line-height: 1000px;
    overflow: hidden;
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.rcb .header .bar .menu ul li.menu-search a span.icon-search {
    background-image: url(../images/icons/icon-search-white.svg);
}

.header .bar .menu ul li.menu-search>a:after {
    content: ' ';
    width: 33px;
    height: 11px;
    position: absolute;
    bottom: -1px;
    left: calc(50% - 16px);
    transform: translateY(-50%);
    transition: all 300ms ease-in-out;
    z-index: 1;
    background-image: url(../img/images/tail-border.svg);
    background-size: auto;
    opacity: 0;
}

.header .bar .menu ul li.menu-search.opened>a:after {
    transform: translateY(0%);
    opacity: 1;
}

.header .bar .menu>ul>li .submenu {
    position: absolute;
    left: 0px;
    width: 100%;
    padding: 0px 36px;
    transform: translateY(-150%);
    transition: opacity 400ms ease-in-out, transform 100ms ease-in-out;
    transition-delay: 0;
    z-index: -10;
    border-top: 1px solid #cccccc;
}

.header .middle .menu .has-submenu.open>a {
    z-index: 2;
}

.header .middle .menu .has-submenu>a:after {
    opacity: 0;
    content: ' ';
    width: 33px;
    height: 11px;
    position: absolute;
    bottom: -1px;
    left: calc(50% - 16px);
    transform: translateY(-50%);
    transition: all 300ms ease-in-out;
    z-index: 1;
    background-image: url(../img/images/tail-border.svg);
    background-size: auto;
}

.header .bar .menu>ul>li .submenu .wrapper {
    max-width: 1200px;
    padding: 36px 0;
    margin: 0 auto;
}

.header .bar .menu>ul>li .submenu .wrapper .menu-columns {
    display: flex;
}

.header .bar .menu>ul>li .submenu .wrapper .menu-columns .menu-column {
    flex-basis: 25%;
    border-right: 1px dashed #ADADAD;
    padding: 0px 36px;
}

.header .bar .menu>ul>li .submenu .wrapper .menu-columns .menu-column:last-of-type {
    border-right: 0;
    padding-right: 0;
}

.header .bar .menu>ul>li .submenu .wrapper .menu-columns .menu-column:first-of-type {
    border-left: 0;
    padding-left: 0;
}

.header .bar .menu>ul>li .searchbox {
    position: absolute;
    left: 0px;
    width: 100%;
    background-color: #595959;
    color: #ffffff;
    padding: 0px 36px;
    transform: translateY(-150%);
    transition: all 300ms ease-in-out;
    z-index: -10;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.header .bar .menu>ul>li .searchbox.show {
    transform: translateY(0);
}

.header .bar .menu ul li.menu-search {
    cursor: pointer;
    border-top-color: transparent;
}

.header .bar .menu ul li.menu-search .searchbox {
    background-color: #ffffff;
    padding: 36px;
}

.header .bar .menu ul li.menu-search .searchbox form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .bar .menu ul li.menu-search .searchbox input[type=text] {
    border: 1px solid #ADADAD;
    font-size: 14px;
    padding: 1em;
    width: calc(50% - 42px);
    margin-right: 18px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
}

.header .bar .menu ul li.menu-search .searchbox button:focus {
    outline: 0 !important;
}

.header .bar .menu ul li.menu-search .searchbox input[type=submit] {
    padding-left: 56px;
    background-image: url(../img/images/icon-search-white.svg);
    background-position: left 24px center;
    background-repeat: no-repeat;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 36px;
    border: 0px;
}

.header .bar .menu>ul>li.open .submenu {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.header .bar .menu>ul>li .submenu.force-open {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.header .bar .menu>ul>li.menu-search:hover .submenu {
    transform: translateY(0);
    z-index: -10;
}

.header .bar .menu>ul>li .submenu ul {
    list-style: none;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.header .bar .menu>ul>li .submenu ul li {
    margin: 0px;
    padding: 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #4F4F4F;
    font-weight: 400;
    display: flex;
    margin: 10px 0;
}

.header .bar .menu>ul>li .submenu ul li:before {
    content: ' ';
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 3px;
    margin-right: 8px;
    background: transparent url(../img/images/icon-diamond.svg) center center no-repeat;
}

.header .bar .menu .icon-box.icon-only {
    align-items: center;
    margin-bottom: 8px;
}

.menu .icon-box .icon {
    width: 48px;
}

.header .bar .menu .icon-box .desc {
    width: calc(100% - 48px - 15px);
}

.header .bar .menu .icon-box .icon:after {
    display: none;
}

.header .bar .menu .icon-box .desc ul {
    justify-content: start;
    display: block;
}

.header .bar .menu .icon-box .label {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #212121;
    text-transform: none;
}

.header .bar .menu .icon-box .label a {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #212121;
}

.dropdown .trigger {
    position: relative;
    display: flex;
    padding: 20px;
    align-items: center;
    color: #4F4F4F;
    cursor: pointer;
    font-size: 13px;
}

.dropdown .trigger:after {
    content: ' ';
    height: 10px;
    width: 10px;
    margin-left: 10px;
    background: transparent url(../images/icons/icon-caret.svg) center center/contain no-repeat;
}

.dropdown .dropdown-list {
    position: absolute;
    background-color: #ffffff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.dropdown .trigger:not(.active)+.dropdown-list {
    display: none;
}

.site-switcher:not(.active) .dropdown {
    display: none;
}

.dropdown .dropdown-list ul {}

.dropdown .dropdown-list ul li {}

.dropdown .dropdown-list ul li:not(:last-of-type) {
    border-bottom: 1px solid #dddddd;
}

.dropdown .dropdown-list ul li:last-of-type {}

.dropdown .dropdown-list ul li:hover {
    background-color: #e60019;
    border-color: #e60019;
}

.dropdown .dropdown-list ul li:hover a {
    color: #ffffff;
    border-color: #e60019;
}

.dropdown .dropdown-list ul li a {
    font-size: 12px;
    color: #4F4F4F;
    padding: 8px 20px;
    display: block;
    text-align: center;
    white-space: nowrap;
}

.menu .btn-login {
    padding: 12px 24px;
    color: #ffffff;
}

.language.site-switcher {
    display: block;
    height: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
}

.language.site-switcher .switcher-trigger {
    padding: 11px 0px;
}

.language.site-switcher .switcher-trigger label {
    line-height: 14px;
    height: 14px;
    display: flex;
    align-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #363636;
}

.rcb .language.site-switcher .switcher-trigger label {
    color: #ffffff;
}

.language.site-switcher .switcher-trigger label:after {
    display: block;
    content: ' ';
    margin-left: 6px;
    width: 9px;
    height: 10px;
    background: transparent url(../images/icon-dropdown-arrow-gold.svg) center center/contain no-repeat;
}

.language.site-switcher input {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
    padding: 0px;
    margin: 0px;
}

.language.site-switcher .dropdown .dropdown-list {
    position: absolute;
    background-color: #ffffff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 0;
    right: 0;
}

.language.site-switcher .dropdown .dropdown-list ul {
    flex-direction: column;
}

.language.site-switcher .dropdown .dropdown-list ul li {
    margin: 0 !important;
}

.language.site-switcher .dropdown .dropdown-list ul li a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 12px 24px;
}

.language.site-switcher .dropdown .dropdown-list ul li a:hover {
    color: #ffffff;
}

body.go-away .header .bar {
    padding-top: 0;
    padding-bottom: 0;
}

@media only screen and (min-width: 769px) {
    .static .demo-tablet {
        display: none;
    }

    .static .demo-mobile {
        display: none;
    }
}

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

    .static .demo-mobile {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .static .demo-tablet {
        display: none;
    }

    .static .demo-mobile {
        display: block;
    }
}

.page-title {
    margin-bottom: 1em;
}

b.paging {
    font-weight: bold;
    margin-right: 0.5em;
    display: inline-block;
    padding: 0.5em 0.2em;
    line-height: 1em;
    background-color: #86effc;
    width: 3em;
    border-radius: 0.5em;
    text-align: center;
    font-size: 0.8em;
}

b.paging.x {
    background-color: #eb86fc;
}

.nav-menu {
    background-color: #eeeeee;
    padding: 0;
    margin-bottom: 36px;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    display: block;
    padding: 0;
    margin: 0;
}

.nav-menu ul li a {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.8em 2em;
    letter-spacing: 0.1em;
}

.nav-menu ul li a.current,
.nav-menu ul li a:hover {
    background-color: #222222;
    color: #ffffff;
}

.static-mockup {}

.static-mockup a {
    display: block;
}

.static-mockup img {
    display: block;
    max-width: 100%;
    /* max-width: 1440px; */
    margin: 0 auto;
}

.wip {
    color: white;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 2em;
}

video {
    display: block;
    width: 100%;
    height: auto;
}

@media (orientation: landscape) {
    .mobile-only {
        display: none !important;
    }
}

@media (orientation: portrait) {
    .desktop-only {
        display: none !important;
    }
}

.slick-dots {
    bottom: 24px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.slick-dots li {
    position: relative;
    margin: 0 30px;
    width: 10px;
    height: 10px;
}

.slick-dots li button {
    position: relative;
    padding: 0;
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    content: '';
    color: #ffffff;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 1;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
}

.slick-dots li.slick-active button:before {
    background-color: transparent;
    opacity: 1;
    border: 2px solid #ffffff;
}

.intro-slider.is-slide-three .slick-dots li button:before {
    background-color: #000000;
    color: #000000;
}

.intro-slider.is-slide-three .slick-dots li.slick-active button:before {
    border-color: #000000;
}

.slick-dot-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    transform: translate(0, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    animation: slickDotTooltipFade 0.35s ease forwards;
}

.slick-dot-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translate(0, -50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.85) transparent transparent;
}

@keyframes slickDotTooltipFade {
    from {
        opacity: 0;
        transform: translate(-8px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}
.row {
    position: relative;
}

.content-slides .content-slide {
    display: none;
    position: relative;
}

.content-slides .content-slide.is-active {
	display: block;
}
.content-slides .overlay-content4 {
	/* display: none; */
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

/* .content-overlay {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	height: 100%;
	width: auto;
	z-index: 2;
} */
.content-flex {
    display: flex;
}

.content-flex .text {
    flex-basis: 30%;
}

.content-flex .video {
    flex-basis: 70%;
}

.content-flex .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row>img {
    display: block;
}

.overlay-text {
    color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5vw 5vw 3vw;
    box-sizing: border-box;
    line-height: 1.4em;
    font-size: 1.2vw;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.icon-explore {
    display: inline-block;
    margin: 1vw auto 0;
    width: 10%;
    cursor: pointer;
}

.overlay-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotspot {
    display: block;
    /* background-color: rgba(255,0,0,0.5); */
    position: absolute;
}
.hotspot1 {
    left: 25%;
    top: 22%;
    width: 25%;
    height: 10%;
}

.hotspot5 {
    left: 51%;
    top: 22%;
    width: 25%;
    height: 10%;
}

.hotspot2 {
    left: 25%;
    top: 34%;
    width: 25%;
    height: 10%;
}

.hotspot6 {
    left: 51%;
    top: 34%;
    width: 25%;
    height: 10%;
}

.hotspot3 {
    left: 25%;
    top: 46%;
    width: 25%;
    height: 10%;
}

.hotspot7 {
    left: 51%;
    top: 46%;
    width: 25%;
    height: 10%;
}

.hotspot4 {
    left: 25%;
    top: 58%;
    width: 25%;
    height: 10%;
}

.logo-hotspot {
    display: block;
    position: absolute;
    width: 22%;
    height: 10vw;   
    z-index: 2;
    top: 0;
    left: 20%;
}

.menu-hotspot {
    display: block;
    position: absolute;
    width: 6%;
    height: 7vw;
    z-index: 2;
    top: 0;
    left: 72%;
    cursor: pointer;
}
.menu-open {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    display: none;
}

.limit-width {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--gap);
}

.limit-width.medium {
    max-width: 800px;
}

.limit-width.narrow {
    max-width: 560px;
}

.row.footer {
    background-color: #d0d4d5;
    padding: var(--gap) var(--gap);
}

.row.footer > img {
    display: block;
    width: 100%;
}

.row.news {
    padding: var(--gap) var(--gap);
    background: transparent url(../images/bg-news.jpg) center center/100% auto repeat-y;
}

.menu-toggle {
    width: var(--gap72);
    height: 100%;
    padding: var(--gap18);
    padding-top: var(--gap48);
    padding-bottom: var(--gap24);
    cursor: pointer;
    background-color: var(--color-teal);
}

body.show-menu .menu-toggle,
body.menu-toggle-blue .menu-toggle {
    background-color: var(--color-indigo);
}

.menu-toggle.green {
    background-color: var(--color-teal);
}

.menu-toggle.blue {
    background-color: var(--color-indigo);
}

.menu-toggle .mtoggle {
    position: relative;
    height: 18px;
    width: 100%;
}
.menu-toggle .mtoggle span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background-color: #ffffff;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle .mtoggle span:first-child {
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    transform: translateY(-9px);
}
.menu-toggle .mtoggle span:last-child {
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    transform: translateY(9px);
}

.menu-toggle.open .mtoggle span {
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
}
.menu-toggle.open .mtoggle span:first-child {
    animation-name: menuToggleLineTop;
}
.menu-toggle.open .mtoggle span:last-child {
    animation-name: menuToggleLineBottom;
}

@keyframes menuToggleLineTop {
    0% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(52deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@keyframes menuToggleLineBottom {
    0% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(-52deg);
    }
    100% {
        transform: rotate(-45deg);
    }
}

.menu {
    background-color: #00ceb4;
    padding: calc(var(--gap108)*1.3) var(--gap);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--color-indigo2);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.show-menu .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu .menu-box {
    display: flex;
    gap: 0;
}

.menu .main-menu {
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.1;
    flex-basis: 100%;
    transition: all 0.5s ease;
}
.menu .main-menu.has-submenu {
    flex-basis: 50%;
}
.menu .main-menu li {
    padding: 0.6em 0;
}
.menu .main-menu ul > li {
    border-bottom: 1px solid #ffffff;
}
.menu .main-menu a {
    color: var(--color-indigo2);
    display: inline-flex;
    white-space: nowrap;
    gap: 0.2em;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.menu .main-menu li a.current, .menu .main-menu li a:hover {
    color: #ffffff;
}
.menu .main-menu a > span:first-child {
    font-weight: 900;
}
.menu .main-menu a > span:last-child {
    font-weight: 300;
}

.menu .menu-search {
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 900;
    padding: 0.6em 0;
    border-bottom: 1px solid #ffffff;
    padding-top: var(--gap72);
}

.menu .menu-search span {
    display: inline-flex;
    padding-right: 1em;
    border-right: 1px solid #ffffff;
}


.menu .side-menu {
    font-size: 1rem;
    line-height: 1.1;
    flex-basis: 50%;
    border-left: 1px solid var(--color-indigo2);
    padding-left: var(--gap48);
    margin-left: var(--gap48);
    transition: all 0.5s ease;
}

.menu .side-menu:not(.active) {
    flex-basis: 0;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
}

.menu .side-menu li {
    padding: 0.6em 0;
}
.menu .side-menu a {
    color: var(--color-indigo2);
    display: inline-flex;
    align-items: center;
    gap: 1em;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.menu .side-menu a .icon {
    width: var(--gap);
    height: var(--gap);
}
.menu .side-menu a .icon img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.menu .side-menu li a.current, .menu .side-menu li a:hover {
    color: #ffffff;
}

.menu .side-menu .submenu:not(.active) {
    display: none;
}


.row.companies {
    padding: var(--gap48) var(--gap);
    background: #ffffff url(../images/bg-gradient.jpg) center center/cover no-repeat;
}

.row.footer-cta {
    display: flex;
    background: #ffffff url(../images/bg-footer-cta.jpg) center center/cover no-repeat;
}

.row.footer-cta .left {
    flex-basis: 50%;
}
.row.footer-cta .right {
    flex-basis: 50%;
    padding: var(--gap72);
}

.cta-content-toggle {
    display: flex;
    flex-direction: column;
}

.cta-content-toggle a {
    display: block;
    width: 100%;
    max-width: 480px;
    transition: all 0.3s ease-in-out;
    transform: scale(0.7);
    cursor: pointer;
}

.cta-content-toggle a.active, .cta-content-toggle a:hover {
    transform: scale(1);
}

.cta-content-toggle a.toggle-sustain {
    transform-origin: left top;
}

.cta-content-toggle a.toggle-career {
    transform-origin: left bottom
}

.cta-content-toggle a img {
    display: block;
}

.footer-cta-gallery {
    position: relative;
    display: grid;
    overflow: hidden;
    height: 100%;
}

.footer-cta-gallery img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.45s ease, transform 0.45s ease;
    will-change: opacity, transform;
    pointer-events: none;
}

.footer-cta-gallery img.active {
    opacity: 1;
    transform: scale(1);
}


.about-content {
    padding: var(--gap48) var(--gap);   
}