:root {
    --light_body_color: #fff;
    --light_link_init_color: #000;
    --light_link_hover_color: #000;
    --light_link_visited_color: #000;

    --link-init_weight: 400;
    --link-hover_weight: 400;
    
    --lg-body-padding: 0px;
    --md-body-padding: 0px;
    --sm-body-padding: 0px;
    --xs-body-padding: 0px;
    
    --lg-logo-height: 54px;
    --md-logo-height: 34px;
    --sm-logo-height: 34px;
    --xs-logo-height: 24px;
    
    /*--dark_blue: rgb(25,36,43);*/
    --dark_blue: rgb(14,25,49);
    --init_shadow_opacity: .5;
    /*--dark_blue_alpha: rgba(25,36,43, .5);*/
    --dark_blue_alpha: rgba(14,25,49, .5);
    --controls_color: #fff;
    
    --second-menu-test-color: rgb(17, 31, 60);
}

/********** TAGS *********/

body {
    /*font-family: TTNorms !important;*/
    font-family: 'Montserrat', sans-serif  !important;
    height: 100vh;
    /*background-image: url(../images/logo.png);*/
    background-size: auto 90px;
    background-repeat: no-repeat;
    background-position: center calc(50% - 29px);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body * { box-sizing: border-box; }

a { 
    transition: .2s ease-out;
}

h1 small, h1 .small, .h1 .small, .h1 small,
h2 small, h2 .small, .h2 .small, .h2 small,
h3 small, h3 .small, .h3 .small, .h3 small {
	font-weight: inherit;
	color: inherit;
}

/*************** SCHEME VARS ***************/

body.LIGHT_SCHEME { 
    background-color: var(--dark_blue);
    color: var(--light_body_color); 
}
.LIGHT_SCHEME a { color: var(--light_link_init_color); }
.LIGHT_SCHEME a:hover { color: var(--light_link_hover_color); }
.LIGHT_SCHEME a:visited { color: var(--light_link_visited_color); }


/************  IDENTIFICATORS **************/

#loaderFog {
    height: 100vh;
    width: 100%;
    /*background-image: url(../images/logo.png);
    background-size: auto 90px;
    background-repeat: no-repeat;
    background-position: center calc(50% - 29px);*/
    background-color: var(--dark_blue);
    position: fixed;
    align-items: center;
    display: flex;
    display: -o-flex;
    display: -moz-flex;
    display: -webkit-flex;
    top: 0;
    left: 0;
    z-index: 1000;
}

#loaderFog .holder {
	text-align: center;
	width: 100%;
}

#loaderFog svg {
    width: 150px;
	height: 100px;
    fill: var(--controls_color);
    /*margin-top: -49px;*/
    margin-top: -30px;
}

#pageScroller {
	height: 100vh;
}

#mainMenu {
	position: absolute;
	width: 30vw;
	height: 100vh;
	left: calc(-30vw + 55px);
	transition: .3s ease-out .4s;
}

#mainMenu.opened {
	left: 0;
}

#afterMenuPart {
	top: 29.5px;
    left: 100px;
}

/**************    CLASSES   ***************/

.noOverflow { overflow: hidden; }

#mainMenu .menuItem {
    display: block;
    padding: .5em 0;
    font-size: 1.6em;
    font-weight: 600;
    color: var(--controls_color);
}

#mainMenu .inner {
	background-color: var(--dark_blue);
	background-image: linear-gradient(to bottom right, transparent, rgba(0,0,0,.1));
	width: calc(100% - 55px);
	padding: 30px;
	height: 100%;
}

.font10 { font-size: 10px; }
.font12 { font-size: 12px; }
.font14 { font-size: 14px; }
.font16 { font-size: 16px; }
.font18 { font-size: 18px; }
.font20 { font-size: 20px; }

.absolute { position: absolute; }

.shadow {
	background-color: var(--dark_blue);
	opacity: var(--init_shadow_opacity);
}

.shadow.radial {
    background-color: transparent;
    background-image: radial-gradient(transparent 50%, var(--dark_blue));
}

.viewPort.block {
    width: 100%;
    height: 100%;
}

.darkBack {
	background-color: var(--dark_blue);
}

.whiteBack { 
	background-color: #fff;
}

.menuToggler {
	padding-left: 15px;
	padding-top: 15px;
}

.smallTopLogo svg {
	height: 27px;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
    image-rendering: optimizeQuality;
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: var(--controls_color);
    width: 60px;
    margin-top: -1px;
}

.swiper-slide:last-child .nextPage { display: none; }

.ultraThin { font-weight: 200; }

.ultraThin b, .ultraThin .bold { font-weight: 400; }

.crumb {
    font-size: 10px;
}

.crumb .tail {
    width: 40px;
    margin: 0 20px;
    border-bottom: 1px solid;
}

.clearText {
	line-height: 24px;
	font-size: 18px;
}

.white a, .white a:focus, .white a:hover, .white a:active, .white a:visited,
a.white, a.white:focus, a.white:hover, a.white:active, a.white:visited {
	color: #fff;
}

#breadcrumbs .crumb a {
    color: var(--controls_color);
}

#pageScroller .swiper-pagination {
	right: 0;
}

#pageScroller .swiper-pagination-bullet {
    width: 60px;
    height: 10px;
    background: none;
    border-radius: 0;
    opacity: 1 !important;
	margin-bottom: 2px;
	text-align: right;
}

#pageScroller .swiper-pagination-bullet:after {
	content: '';
	width: 37px;
    height: 1px;
    opacity: .6;
    background: var(--controls_color);
    display: inline-block;
    position: relative;
    top: -9px;
}

#pageScroller .swiper-pagination-bullet-active:after {
	opacity: 1;
	width: 60px;
}

/*********************************/

.arrow-down, .arrow-up {
	position: relative;
	width: 24px;
	height: 10px;
	display: inline-block;
}

.arrow-down:before, 
.arrow-down:after, 
.arrow-up:before, 
.arrow-up:after {
	content: "";
	width: 12px;
	height: 1px;
	background-color: var(--controls_color);
	display: inline-block;
}

.arrow-down:before { transform: rotate(30deg) translate(-2px, -5px); }
.arrow-down:after { transform: rotate(-30deg) translate(2px, -5px); }

.arrow-up:before { transform: rotate(-30deg) translate(5px, -6px); }
.arrow-up:after { transform: rotate(30deg) translate(-5px, -6px); }

.arrow-down + br + .arrow-down.relative { top: -13px; }
.arrow-up + br + .arrow-up.relative { top: -13px; }

.downBtns { bottom: 40px; }

.downBtns .dbl { 
	height: 20px;
    display: block;
    top: -7px;
    position: relative;
}

.upBtns { top: 100px; }

.upBtns .dbl { 
	height: 20px;
    display: block;
    top: -7px;
    position: relative;
}

.nextPage .arrow-down {
	animation: downOpacity 1.3s infinite cubic-bezier(1,.43,.44,.67) ;
}

@keyframes downOpacity {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: .3;
		transform: translateY(10px);
	}
}
/**************************************/

/************** MENU **************/

.menuBurger {
	text-align: right;
    position: absolute;
    top: 30px;
    left: 0px;
    cursor: pointer;
    z-index: 40;
}

.menuBurger .bar {
	width: 40px;
	height: 1px;
	background-color: var(--controls_color);
	margin-bottom: 11px;
	display: block;
	margin-left: 30px;
}

.menuBurger .bar.longBar {
	width: 70px;
	margin-left: 0;
	margin-bottom: 0;
}

.menuBurger .bar:nth-of-type(3) {
	transition: .3s ease-out 0s;
}

.menuBurger .bar:nth-of-type(2) {
	transition: .3s ease-out .1s;
}

.menuBurger .bar:nth-of-type(1) {
	transition: .3s ease-out .2s;
}

#mainMenuContainer {
	width: 240px;
	height: 100%;
	background-color: var(--dark_blue);
	color: var(--controls_color);
	padding: 30px 0px;
	top: 0;
	left: -240px;
	transition: left .3s ease-out;
	/*overflow: hidden;*/
}

#mainMenuContainer.opened { left: 0; }

#mainMenuLinks {
	list-style: none;
	padding: 40px 0px;
	margin: 10px 0 0;
}

#mainMenuLinks:after, 
#mainMenuLinks:before {
	content: "";
	width: 65px;
	height: 1px;
	position: absolute;
	left: 0;
	background-color: var(--controls_color);
}

#mainMenuContainer .mains { z-index: 2; }

#mainMenuLinks:after { bottom: 0px; }

#mainMenuLinks:before { top: 0px; }

#mainMenuContainer .menulink {
	display: block;
	color: var(--controls_color);
	padding: 13px 50px;
    font-weight: 300;
    font-size: 12px;
}
#mainMenuContainer .menulink:hover { background-color: rgba(255,255,255,.1); }

#mainMenuContainer .topHomeLink {
	color: var(--controls_color);
	height: 30px;
    width: 30px;
    font-size: 25px;
    margin-left: 45px;
}

/*#mainMenuContainer .topPhone {
	color: var(--controls_color);
	font-size: 14px;
    margin-left: 20px;
}*/

#mainMenuContainer .topPhone {
    font-size: 13px;
    margin-left: 20px;
    line-height: 22px;
    position: relative;
    /*bottom: -10px;*/
}

.topPhone a { color: var(--controls_color); }

#mainMenuLinks .mains > .subMenu {
    padding: 100px 0 30px;
    position: absolute;
    top: 0;
    left: -100%;
    list-style: none;
    height: 100vh;
    width: 240px;
    background-color: var(--second-menu-test-color);
    margin-top: -70px;
    z-index: -1;
    opacity: 0;
    transition: left .6s ease-out, opacity .3s ease-out .3s;
}

#mainMenuLinks .mains:hover > .subMenu {
	left: calc(100% + 10px);
	opacity: 1;
	z-index: 1;
}

svg.homeIcon {
    width: 20px;
    height: 20px;
    margin-bottom: -3px;
    fill: var(--controls_color);
    margin-left: 2px;
}

svg.instaIcon {
	width: 20px;
    height: 20px;
    fill: var(--controls_color);
}

.socialBottomLinks { bottom: 50px; left: 50px; }

.svgForward {
	shape-rendering:geometricPrecision; 
	text-rendering:geometricPrecision; 
	image-rendering:optimizeQuality; 
	fill-rule:evenodd; 
	clip-rule:evenodd;
	stroke:#fff;
	stroke-width:152.54;
	stroke-miterlimit:22.9256;
	fill:none;
	width: 65px;
	height: 15px;
}


/****************************************/

input:hover, input:focus {
    outline: none;
}

.code_inp {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid;
    font: inherit;
    margin-right: 30px;
}

/**************** MEDIA *****************/

@media (min-width: 1200px) { /* -lg */

    body { padding: var(--lg-body-padding); }

}

@media (min-width: 992px) and (max-width: 1199px) {
    
    body { padding: var(--md-body-padding); }
    
}

@media (min-width: 992px) and (max-width: 1024px) and (orientation : portrait) {
	#afterMenuPart, .menuBurger { top: 65px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    
    body { padding: var(--sm-body-padding); }
    
    #afterMenuPart, .menuBurger { top: 55px; }
    
}

@media (max-width: 600px) {
    
    body { padding: var(--xs-body-padding); }
    
    .closeXsPosition {
		top: 25px;
		right: 30px;
		width: 17px;
		height: 17px;
	}
	
	.closeXsPosition .left, .closeXsPosition .right {
		width: 1px;
		background-color: #fff;
		height: 22px;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.closeXsPosition .left { transform: rotate(45deg); }
	.closeXsPosition .right { transform: rotate(-45deg); }
    
    #mainMenuContainer { 
    	width: 100%; 
    	left: -100%;
    }
    
	#mainMenuLinks .mains:hover > .subMenu {
	    left: calc(100% - 235px);
	    width: 235px;
	}
	
	.menuBurger { top: 40px; }
    
    #loaderFog svg {
	    height: 52px;
	    width: 110px;
	    margin-top: -14px;
    }
    
    #mainMenuContainer .topPhone { font-size: 18px; }
    #mainMenuContainer .menulink { text-align: center; font-size: 12px; }
	.subMenu .menulink { text-align: left; }
	
	#pageScroller .swiper-pagination-bullet { width: 30px; }
	
	#pageScroller .swiper-pagination-bullet:after { width: 20px; }

	#pageScroller .swiper-pagination-bullet-active:after { width: 30px; }
}

