@charset "utf-8";
/* CSS Document */

/*
font-family: 'Merienda', Arial, cursive;
font-family: 'Open Sans', sans-serif;
*/

/*  PRELOADER   */
.preloader
{
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff !important;
}

.preloader .preloader_logo
{
    width: 194px;
    height: 198px;
    position: absolute;
    top: calc( 50% - 97px);
    left: calc(50% - 99px);
    background: url(../img/logo/logo.png);
    background-size: cover;
    -webkit-animation: scale-up-center 5s ease both;
    animation: scale-up-center 5s ease both;
}

/* Page transition */
.page-transition
{
    position: fixed;
    z-index: 10000;
    overflow: hidden;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-transition-logo
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 2;
    animation-duration: 2s;
}

.page-transition-logo img
{
    width: 203px;
    height: 71px;
}

.page-transition__stripes
{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.page-transition__stripe
{
    z-index: 1;
    position: absolute;
    left: -100%;
    width: 250%;
    height: 100%;
    background: linear-gradient(to right, #000, #000);
}

.moveleftanim
{
    animation-name: moveleft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.page-transition__stripe:nth-of-type(1)
{
    top: calc(-97% - 0px);
    animation-delay: 2s;
}

.page-transition__stripe:nth-of-type(2)
{
    top: calc(-22% - 2px);
    animation-delay: 2.05s;
}

.page-transition__stripe:nth-of-type(3)
{
    top: calc(53% - 4px);
    animation-delay: 2.1s;
}

.page-transition__stripe:nth-of-type(4)
{
    top: calc(128% - 6px);
    animation-delay: 2.15s;
}

.page-transition__line
{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 200%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
}

.page-transition__logo
{
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

/* COOKIE */
#cks_overlay {
    background-color: #fff !important;
    padding: 5px 0 !important;
}

.cks_inner, .cks_inner a {
    color: #5F5F5F !important;
    font-size: 0.813rem !important;
    line-height: 0.875em !important;
}

.cks_inner p {
   padding: 7px 114px 5px 0px !important;
}

.cks_btn {
    width: 80px !important;
    margin-top: -14px !important;
    background-color: #a5a5a9 !important;
    font-size: 14px !important;
    height: 27px !important;
    line-height: 26px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* PagePiling */
/*!
 * pagepiling.js 1.5.4
 *
 * https://github.com/alvarotrigo/pagePiling.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */
body.start {
    overflow:hidden;
    margin:0;
    padding:0;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

::-webkit-scrollbar{
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #31C650;
}

body.start_t
{
    overflow: hidden;
}

.pp-section {
    height:100%;
    position:absolute;
    width:100%;
}
.pp-easing {
    -webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
}
#pp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#pp-nav.right {
    right: 60px;
}
#pp-nav.left {
    left: 17px;
}
.pp-section.pp-table{
    display: table;
}
.pp-tableCell {
    display: table-cell;
    width: 100%;
    height: 100%;
}
.pp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.pp-slidesNav.bottom {
    bottom: 17px;
}
.pp-slidesNav.top {
    top: 17px;
}
#pp-nav ul,
.pp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#pp-nav li,
.pp-slidesNav li {
    display: block;
    width: 30px;
    height: 20px;
    margin: 0;
    position:relative;
    text-align: right;
}
.pp-slidesNav li {
    display: inline-block;
}
#pp-nav li a,
.pp-slidesNav li a {
    display: block;
    float: right;
    position: relative;
    z-index: 1;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 9px;
    padding-bottom: 9px;
    cursor: pointer;
    text-decoration: none;
    transition: width ease 0.7s;
    -webkit-transition: width ease 0.7s;
}

#pp-nav li a.active,
.pp-slidesNav li a.active,
#pp-nav li a:hover,
.pp-slidesNav li a:hover,
#pp-nav li a:focus,
.pp-slidesNav li a:focus
{
    width: 100%;
}

#pp-nav li .active span,
.pp-slidesNav .active span {
    background-color: #35cc62;
    transition: background-color ease 0.7s;
    -webkit-transition: background-color ease 0.7s;
}
#pp-nav span,
.pp-slidesNav span {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #8a8a8a;
    z-index: 1;
}
.pp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
}
.pp-tooltip.right {
    right: 20px;
}
.pp-tooltip.left {
    left: 20px;
}
.pp-scrollable{
    overflow-y: scroll;
    height: 100%;
}
/*END PagePiling */

/*
IPhone Querformat font-size bug
*/
html
{
    -webkit-text-size-adjust: 100% !important;
}

body
{
	margin: 0;
	padding: 0;
	background-color: #000;
    top:0 !important;
}
/* Google Translate Element Dropdown & Hide translate banner on the top */
body > .skiptranslate,
.goog-te-gadget > span {
    display: none !important;
}
.goog-te-gadget {
    font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
    width: 100%;
    margin: 0 !important;
    font: 500 0.75rem/250% Montserrat,Arial,Helvetia,sans-serif;
    letter-spacing: 0.44em;
}

.h_google_tr
{
    width: 100%;
    font: initial;
    min-width: 150px;
}
*
{
	outline: none;
    box-sizing: border-box;
}

img
{
    image-rendering:pixelated;
}

a img
{
	border: 0px solid;
}
a.art_anchor
{
	width: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	font-size: 0;
}
p
{
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
}
.content p
{
	float: none;
}
body .ui-widget { font-size: 11px; }
.sc_only { width: 0px; height: 0px; overflow: hidden; }

.page_c
{
	width: 100%;
	min-width: 850px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 1025px)
{
	.page_c
	{
		min-width: 320px;
	}
	body .ui-widget { font-size: 14px; }
}
@media only screen and (max-width: 650px)
{
	body .ui-widget { font-size: 16px; }
}

.offscreen
{
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
*:focus
{
    outline: none;
}
.focus-visible {
    outline: 2px solid #31c650;
}

/* Accessibility map */
.as_map_c
{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.as_map
{
    height: 28px;
    margin: -250px auto 0 auto;
    display: table;
    table-layout: fixed;
    padding: 3px 25px 14px 10px;;
    background-color: rgba(23,23,23,0.7);
    transition: margin-top 400ms;
    -webkit-transition: margin-top 400ms;
}
.as_map.opened { margin-top: 0; }
.as_map ul { float: left; margin: 0; padding: 0; list-style: none; }
.as_map ul li { float: left; margin: 15px 10px; }
.as_map ul li > *
{
    margin: 0;
    display: inline-block;
    padding: 14px 36px;
    font: 700 0.875rem/100% Nunito Sans, Arial, Helvetia, sans-serif;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border-radius: 1.875rem;
    border: 0.125rem solid #35cc62;
    transition: background-color ease 0.5s;
    -webkit-transition: background-color ease 0.5s;
}
.as_map ul li > *:focus { background-color: #35cc62; outline: none;}

/* Head */
.head_c
{
	width: 100%;
    padding: 25px 60px;
	position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
}

.head_c .h_logo
{
    float: left;
    background-color: #000;
    line-height: 50%;
}

.head_c.black .h_logo
{
    background-color: #FFF;
}

.h_logo img,
.h_logo .svg
{
    width: 45px;
    height: 45px;
}

.h_logo .svg *
{
    fill: #FFF;
    transition: fill ease 0.7s;
    -webkit-transition: fill ease 0.7s;
}

.head_c.black .h_logo .svg *
{
    fill: #000;
}

.menu_btn
{
    width: 26px;
    float: right;
    box-sizing: border-box;
    padding-top: 14px;
    position: relative;
    z-index: 6;
}

.menu_btn .mmbico
{
    width: 26px;
    height: 22px;
    display: block;
    position: relative;
    z-index: 1;
}

.menu_btn .mmbico > *
{
    width: 26px;
    height: 3px;
    float: right;
    opacity: 1;
    transition: transform ease 0.5s, width ease 0.3s, background-color ease 0.7s;
    -webkit-transition: -webkit-transform ease 0.5s, width ease 0.3s, background-color ease 0.7s;
    backface-visibility: hidden;
    background-color: #FFF;
}

.head_c.black .menu_btn .mmbico > *
{
    background-color: #000;
}

.head_c.black.menu_opened .menu_btn .mmbico > *
{
    background-color: #FFF;
}

.head_c.menu_opened .menu_btn .one
{
    transform: rotate(45deg) translate(5px, 6px);
    -webkit-transform: rotate(45deg) translate(5px, 6px);
}


.head_c.menu_opened .menu_btn .two
{
    opacity: 0;
}

.head_c.menu_opened .menu_btn .three
{
    transform: rotate(-45deg) translate(6px, -6px);
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
}

.menu_btn .mmbico > div
{
    margin: 5px 0 0 0;
    transform: rotate(0deg) translate(0,0);
    -webkit-transform: rotate(0deg) translate(0,0);
    opacity: 1;
}

.menu_btn .mmbico > div:first-child
{
    margin: 0;
}

.h_menu_c
{
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 390px;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #171717;
    box-shadow: 0 0.625rem 3.125rem rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0.625rem 3.125rem rgba(0, 0, 0, 0.05);
    transition: right ease 0.7s;
    -webkit-transition: right ease 0.7s;
    z-index: 5;
}

.head_c.menu_opened .h_menu_c
{
    right: 0;
}

.h_menu_c .menu
{
    width: 100%;
    box-sizing: border-box;
    padding: 100px 70px 50px 50px;
}

.h_menu_c .menu ul
{
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.h_menu_c .menu ul li
{
    display: inline-block;
    width: 100%;
    text-align: right;
}

.h_menu_c .menu ul li a
{
    display: inline-block;
    font: 900 1.875rem/167%  Nunito Sans, Arial, Helvetia, sans-serif;
    letter-spacing: 0.094rem;
    color: #FFF;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 10px;
}


.h_menu_c .menu ul li a::after
{
    content: " ";
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 0;
    height: 3px;
    background-color: #35CC62;
    transition: width ease 0.7s;
    -webkit-transition: width ease 0.7s;
}

.h_menu_c .menu ul li a:hover::after,
.h_menu_c .menu ul li a:focus::after,
.h_menu_c .menu ul li.current_path a::after,
.h_menu_c .menu ul li.current_link a::after
{
    width: 100%;
}

/* Language */
.h_menu_c .gtranslate_c
{
    text-align: right;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 50px;
    padding-right: 70px;
    font: 900 0.875rem/120%  Nunito Sans, Arial, Helvetia, sans-serif;
    letter-spacing: 0.044rem;
    color: #999;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.h_menu_c .gtranslate_c > *
{
    display: inline-block;
    vertical-align: middle;
}

.h_menu_c .gtranslate_c .lang_icon
{
    margin-left: 12px;
    width: 18px;
    height: 14px;
}

.gtranslate_c .gtranslate_inner {
    display: none;
    padding: 10px;
    position: absolute;
    right: 66px;
    top: 20px;
    font-weight: 400;
    text-transform: none;
}
.gtranslate_c.opened .gtranslate_inner {
    display: table;
}
.gtranslate_c .gtranslate_inner > * {

}
.goog-te-gadget-simple
{
}


.h_menu_c .menu_link_c
{
    width: 100%;
    box-sizing: border-box;
    padding: 20px 70px 120px 50px;
    text-align: right;
}

.h_menu_c .menu_link_c a
{
    display: block;
    font: 500 0.75rem/250% Montserrat, Arial, Helvetia, sans-serif;
    color: #999999;
    letter-spacing: 0.075rem;
    text-transform: uppercase;
    text-decoration: none;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.h_menu_c .menu_link_c a:hover,
.h_menu_c .menu_link_c a:focus
{
    text-decoration: underline;
}

.pagepiling
{
    width: 100vw;
    height: 100vh;
}

.section
{
    width: 100vw;
    height: 100vh;
    margin: 0 !important;
    background-color: #000;
    overflow: hidden;
}

.section .art_element_c
{
    transform: translate(0px, 125px);
    -webkit-transform: translate(0px, 125px);
    transition: transform ease 0.7s, opacity ease 0.7s;
    -webkit-transition: transform ease 0.7s, opacity ease 0.7s;
    transition-delay: 0.7s;
    opacity: 0;
}

.section.active .art_element_c
{
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    opacity: 1;
}

.section.textured::after
{
    content: " ";
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 239px;
    height: 355px;
    background: url(../img/texture.png);
    background-size: 100% 100%;
    z-index: 2;
}

.h_text_c
{
    width: 550px;
    text-align: center;
    position: absolute;
    top: 60%;
    right: 18%;
    z-index: 3;
    transform: translateY(-50%);
}

.h_text_c h1
{
    margin-top: 0;
    color: #31c650;
    font: 900 0.813rem/1.75rem Nunito Sans, Arial, Helvetia, sans-serif;;
    letter-spacing: 0.6em;
}

.h_text_c h2
{
    margin: 10px 0 15px;
    color: #dadada;
    font: 900 2.625rem/119% Nunito Sans, Arial, Helvetia, sans-serif;;
    font-size: ;
    font-weight: 900;
    letter-spacing: 0.25rem;
    line-height: ;
    text-transform: uppercase;
}

.h_text_c img
{
    width: 241px;
    height: 161px;
}

/* Start page sections */
.section
{
    padding-top: 95px;
}

.section > .art_element_c
{
    padding-left: 65px;
    padding-right: 65px;
    z-index: 2;
}

.section.header
{
    padding-top: 0;
}

.section.centered_text
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.section.centered_text > .art_element_c
{
    width: 100%;
    max-width: 829px;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.section.centered_content
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.section.centered_content > .art_element_c
{
    margin-left: 0;
    margin-right: 0;
}

.section.centered_text > .art_element_c .art_headline h2
{
    position: relative;
    padding-left: 20px;
}

.section.centered_text > .art_element_c .art_headline h2::before
{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #31c650;
}

.section.centered_text > .art_element_c .art_headline h2 > span
{
    padding-bottom: 0;
}

.section.centered_text > .art_element_c > .art_inner
{
    padding-left: 80px;
}

/* Counters*/

.section.counters
{
    display: flex;
    align-items: center;
}

.section.counters .art_element_c
{
    max-width: 1300px;
    box-sizing: border-box;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.section.counters .counters_c
{
    width: 795px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section.counters .counters_c .counter
{
    width: 140px;
    box-sizing: border-box;
    padding: 18px 0;
    margin-left: 29px;
    margin-right: 29px;
    position: relative;
}

.section.counters .counters_c .counter:before
{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #DADADA;
    z-index: 1;
}

.section.counters .counters_c .counter:after
{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: #31c650;
    z-index: 2;
}

.section.counters .counters_c .counter .no
{
    width: 100%;
    float: left;
    font: 900 2.625rem/119% Nunito Sans, Arial, Helvetia, sans-serif;
    letter-spacing: 0.125rem;
    color: #DADADA;
    padding-bottom: 10px;
}

.section.counters .counters_c .counter .text
{
    font: 900 0.75rem/167% Nunito Sans, Arial, Helvetia, sans-serif;
    letter-spacing: 0.125rem;
    color: #DADADA;
    text-transform: uppercase;
}

.section.counters::after
{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 101%;
    background: url(../img/erfolge.jpg)  no-repeat top right;
    background-size: auto 100%;
    z-index: 1;
}

.section.counters .load_more_btn
{
    display: none;
}

.section.partner::after
{
    content: "Partner";
    position: absolute;
    top: 10%;
    left: -17px;
    font: 900 15rem/120% Nunito Sans, Arial, Helvetia, sans-serif;
    color: #DADADA;
    letter-spacing: 0.002em;
    z-index: 1;
    opacity: 0.1;
}

/*Head Image*/
.header_image_c
{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header_image_c .header_image
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-image ease 1s;
    -webkit-transition: background-image ease 1s;
}

.header_image_c .header_image img
{
    min-height: 100%;
    min-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.header_image_c .header_image img.invisible
{
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.compat-object-fit { background-size: auto 100%; background-repeat: no-repeat;}

/*Header-image V1*/
.header_image_c img
{
    min-height:100%;
    min-width:100%;
    height:auto;
    width:auto;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    transform: none;
    -webkit-transform: none;
}


/*Header-image V2*/
/*.header_image img
{
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 0;
} */

/*Header-image V3*/
/*.header_image_c {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.header_image img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}*/

.header_image_c .header_image
{
    line-height: 50%;
}

.header_image img.current
{
    z-index: 5;
}

/*@media(max-width:2020px)
{
    .header_image img
    {
        width: 2000px;
    }
}*/

.magazine_c {
    position: absolute;
    bottom: 255px;
    left: 0px;
    background-color: #000;
    min-width: 230px;
    max-width: 230px;
    z-index: 2;
    border-right: 3px solid #31C650;
    overflow: hidden;
    transition: max-width ease 0.7s;
    -webkit-transition: max-width ease 0.7s;
}

.magazine_c:hover {
    max-width:400px;
}

.magazine_c > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 15px 20px;
}

.magazine_c > a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

.magazine_c .magazine_title {
    margin-top: 0;
    color: #31C650;
    font: 900 0.813rem/1.75rem Nunito Sans, Arial, Helvetia, sans-serif;
    letter-spacing: 0.6em;
}

.magazine_c .magazine_article {
    color: #DADADA;
    font-size: 1rem;
    line-height: 1.25em;
    font-weight: 600;
    max-height: 2.5em;
    overflow: hidden;
    letter-spacing:0.05em;
}

@media(min-width:651px) and (max-width:760px) {
    .magazine_c {bottom:200px;}
    .magazine_c > a {padding-top:10px; padding-bottom:10px;}
    .magazine_c .magazine_article {max-height:1.3em;}
}

@media(max-width:650px) {
    .magazine_c {bottom:8px; min-width:180px; max-width:180px;}
    .magazine_c > a {padding:7px 12px;}
    .magazine_c .magazine_title {font-size:0.625rem; line-height:1rem;}
    .magazine_c .magazine_article {font-size:0.85rem; letter-spacing:0.1em;}
}

.widget_c
{
    position: absolute;
    bottom: 0;
    left: 60px;
    z-index: 2;
}

.widget_c img
{
    width: 113px;
}

.widget_c .mobile
{
    display: none;
}

.rolex_mobile_widget
{
    display: none;
}

.scroll_c
{
    position: fixed;
    bottom: 140px;
    right: 70px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: right bottom;
    z-index: 5;
}

.scroll_c.hid
{
    display: none;
}

.scroll_c #nc_btn
{
    display: block;
    font: 900 0.813rem/119% Nunito Sans, Arial, Helvetia, sans-serif;
    letter-spacing: 0.125rem;
    color: #DADADA;
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 40px;
    animation: bounce 2.5s infinite;
}

.scroll_c #nc_btn span
{
}

.scroll_c .scroll-down__line
{
    content: " ";
    position: absolute;
    top: 37%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: #8a8a8a;
    animation: scroll-down-line 2.5s infinite 851ms;
}


/* Mobile menu */
.mobile_menu_btn
{
    display: none;
}

.menu_slide_c
{
    right: 99999px;
    position: absolute;
}

/* Main */
.main_c
{
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
    background-color: #fff;
}
.main
{
	width: 100%;
	min-height: 500px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/* Footer */
.footer_c
{
    width: 100%;
    float: left;
    position: relative;
    z-index: 1;
}

body.start .footer_c
{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 6;
}

body.start .footer_c.hid
{
    display: none;
}

.footer
{
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 15px 60px;
    background-color: #171717;
}

.footer .footer_links
{
    float: left;
}

.footer .footer_links a
{
    display: inline-block;
    font: 600 0.75rem/120% Nunito Sans, Arial, Helvetia, sans-serif;
    text-transform: uppercase;
    color: #999;
    margin-left: 30px;
    text-decoration: none;
}

.footer .footer_links a:hover,
.footer .footer_links a:focus
{
    text-decoration: underline;
}

.footer .footer_links a:first-child
{
    margin-left: 0;
}

.footer .copyright_c
{
    float: right;
    font: 600 0.75rem/120% Nunito Sans, Arial, Helvetia, sans-serif;
    color: #999;
}

.footer .copyright_c > *
{
    display: inline-block;
    vertical-align: middle;
}

.footer .copyright_c .algo_logo
{
    width: 50px;
    height: 15px;
    margin-left: 5px;
}

@media(max-height: 750px)
{
    .h_menu_c
    {
        height: 100vh;
        justify-content: flex-start;
        overflow: auto;
    }

    .h_menu_c .gtranslate_c
    {
        margin-top: 0;
        margin-bottom: 20px;
    }

}

@media(max-width:1025px)
{
    .as_map_c
    {
        display: none !important;
    }

    .head_c
    {
        position: relative;
        float: left;
        top: auto;
        left: auto;
        padding: 20px 25px;
    }

    body.start .head_c
    {
        position: fixed;
        top: 0;
        left: 0;
    }

    #pp-nav.right
    {
        right: 30px;
    }

    .scroll_c
    {
        right: 30px;
    }

    /*Mobile Menu*/
    .h_menu_c .menu
    {
        width: 100%;
        box-sizing: border-box;
        padding: 80px 50px 30px 30px;
    }

    .h_menu_c .menu ul li a
    {
        font-size: 1.5rem;
    }

    .h_menu_c .gtranslate_c
    {
        padding-left: 30px;
        padding-right: 50px;
    }

    .gtranslate_c .gtranslate_inner
    {
        right: 46px;
    }

    .h_menu_c .menu_link_c
    {
        padding: 20px 50px 50px 30px;
    }


    /* Start page sections */

    .section.counters .counters_c .counter
    {
        padding: 9px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section.counters .counters_c .counter .no
    {
        font-size: 1.75rem;
        padding-bottom: 0;
    }

    .art_element.anything_slider .art_image .art_inner
    {
        min-height: 130px;
    }

    .section.partner::after
    {
        top: 10%;
        left: -12px;
        font-size: 8rem;
    }
}

@media(max-width: 650px)
{
    .page-transition-logo img
    {
        width: 150px;
        height: 52px;
    }

    body.start
    {
        overflow:auto;
    }

    .head_c
    {
        padding: 20px;
    }

    body.start .head_c
    {
        position: relative;
        float: left;
        top: auto;
        left: auto;
    }

    .h_logo img,
    .h_logo .svg
    {
        width: 37px;
        height: 37px;
    }

    .menu_btn .mmbico
    {
        width: 23px;
        height: 14px;
    }

    .menu_btn .mmbico > *
    {
        width: 23px;
        height: 2px;
    }

    .head_c.menu_opened .menu_btn .one
    {
        transform: rotate(45deg) translate(3px, 4px);
        -webkit-transform: rotate(45deg) translate(3px, 4px);
    }

    .head_c.menu_opened .menu_btn .three
    {
        transform: rotate(-45deg) translate(4px, -6px);
        -webkit-transform: rotate(-45deg) translate(4px, -6px);
    }

    .menu_btn .mmbico > div
    {
        margin: 4px 0 0 0;
    }

    .pagepiling
    {
        width: 100%;
        float: left;
        height: auto;
    }

    /* Start page sections */
    .section
    {
        width: 100%;
        height: auto;
        float: left;
        position: relative;
        margin-top: 100px !important;
    }

    .section.header
    {
        padding-bottom: 100px;
        margin-top: 0 !important;
    }

    .section > .art_element_c
    {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header_image_c
    {
        height: 350px;
    }

    .h_text_c
    {
        width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        -webkit-transform: translate(50%, -50%);
    }

    .h_text_c h1
    {
        font-size: 0.625rem;
    }

    .h_text_c h2
    {
        font-size: 1.563rem;
        margin: 0;
    }

    .h_text_c img
    {
        width: 157px;
        height: 102px;
    }

    .scroll_c
    {
        display: none;
    }

    .section.textured::after
    {
        top: auto;
        right: 35px;
        bottom: 60px;
        transform: none;
        -webkit-transform: none;
        width: 108px;
        height: 161px;
    }

    .section .art_element_c
    {
        transform: none;
        -webkit-transform: none;
        opacity: 1;
    }

    .section.centered_text > .art_element_c > .art_inner
    {
        padding-left: 15px;
    }

    .section.counters .art_element_c
    {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section.counters .counters_c
    {
        justify-content: space-around;
    }

    .section.counters .counters_c .counter
    {
        width: 126px;
        padding-top: 13px;
        padding-bottom: 13px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section.counters .counters_c .counter .no
    {
        font-size: 2.625rem;
    }

    .section.counters .counters_c .counter .text
    {
        letter-spacing: 0.125rem;
    }

    .section.partner
    {
        padding-top: 150px;
    }

    .section.partner::after
    {
        top: 0;
        left: -10px;
        font-size: 5rem;
    }

    .widget_c
    {
        bottom: 0;
        left: auto;
        right: 35px;
        z-index: 3;
    }

    .widget_c img
    {
        width: 67px;
    }

    .widget_c .desktop
    {
        display: none;
    }

    .widget_c .mobile
    {
        display: block;
    }

    .rolex_mobile_widget
    {
        display: block;
        margin-top: 20px !important;
        float: right;
    }

    body.start .footer_c
    {
        position: relative;
        bottom: auto;
        left: auto;
    }

    .footer
    {
        padding: 0;
    }

    .footer .footer_links
    {
        width: 100%;
        box-sizing: border-box;
        float: left;
        text-align: center;
        background-color: #000;
        padding: 13px 10px;
        display: flex;
        justify-content: center;
    }

    .footer .footer_links a
    {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer .copyright_c
    {
        width: 100%;
        float: left;
        padding: 17px 23px;
        text-align: right;
    }

}

@media(max-width: 440px)
{
    .h_text_c h2
    {
        font-size: 1rem;
    }
}

@media(max-width: 400px)
{
    .section.counters .counters_c
    {
        flex-direction: column;
        align-items: center;
    }

    .section.counters::after
    {
        background-size: 100% auto;
    }

    .section.counters .counters_c .counter.hide_on_mob
    {
        display: none;
    }

    .section.counters .load_more_btn
    {
        display: block;
        font: 700 0.75rem/120% Nunito Sans, Arial, Helvetia, sans-serif;
        letter-spacing: 0.14em;
        color: #FFF;
        text-transform: uppercase;
        border: 2px solid #35CC62;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        padding: 13px 40px;
        cursor: pointer;
        margin-top: 50px;
    }

    .footer .footer_links
    {
        justify-content: space-around;
    }

    .footer .footer_links a
    {
        margin-left: 5px;
        margin-right: 5px;
    }

}

@media(max-height: 500px)
{
    body.start
    {
        overflow:auto;
    }

    body.start .head_c
    {
        position: relative;
        float: left;
        top: auto;
        left: auto;
    }

    .pagepiling
    {
        width: 100%;
        float: left;
        height: auto;
    }

    /* Start page sections */
    .section
    {
        width: 100%;
        height: auto;
        float: left;
        position: relative;
        margin-top: 100px !important;
    }

    .section.header
    {
        padding-bottom: 100px;
        margin-top: 0 !important;
    }

    .header_image_c
    {
        height: 100vh;
    }

    .scroll_c
    {
        display: none;
    }

    .section .art_element_c
    {
        transform: none;
        -webkit-transform: none;
        opacity: 1;
    }

    body.start .footer_c
    {
        position: relative;
        bottom: auto;
        left: auto;
    }

}

.animated
{
    -webkit-animation-duration: 1s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Animations */
@keyframes bounce {
    0%, 15%, 38%, 60%, 75% {
        transform: translateX(0); }
    30% {
        transform: translateX(10px); }
    45% {
        transform: translateX(5px); }
}

@keyframes scroll-down-line {
    0% {
        transform-origin: 0% 50%;
        transform: scale(1, 1); }
    20% {
        transform-origin: 0% 50%;
        transform: scale(0.001, 1); }
    20.01% {
        transform-origin: 100% 50%; }
    38% {
        transform-origin: 100% 50%;
        transform: scale(1, 1); }
}

@keyframes moveleft
{
    0%
    {
        display: none;
        transform: translateX(0);
    }

    1%
    {
        display: block;
    }

    99%
    {
        display: block;
    }

    100%
    {
        display: none;
        transform: translate(-220vw);
        opacity: 0;
    }
}

@keyframes fadeIn
{
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn
{
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
