/* ------------------------- Logo Home -------------------------------------------------- */

.logo-home {
	display: inline-block;
	height: 58px;
	width: 200px;
}

.logo-home img {
	width: 100%;
	height: auto;
}

.mobile-menu-bg {
	display: none;
}

@media screen and (max-width: 768px) {
	.logo-home {
		width: 130px;
		margin-top: 20px;
		margin-left: -15px;
	}
}

/* ------------------------- Burger Menu -------------------------------------------------- */

.nav-icon {
	position: fixed;
	right: 64px;
    top: 38px;
	width: 54px;
	height: 54px;
	cursor: pointer;
	z-index: 99;
	background-color: #1457b2;
    border-radius: 50%;
}

.hamburger-bar {
	width: 24px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff00;
}

.hamburger-bar::before {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: #fff;
}

.hamburger-bar:after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: #fff;
}

.hamburger-bar:before {
	transform: rotate(0deg) translate(0px,-4px);
}

.hamburger-bar:after {
	transform: rotate(0deg) translate(0px,4px);
}

.nav-icon.white .hamburger-bar:before,
.nav-icon.white .hamburger-bar:after
{
	background: #fff;
}

.nav-icon.nav-active .hamburger-bar:before {
    transform: rotate(-45deg) translate(0px,0px);
}

.nav-icon.nav-active .hamburger-bar:after {
    transform: rotate(45deg) translate(0px,0px);
}

.nav-icon:hover .hamburger-bar.hamburger-bar:after {
    transform: translateY(6px);
}

.nav-icon:hover .hamburger-bar.hamburger-bar:before {
    transform: translateY(-6px);
}

@media screen and (max-width: 1080px){
	.nav-icon.nav-active:hover .hamburger-bar.hamburger-bar:before {
		transform: rotate(-45deg) translate(0px,0px);
	}
	
	.nav-icon.nav-active:hover .hamburger-bar.hamburger-bar:after {
		transform: rotate(45deg) translate(0px,0px);
	}
	
	.nav-icon:hover .hamburger-bar.hamburger-bar:before {
		transform: rotate(0deg) translate(0px, -4px);
	}
	
	.nav-icon:hover .hamburger-bar.hamburger-bar:after {
		transform: rotate(0deg) translate(0px, 4px);
	}	
}

@media screen and (max-width: 768px){
	.nav-icon {
		right: 20px;
    	top: 15px;
	}
}

.nav-icon,
.hamburger-bar,
.hamburger-bar:before, 
.hamburger-bar:after {
	-webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

/* ------------------------- Navigation -------------------------------------------------- */

#menu {
	position: fixed;
    height: 100vh;
    top: 0;
    width: 100%;
    z-index: 10;
    overflow: hidden;
    display: flex;
    transform: translateY(-100%);
}

#menu.active {
	transform: translateY(0);
}

#menu .navigation {
	align-items: center;
    display: flex;
    width: 100%;
    max-width: 560px;
    height: 100vh;
    background: #2a1562;
    transform: translateY(-100%);
}

#menu.active .navigation {
	transform: translateY(0);
}

#menu .navigation ul {
	padding: 120px 80px 80px 80px;
}

#menu .navigation-right {
	align-items: center;
    display: flex;
    width: calc(100% - 560px);
    height: 100vh;
    background: #ffffff;
    background-image: url(../images/transport.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-100%);
}

#menu.active .navigation-right {
	transform: translateY(0);
	transition-delay: .15s;
}

@media screen and (max-width: 768px) {
	#menu .wrap {
		padding-left: 80px;
		padding-right: 80px;
	}
	#menu .navigation-right {
		display: none;
	}
	#menu .navigation {
		max-width: 768px;
	}
}


/* ------------------------- Nav contact -------------------------------------------------- */

#menu .nav-contact {
	width: 50%;
	float: left;
	height: 100%;
	padding-left: 160px;
	animation: nav-ContactHide .3s;
	-moz-animation: nav-ContactHide .3s; /* Firefox */
	-webkit-animation: nav-ContactHide .3s; /* Safari and Chrome */
	 -o-animation: nav-ContactHide .3s; /* Opera */
	opacity: 0;
}

#menu.active .nav-contact {
	animation: nav-ContactShow 1.5s;
	-moz-animation: nav-ContactShow 1.5s; /* Firefox */
	-webkit-animation: nav-ContactShow 1.5s; /* Safari and Chrome */
	 -o-animation: nav-ContactShow 1.5s; /* Opera */
	opacity: 1;
}

@keyframes nav-ContactShow {0% {opacity: 0;} 100% {opacity: 1;}}
@-moz-keyframes nav-ContactShow {0% {opacity: 0;}  100% {opacity: 1;}}
@-webkit-keyframes nav-ContactShow {0% {opacity: 0;}  100% {opacity: 1;}}
@-o-keyframes nav-ContactShow {0% {opacity: 0;}  100% {opacity: 1;}}

@keyframes nav-ContactHide {0% {opacity: 1;} 100% {opacity: 0;}}
@-moz-keyframes nav-ContactHide {0% {opacity: 1;} 100% {opacity: 0;}}
@-webkit-keyframes nav-ContactHide {0% {opacity: 1;} 100% {opacity: 0;}}
@-o-keyframes nav-ContactHide {0% {opacity: 1;} 100% {opacity: 0;}}

#menu .nav-contact p, #menu .nav-contact a {
	float: left;
	color: #fff;
	width: 100%;
	opacity: 1;
	line-height: 30px;
	margin: 0;
	font-size: 15px;
}

#menu .nav-contact a:hover {
	text-decoration: underline;
	opacity: .8;
}

#menu .nav-contact h3 {
	float: left;
	color: #e55183;
	width: 100%;
	margin: 40px 0 10px 0;
}

#menu .nav-contact .credits {
	opacity: .5;
    margin-top: 40px;
    margin-bottom: 28px;
}

#menu ul li.say-hi-icon > a {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#menu ul li.say-hi-icon> a:after {
    content: "";
    background-image: url(../images/hi-icon.png);
    width: 36px;
    height: 36px;
    margin-left: 22px;
    display: block;
    background-position: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@media screen and (max-width: 1260px){

	#menu .nav-contact h3 {
		margin: 20px 0 0 0;
	}
}

@media screen and (max-width: 768px){
	#menu .nav-contact {
		display: none;
	}
}



/* ------------------------- Nav ul -------------------------------------------------- */

#menu ul {
	width: 100%;
	float: left;
	animation: nav-ContactHide .3s;
	-moz-animation: nav-ContactHide .3s; /* Firefox */
	-webkit-animation: nav-ContactHide .3s; /* Safari and Chrome */
	 -o-animation: nav-ContactHide .3s; /* Opera */
	opacity: 0;
}

#menu.active ul {
	animation: nav-ContactShow 1.5s;
	-moz-animation: nav-ContactShow 1.5s; /* Firefox */
	-webkit-animation: nav-ContactShow 1.5s; /* Safari and Chrome */
	 -o-animation: nav-ContactShow 1.5s; /* Opera */
	opacity: 1;
}

#menu ul:hover > li > a {
	color: rgba(255, 255, 255, 0.3);
}

#menu li {
	list-style: none;
	width: 100%;
	float: right;
	font-family: 'Silka-SemiBold', sans-serif;
}

#menu li a {
	color: #fff;
	line-height: 60px;
	font-size: 42px;
	padding: 18px 0;
	display: block;
	-webkit-transition: color .25s ease;
    -o-transition: color .25s ease;
    transition: color .25s ease;
}


#menu li a:hover {
	color: rgba(255, 255, 255, 1) !important;
}

#menu li.active a, 
#menu li.active a:hover,
#menu li.current_page_item a,
#menu li.current_page_item a:hover {
	color: #ee355a;
}

@media screen and (max-width: 1260px){

	#menu li a{
		line-height: 50px;
		font-size: 32px;
	}
}

@media screen and (max-width: 768px){
	#menu .navigation {
		margin-top: 30px;
	}
	#menu ul {
		width: 100%;
	}
	#menu li a {
		line-height: 40px;
		font-size: 28px;
	}
	#menu li {
		width: 100%;
		text-align: center;
	}
	#menu ul li a.say-hi-icon {
		-webkit-box-pack: center;
	    -ms-flex-pack: center;
	    justify-content: center;
	}
}

#menu, .navigation, .navigation-right  {
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;  
}

/* ------------------------- Logo All Pages -------------------------------------------------- */

main#home .logo {
	display: none;
}

.logo {
	position: fixed;
	height: 50px;
	width: 200px;
	z-index: 21;
	top: 40px;
	left: 50%;
	transform: translate(-50%, 0);
}

.logo img {
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	opacity: 1;
}

@media screen and (max-width: 768px){
	.logo {
		top: 20px;
	}
}

/* ------------------------- Navigation Fade -------------------------------------------------- */

.navigation-fade {
	position: fixed;
	width: 100%;
	left: 0;
	height: 150px;
	pointer-events: none;
	top: 0;
	background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
	z-index: 16;
	opacity: .3;
}

main.scrolled .navigation-fade{
	opacity: .5;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

/* ------------------------- Call to action -------------------------------------------------- */

.nav-cta-btn {
	position: fixed !important;
	right: 80px;
	top: 50px;
	z-index: 25;
}

.nav-cta-btn:hover {
	background: #252525;
	color: #fff;
}

@media screen and (max-width: 768px){
	.btn.nav-cta-btn {
		right: 20px;
		top: 20px;
	}
}

/* ------------------------- Socials -------------------------------------------------- */

.socials {
	width: 120px;
    height: 40px;
    position: fixed;
    top: 55px;
    right: 260px;
    mix-blend-mode: difference;
    z-index: 11;
}

.socials.website_type {
	width: 80px;
	height: 40px;
	top: auto;
	bottom: 65px;
	right: 72px;
	display: none;
}

.social-btn {
	width: 40px;
	height: 40px;
	float: left;
	text-indent: -9999px;
	background-size: 20px !important;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.ig { background: url("../images/ico-ig.svg") center center no-repeat;}
.tw { background: url("../images/ico-tw.svg") center center no-repeat;}
.dr { background: url("../images/ico-dr.svg") center center no-repeat;}
.am { background: url("../images/ico-car.svg") center center no-repeat;}
.re { background: url("../images/ico-home.svg") center center no-repeat;}

.social-btn:hover,
.social-btn.active {
	opacity: .5;
}

.social-btn.active {
	cursor: default;
}

@media screen and (max-width: 1000px){
	.socials {
		opacity: 0;
		visibility: hidden;
	}

	body.active .socials {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 768px){
	.socials {
		right: 20px;
		bottom: 25px;
	}
}

/* ------------------------- Progress Bar -------------------------------------------------- */

#goTop {
    position: fixed;
    right: 62px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    z-index: 2;
    opacity: 0;
    outline: none;
}

#goTop span {
	text-indent: -9999px;
	display: inline-block;
}

#goTop svg#goTopArrow {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    fill: #111111;
    enable-background: new 0 0 50 50;
    float:left;
}

#goTop.dark-bg svg#goTopArrow {
    fill: #204859;
}

#goTop .scroll_progress {
    width: 1px;
    height: 100px;
    position: absolute;
    top: -100px;
    left: 50%;
    background-color: #D4E9F2;
}

#goTop.dark-bg .scroll_progress {
    background-color: rgba(32, 72, 89, .1);
}

#goTop .scroll_progress .scroll_progress_bar {
    height: 1%;
    background-color: #000;
    display: inherit;
    top: 0;
    position: absolute;
    left: 0;
    width: 1px;
}

#goTop.dark-bg .scroll_progress .scroll_progress_bar {
    background-color: #204859;
}

@media screen and (max-width: 768px){
	#goTop {
		right: 20px;
    	bottom: 20px;
    	display: none;
	}
}

.progressContainer {
	position: fixed;
	top: 50%;
	right: 91px;
	z-index: 5;
	height: 100px;
	width: 2px;
    background: rgba(152, 152, 152, 0.3);
	overflow: hidden;
	transform: translate(0, -50%);
}

.progressFill {
	width: 2px;
	background: #FC0000;
	height: 0%;
	transition: transform 0.7s cubic-bezier(0.05, 0.5, 0.45, 1) 0s;
}

.progressScroll {
	position: fixed;
	top: calc(50% - 55px);
	right: 60px;
	z-index: 5;
    transform: translate(0, -50%) rotate(90deg);
    color: #fff;
    mix-blend-mode: difference;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 20px;
}

@media screen and (max-width: 1000px){
	.progressContainer, .progressScroll {
		display: none;	
	}
}

.row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

nav {
    display: block;
    width: 100%;
    z-index: 20;
    position: fixed;
    padding: 1.2em 3em;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    will-change: opacity,top,visibility
}

nav .row {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

nav.scroll-nav {
	background-color: #ffffff;
	padding: .8em 3em;
	border-bottom: solid 1px #ddedff;
}

.trp-language-switcher>div {
	border: none;
	background: transparent;
}

.trp-language-switcher>div>a {
	-webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.trp-language-switcher>div>a:hover {
	background: transparent;
	opacity: .7
}

.center-nav {
	display: block;
    position: relative;
}

.center-nav > li {
	float: left;
    display: block;
}

.center-nav > li a {
    padding: 1em;
    display: block;
    position: relative;
	font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
	-webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

body.home .center-nav > li a {
	color: #ffffff;
}

.menu-wrapper.scroll-nav .center-nav > li a {
	color: #5478bc;
}

.center-nav > li a:hover,
.menu-wrapper.scroll-nav .center-nav > li a:hover,
body.home .center-nav > li a:hover {
	color: #e55183;
}

.nav-icon {
    position: absolute;
    right: 3em;
    top: 0.5em;
    width: 3em;
    height: 3em;
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
    display: none;
    overflow: hidden;
}

.hamburger-bar {
    width: 38%;
    height: 2px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: 0 0
}

.hamburger-bar:before,
.hamburger-bar:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all .3s cubic-bezier(.7,0,.3,1)
}

.nav-icon-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #202020;
    transition: all .2s ease-in-out;
}

.menu-wrapper.nav-active .hamburger-bar {
    background: transparent;
}

.menu-wrapper.nav-active .nav-icon .nav-icon-back {
    background: #e55183;
}

.menu-wrapper.nav-active .hamburger-bar:before {
    transform: rotate(-45deg) translate(0,0em);
}

.menu-wrapper.nav-active .hamburger-bar:after {
    transform: rotate(45deg) translate(0,0em);
}

@media screen and (max-width: 720px) {
    .nav-icon {
        display:block;
        right: 2em;
        top: 2em
    }
}

@media screen and (max-width: 720px) {
	
	.trp_language_switcher_shortcode {
		visibility: hidden;
		opacity: 0;
	}

	.menu-wrapper.nav-active .trp_language_switcher_shortcode {
		visibility: visible;
		opacity: 1;
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.trp-language-switcher {
		text-align: center;
	}

    nav .row .center-nav {
        width:100%;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        display: flex;
        flex-direction: column;
        align-items: center
    }

	.menu-wrapper {
		background: transparent !important;
	}

	.menu-wrapper .row .center-nav {
		opacity: 0;
    	visibility: hidden;
	}

    .menu-wrapper.nav-active nav .row .center-nav,
	.menu-wrapper.nav-active nav .row .right-nav {
        visibility: visible;
        opacity: 1
    }

    nav ul li a {
        padding-left: 0;
        padding-right: 0;
        font-size: 8vw;
        line-height: 1;
        font-weight: 500;
        padding: 3vh 0
    }

    .menu-wrapper.nav-active nav.light ul li a {
        color: #ffffff;
    }

    nav ul li a .nav-number {
        top: 1.5em;
        right: -.5em
    }

    nav ul li.nav-active a {
        opacity: .5
    }

    nav ul li.nav-active a,
	nav ul li a:hover {
        color: #ffffff;
    }

	.menu-wrapper.nav-active {
        height: calc(var(--vh,1vh) * 100);
        opacity: 1;
        visibility: visible;
        will-change: opacity,height,visibility;
		background: #222 !important;
    }

	.center-nav > li a {
		color: #ffffff;
		font-size: 24px;
	}

	.menu-wrapper.nav-active .row .center-nav {
		visibility: visible;
		opacity: 1;
	}

	/* nav .row {
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		height: 100%;
	} */

}
