body {
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	color: #010101;
}

a {
	transition: all .3s;
}

a:hover {
	color: #31c2b9;
}

.wrapper {
	width: 1200px;
	margin: 0 auto;
}

.header {
	min-height: 300px;
	padding-top: 40px;
	padding-bottom: 40px;
	background: linear-gradient(200deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url(/images/bg.jpg) no-repeat center;
	background-size: cover;
	box-shadow: inset 0 -10px 10px -10px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
}

.header__main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header__logo {
	margin-right: 20px;
	margin-bottom: 20px;
}

.header__logo--link {
	display: block;
}

.header__logo--link img {
	display: block;
}

.header__content {
	margin-bottom: 20px;
}

.header__title {
	font-size: 28px;
	color: #da251c;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.header__address {
	font-size: 20px;
	letter-spacing: 3px;
	font-weight: 600;
	color: #010101;
	margin-bottom: 10px;
}

.header__warning {
	font-size: 18px;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.header__license {
	margin-bottom: 10px;
}

.header__worktime {
	font-size: 20px;
}

.header__btns {
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.header__btns a {
	display: block;
	padding: 10px 20px;
	border-radius: 10px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
	text-decoration: none;
}

.btn__quest {
	background-color: #1e6cb7;
}

.btn__feedback {
	background-color: #7aaa25;
}

.btn__callback {
	background-color: #da251c;
}

.menu {
	box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	padding: 10px 0;
}

.menu__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu__item {
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
}

.menu__link {
	text-decoration: none;
	font-size: 18px;
	color: #010101;
	line-height: 50px;
}

.menu__sublist {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	flex-direction: column;
	width: 250px;
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #fff;
	box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.7);
}

.menu__item:hover > .menu__sublist {
	display: flex;
}

.menu__sublist .menu__link {
	font-size: 16px;
	line-height: 20px;
	padding: 10px 0;
	width: 100%;
	display: block;
}

.content {
	margin-bottom: 40px;
}

.content__main {
	display: flex;
	justify-content: space-between;
}

.content__text {
	width: 700px;
}

.content__text img {
    padding: 20px;
}

.content__text a {
	color: #31c2b9;
}

.content table,
.content tr,
.content td {
	border: 0;
	width: auto !important;
}

.content td {
	padding: 5px;
}

.content td:first-child {
	padding-left: 0;
}

.content__sidebar {
	width: 300px;
	text-align: center;
}

.spec {
	text-decoration: none;
    background-color: #DB151C;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    cursor: pointer;
}

.spec:hover {
	color: #fff;
}

.footer {
	border-top: 1px solid #eee;
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: 12px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding-left: 0;
}

.pagination li {
	margin: 0 10px;
}

.pagination p {
    margin-left: 10px;
    margin-right: 10px;
}

.news__item {
	padding: 10px;
    background: #ffffff;
    box-shadow: 2px 2px 10px -5px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.news__author {
	font-size: 18px;
	font-weight: 600;
}

.news__date {
	font-size: 12px;
}

.news__question {
	padding-bottom: 20px;
	border-bottom: 1px solid #f1f1f1;
}

.news__answer--title {
	font-size: 14px;
	font-weight: 600;
}

.white-popup {
	position: relative;
	background: #FFF;
	padding: 20px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
}

#formQuest,
#formFeed,
#formCall {
	max-width: 360px;
}

#formQuest p,
#formFeed p,
#formCall p {
	text-align: center;
	font-weight: 600;
	font-size: 20px;
}

#formQuest label,
#formFeed label,
#formCall label {
	display: block;
	margin-bottom: 20px;
}

#formQuest input,
#formFeed input,
#formCall input {
	margin-top: 10px;
	border: 1px solid #ccc;
	width: 100%;
    line-height: 30px;
    padding: 0 20px;
    box-sizing: border-box;
}

#formQuest textarea,
#formFeed textarea,
#formCall textarea {
	margin-top: 10px;
	border: 1px solid #ccc;
	width: 100%;
	line-height: 30px;
	padding: 0 20px;
	box-sizing: border-box;
	resize: none;
}

.formSubmit {
	width: 100%;
	border: none;
	line-height: 50px;
	background-color: #db151c;
	color: #fff;
	border-radius: 6px;
	font-size: 18px;
	text-transform: uppercase;
}

.sideNews {
	margin-bottom: 40px;
}

.sideNews__title {
	font-size: 20px;
	margin-bottom: 20px;
}

.sideNews__item {
	text-align: left;
	margin-bottom: 20px;
}

.sideNews__link,
.sideNews__more a {
	color: #31c2b9;
}

.sideNews__more {
	text-align: right;
	font-weight: 600;
}

.sideNews__more a {
	text-decoration: none;
}

.sideFeed__title {
	font-size: 20px;
	margin-bottom: 20px;
}

.sideFeed form {
	text-align: left;
}

.sideFeed input {
	width: 100%;
	line-height: 30px;
	padding: 0 20px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	margin-top: 5px;
}

.sideFeed__btn {
	border: none;
	width: 100%;
	line-height: 30px;
	color: #fff;
	background-color: #da251c;
}

input[name="phone"] {
	display: none;
}

.owl-carousel {
	margin-bottom: 40px;
}

.banners {
	margin-top: 40px;
}

.banners__title {
	font-size: 20px;
	margin-bottom: 20px;
}

.owl__image {
	height: 250px;
	overflow: hidden;
	margin-bottom: 10px;
}

.owl__image a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.owl__image img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: auto;
	min-width: 100%;
	min-height: 100%;
}

.owl__desc {
	text-align: center;
}

.content__text img {
	max-width: 100%;
}

.content__text #nowidth img {
    max-width: inherit !important;
}

.menu__item:hover > .menu__sublist {
	z-index: 100;
}

.mobileMenu {
	display: none;
	align-items: center;
	justify-content: center;
}

.burger {
    display: inline-block;
    cursor: pointer;
    margin-left: auto;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.team {
    display: flex;
    flex-direction: column;
}

.team__person {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}

.person__photo {
    width: 260px;
}

.person__photo--link {
    display: block;
}

.person__photo--link img {
    display: block;
    padding: 0;
}

.person__content {
    padding: 0 20px;
}

.person__title a {
    font-size: 24px;
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
	.wrapper {
		width: 960px;
	}
	.content__text {
		width: 100%;
		margin-right: 20px;
	}
	.owl-carousel .owl-item img {
		height: auto;
	}
}

@media screen and (max-width: 960px) {
	.wrapper {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.menu__list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.header__main {
		justify-content: center;
		text-align: center;
	}
}

@media screen and (max-width: 768px) {
	.content__main {
		flex-direction: column;
		align-items: center;
	}
	.header__btns {
		flex-direction: column;
	}
	.menu__list {
		flex-direction: column;
		display: none;
	}
	.mobileMenu {
		display: flex;
	}
	.menu__sublist {
		position: relative;
		box-shadow: none;
	}
	.menu__item > .menu__sublist {
		display: flex;
	}
	.team__person {
	    flex-direction: column;
	}
	.person__photo {
	    margin: auto;
	    margin-bottom: 20px;
	}
}

.header__main {
    position: relative;
}

.header__social {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
}

.header__social a {
    display: block;
    width: 32px;
}

.header__social img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 760px) {
    .header__social {
        position: relative;
    }
}

.specform label {
    font-size: 20px;
}

.specform input:focus {
    outline: none;
}

.specform textarea {
    width: 100%;
    line-height: 18px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    margin-top: 5px;
    font-size: 16px;
    resize: none;
}

.specform textarea:focus {
    outline: none;
}

.specform input {
    width: 100%;
    line-height: 30px;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 16px;
}

.specform label {
    display: block;
    margin-bottom: 20px;
}

.specform button {
    border: none;
    cursor: pointer;
    line-height: 30px;
    padding: 0 20px;
    margin: 0 auto;
    color: #fff;
    background-color: #da251c;
    display: inherit;
}

.specform input[type=checkbox] {
    width: inherit;
    margin-bottom: 0;
}

.dost img {
    max-width: inherit;
}
.search {
margin-top: 25px; 
}

.search #search {
      padding: 5px;
    max-width: 600px;
    width: 80%;
} 

.submit_search{
    padding: 7px 20px;
    border: 0px;
    background-color: #1e6cb6;
    font-size: 16px;
    border-radius: 5px;
    color: white;
}

.text-center {
        text-align: center; 
}