html,body{
  	/*font-family: 'Open Sans', sans-serif;*/
    font-family: 'Roboto', sans-serif;
}
@media all and (max-width: 1200px){
    html {
        position: absolute;
    }
    .g-wrapper {
        padding: 0 10px;
    }
}

a {
	color:inherit;
	text-decoration: none;
}

.b-main-body {

}
.b-header {
	position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: 0.3s;
}
.b-header_bg-color_initial {
    padding: 44px 0 20px 0;
    background-color:rgba(0,0,0,0);
    color: #fff;
}
.b-header_bg-color_black {
    padding: 20px 0 20px 0;
    background-color:rgba(0,0,0,0.6);
    color: #fff;
}
.b-header_bg-color_white {
    padding: 20px 0 20px 0;
    background-color:rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(239, 239, 239,0.6);
    color: #000;
}
.b-header_text-color_white {
	color: #fff;
}
.b-header_text-color_black {
	color: #000;
}
.b-header__logo {
	float: left;
    font-size: 28px;
    font-weight: 300;
}
.b-header__logo:before {
    content: " ";
    width: 38px;
    height: 38px;
    background-image: url(/static/i/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    float: left;
    margin: 0 10px 0 0;
}
.b-header__menu {
	float: right;
	font-weight: 300;
    font-size: 18px;
    margin: 2px 0 0 0;
}
.b-header-menu__item {
    padding: 10px 19px;
}
.b-header-menu__item:nth-last-child(1) {
	padding: 10px 0 19px 10px;
}
.b-header-menu__item span {
	border-bottom: 1px solid rgba(255,255,255,0.2)
}
.b-header-menu__item:hover span {
	border-bottom: 1px solid rgba(255,255,255,0.7)
}
.b-section {
	/*min-height: calc(100vh - 100px);*/
	padding:100px 0 0 0;
    }
.b-section__1 {
	height: calc(100vh - 100px);
	/*background-color: #283E4A;*/
	color: #fff;
    position: relative;
    }
.b-section-1__bg {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    background-position: center;
    background-image: url(/static/i/BG.jpg);
    background-size: cover;
    position: fixed;
    top: 0;
    z-index: -1;
    }
.b-section-1__title {
    font-size: 48px;
    font-weight: 300;
    line-height: 52px;
    width: 505px;
    margin: 56px 0 0 0;
    }


.b-section-1__tline{
    font-size: 32px;
    font-weight: 100;
    margin: 25px 0 0 0;
    opacity: 0.6;
    }

.b-section-1__button {
	border: 1px solid rgba(255,255,255,1);
    width: 256px;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    padding: 14px 0;
    border-radius: 5px;
    margin: 49px 0 0 0;
    cursor: pointer;
    display: block;
}
.b-section-1__button:hover {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    color: #223543;
}
.b-section-1__icon-scroll {

    width: 100%;
    height: 53px;
    /*background-image: url(http://placehold.it/33x53);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;*/
    
    display: block;
    position: absolute;
    bottom: 64px;
    margin: 0 auto;
    
}
.b-section-1-icon-scroll__mouse {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid white;
    border-radius: 23px;
    margin: 0 auto;
    width: 30px;
    height: 53px;
}
.b-section-1-icon-scroll__mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-section-1__icon-scroll 0.6s linear infinite;
    -moz-animation: ani-section-1__icon-scroll 0.6s linear infinite;
    animation: ani-section-1__icon-scroll 0.6s linear infinite;
}
@-webkit-keyframes ani-section-1__icon-scroll {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@-moz-keyframes ani-section-1__icon-scroll {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@keyframes ani-section-1__icon-scroll {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@media all and (max-width: 980px) and (orientation: portrait) {
    .b-section__1 {
        /*height: 60vh;*/
    }
}
@media all and (max-width: 980px) and (min-height: 1100px) and (orientation: portrait) {
    .b-section__1 {
        height: 30vh;
    }

    .b-section-1__bg {
        max-height: calc(30vh + 100px);
    }
}
.b-section__2 {
    min-height: initial;
    background-color: #fff;
}
.b-section-2__sub-section-1 {
	overflow: auto;
    margin: 58px 0 135px 0;
}
.b-section-2-sub-section-1__h2 {
	width:20%;
    font-size: 46px;
    line-height: 64px;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.b-section-2-sub-section-1-column1__button {
    border: 1px solid;
    width: 255px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    padding: 14px 0px;
    border-radius: 5px;
    margin: 43px 0 0 0px;
    display: block;
}
.b-section-2-sub-section-1-column1__button:hover {
    background-color: #223543;
    color: #fff;
}
.b-section-2-sub-section-1__column1 {
    float: left;
}
.b-section-2-sub-section-1__column2 {
	float: right;
	width: 63%;
}
.b-section-2-sub-section-1__article {
	overflow: auto;
    width: 573px;
}
.b-section-2-sub-section-1-article__img {
	
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 43px;
    float: left;
    margin: 16px 0 0 0;
}
/*
.b-section-2-sub-section-1-article__img_type_cogwheels {
    background-image: url(/static/i/icon_window-with-cogwheels.svg);
}
.b-section-2-sub-section-1-article__img_type_graphic {
    background-image: url(/static/i/icon_window-with-graphic.svg);
}
.b-section-2-sub-section-1-article__img_type_paper-airplane {
    background-image: url(/static/i/icon_window-with-paper-airplane.svg);
}*/


.b-section-2-sub-section-1-article__img_type_cogwheels {
    background-image: url(/static/i/icon_settings.svg);
}
.b-section-2-sub-section-1-article__img_type_graphic {
    background-image: url(/static/i/icon_web.svg);
}
.b-section-2-sub-section-1-article__img_type_paper-airplane {
    background-image: url(/static/i/icon_service-plane.svg);
}

.b-section-2-sub-section-1-article__img_type_project {
    background-image: url(/static/i/icon_project.svg);
}


.b-section__img_type_phone-call {
    background-image: url(/static/i/icon_phone-call.svg);
}
.b-section__img_type_mail {
    background-image: url(/static/i/icon_mail.svg);
}
.b-section__img_type_place {
    background-image: url(/static/i/icon_place.svg);
}


.b-section-2-sub-section-1-article__img_type_goal{
    background-image: url(/static/i/icon_target.svg);
}
.b-section-2-sub-section-1-article__img_type_rocket{
    background-image: url(/static/i/icon_rocket.svg);
}
.b-section-2-sub-section-1-article__img_type_plan{
    background-image: url(/static/i/icon_planning.svg);
}
.b-section-2-sub-section-1-article__img_type_file{
    background-image: url(/static/i/icon_file.svg);
}
.b-section-2-sub-section-1-article__img_type_sail{
    background-image: url(/static/i/icon_sailboat.svg);
}


.b-section-2-sub-section-1-article__body {
	width: 493px;
    float: right;
    margin: 12px 0 0 0px;
}
.b-section-2-sub-section-1-article-body__title {
	font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}
.b-section-2-sub-section-1-article-body__text {
	margin: 18px 0 64px 0;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
}
.b-section-2__sub-section-2 {
	background-color: #E7E6E1;
    border-bottom: 1px solid #E7E6E1;
    border-top: 1px solid #E7E6E1;
    overflow: auto;
    padding: 0 0 109px 0;
}
.b-section-2-sub-section-2__column1 {
	float: left;
	width: 30%
}
.b-section-2-sub-section-2-column1__h2 {
    font-size: 46px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 53px 0 0 1px;
}
.b-section-2-sub-section-2-column1__button {
    border: 1px solid;
    width: 255px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    padding: 14px 0px;
    border-radius: 5px;
    margin: 39px 0 0 4px;
    display: block;
}
.b-section-2-sub-section-2-column1__button:hover {
    background-color: #223543;
    color: #fff;
}
.b-section-2-sub-section-2__column2 {
	float: right;
    width: 766px;
    margin: 59px 0 0 0;
}
.b-section-2-sub-section-2-column2__preview {
	float: left;
    width: 579px;
}
.b-section-2-sub-section-2-column2-preview__img img{
    width: 597px;
    height: 322px;
}
.b-section-2-sub-section-2-column2-preview__name {
    margin: 3px 0 0 19px;
    font-size: 23px;
        font-weight: 300;
}
.b-section-2-sub-section-2-column2__description {
    float: left;
    width: 140px;
    margin: -6px 0 0 37px;
}
.b-section-2-sub-section-2-column2-description__item {
    margin: 0 0 21px 0;
}
.b-section-2-sub-section-2-column2-description__title {
    font-size: 46px;
}
.b-section-2-sub-section-2-column2-description__title_time {
 	line-height: 58px;
    margin: -8px 0 0 -2px;
    letter-spacing: -5px;
}
.b-section-2-sub-section-2-column2-description__title_time span{

}
.b-section-2-sub-section-2-column2-description__text {
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    margin: 0 0 0 3px;
}
.b-footer {
    background-color: #332b2d;
    overflow: auto;
    color: #fff;
    padding: 36px 0;
    font-size: 14px;
    font-weight: 300;
}
.b-footer__nav {
    float: left;
}
.b-footer-nav__column {
    width: 109px;
    float: left;
}
.b-footer-nav__item {
    display: block;
    margin: 0 0 10px 0;
}
.b-footer__sub-text {
    color:#6D6E71;
}
.b-footer__sub-text span {
    color:#f00
}
.b-footer__contacts {
    float: right;
}
.b-footer-contacts__item {
    display: block;
    text-align: right;
    margin: 0 0 10px 0;
}


.g-wrapper {
    width: 1196px;
	margin: 0 auto;
}
.g-clearfix:after{
    display: block;
    height: 0;
    width: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
    content: ".";
}