@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-900.eot');
    src: url('../fonts/MuseoSansCyrl-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MuseoSansCyrl-900.woff2') format('woff2'),
        url('../fonts/MuseoSansCyrl-900.woff') format('woff'),
        url('../fonts/MuseoSansCyrl-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-700.eot');
    src: url('../fonts/MuseoSansCyrl-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MuseoSansCyrl-700.woff2') format('woff2'),
        url('../fonts/MuseoSansCyrl-700.woff') format('woff'),
        url('../fonts/MuseoSansCyrl-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('../fonts/MuseoSansCyrl-300.eot');
    src: url('../fonts/MuseoSansCyrl-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MuseoSansCyrl-300.woff2') format('woff2'),
        url('../fonts/MuseoSansCyrl-300.woff') format('woff'),
        url('../fonts/MuseoSansCyrl-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: 'Museo Sans Cyrl';
	font-weight: 300;
	color: white;
	background: #180d15 url('../images/bg.jpg') no-repeat right center;
	background-size: cover;
	overflow-x: hidden;
}
body {box-sizing: border-box; text-align: center;}
ul {list-style: none; padding: 0; margin: 0;}

.promoTopBlock {
	position: fixed;
	top: -50px;
	left: 50%;
	margin-left: -92px;
	padding: 10px;
	background-image: url('../images/promoBg.jpg');
	border: 1px solid #333;
	border-radius: 9px;
	z-index: 100;
	cursor: pointer;
	transition: top 0.2s, border 0.2s;
}
.promoTopBlock:hover {border: 1px solid #888;}
.promoTopBlock.activePromoTopBlock {top: 30px;}
.promoTopCopied {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	padding: 5px;
	margin-left: -45px;
	background: #000;
	border-radius: 4px;
	z-index: 100;
	color: white;
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.2s;
}
.promoTopCopied:after {
	content: '';
	position: absolute;
	left: calc(50% - 3px);
	top: -5px;
	width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #000;
}
.content {
	max-width: 1230px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
	min-height: 850px;
	padding: 100px 0 70px;
	box-sizing: border-box;
}
.title {
	position: relative;
	font-size: 67px; 
	font-weight: 900; 
	text-align: center;
}
.title .title-original {
	position: relative;
	display: inline-block;
	background: white url('../images/title-textBg.png') no-repeat bottom center;
    background-size: auto 90%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 2;
}
.title .title-shadow {
	position: absolute;
	left: 0;
	top: 4px;
	width: 100%;
	height: 100%;
	color: #8f2222;
	z-index: 1;
}

.heroes {display: flex; justify-content: space-between; align-items: center;}
.heroContainer {position: relative; height: 500px; width: 370px; cursor: pointer;}
.heroContainer::before {
	content: '';
	position: absolute;
	top: -10vw;
	left: -10vw;
	width: 33vw;
    height: 43vw;
	background-image: url('../images/heroActiveBrush.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}
.heroContainer:hover::before {opacity: 1;}
.heroBg,
.heroBgActive {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	transition: opacity 0.2s;
}
.heroBg {opacity: 1;}
.heroBgActive {opacity: 0;}
.heroContainer:hover .heroBgActive {opacity: 1;}

.heroContainer-police .heroBg {background-image: url('../images/police.png');}
.heroContainer-police .heroBgActive {background-image: url('../images/police-hover.png');}

.heroContainer-business .heroBg {background-image: url('../images/business.png');}
.heroContainer-business .heroBgActive {background-image: url('../images/business-hover.png');}

.heroContainer-bands .heroBg {background-image: url('../images/bands.png');}
.heroContainer-bands .heroBgActive {background-image: url('../images/bands-hover.png');}


.heroBtn {
	position: absolute; 
	left: 25px; 
	bottom: 0; 
	width: calc(100% - 50px);
	color: white;
	font-weight: 900;
	height: 90px;
	line-height: 90px;
	font-size: 27px;
	background: rgb(225,50,50);
	background: linear-gradient(90deg, rgba(225,50,50,1) 0%, rgba(112,3,3,1) 100%);
}
.heroBtn span {
	background: linear-gradient(0deg, #9f9f9f 0%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-title {font-size: 18px; font-weight: 700; margin-left: 30px;}
.footer-links {margin-right: 10px;}
.footer-links li {display: inline-block; font-size: 18px; margin: 0 20px;}
.footer-links li a {
	position: relative; 
	color: rgba(255,255,255,0.2); 
	text-decoration: none; 
	transition: color 0.2s; 
	font-weight: 300;
	cursor: pointer;
}
.footer-links li a:hover {color: rgba(255,255,255,1); text-decoration: none;}
.footer-links li a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff4141;
	opacity: 0;
	transition: opacity 0.2s;
}
.footer-links li a:hover::after {opacity: 1;}