/*-----------------------------------
# GOOGLE FONTS
------------------------------------*/

@import 'https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=cyrillic,cyrillic-ext,latin-ext';

/*-----------------------------------
# BOOT
------------------------------------*/

* {
	box-sizing: border-box;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;

}
a{
  transition: all .5s linear;
	text-decoration: none;
	color: #00003a;
}
a:hover{
	color: #00003a;
	text-decoration: underline;
}
body {
	font-family: 'PT Sans Narrow', sans-serif;
	background-image: url('../../img/bg-body-airlink.jpg');
	overflow-x: hidden;
	background-position: center top;
	
}

h1 {
	text-transform: uppercase;
	color: #00003a;
	font-size: 40px;
	font-size: 2.500rem;
	font-weight: 700;
	display: block;
	margin-bottom: 11px;
}

h2 {
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 700;
	color: #242424;
	display: block;
	margin-bottom: 20px;
}

p {
	font-weight: 400;
	font-size: 18px;
	font-size: 1.125rem;
	color: #242424;
	line-height: 25px;
	margin-bottom: 23px;
}

.bt {
	display: block;
	width: 230px;
	height: 35px;
	text-decoration: none;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	font-size: 1.250rem;
	text-align: center;
	border-bottom: solid 3px #314cb0;
	background-color: #3b5bd3;
	padding-top: 7px;
	transition: all ease .3s;
	outline: none;
	cursor: pointer;
}

.bt:hover,
.bt:focus {
	background-color: #199e8f;
	border-color: #138b7d;
}

button.bt {
	padding-top: 0;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.none {
	display: none;
}

/*-----------------------------------
# HELPERS
------------------------------------*/

.container {
	width: 100%;
	max-width: 1190px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px;
}

.flex {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	        justify-content: space-between;
}
.flex-start {
	display: -ms-flexbox;
	display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.align-center {
	-ms-flex-align: center;
	    -ms-grid-row-align: center;
	        align-items: center;
}

.align-end {
	-ms-flex-align: end;
	    -ms-grid-row-align: flex-end;
	    align-items: flex-end;
}

.col {
	width: 100%;
	-ms-flex: 0 auto;
	        flex: 0 auto;
}

.txt-center {
	text-align: center;
}
.link-seo{
	cursor: pointer;
}
