@import url('../fonts/stylesheet.css');

:root {
    --color-black: #000;
    --color-dark: #1C1C1C;
    --color-red: #C72703;
    --color-light: #EDE1E0;
}

html,
body {
    width: 100vw;

    background: #232323;
}

body {
    background-color: #232323;
    color: #CBCBCB;
    /* -webkit-overflow-scrolling: touch; */
    font-family: 'Newsreader', serif;
    text-align: left;
    overflow-x: hidden;
}
body.fixed {
    height: 100vh;
    top: 0;
    left: 0;
    overflow-y:hidden;
}
body.fixed .scroll-content{
    position: fixed;
    width:100vw;
    top: 0;
    left: 0;
}
body.fixed header{
    padding-right:17px;
}
/*common*/
* {
    box-sizing: border-box;
}

section {
    position: relative;
}

a {
    text-decoration: none;
}

b {
    font-weight: 700;
}

strong {
    font-weight: 900;
}

em {
    font-style: italic;
}

ul,
li {
    list-style-type: none;
}

.row {
    display: flex;
    flex-direction: row;
}

.center {
    align-items: center;
    text-align: center;
}

.between {
    justify-content: space-between;
}

.top {
    align-items: flex-start;
}

.end {
    justify-content: flex-end;
}

.column {
    display: flex;
    flex-direction: column;
}

.column.center {
    justify-content: center;
}


.desktop {
    display: block;
}

.desktop-flx {
    display: flex;
}

.mobile,
.mobile-flx {
    display: none !important;
}

.zebra {
    background: #fef8f8 !important;
}

.error {
    border-color: #eb1c2c !important;
}

.underline {
    text-decoration: underline;
}

.prc50 {
    width: 50%;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1820px;
    padding: 0 3%;
    margin: 0 auto;
    /* box-sizing: content-box; */
}

.hidden {
    display: none;
}

.wrapper {
    padding: 0 5%;
    width: 90%;
    margin: 0 auto;
}

a.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 5%;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s linear;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

a.back-to-top img {
    width: 19px;
}

a.back-to-top.active {
    opacity: 1;
    pointer-events: all;
}
i {
    font-style: italic;
}
.fl {
    float: left;
    width: 40%;
    margin-right: 10%;
    margin-bottom: 5%;
}

.fr {
    float: right;
    width: 40%;
    margin-left: 10%;
    margin-bottom: 5%;
}

.fr .slider-bg {
    transform: scaleX(-1);
}

/*header*/
header {
    width: 100%;
    height: 74px;
    background: #FEFEF8;
    box-shadow: 0px 503px 201px rgba(46, 44, 22, 0.03), 0px 283px 170px rgba(46, 44, 22, 0.1), 0px 126px 126px rgba(46, 44, 22, 0.17), 0px 31px 69px rgba(46, 44, 22, 0.19), 0px 0px 0px rgba(46, 44, 22, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    transition: transform 0.3s ease, background-color 0.3s linear;
    overflow: hidden;
}

/* header.fixed {
    height: 74px; 
    transform:translate3d(0,-40px,0);
    box-shadow: 0px 503px 201px rgba(46, 44, 22, 0.03), 0px 283px 170px rgba(46, 44, 22, 0.1), 0px 126px 126px rgba(46, 44, 22, 0.17), 0px 31px 69px rgba(46, 44, 22, 0.19), 0px 0px 0px rgba(46, 44, 22, 0.2);
    background-color: #FEFEF8;
} */

header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 90px;
    max-width: 1620px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

header.fixed .container {
    transform: translate3d(0, 20px, 0);
}

header .logo {
    height: 74px;
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

header .logo img {
    height: 100%;
    width: auto;
}

header.fixed .logo {
    /* height: 74px; */
    transform: scale(1);
}

/* header nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

header nav a {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 28px;
} */
header nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header nav a:not(:last-child) {
    margin-right: 20px;
}

header nav a span {
    position: relative;
    z-index: 1;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 50px;
    color: #000;
}

header nav a span.bg {
    font-weight: 700;
    opacity: 0;
}

header nav a span.fg {
    position: absolute;
}

header nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-red);
    transition: transform 0.2s ease;
    transform-origin: center;
    transform: scaleX(0);
}

header nav a:hover:after,
header nav a.active:after {
    transform: scaleX(1);
}

header nav a:hover span,
header nav a.active span {
    font-weight: 700;
}




/*header*/

/*hero*/
.hero {
    background-color: #2A2A2A;
}

.hero .bg {
    z-index: 1;
    width: 100%;
    height: auto;
}

.hero .bg img{
    width: 100%;
    height: auto;
}
.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero .top {
    width: 75%;
    max-width: 613px;
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

.hero .video {
    margin-bottom: 3vh;
    height: 35.2vh;

}

.hero .video video {
    clip-path: url(#clip-00);
    height: 100%;
    width: auto;
}



.text1 .step3,
.text1 .step4 {
    position: absolute;
    top: 0;
    right: 0;
}

.text2 .step3,
.text2 .step4 {
    position: absolute;
    top: 0;
    left: 0;
}

.hero .text2 {
    margin-bottom: 7.2vh;
}

.hero .text2 .line1 {
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 300;
    font-size: 2.6vh;
    line-height: 3.6vh;
    letter-spacing: -0.01em;
    color: #D1D1D1;
    opacity: 0.9;
    text-align: left;
    margin-bottom: 1.6vh;
}

.hero .text2 .line1 b,
.hero .text2 .line2 span {
    color: var(--color-red)
}

.hero .text2 .line2 {
    font-family: 'Nata';
    font-style: normal;
    font-weight: 900;
    font-size: 2.8vh;
    line-height: 83.5%;
    letter-spacing: 0.01em;
    opacity: 0.8;
    text-align: left;
}
.hero {
    background-color: #2A2A2A;
    padding-top: 74px;
    padding-bottom: 55px;
}
.hero .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index:0;
}
.hero-content {
    position: relative;
    margin-top: 135px;
    z-index: 2;
    text-align: center;
    /* max-width: 1150px; */
    margin: 0 auto 40px;
}
.hero-content .title {
    color: #fff;
    font-family: 'nata';
    position: absolute;
    top: 17.80vw;
    left: 38.57vw;
    text-align: left;
    /* width:265px; */
}
.hero-content .title .sm {
    font-size: 90px;
    font-style: normal;
    font-weight: 500;
    line-height: 0.93;
    letter-spacing: -0.9px;
}
.hero-content .title .lg {
    font-size: 140px;
    font-style: normal;
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: -1.4px;
}
.hero-img-over {
    width: 223px;
    position: absolute;
    top: 150px;
    right: 570px;
}
.hero-img-over2 {
    width: 84px;
    position: absolute;
    top: 430px;
    right: 268px;
}
.hero-copyright {
    font-size: 14px;
    font-family: 'Newsreader';
    font-weight: 500;
    text-align: left;
    position: absolute;
    bottom: 10px;
    max-width: 940px;
    width: 100%;
    left: 50%;
    
}
.menu-section .bg .credit{
    max-width: 966px;
    width: 100%;
    left: 50%;
}
.hero-copyright.anim.out,
.menu-section .bg .credit.anim.out{
    transform: translate3d(-50%, 50px, 0);
}
.hero-copyright.anim,
.menu-section .bg .credit.anim{
    transform: translate3d(-50%, 0, 0);
}
.hero .hero-content-2 .text,
.hero .hero-content-3 .text {
    font-family: 'Newsreader';
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: -0.01em;
    color: #CBCBCB;
    max-width: 940px;
    text-align: left;
    /* margin-right: 4.45vh; */
    margin: 0 auto;
}
.hero-img-group {
    max-width: 1150px;
    margin: 0 auto;
}
.hero-img-group .bg {
    width: 100vw;
    height: 710px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    /* bottom: 130px; */
    top: -106px;
    opacity: 0.6;
    mix-blend-mode: color-burn;
}
.hero-img-group .row {
    position: absolute;
    bottom: 90px;
    width: 100%;
    justify-content: space-between;
    padding: 0 90px;
    padding-left: 110px;
}
.hero-img-group .credit,
.hero-content-3 .credit{
    font-family: 'Newsreader';
font-size: 10px;
font-weight: 400;
line-height: 14px;
letter-spacing: -0.01em;
text-align: center;
color:#3E3E3E;
}
.hero-img-group .credit br, 
    .hero-content-3 .credit br{
        display:none;
    }
.hero-content-3 {
    max-width: 1100px;
    padding-left: 70px;
    margin: 0 auto;
}.hero .hero-content-3 .text {
        max-width: initial;
    }
    .hero-content-3 .fr {
        margin-top: -90px;
    }
    .hero-content-3 .credit {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 35px;
    }

.hero-content .row{
    justify-content:space-between;
    align-items: center;
}
.hero-content .top {
    margin-bottom: 2.9vh;
}
.hero .top-img, .hero .bottom-img {
    /* display: flex;
    justify-content: flex-end; */
}
.hero .top-img{
    margin-bottom:4.88vh;
    /* margin-right: 7.19vw; */
}
.hero .top-img .img, .hero .bottom-img {
    
    will-change:opacity;
    transition:opacity 0.5s linear;
    opacity:0;
}
.hero .top-img .img{
height:25.7vh;
}
.hero .bottom-img{
    /* width: 50%;
    margin-top: 4.8vh; */
    margin-right: 26px;
}
.hero .slide1 .bottom-img{
height:22.38vh;
}
.hero .slide2 .bottom-img{
    height:16.38vh;
    }
    .hero .slide3 .bottom-img{
        height:19.63vh;
        }
/* .hero .img img,
.hero .bottom-img img {
    width: auto !important;
    height: 100%;
} */
.hero .text {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 2.05vh;
    line-height: 3.08vh;
    letter-spacing: -0.01em;
    color: #E8E8E8;
    /* max-width: 356px; */
    text-align: center;
    /* margin-right: 4.45vh; */
    margin: 0 auto;
}
.hero .slide1 .text,
.hero .slide2 .text{
    max-width:620px;
}
.hero .slide3 .text{
    max-width:645px;
}
.hero .caption {
    font-weight: 400;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: -0.01em;
    color: #CBCBCB;
    opacity: 0.7;
    text-align: right;
    margin-top: 9px;
}
span.red {
    color: var(--color-red);
}

.hero .scroll {
    font-family: 'Nata';
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    line-height: 83.5%;
    letter-spacing: 0.01em;
    color: #C72703;
    padding: 1vh 5.6vh;
    border: 1px solid #EB5757;
    display: inline-block;
}

/*hero*/

/*section*/
.section-title {
    max-width: 55.55vw;
    margin: 0 auto;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate3d(-50%, 0,0);
    width: 100%;
}
.section-title .top {
    align-items: flex-end;
    margin-bottom:11px;
}
.section-title .num {
    font-family: 'Nata';
    font-weight: 900;
    font-size: 70px;
    /* line-height: 83.5%; */
    line-height: 85px;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    will-change: color;
    transition: color 0.3s linear;
    margin-right: 10px;
}
.section-title .title {
    font-family: 'Nata';
    font-weight: 900;
    font-size: 160px;
    /* line-height: 83.5%; */
    line-height: 0.83;
    letter-spacing: -0.01em;
    color: #fff;
    /* margin-bottom: 20px; */
}
.section-title .subtitle{
    color: #FFF;
    font-family: 'Newsreader';
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: 0.97; /* 97.059% */
    letter-spacing: -0.34px;
    /* padding-left: 25px; */
}
.menu-section .bg {
    margin-bottom: 100px;
}
.text {
    max-width: 966px;
    margin: 0 auto;
}
section p {
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 44px;
}
.document-holder {
    padding: 97px 57px 0 37px;
    max-width: 1320px;
    margin: 0 auto 50px;
}
.holder-content.row {
    background-color: #D6D3CE;
    background-image: url('../images/doc-holder-bg.png');
    background-size:cover;
    min-height: 530px;
}
.document-holder .left {
    padding: 75px 90px 140px;
    width: calc(100% - 430px);
}
.document-holder .left .title{
    color: #0B0B0B;
    font-family: 'Newsreader';
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 33px; /* 183.333% */
    letter-spacing: -0.18px;
    margin-bottom:26px;
}
section .document-holder .left  p,
section .document-holder .left ul li {
    color: #0B0B0B;
font-family: 'Newsreader';
font-size: 20px;
font-style: italic;
font-weight: 400;
line-height: 26px; /* 162.5% */
letter-spacing: -0.16px;
    margin-bottom: 17px;
}
section .document-holder .left ul{
    list-style-type: disc;
}
.document-holder .left .name{
    color: #0B0B0B;
    font-family: 'Newsreader';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2; /* 222.222% */
    letter-spacing: -0.18px;
}
.document-holder .right {
    margin-top: -44px;
    width: 334px;
    margin-right: 0px;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.document-holder .right img:first-child {
    position: absolute;
    z-index: 0;
    top: 2%;
    right: -37%;
    width: 374px;
}
.document-holder .right img:last-child,
.document-holder.straight .right img:nth-child(2) {
    position: relative;
    /* filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.35)) drop-shadow(6px 9px 25px rgba(0, 0, 0, 0.34)) drop-shadow(26px 37px 45px rgba(0, 0, 0, 0.30)) drop-shadow(58px 83px 60px rgba(0, 0, 0, 0.17)) drop-shadow(103px 147px 72px rgba(0, 0, 0, 0.05)) drop-shadow(161px 229px 78px rgba(0, 0, 0, 0.01)); */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.35 ), 6px 9px 25px rgba(0, 0, 0, 0.34 ), 26px 37px 45px rgba(0, 0, 0, 0.30 ), 58px 83px 60px rgba(0, 0, 0, 0.17 ), 103px 147px 72px rgba(0, 0, 0, 0.05 ), 161px 229px 78px rgba(0, 0, 0, 0.01 );
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.document-holder.straight .right{
    top:-55px;
}
.document-holder.straight .right img:nth-child(2) {
margin-bottom:22px;
}
.holder-bottom {
    width: calc(100% + 94px);
    margin-left: -37px;
    /* margin-top: -100%; */
    height: 160px;
    margin-top: -130px;
}
.schema-holder {
    margin-top: 150px;
    margin-bottom: 88px;
    background: #2A2A2A;
    cursor:pointer;
}
.document-holder + .text {
    margin-top: 120px;
}
.menu-section .bg .credit {
    /* color: #222; */
    font-family: Newsreader;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.14px;
    position: absolute;
}
/*prologue*/
section.prologue{
    padding-bottom:142px;
}
/*prologue*/
/*act1*/
section.act1 {
    padding-bottom: 140px;
}
section.act1 .section-title{
    bottom:15%;
}
section.act1 .quote {
    margin-bottom: 44px;
    margin-top: 62px;
    text-align: center;
    max-width: 966px;
    /* margin: 0 auto; */
    margin-left: auto;
    margin-right: auto;
}
section.act1 .quote .top {
    color: #FFF;
    text-align: center;
    font-family: Newsreader;
    font-size: 22px;
    /* font-style: italic; */
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.18px;
    max-width: 720px;
    margin: 0 auto;
}
section.act1 .quote .top:only-child{
    line-height:1.18;
}
section.act1 .quote .bottom{
    color: #FFF;
font-family: Newsreader;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 33px;
letter-spacing: -0.18px;
}
section.act1 .quote a{
    text-decoration:underline;
    color:#fff;
    font-weight:600;
}
/*act1*/
/*intermission1*/
section.intermission1 {
    padding-bottom: 120px;
}
section.intermission1,
section.intermission2,
section.act3,
section.epilogue{
    background:#343434;
}
section.intermission1 .section-title,
section.intermission2 .section-title {
    
    position: relative;
    left: initial;
    transform: translate3d(0,0,0);
    bottom: initial;
    padding-bottom:84px;
    background:url('../images/section3-top.png');
    background-repeat:no-repeat;
    background-size:cover;
    background-position:bottom center;
    max-width: initial;
}
section.intermission1 .section-title .title,
section.intermission1 .section-title .subtitle,
section.intermission2 .section-title .title,
section.intermission2 .section-title .subtitle{
    color: #C72703;
    text-align: center;
    width:100%;
}
.bg-subtitle {
    color: #FFF;
    text-align: center;
    font-family: Newsreader;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.18px;
    margin-bottom: 106px;
}
.text p b {
    font-size: 26px;
    display: block;
}
.schema-holder {
    margin-top: 150px;
    margin-bottom: 88px;
    background: #161616;
    cursor: pointer;
    width: 100%;
    padding: 0 20%;
}
/*intermission1*/
/*act2*/
section.act2 {
    padding-bottom: 220px;
}
section.act2 .section-title {
    position: relative;
    left: initial;
    bottom: initial;
    transform: translate3d(0, 0,0);
}
section.act2 .section-title .title,
section.act2 .section-title .subtitle{
    text-align:center;
    width: 100%;
}
.document-holder.full .left {
    width: 100%;
    text-align: center;
}
.list-note,
.schema-note {
    color: #FFF;
    text-align: center;
    font-family: Newsreader;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: -0.18px;
    max-width: 966px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 104px;
}
.document-holder.full.auto .holder-content.row {
    min-height: initial;
}
.document-holder.full.auto .holder-content.row .left{
    padding-bottom:75px;
}
/*act2*/
/*intermission2*/
section.intermission2 {
    padding-bottom: 208px;
}
/*intermission2*/
/*act3*/
section.act3 {
    padding-bottom: 180px;
}
section .document-holder.full.single.auto .left p {
    font-size: 28px;
    line-height: 1.42;
}
.document-holder.vcenter .left {
    padding: 75px 90px 140px;
    width: calc(100% - 430px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section p a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
/*act3*/
/*epilogue*/
section.epilogue {
    padding-bottom: 290px;
}
/*epilogue*/

/*footer*/
footer {
    /* padding: 5vw 0 9.16vw; */
    height: 112px;
    background: #D5D5D5;
    display: flex;
    align-items: center;
}

footer .row {
    align-items: center;
}

footer .wrapper {
    /* max-width: 1280px; */
    margin: 0 auto;
    justify-content: space-between;
}

footer .left.row {
    flex: 1;
}

footer .logo {
    width: auto;
    height: 100px;
}
footer .logo img {
    width: auto;
    height: 100%;
}

footer .links>* {
    font-family: 'TradeGothicLtCn18', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 3.57;
    text-align: center;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
}

footer .links>*:not(:last-child) {
    margin-right: 43px;
}

footer .social a:not(:last-child) {
    margin-right: 35px;
}

/*footer*/
svg.clipping-paths {
    width: 0;
    height: 0;
    position: absolute;
}

/*overlay*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: rgba(0, 0, 0, .6); */
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: opacity 0.3s linear;
    opacity: 0;
    pointer-events: none;
}
.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .6);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.overlay a {
    position: absolute;
    top: 18px;
    right: 28px;
    width: 60px;
    z-index:1;
}
.gallery-image {
    background: #2a2a2a;
}
.gallery-image-holder {
    padding:20px;
    overflow: scroll;
    width: 100vw;
    height: 100vh;
    /* pointer-events: all; */
    cursor:grab;
}
#schema1 .gallery-image{
    background: #161616;
}
#schema1 .gallery-image-holder{
    padding:20px 10%;
    
}
.gallery-image-holder img {
    width: auto;
    height: auto;
    user-select: none;
    pointer-events: none;
}
.overlay .content {
    height: 90vh;
    width: 60vh;
}

.overlay .owl-theme .owl-nav {
    margin-top: 10px;
    width: calc(100% + 200px);
    left: -100px;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    display: flex;
    justify-content: space-between;
    z-index:1;
}
.overlay .owl-theme .owl-stage-outer{
    z-index:2;
}
.overlay .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background: transparent !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
}

.overlay .owl-prev {
    transform: scaleX(-1);
}

.overlay .owl-dots {
    margin-top: 40px;
}

.overlay .info.row {
    justify-content: center;
    font-family: 'Nata';
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-top: 5px;
}

.overlay .info.row .pageid {
    color: #C72703;
    margin-right: 10px;
    display: none;
}

/*lang*/

.lang.row {
    margin-left: 50px;
    padding: 0 30px;
    background: #C62905;
    height: 100%;
    align-items:center;
}
.lang.row:before{
    content:'';
    position:absolute;
    top:-50%;
    left:0;
    height:200%;
    width:20vw;
    background: #C62905;
}
header nav .lang.row a {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    text-transform: capitalize;
}
header nav .lang.row a.current{
    font-weight: 700;
    pointer-events:none;
}
header nav .lang.row a:not(:last-child) {
    margin-right: 0;
}
header nav .lang.row .seperator,
.hamburger-menu .lang.row .seperator {
width:1px;
height:15px;
background: rgba(255, 255, 255, 0.40);
margin:0 10px;
}

.hamburger-menu .lang.row {
    margin: 0;
    padding: 0;
    height: 74px;
}
.hamburger-menu .lang.row:before {
    content: '';
    position: absolute;
    top: 0;
    left: -54px;
    height: 74px;
    width: 100vw;
    background: #C62905;
}
.hamburger-menu .lang.row a{
    color: #FFF;
text-align: center;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 50px; /* 357.143% */
text-transform: capitalize;
position: relative;
}
.hamburger-menu .lang.row a.current{
    font-weight: 700;
    pointer-events:none;
}