/*
Author: Alexandr Oleynik
Author URL: http://oleynik.org
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; vertical-align: baseline; }
body, html { height: 100%; }
img, fieldset, a img { border: none; }
input, textarea { -webkit-appearance: none; }
textarea { overflow: auto; }
input, button { margin: 0; padding: 0; border: 0; }
input[type="submit"], button { cursor: pointer; }
div, input, textarea, select, button, h1, h2, h3, h4, h5, h6, a, span, a:focus { outline: none; }
ul, ol { list-style-type: none; }
table { border-spacing: 0; border-collapse: collapse; width: 100%; }
html { -webkit-box-sizing: border-box; box-sizing: border-box; }
*, *:before, *:after { -webkit-box-sizing: inherit; box-sizing: inherit; }
.cf:after {visibility: hidden;display: block;content: ' ';clear: both;height: 0;}
* html .cf {zoom: 1;}
*:first-child+html .cf {zoom: 1;}

html, body {
	height: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    
    -webkit-overflow-scrolling: touch;
}

/* Top */
.top {
	z-index: 1200;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	
	max-width: 767px;
	height: 70px;
	margin-right: auto;
	margin-left: auto;
	
	-webkit-transition: all .35s;
	   -moz-transition: all .35s;
	    -ms-transition: all .35s;
	     -o-transition: all .35s;
	        transition: all .35s;
}

.top.fixed {
	background-color: rgba(255,255,255,0.93);
}

.top__logo {
	padding: 11px 0 0 15px;
}

.top__logo img {
	display: block;
	width: 50px;
	height: auto;
}

.btn-sandwich {
	z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    
    width: 70px;
    height: 70px;
    padding: 26px 0 0 0;
    
    cursor: pointer
}

.btn-sandwich i {
    display: block;
    height: 2px;
    width: 28px;
    margin: 0 auto 5px auto;
    
    -webkit-border-radius: 3px;
            border-radius: 3px;

    background-color: #1181FB;
    
    -webkit-transition: -webkit-transform .8s cubic-bezier(.79, -0.51, .2, 1.54);
    transition: -webkit-transform .8s cubic-bezier(.79, -0.51, .2, 1.54);
    transition: transform .8s cubic-bezier(.79, -0.51, .2, 1.54);
    transition: transform .8s cubic-bezier(.79, -0.51, .2, 1.54), -webkit-transform .8s cubic-bezier(.79, -0.51, .2, 1.54)
}

.btn-sandwich--active i {
    -webkit-transform: scale(0);
    transform: scale(0)
}

.btn-sandwich--active i:first-child {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg)
}

.btn-sandwich--active i:last-child {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg)
}


/* --- */
.container {
	max-width: 767px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

.main_page {
	position: relative;
	height: 100%;
	
	background: url(../images/bg-main.jpg) center center no-repeat;
	
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.main_page__title {
	position: absolute;
	top: 15%;
	right: 0;
	
	padding: 15px;
	
	background-color: #fff;
}

.main_page__title h1 {
	margin: 0;

	font: bold 21px/120% 'Roboto Condensed', Arial, sans-serif;
	color: #000;
	text-transform: uppercase;
}

.main_page__txt {
	position: absolute;
	right: 0;
	bottom: 15%;
	
	width: 230px;
}

.main_page__txt p {
	font: normal 12px/120% 'Roboto Condensed', Arial, sans-serif;
}

.main_page__txt p span {
	font-size: 130%;
	line-height: 120%;
}

@-webkit-keyframes bounce {
	0% {
		-webkit-transform: translate(0,-5px);
		   -moz-transform: translate(0,-5px);
		    -ms-transform: translate(0,-5px);
		     -o-transform: translate(0,-5px);
		        transform: translate(0,-5px);
	}
	50% {
		-webkit-transform: translate(0,3px);
		   -moz-transform: translate(0,3px);
		    -ms-transform: translate(0,3px);
		     -o-transform: translate(0,3px);
		        transform: translate(0,3px);
	}
	100% {
		-webkit-transform: translate(0,-5px);
		   -moz-transform: translate(0,-5px);
		    -ms-transform: translate(0,-5px);
		     -o-transform: translate(0,-5px);
		        transform: translate(0,-5px);
	}
}

@keyframes bounce {
  	0% {
		-webkit-transform: translate(0,-5px);
		   -moz-transform: translate(0,-5px);
		    -ms-transform: translate(0,-5px);
		     -o-transform: translate(0,-5px);
		        transform: translate(0,-5px);
	}
	50% {
		-webkit-transform: translate(0,3px);
		   -moz-transform: translate(0,3px);
		    -ms-transform: translate(0,3px);
		     -o-transform: translate(0,3px);
		        transform: translate(0,3px);
	}
	100% {
		-webkit-transform: translate(0,-5px);
		   -moz-transform: translate(0,-5px);
		    -ms-transform: translate(0,-5px);
		     -o-transform: translate(0,-5px);
		        transform: translate(0,-5px);
	}
}

.main_page__scrolldown {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	width: 100%;
	height: 50px;

	background: url(../images/ico-scrolldown.png) center center no-repeat;

	-webkit-background-size: 27px 15px;
	     -o-background-size: 27px 15px;
	        background-size: 27px 15px;
	
	-webkit-animation: bounce 1200ms ease-in-out infinite;
	-moz-animation: bounce 1200ms ease-in-out infinite;
	-o-animation: bounce 1200ms ease-in-out infinite;
	animation: bounce 1200ms ease-in-out infinite;
	
	cursor: pointer;
}

.main_page__v {
	position: absolute;
	right: 20px;
	bottom: 20px;
	
	padding: 5px 10px;
	
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	
	background-color: #f71c6b;
	
	font: bold 17px/110% 'Roboto Condensed', Arial, sans-serif;
	color: #fff;
}

.page {
	margin: 0 0 10px 0;
	padding: 20px;
}

.page__title {
	margin-bottom: 10px;
}

.page__title h2 {
	margin: 0;
	padding: 0 0 5px 0;
	
	background-color: rgba(255,255,255,0.93);

	font: bold 22px/110% 'Roboto Condensed', Arial, sans-serif;
	color: #1181FB;
	text-transform: uppercase;
	
	-webkit-transition: top .35s;
	   -moz-transition: top .35s;
	    -ms-transition: top .35s;
	     -o-transition: top .35s;
	        transition: top .35s;
}

.fixed .page__title h2 {
	z-index: 10;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	
	max-width: 767px;
	margin: 0 auto;
	padding: 0 20px 5px 20px;
	
	-webkit-box-shadow: 0 10px 15px -10px rgba(0,0,0,0.30);
	        box-shadow: 0 10px 15px -10px rgba(0,0,0,0.30);
}

.page p {
	margin: 0 0 15px 0;
	
	font: normal 14px/120% 'Roboto Condensed', Arial, sans-serif;
	color: #000;
}

.page p img {
	display: block;
	max-width: 100%;
	height: auto;
}

.page .mb30 {
	margin-bottom: 30px;
}

.page .ml25 {
	margin-left: 25px;
}

.page a {
	color: #1181FB;
	
	-webkit-transition: all .3s;
	   -moz-transition: all .3s;
	    -ms-transition: all .3s;
	     -o-transition: all .3s;
	        transition: all .3s;
}

.page a:hover {
	color: #F71C6B;
}

.page ol {
	margin: 0 0 30px 0;
	
	counter-reset: my-badass-counter;
}

.page ol li {
	position: relative;
	margin: 0 0 20px 0;
	padding-left: 25px;

	font: normal 14px/120% 'Roboto Condensed', Arial, sans-serif;
	color: #000;
}

.page ol li:before {
	content: counter(my-badass-counter);
	counter-increment: my-badass-counter;
	
	position: absolute;
	top: 0;
	left: 2px;
	
	font: bold 22px/100% 'Roboto Condensed', Arial, sans-serif;
	color: #D9D9D9;
}

.page__btimg {
	padding: 30px 0 10px 0;
	
	text-align: center;
}

.page__btimg img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}


/* Video wrapper */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.videoWrapper {
		margin-right: -20px;
		margin-left: -20px;
	}
}




/* boostrap */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
     transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
     transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
     transition-timing-function: ease;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #fff;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}


/* Mobile menu */
.mobile_menu {}

.mobile_menu .modal-dialog {
	width: 100%;
	height: 100%;
	margin: 0;
}

.mobile_menu .modal-content {
	height: 100%;
	border: 0;
	
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.mobile_menu__nav {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;

	padding: 0 30px;

	text-align: center;
	
	-webkit-transform: translate(0,-50%);
	   -moz-transform: translate(0,-50%);
	    -ms-transform: translate(0,-50%);
	     -o-transform: translate(0,-50%);
	        transform: translate(0,-50%);
}

.mobile_menu__nav ul {
	list-style: none;
}

.mobile_menu__nav ul li {
	opacity: 0;
	margin: 0 0 20px 0;
	
	-webkit-transform: translate3d(0,-35px,0);
	   -moz-transform: translate3d(0,-35px,0);
	    -ms-transform: translate3d(0,-35px,0);
	     -o-transform: translate3d(0,-35px,0);
	        transform: translate3d(0,-35px,0);
}

.mobile_menu__nav ul li:last-child {
	margin-bottom: 0;
}

.mobile_menu__nav ul li a {
	font: bold 18px/110% 'Roboto Condensed', Arial, sans-serif;
    color: #1181FB;
    text-decoration: none;
}

.mobile_menu__nav ul li a:hover {
	color: #F71C6B;
}

.mobile_menu.in .mobile_menu__nav ul li {
	opacity: 1;

	-webkit-transform: translate3d(0,0,0);
	   -moz-transform: translate3d(0,0,0);
	    -ms-transform: translate3d(0,0,0);
	     -o-transform: translate3d(0,0,0);
	        transform: translate3d(0,0,0);

	-webkit-transition: all 800ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	-moz-transition: all 800ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	-ms-transition: all 800ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	-o-transition: all 800ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	transition: all 800ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}

.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(1){transition-delay: 0.0s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(2){transition-delay: 0.07s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(3){transition-delay: 0.14s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(4){transition-delay: 0.21s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(5){transition-delay: 0.28s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(6){transition-delay: 0.35s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(7){transition-delay: 0.49s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(8){transition-delay: 0.56s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(9){transition-delay: 0.63s;}
.mobile_menu.in .mobile_menu__nav ul li:nth-of-type(10){transition-delay: 0.70s;}


.download_pdf {
	padding: 20px 0;

	text-align: center;
}

.download_pdf a {
	display: inline-block;
	padding: 5px 0 5px 35px;
	
	background: url(../images/ico-pdf.png) 0 center no-repeat;
	
	-webkit-background-size: contain;
	     -o-background-size: contain;
	        background-size: contain;

	font: bold 18px/110% 'Roboto Condensed', Arial, sans-serif;
	color: #F71C6B;
	text-transform: uppercase;
	text-decoration: none;
}

.download_pdf a:hover {
	text-decoration: underline;
}

.mobile_menu .download_pdf {
	position: absolute;
	right: 15px;
	bottom: 15px;
	left: 15px;
	
	padding: 0;
}