@keyframes secpulse {
    0% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
	70% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
	80% {
		transform: scale(0.85);
		-webkit-transform: scale(0.85);
	}
	90% {
		transform: scale(1.2);
		-webkit-transform: scale(1.2);
	}
    100% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

.secpulse {
	animation: secpulse 1s infinite;
	animation-timing-function: ease-in;
	-webkit-animation: secpulse 1s infinite;
	-webkit-animation-timing-function: ease-in;
}


@keyframes zoomInFade {
    0% {
		opacity: 0;
		transform: scale(1);
		-webkit-transform: scale(1);
	}
	10% {
		opacity: 1;
	}
    100% {
		transform: scale(6);
		-webkit-transform: scale(6);
		opacity: 0;
	}
}


@keyframes zoomInFadeSmall {
    0% {
		opacity: 0;
		transform: scale(1);
		-webkit-transform: scale(1);
	}
	10% {
		opacity: 1;
	}
    100% {
		transform: scale(3);
		-webkit-transform: scale(3);
		opacity: 0;
	}
}




* {
  scrollbar-width: thin;
  scrollbar-color:  rgba(0,0,0,0.2) rgba(0,0,0,0.0);
  background-color:rgba(255,255,255,0);
}
*::scrollbar-thumb {
  background-color:rgba(0,0,0,0.2);
  border-radius: 20px;
  border:none;
}

*::-webkit-scrollbar {
  width: 4px;
  height:4px;
  background-color:rgba(255,255,255,0);
}

*::-webkit-scrollbar-track {
  background:rgba(0,0,0,0.0);
}

*::-webkit-scrollbar-thumb {
  background-color:rgba(0,0,0,0.2);
  border-radius: 20px;
  border:none;
}


html, body {
	position:relative;
	overflow-x: hidden;
}



html {padding:0; margin:0; width: 100%;}
html::-webkit-scrollbar {
  width: 0px;
}

body {
	font-family: 'Inter Tight', sans-serif;
	font-size:16px;
	line-height:24px;
	padding:0; margin:0;
	font-weight:300;
	color:#fff;
	overflow-x: hidden;
    overflow-y: auto;
	position: relative;
	width: 100%;
}

body.no-scroll,
html.no-scroll {overflow:hidden}
body.no-scroll::-webkit-scrollbar,
html.no-scroll::-webkit-scrollbar {width: 0;}

.font-default {font-size:16px; line-height:21px;}
.font-big {font-size:24px; line-height:30px;}
.font-small, small {font-size:14px; line-height:16px;}
.font-small-2 {font-size:12px; line-height:15px;}
.font-128 {
	font-weight: 500;
	font-size: 123px;
	line-height: 135px;
}

.font-290 {
	font-weight: 600;
	font-size: 290px;
	line-height: 290px;
	letter-spacing: -0.05em;
	white-space: nowrap;
}



b, strong, .strong {
	font-weight: 700;
}

* {outline:none;}

input[type='url'],
input[type='text'],
input[type='email'],
input[type='phone'],
input[type='number'],
input[type='password'],
select, textarea {
	font-family: 'Inter Tight', sans-serif;
	font-size:16px;
	line-height: 21px;
	font-weight: 400;
	color:#012140;
	padding:16px 16px;
	background: #FFFFFF !important;
	border: 1px solid #012140;
	border-radius:4px;
	display:block; width:100%;
	margin:0;
	-webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
	height: auto;
}
textarea.auto-expand {
	min-height: 56px !important;
	-webkit-transition: 0s;
  	-moz-transition: 0s;
  	-o-transition: 0s;
  	transition: 0s;
}
input.error,
select.error, textarea.error {
	border: 1px solid #FF764D;
}

.with-placeholder {position: relative; z-index: 1;}
.with-placeholder .placeholder {
	position: absolute;
	display: block;
	white-space: nowrap;
	width: calc(100% - 20px);
	top: 6px;
	left: 16px;
	font-size: 13px;
	line-height: 14px;
	color: #949CB2;
}

.col-content {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
}

label.error {
	display: block;
	margin: 5px 0 0 0;
	font-size: 14px;
	line-height: 20px;
	color: #FF764D;
}

form {position: relative; z-index: 10;}

input::placeholder,
textarea::placeholder {color: #949CB2}

.focus-input {padding:20px 16px 12px 16px !important;}
.focus-input::placeholder {color: transparent;}
textarea.focus-input + .placeholder {display: none;}

a {
	text-decoration:none;
	color:#ED1C24;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a:hover {color:#95021a;}



iframe {width:100%;}

img {max-width:100%; border:none;}

h1, .h1 {
	font-style: normal;
	font-weight: 800;
	font-size: 88px;
	line-height: 88px;
	padding:0; margin:0 0 50px 0;
	position: relative;
	z-index: 10;

}

h2, .h2 {
	font-style: normal;
	font-weight: 800;
	font-size: 64px;
	line-height: 68px;
	padding:0; margin:0 0 40px 0;
	position: relative;
	z-index: 10;
}

h3, .h3 {
	font-style: normal;
	font-weight: 800;
	font-size: 48px;
	line-height: 52px;
	padding:0; margin:0 0 30px 0;
	position: relative;
	z-index: 10;
}

h4, .h4 {
	font-style: normal;
	font-weight: 800;
	font-size: 32px;
	line-height: 36px;
	padding:0; margin:0 0 25px 0;
	position: relative;
	z-index: 10;
}


h5, .h5 {
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: 30px;
	padding:0; margin:0 0 20px 0;
	position: relative;
	z-index: 10;
}

p {margin:0px 0 25px 0}

.font-big p,
p.font-big {margin:0px 0 35px 0}

ul, ul li { list-style:none; padding:0; margin:0; display:block;}
ul {margin: 10px 0 20px 0}
ul li { padding:0 0 0px 20px; margin: 10px 0 10px 0; position:relative;}
ul li:before {
	position: absolute;
    top: 7px;
    left: 0;
    display: inline-block;
    content: ' ';
    width: 8px;
    height: 8px;
    background-color: #012140;
    border-radius: 10px;
}



ol {
	list-style: none;
	counter-reset: my-awesome-counter;
	padding: 0;
}
ol li {
	counter-increment: my-awesome-counter;
    padding: 0px 0px 0px 35px;
    margin: 18px 0;
    position: relative;
}
ol li::before {
	content: counter(my-awesome-counter) " ";
    color: #fff;
    display: inline-block;
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 40px;
    background: #012140;
    text-align: center;
    top: -2px;
    left: 0;
    padding: 2px 0 0 0;
}

.font-big ol li {
	padding: 0px 0px 0px 45px;
}
.font-big ol li::before {
	height: 35px;
    width: 35px;
}


.disabled {opacity: 0.5;}

.ya-share2 {display: inline-block; vertical-align: middle;}
.ya-share2 li:before,
.ya-share2 li:after {display: none !important;}
.ya-share2 .ya-share2__link {margin: 0 5px;}
.ya-share2 .ya-share2__icon {background-size: 25px 25px !important; background-repeat: no-repeat; background-position: center center;}


.color-white {color:#fff !important}
.color-black {color:#000 !important}
.color-default {color:#012140 !important}
.color-blue {color: #012140 !important}
.color-red {color: #ED1C24 !important}
.color-gray {color:#BBB !important}

a.color-white:hover {
	color:#ed1c24 !important;
}

.bg-white {background-color:#fff !important}
.bg-black {background-color:#000 !important}
.bg-default {background-color:#012140 !important}
.bg-blue {background-color: #012140 !important}
.bg-red {background-color: #ED1C24 !important}

.border-16 {border-radius: 16px !important;}
.border-20 {border-radius: 20px !important;}
.border-24 {border-radius: 24px !important;}
.border-32 {border-radius: 32px !important;}

.opac-007 {opacity: 0.07 !important;}
.opac-008 {opacity: 0.08 !important;}
.opac-009 {opacity: 0.09 !important;}
.opac-01 {opacity: 0.1 !important;}
.opac-02 {opacity: 0.2 !important;}
.opac-03 {opacity: 0.3 !important;}
.opac-04 {opacity: 0.4 !important;}
.opac-05 {opacity: 0.5 !important;}
.opac-06 {opacity: 0.6 !important;}
.opac-07 {opacity: 0.7 !important;}
.opac-08 {opacity: 0.8 !important;}
.opac-09 {opacity: 0.9 !important;}

.shadow {
	box-shadow: 0px 20px 56px -48px rgba(0, 52, 115, 0.16), 0px 8px 32px rgba(0, 93, 207, 0.08);
}




.icon {
	display:inline-block;
	vertical-align:middle;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
	width:25px; height:25px;
}
.icon-account {background-image:url(../img/icon-account.svg);}

.icon-arrow-right {background-image:url(../img/icon-arrow-right.svg);}
.icon-arrow-left {background-image:url(../img/icon-arrow-right.svg); transform: rotate(180deg);}

.icon-arrow-left-simple {background-image:url(../img/icon-arrow-left-simple.svg);}
.icon-arrow-right-simple {background-image:url(../img/icon-arrow-left-simple.svg); transform: rotate(180deg);}

.icon-menu {background-image:url(../img/icon-menu.svg);}
.icon-phone {background-image:url(../img/icon-phone.svg);}
.icon-phone-white {background-image:url(../img/icon-phone-white.svg);}
.icon-close {background-image:url(../img/icon-close.svg);}
.icon-close-simple {background-image:url(../img/icon-close-simple.svg);}

.icon-text {background-image:url(../img/icon-text.svg);}
.icon-text-outline {background-image:url(../img/icon-text-outline.svg);}
.icon-marker-gray {background-image:url(../img/icon-marker-gray.svg);}
.icon-doc {background-image:url(../img/icon-doc.svg);}
.icon-logout {background-image: url(../img/icon-logout.svg);}

.icon-ok,
.ya-share2__item_service_odnoklassniki .ya-share2__icon {background-image:url(../img/icon-ok.svg) !important;}

.icon-tel,
.ya-share2__item_service_telegram .ya-share2__icon {background-image:url(../img/icon-tel.svg) !important;}

.icon-vk,
.ya-share2__item_service_vkontakte .ya-share2__icon {background-image:url(../img/icon-vk.svg) !important;}






.btn {
	font-family: 'Inter Tight', sans-serif;
	background: #ED1C24;
	color:#FFF;
	padding: 12px 20px 12px 20px;
	margin:0;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	display:inline-block; vertical-align:middle;
	cursor:pointer;
	text-decoration: none;
	text-align: center !important;
	border: none;
	border-radius:4px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	transition-timing-function: ease-in;
	-webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}
input.btn {
	-webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.btn b,
.btn strong {display: inline-block; vertical-align: middle;}

.btn:hover {
	background: #830317;
	color:#fff;
}
.btn:hover .icon-phone {background-image: url(../img/icon-phone-white.svg);}

.btn-big {
	padding: 16px 24px 17px 24px;
	line-height: 24px;
}
.btn-small {
	padding: 8px 18px 8px 18px;
	line-height: 20px;
}


.btn-white {
	background: #FFF;
	color:#012140;
}

.btn-blue {
	background: #012140;
	color:#FFFFFF;
}


.btn-arrow:after {
	content:' ';
	display:inline-block;
	vertical-align: middle;
	height: 24px; width: 24px;
	background: url(../img/icon-arrow-right.svg) center center no-repeat;
	background-size: 99% auto;
	margin: 0 0 0px 10px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.btn-white.btn-arrow:after {
	background-image: url(../img/icon-arrow-black-right.svg);
}

.btn-white.btn-arrow:hover:after {
	background-image: url(../img/icon-arrow-right.svg);
}


.btn-arrow-left:before {
	content:' ';
	display:inline-block;
	vertical-align: middle;
	height: 24px; width: 24px;
	background: url(../img/icon-arrow-right.svg) center center no-repeat;
	background-size: 99% auto;
	margin: 0 10px 0px 0px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	transform: rotate(180deg);
}


.btn-arrow-down:after {
	content:' ';
	display:inline-block;
	vertical-align: middle;
	height: 11px; width: 11px;
	background: url(../img/icon-arrow-simple-down.svg) center center no-repeat;
	background-size: 99% auto;
	margin: 0 0 0px 10px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.btn-arrow-down.opened::after {
	transform: rotate(180deg);
}


.btn-outline {
	background: none;
	border:2px solid #012140;
	color:#012140;
}

.btn-outline:hover {
	background: #012140;
    color:#FFFFFF;
	border:2px solid #012140;
}

.btn-outline.btn-arrow:after {
	background-image: url(../img/icon-arrow-black-right.svg);
}

.btn-outline.btn-arrow-left:before {
	background-image: url(../img/icon-arrow-black-right.svg);
}


.btn-outline-white {
	background: none;
	border:2px solid #fff;
	color:#fff;
}

.btn-outline-white:hover {
	background: #012140;
	border:2px solid #012140;
    color:#FFFFFF;
}


.btn-wide {display: block; width: 100%;}


.btn .icon {width:25px; height:25px; margin:0 0px 0 10px;}
.btn-icon {
	width: 48px;
    height: 48px;
    border: 2px solid #005DCF;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
	text-align: center;
	position: relative;
	z-index: 10;
}
.btn-icon .icon {
	width: 25px;
    height: 25px;
    margin: 10px 0px 0 0;
}
.btn-icon:hover {
	transform: scale(1.1);
}


.btn-small.btn-arrow:after {width: 20px; height: 20px;}
.btn-small.btn-arrow-left:before {width: 20px; height: 20px;}
.btn-small .icon {width:20px; height:20px;}


.logo {
	display: inline-block;
    border-radius: 15px;
    padding: 35px 55px;
    background: linear-gradient(135deg, #6a1a92 0%, #090950 100%);
	box-shadow: 0 20px 40px #1e07079e;
}
.logo img {width: 330px;}


.block {
	position: relative; 
	z-index:1; 
	padding:50px 0 50px 0; 
	background-position: center center; 
	background-size: cover; 
	background-repeat: no-repeat;
	overflow: hidden;
}

.block-bg {min-height: 100vh;}

.block-bg:before {
	content: ' ';
	display: block;
	position: fixed;
	top:0; left: 0; 
	width: 100%; height: 100%;
	z-index: 1;
	background: rgb(0 0 0 / 49%);
}

.block .container {z-index:10; position:relative;}

.block-bg.bg-fixed {
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center center;
	background-blend-mode: luminosity;
    background-color: #834521;
}


.block-white {
	background: #fff;
	box-shadow: 0px 24px 40px -48px rgba(0, 52, 115, 0.16), 0px 6px 24px rgba(0, 93, 207, 0.08);
	border-radius: 4px;
	padding: 40px;
	position: relative;
	z-index: 1;
}

.row-block-items {margin-bottom:20px;}
.row-block-items .block-item {height: 100%;}
.row-block-items > div {padding:15px;}



.block-ovrf {overflow: hidden;}


.row-trucking {
	
}
.row-trucking > div {
	
}

.row-trucking .block-item {
	height: 450px;
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
}

.row-trucking .block-item > div {
	background: linear-gradient(135deg, #6a1a92 0%, #090950 100%);
    position: absolute;
    top: 10px;
    right: 0;
    padding: 20px 30px;
    font-size: 130%;
    line-height: 150%;
    border-radius: 5px 20px 0 20px;
}



.startAnimation svg {opacity: 1;}
.startAnimation .to-show path {
	fill:#ED1C24;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
}

.startAnimation g#country_x5F_be .path {animation-delay: 0.5;}
.startAnimation g#country_x5F_nl .path {animation-delay: 1.0;}
.startAnimation g#country_x5F_de .path {animation-delay: 1.5;}
.startAnimation g#country_x5F_pl .path {animation-delay: 2.0;}
.startAnimation g#country_x5F_lt .path {animation-delay: 2.5;}
.startAnimation g#country_x5F_by .path {animation-delay: 3.0;}
.startAnimation g#country_x5F_ru .path {animation-delay: 3.5;}


.footer {}

.block-footer {
	
}


.win {
	position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 10000;
    display: none;
}
.win:before {
	content: ' ';
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.47);
}
.win .win-container {
	text-align: center;
    padding: 0;
    margin-top: 0;
    display: table-cell;
    width: 100vw;
    height: 100vh;
    vertical-align: middle;
	position:relative;
}
.win .win-content {
	border-radius: 4px;
    overflow: hidden;
    background: #fff;
    position: relative;
    text-align: left;
    display: inline-block;
    filter: drop-shadow(0px 8px 32px rgba(0, 0, 0, 0.1));
    max-width: 800px;
    width: 60%;
    margin: 20px 20px;
    padding: 30px 30px 50px 30px;
}

.win .win-content:after {
	display:block;
	width:100%;
	content:' ';
	clear:both;
}
.win .win-content .close {

}
.win .btn-close {cursor: pointer;}
.win .win-logo {}

.cookieNotification {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background-color: #fff;

    -webkit-box-shadow: 0 0 40px rgb(0 0 0 / 15%);
    box-shadow: 0 0 40px rgb(0 0 0 / 15%);
    z-index: 9999;
}
.cookieNotification.show {
    display: block;
}
