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

*::-webkit-scrollbar {
  width: 8px;
  height:8px;
}

*::-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;
}



@keyframes blurIn {
  100% {
    transform: scale(1);
  }
}
@keyframes fade-in {
  0% {
	opacity: 0;	
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.blurIn {
	transform: scale(0.85);
  	animation: blurIn 4.2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}


.blurIn span {
	display: inline-block;
	vertical-align: middle;
}

.blurIn.animated span {  
  opacity: 0;
  filter: blur(10px);
}

.blurIn.animated span:nth-child(1) {
  animation: fade-in 0.8s 0s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(2) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(3) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(4) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(5) {
  animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(6) {
  animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(7) {
  animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(8) {
  animation: fade-in 0.8s 2.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(9) {
  animation: fade-in 0.8s 2.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.blurIn.animated span:nth-child(10) {
  animation: fade-in 0.8s 2.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}


body {
	font-family: "Lustria", sans-serif;
	font-size:16px;
	line-height:1.3;
	padding:0; margin:0;
	font-weight:500;
	color: #2d345f;
	overflow-x: hidden;
}

body.no-scroll {overflow:hidden}

.font-big {font-size:24px; line-height:30px; font-weight:600;}
.font-small, small, .small {font-size:14px; line-height:20px;}

html {padding:0; margin:0;}

b, strong {
	font-weight:normal;
	font-family: "Lustria", sans-serif;
}

* {outline:none;}

input[type='text'],
input[type='email'],
input[type='phone'],
input[type='number'],
select, textarea {
	font-family: "Lustria", sans-serif;
	font-size:16px;
	line-height:1;
	font-weight:500;
	color: #2d345f;
	padding:12px 20px;
	background:#fff;
	border: 1px solid #b4d7ff;
	display:block; width:100%;
	margin:0;
	border-radius:8px;
}

iframe {width:100%;}

.btn, input[type="submit"], button {
	background-color:#b4d7ff;
	position: relative;
	color:#2d345f;
	padding: 12px 40px 12px 40px;
	margin:0;
	font-family: "PT Sans", Arial;
	font-size:16px;
	line-height:1;
	display:inline-block; vertical-align:middle;
	cursor:pointer;
	text-decoration:none;
	text-align:center !important;
	border:1px solid transparent;
	border-radius:8px;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.btn span {
	position:relative; z-index: 10;
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-o-transition: 0.1s;
	transition: 0.1s;
}

.btn:after {
	content: ' ';
    display: block;
	position: absolute;
	z-index: 5;
    top: 0;
    left: 0%;
	width: 100%;
    height: 100%;
	border-radius: 8px;
	background-color:#b4d7ff;
}

.btn:before {
	content: ' ';
    display: block;
    width: 96%;
    position: absolute;
    bottom: 0;
    left: 2%;
    height: 100%;
    border-radius: 36px;
    box-shadow: 0 3px 5px 0px rgb(0 0 0 / 39%);
    z-index: 1;
}

.btn:hover, .btn:hover::after {
	background:#2d345f; color:#fff;
}

.btn-small {
	padding: 8px 25px 8px 25px !important;
    font-size: 83% !important;
    line-height: 1 !important;
}

.btn-big {
	padding: 14px 50px 14px 50px !important;
	font-size: 120% !important;
}

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

a:hover {color:#125096;}

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

.color-white {color:#fff !important}
.color-black {color:#000 !important}
.color-default {color: rgb(45,51,96) !important}

.bg-white {background-color:#fff !important}
.bg-black {background-color:#000 !important}
.bg-default {color: rgb(45,51,96) !important}


p {margin:0px 0 25px 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: #273051;
    border-radius: 10px;
} 
.icon {
	display:inline-block;
	vertical-align:middle;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
}
.icon-phone {background-image:url(../img/icon-phone.svg);}
.icon-map {background-image:url(../img/icon-map.svg);}
.icon-close-white {background-image:url(../img/icon-close-white.svg);}
.icon-marker-white {background-image:url(../img/icon-marker-white.svg); width:20px; height:20px;}
.icon-tracking {background-image:url(../img/icon-tracking.svg);}


.btn .icon {width:25px; height:25px; margin:0 10px 0 0;}
.btn-small .icon {width:18px; height:18px; margin:0 5px 0 0;}

.h-huge {
	font-family: 'PT Sans', Arial;
	font-size: 80px;
	line-height: 1;
	padding:0; margin:0 0 0px 0;
	font-weight: bold;
}

h1, .h1 {
	font-family: 'PT Sans', Arial;
	font-size: 51px;
	line-height: 1;
	padding:0; margin:0 0 50px 0;
	font-weight: bold;
}

h2, .h2 {
	font-family: 'PT Sans', Arial;
	font-size: 40px;
	line-height: 1;
	padding:0; margin:0 0 40px 0;
	font-weight: bold;
}

h3, .h3 {
	font-family: 'PT Sans', Arial;
	font-size: 20px;
	line-height: 1.2;
	padding:0; margin:0 0 30px 0;
	font-weight: bold;
}

h4, .h4 {
	font-family: 'PT Sans', Arial;
	font-size: 16px;
	line-height: 1.3;
	text-transform: uppercase;
	padding:0; margin:0 0 15px 0;
	font-weight: normal;
}


.btn-totop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 0px;
    padding: 10px 15px 10px 15px;
    border-radius: 50px 50px 0 0;
    background: rgb(39 48 81);
    text-align: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0.4;
}
.icon-arrow-top-simple {
	transform: rotate(180deg);
    font-size: 42px;
    line-height: 16px;
    color: #FFF;
    position: relative;
    top: 6px;
}
.btn-totop:hover {
	opacity: 1;
}

.block {position: relative; z-index:1; padding:70px 0 70px 0; border-bottom:10px solid #e1dcd9;}
.block .container {z-index:10; position:relative;}



.header {
	padding:10px 0 10px 0; 
	position:fixed; 
	top:0; left:0; 
	width:100%; 
	z-index:100;
	background: #fff;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.header * {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.header .logo {
	display:inline-block; 
	vertical-align:middle; 
	margin:0 30px 0 0;
}

.header .logo img {width: 170px;}

.header .header-phone {color:#fff; font-weight: bold;font-size:14px; line-height:16px; margin:5px 0px 5px 0; display: inline-block;}
.header .header-phone i {width:15px; height:15px; margin:0 8px 0 0;} 

.header .col-logo {padding-right:0;}
.header .col-right {padding-left:0;}

.header .btn { margin: 0 0 0 30px;}
.header .btn-form-mob {display:none; margin:30px 0 0 0; width:100%}

.header.fixed {
	position: fixed;
    padding: 10px 0;
}

.header.fixed .wow {visibility:visible !important;}

.header.fixed .btn {padding: 10px 40px 14px 40px;}
.header.fixed .btn:hover {border:1px solid rgba(255,255,255,1);}

.header.fixed .logo img { width:100px;}

.menu {display:inline-block; vertical-align:middle; text-align: right; font-family: 'PT Sans', Arial;}
.menu a:not(.btn) { 
	text-decoration: none; 
	color: rgb(45,51,96);
	display:inline-block;
	text-align: center;
	vertical-align:middle; 
	margin:5px 5px 5px 5px;
	padding:5px 5px 5px 5px;
	border-bottom:1px solid rgba(255,255,255,0.00);
}
.menu a:not(.btn):hover, .menu a.active:not(.btn) {
	color: rgb(45,51,96);
	font-weight: bold;
	transform: scale(1.2);
	border-bottom:1px solid #FFF;
	text-decoration:none !important;
}

.menu a.active:not(.btn) {
	font-family: 'PT Sans', Arial;	
}

.menu-mobile {
	display: none;
    z-index: 10;
    width: 20px;
    height: 20px;
    background: url(../img/icon-menu.svg) center center no-repeat;
    cursor: pointer;
    background-size: contain;
    position: relative;
    flex: 0 0 70px;
    padding-right: 15px;
    padding-left: 15px;
}

.header .menu a.color-green:hover {
	color:#fff !important;
}

.box-shadow {
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.text-content {max-width: 1024px; margin: 0 auto;}

.block-top {
	width:100%;
	position: relative;
	z-index: 1;
	min-height: 40vw;
}
.block-top {display: flex;align-items: center;}
.block-top .container {}

.photo-top {
	position: absolute; top:0; right: 0;
	width: 50%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.photo-top::after {
    content: ' ';
    position: absolute;
    top: 40%;
    left: -148%;
    display: block;
    width: 300%;
    height: 30%;
    transform: rotate(255deg);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}



.block-border {
	border-radius: 8px;
	border: 1px solid #b4d7ff;
	padding: 15px 20px;
	margin: 0 0 10px 0;
}
.block-border-head .h4 {min-height: 42px;}
.block-border-head .description {text-align:justify;}
.block-border-head .description p {margin: 0; padding: 0 0 15px 0;}
.block-border .brand-logo {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	width: 220px;
	max-width: 100%;
	height: 50px;
}
.block-border.product {
	background-position: 15px center;
    background-size: auto 89%;
    background-repeat: no-repeat;
    text-align: right;
    height: 150px;
    position: relative;
}



.block-border.product .h4 {
	font-weight: bold;
    position: absolute;
    top: 6px;
    right: 10px;
}
.block-border.product img {
	position: absolute;
    height: auto;
    width: auto;
    max-width: 90%;
    max-height: 80%;
    bottom: 5px;
    left: 10px;
}
.block-border.product-height-small {height: 130px;}
.block-border.product-height-big {height: 170px;}

.block-border.first-col-0 {height: 130px;}
.block-border.first-col-1 {height: 170px;}
.block-border.second-col-0 {height: 170px;}
.block-border.second-col-1 {height: 130px;}

.block-border.product-height-max {height: 310px;}
.block-border.product-height-max img {
	width: 100%;
	max-width: none;
    left: 0;
    height: auto;
	max-height: none;
}

.row-products .row {margin-left: -5px; margin-right: -5px;}
.row-products .row > div {padding-left: 5px; padding-right: 5px;}


.block-bg {
	padding: 30px;
	background-color: #b4d7ff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;	
}

.block-map-01 {
	display: flex;
    height: 100%;
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.block-map-01 > div {
	display: flex;
	width: 100%;
    height: 100%;
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.block-map-02 {
	display: flex;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0;
}
.block-map-02 > div {
	display: flex;
	width: 100%;
    height: 280px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.row-work > div {
	position: relative;
	padding: 0 35px 10px 15px;
}
.row-work > div:before {
	content: ' ';
	display: block;
	background: url(../img/bullet.png) bottom left no-repeat;
	background-size: contain;
	width: 138px; height: 44px;
	position: absolute;
	top: -35px;
    left: -20px;
}


.header-vertical {
	writing-mode: tb;
    transform: rotate(-180deg);
    text-orientation: mixed;
    position: absolute;
    top: 0;
    left: 0px;
}

.row-with-images .block-border {
	display: flex;
    height: 100%;
    flex-direction: column;
}


.block-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 140px;
	width: 100%;
	border-radius:8px;
}

.row-with-images .block-img {
	margin: -20px -20px 30px -20px;
    width: calc(100% + 40px);
}


.block#service > .container {min-height: 40vh;}
.block#service .block-map-03 {
	position: absolute;
    top: -10%;
    right: 0%;
    width: auto;
    height: 120%;
}

.link-top {position:absolute; bottom:0; right:0;}


.jGrowl#jGrowl {
    z-index: 9999;
    color: #fff;
    font-size: 18px !important;
    font-family: "Lustria", sans-serif !important;
    position: fixed;
	width: 100% !important;
	text-align: center;
}

.jGrowl.top-right {
    right: 0 !important;
    top: 17vw !important;
}

.jGrowl-notification.alert {
    opacity: 1 !important;
    width: 80vw !important;
    max-width: 460px;
    padding: 20px 42px !important;
    text-align: center !important;
    margin: 0 auto !important;
    display: none;
    border-radius: 0 !important;
    min-height: 40px !important;
    position: relative !important;
}
.jGrowl-notification.af-message-success {
    background-color: #2e3560 !important;
}

.jGrowl-notification.alert button.jGrowl-close {
    background-color: transparent !important;
    color: inherit !important;
    border: none !important;
    z-index: 99;
    font-weight: 700 !important;
    font-size: 2em !important;
    cursor: pointer !important;
    position: absolute !important;
    top: 0px !important;
    right: 10px !important;
    display: inline !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}



.win {
	position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 10000;
    display: none;
	-webkit-transition: 0s;
  	-moz-transition: 0s;
  	-o-transition: 0s;
  	transition: 0s;
}
.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: 10px;
    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;
    min-width: 320px;
    margin: 20px 20px;
}

.win .win-img {
	position:relative;
	padding:32px;
	height:250px;
	color:#fff;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}

.win .win-img:before {
	content: ' ';
	display:block;
	position:absolute;
	top:0; left:0;
	width:100%; height:100%;
	z-index:1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 98.9%);
}

.win .win-img .h3 {margin:0; padding:0; position:absolute; bottom:50px; left:50px; z-index:10; width: calc(100% - 100px);}

.win .win-content__text {
	padding: 50px;
    max-height: calc(100vh - 20px - 250px - 50px);
    overflow: auto;
}
.win .win-content__fulltext {
	padding: 50px;
    overflow: auto;
}

.win .win-content__fulltext img {width: 100% !important; height: auto !important}

.win .win-content:after {
	display:block;
	width:100%;
	content:' ';
	clear:both;
}
.win .win-content .close {
	position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
	z-index:10;
	opacity:0.6;
} 

.win .win-content .close:hover {opacity:1;}