@font-face {
    font-family: 'gora_free';
    src: url('../fonts/gora-free-webfont.woff2') format('woff2'),
         url('../fonts/gora-free-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-bold-webfont.woff2') format('woff2'),
         url('../fonts/opensans-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/opensans-extrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'open_sans';
    src: url("../fonts/opensans-light.woff") format("woff"), /* Modern Browsers */
         url("../fonts/opensans-light.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-lightitalic-webfont.woff2') format('woff2'),
         url('../fonts/opensans-lightitalic-webfont.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'open_sans';
    src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
         url('../fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-size: 18px;
    text-decoration: none;
}

.wrapper {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

ul, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
  
li {
    list-style: none;
}

/* HEADER */

.header {
    background: #131415;
}

.container {
    margin: 0 auto;
    width: 1060px;
}

.header__container {
    display: flex;
    padding: 20px 0px;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'gora_free';
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3px;
    color: #f89513;
    text-decoration: inherit;
}

.nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__item {
    margin-right: 27px;
}


.nav__item:last-child {
    margin-right: 0px;
}

.nav__item--active .nav__link {
    color: #fff;
}

.nav__item--selected a {
    color: #f89513;
}

.nav__link {
    display: flex;
    align-items: center;
    font-family: 'open_sans';
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: inherit;
}

.nav__link:hover {
    color: #f89513;
}

.nav__link:before {
    content: '';
    margin-right: 17px;
}

.nav__link--main:before {
    background-image: url(../img/main_icon.png);
	height: 14px;
	width: 19px;
}

.nav__link--feed:before {
    background-image: url(../img/feed_icon.png);
	height: 18px;
	width: 20px;
}

.nav__link--service:before {
    background-image: url(../img/service_icon.png);
	height: 14px;
	width: 19px;
}

.nav__link--main:hover:before {
    background-image: url(../img/main_icon_hover.png);
    height: 14px;
	width: 19px;   
}

.nav__link--feed:hover:before {
    background-image: url(../img/feed_icon_hover.png);
    height: 18px;
	width: 20px;
}

.nav__link--service:hover:before {
    background-image: url(../img/service_icon_hover.png);
    height: 14px;
	width: 19px;
}

.nav__link--selected-main:before {
    background-image: url(../img/main_icon_hover.png);
    height: 14px;
	width: 19px;  
}

.nav__link--selected-comments:before {
    background-image: url(../img/feed_icon_hover.png);
    height: 18px;
	width: 20px;
}

.nav__link--selected-service:before {
    background-image: url(../img/service_icon_hover.png);
    height: 14px;
	width: 19px;
}

.contacts {
    text-align: right;
}

.contacts__tel {
    font-family: 'open_sans';
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
    color: #fff;
    text-decoration: inherit;
}

.contacts__sked {
    display: block;
    font-family: 'open_sans';
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    color: #b46f14;
}

.contacts__sked:hover {
    color: #767777;
}

/* BANNER */

.banner {
    background: #fff;
    padding: 80px 0px 60px 0px;
}

.banner__sprinter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* FEATURES */

.container--features {
    width: 740px;
}

.features {
    background: #131415;
    padding-top: 64px;
    padding-bottom: 105px;
}

.title {
    text-align: center;
    font-family: 'open_sans';
    font-weight: 700;
    font-style: normal;
    font-size: 49px;
    text-transform: uppercase;
    color: #fff;
}

.features__list {
    margin-top: 65px;
    display: flex;
    justify-content: space-between;
/*     text-align: center;
    vertical-align: top; */
}

.features__picture {
    display: flex;
    justify-content: center;
}

.features__item {
    width: 202px;
}

.features__icon {
	height: 70px;
	width: 70px;
	background-color: #f89513;
    border-radius: 50%;
    position: relative;
}

.features__img {
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.features__title-main {
    font-family: 'open_sans';
    font-weight: 800;
    font-style: normal;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    letter-spacing: 2px;
}

.features__sublist {
    font-family: 'open_sans';
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #fff;
    margin-top: 32px;
}

.features__sublist-desc {
    text-align: center;
    line-height: 200%;
}

.features__sublist-list {
    text-align: left;
    margin-top: 20px;
}

.features__sublist-item {
    margin-bottom: 20px;
}

.features__sublist-item:last-child {
    margin-bottom: 0;
}

.features__sublist-item:before {
    content: '';
	display: inline-block;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	background-color: #fff;
	vertical-align: middle;
    margin-right: 25px;
}

/* NEWS */

.news {
    margin-top: 68px;
}

.title--content__title {
    color: #000;  
}

.content__wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}

.content__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content__item {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.content__img-section{
	height: 160px;
	width: 160px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
	vertical-align: top;
}

.content__desc {
    width: 700px;
}

.content__date, .content__maintext {
    font-family: 'roboto';
    font-weight: 300;
    font-style: normal;
}

.content__title {
    font-family: 'roboto';
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    margin-top: 13px;
}

.content__maintext {
    font-size: 18px;
    margin-top: 21px;
}

.content__date {
    font-size: 14px;
}

.content__item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.img.content__pic {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.content__pic {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-color: #f5f5f5;
}

/* TOP-NEWS */

.top-news {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 20px;
}

.top-news__title, .top-news__date {
    font-family: 'open_sans';
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
}

.top-news__title {
    color: #3d3b3b;
    margin-bottom: 12px;
}

.top-news__date {
    color: #737272;
    margin-bottom: 24px;
}

.top-news__item {
    margin-bottom: 20px;
}

.top-news__item:last-child {
    margin-bottom: 0px;
}

.top-news__link {
    display: block;
}

.top-news__pic {
    max-width: 100%;
    max-height: 100%;
}

/* PAGINATION */

.pagination, .pagination__pager, .pagination__list {
    display: flex;
    justify-content: center;
}

.pagination--main {
    margin: 75px 0 70px 0;
}

.pagination__pages {
    margin-right: 20px;
    color: #6f6e6e;
}

.pagination__pages, .pagination__button-preview, .pagination__button-next {
    font-family: 'roboto';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

.pagination__list {
    margin-left: 15px;
    margin-right: 15px;
}

.pagination__link {
    font-family: 'roboto';
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
}

.pagination__link, .pagination__button-next {
    color: #221f1f;
}

.pagination__link--first {
    color: #f89513;
}

.pagination__item {
    border-radius: 2px;
    width: 24px;
    height: 24px;
    text-align: center;
}

.pagination__item--first {
    background: #27273e;
}

.pagination__item:hover a {
    color: #f89513;
}

.pagination__button-preview {
    color: #bebdbd;
}

.pagination__button-preview, .pagination__link, .pagination__button-next {
    text-decoration: none;
}

/* FOOTER */

.footer {
    background: #131415;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.made {
    font-family: 'open_sans';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    width: 250px;
    color: #fff;
}

.loft__link, .name, .social__title {
    font-weight: 700;
    font-style: normal;
}

.loft__link {
    color: inherit;
}

.social {
    text-align: left;
}

.social__title {
    font-family: 'open_sans';
    font-size: 14px;
    margin-bottom: 11px;
    color: #fff;
}

.social__list {
    display: flex;
    justify-content: flex-start;
}

.social__circle {
    border-radius: 50%;
    background: #d0d0d0;
    width: 20px;
    height: 20px;
    position: relative;
}

.social__circle:hover {
    background: #f89513;
}

img.social__pic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social__item {
    margin-right: 10px;
}

.social__item:last-child {
    margin-right: 0px;
}

/* COMMENTS--BREADCRUMBS */

.container--secondary__pages {
    max-width: 880px;
}

.breadcrumbs {
    margin-top: 45px;
}

.breadcrumbs__link, .breadcrumbs__item:after {
    font-family: open_sans;
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    color: #f9ad5f;
}

.breadcrumbs__item, .breadcrumbs__link {
    display: inline-block;
    vertical-align: middle;
}

.breadcrumbs__item:after {
    content: "/";
    display: inline-block;
    vertical-align: middle;
    color:#656464;
}

.breadcrumbs__item--active .breadcrumbs__link {
    text-decoration: none;
    color: #656464;    
}

.breadcrumbs__item--active:after {
    display: none;
}

.title--secondary__pages {
    margin-top: 25px;
    color: #221f1f;
    text-align: left;
}

.content__wrapper--comments {
    margin-top: 50px;
}

/* COMMENTS--PAGINATION */

.pagination--comments {
    margin: 50px 0px 60px 0px;
}

.consult {
    height: 170px;
    background: url(/img/consulttex.jpg);
    background-repeat: repeat;
    display: flex;
    align-items: center;
}

.consult__container {
    width: 880px;
    text-align: center;
    margin: 0 auto;
}

.consult__desc {
    display: inline-block;
    max-width: 700px;
}

.consult__desc p {
    font-family: 'open_sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    text-align: left;
    color: #fff;
}

.consult__desc b {
    color: #f89513;
}

/* REVIEW */

.review__form {
    margin-top: 62px;
    margin-bottom: 62px;
}

.review__wrapper {
    width: 700px;
    background-color: #f5f5f5;
    padding: 60px 70px;
    margin: 0 auto;
    border-radius: 3px;
}

.review__main-title {
    font-family: 'open_sans';
    font-size: 49px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 30px;
}

.review__row {
    display: flex;
    margin-bottom: 20px;
}

.review__row:last-child {
    margin-bottom: 0px;
}

.review__label {
    margin-right: 23px;
    flex: 1;
}

.review__label:last-child {
    margin-right: 0px;
}

.review__title {
    display: block;
    font-family: 'open_sans';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #221f1f;
    margin-bottom: 10px;
}

.review__input {
    background-color: #fff;
    outline: none;
    border: 1px solid transparent;
    border-radius: 3px;
    font-family: 'open_sans';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #a9a8a8;
    padding: 14px 10px;
    width: 100%;
}

.review__input:focus {
    border: 1px solid;
    color: #f89513; 
}

.review__textarea {
    resize: none;
    height: 90px;
}

.review__radio-wrapp {
    display: flex;
}

.review__radio-label {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.review__radio-label:last-child {
    margin-right: 0px;
}

.review__radio,
.review__button {
    flex: 1;
}

.review__button {
    text-align: right;
}

.button {
    outline: none;
    border: 1px solid transparent;
    background-color: #1c1f1d;
    font-family: 'open_sans';
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    padding: 18px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.button:hover {
    background-color: #f89513;
}

.review__radio-input {
    display: none;
}

.review__radio-fake {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #cacaca;
    border-radius: 50%;
    position: relative;
}

.review__radio-fake:after {
    display: inline-block;
    content: '';
    height: 0px;
    width: 0px;
    position: absolute;
    background-color: #f89513;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.review__radio-input:checked + .review__radio-fake {
    border-color: #f89513;
}

.review__radio-input:checked + .review__radio-fake:after {
    height: 8px;
    width: 8px;
}

.review__radio-text {
    display: inline-block;
    margin-left: 5px;
    font-family: 'open_sans';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #221f1f;
}

.review__radio-text:active {
    color: #f89513;
}

/* SERVICES */

.services__wrapper {
    margin-top: 50px;
}

.services__main-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
	margin-bottom: -50px;
}

.services__content-block {
    margin-bottom: 50px;
    width: calc((100% - 130px) / 3);
}

.services__image {
    width: 250px;
	height: 150px;
    position: relative;
}

.services__image:before {
	content:'';
	display: block;
    width: 100%;
	height: 100%;
	background: black;
	opacity: .5;
	position: absolute;
    z-index: 3;
    border-radius: 3px;
}

.services__pic {
    width: 250px;
	height: 150px;
    object-fit: cover;
    border-radius: 3px;
}

.services__pic-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
    color: #fff;
    font-family: 'open_sans';
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 24px;
}

.services__desc {
    margin-top: 27px;
}

.services__heading {
    font-family: 'open_sans';
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
}

.servies__main-text {
    margin-top: 16px;
    font-family: 'open_sans';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

.partners {
    margin-top: 65px;
}

.title--partners {
    color: #000;
    text-align: left;
}

.partners__list {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 87px;
	margin-bottom: -50px;
}

.partners__item {
	width: 33%;
	text-align: center;
	margin-bottom: 50px;
}

.partners__link {
	display: inline-block;
}

.partners__link:hover 
.partners__img {
	filter: grayscale(0%);
}

.partners__img {
	filter: grayscale(100%);
}

.footer__services {
    margin-top: 84px;
}