body {
	width: 100%;
	margin: 0;
	padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    overflow-x: hidden;
    font-family: "Open Sans", sans-serif;
}
::-webkit-scrollbar-button { 
	background-image:url(''); 
	background-repeat:no-repeat; 
	width:5px; 
	height:0px 
} 

::-webkit-scrollbar-track { 
	background-color:#32312e; 
} 

::-webkit-scrollbar-thumb { 
	background-color:#075E98; 
	background-position:center; 
	background-repeat:no-repeat; 
} 

::-webkit-resizer{ 
	background-image:url(''); 
	background-repeat:no-repeat; 
	width:5px; 
	height:0px 
} 

::-webkit-scrollbar{ 
	width: 8px; 
}
/*HEADER*/
header {
	max-width: 1200px;
	height: 84px;
	margin: 0 auto;
	font-size: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-item {

	font-size: 15px;
}
.table {
	display: table;
	width: 100%;
	height: 100%;
}
.table .table-cell {
	vertical-align: middle;
	width: 100%;
	height: 100%;
	display: table-cell;
}

.contacts p {
	position: relative;
    padding-left: 22px;
   	margin: 0;
}
.contacts .icon {
	position: absolute;
	top: 0;
	left: 0;
	color: #F21729;
	font-size: 18px;
}

.contacts .phone a {
	font-size: 18px;
	font-weight: 800;
	color: #000;
	text-decoration: none;
	line-height: 15px;
}
.contacts .email {
	margin-top: 5px;
}
.contacts .email i {
	position: absolute;
    left: 0px;
    top: 3px;
}
.contacts .email a {
    color: rgb(33, 94, 151);
    transition: all 200ms ease-out 0s;
    text-decoration: underline;
}
.contacts .email a:hover, .contacts .phone a:hover {
	color: #F21729;
}
.callback-btn {
    display: block;
    margin: 15px auto 0;
    box-sizing: border-box;
    text-align: center;
    width: 200px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(33, 94, 151);
    height: 48px;
    text-decoration: none;
    padding: 10px 15px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(33, 94, 151);
    border-image: initial;
    border-radius: 4px;
    transition: all 200ms ease-out 0s;
}
.callback-btn:hover {
    border-color: #F21729;
	color: #F21729;
}
@media (max-width: 1024px) {
	.callback {
		display: none;
	}
	.header-item {
		width: 25%;
	}
	
}
@media (max-width: 900px) {
	.addr-graf {
		display: none;
	}
	.header-item {
		width: 50%;
	}
	
}
@media (max-width: 500px) {
	.logo, .email, .address {
		display: none;
	}
	header {
		height: 50px;
		position: fixed;
    	z-index: 5000;
    	background-color: #fff;
    	width: 100%;
    	border: 1px solid #C4C4C4;
    	opacity: 0.9;
	}
	.header-item {
		width: 100%;
	}
	.contacts {
		padding: 10px;
	}
	.contacts .phone {
		text-align: center;
		padding-left: 0;
	}
	.contacts .phone a {
		font-size: 28px;
		font-weight: 400; 
	}
	 .contacts .phone .icon {
	 	position: unset;
	 	font-size: 28px; 
	 }
}
/*END OF HEADER*/

/*TOP-MENU*/
.menu-wrapper {
	width: 100%;
	height: 54px;
	background-color: #000;
	color: #fff;
}
.menu {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px;
}
.menu-item {
	display: inline-block;
	box-sizing: border-box;
	margin-right: 60px;
}
.menu-item a {
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	font-weight: 700;
	font-size: 14px;
    transition: all 200ms ease-out 0s;
}
.menu-item a:hover {
	color: #F21729;
}
.menu-item a:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 20px;
    top: 0px;
    right: -32px;
    background: rgba(255, 255, 255, 0.2);
}
.menu-item:last-child a:after {
	display: none;
}
@media (max-width: 768px) {
	.menu-wrapper {
		display: none;
	}
	
}
/*END OF TOP-MENU*/


/*SLIDER*/
.top-slider {
	margin: 0;
	padding: 0;
}
.top-slider .slide-1 {
    background: url(../img/slide1.jpg) 60% 100% / cover no-repeat;
    position: relative;
}

.top-slider .slide:before {
	content: '';
    background-color: rgba(255,255,255,0);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.top-slider .slide {
	width: 100%;
	height: 550px;
}
.top-slider-shadow {
    background: #000;
    color: #fff;
    width: 100%;
    position: relative;
}
.subtitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 10px;
}
.top-slider .slide-content {
	margin: 0 auto;
	max-width: 1200px;
	padding: 10px 20px;
	box-sizing: border-box;
}
.slide-content-block {
	max-width: 767px;
}
.slide-title {
	font-family: 'Raleway', sans-serif;    
	font-size: 42px;
    line-height: 1.2;
    margin: 80px auto 20px;
    font-weight: bold;
    color: #000;
    position: relative;
}
.slide-text {
	color: #000;
	font-size: 18px;
	position: relative;
	margin: 30px 0;
}
.slide-btn {
	display: inline-block;
	margin-top: 40px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
	letter-spacing: 1px;
    background: rgb(242, 23, 41);
    padding: 18px 35px;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(242, 23, 41);
    border-image: initial;
    transition: all 200ms ease-out 0s;
    text-decoration: none !important;
}
.slide-btn:hover {
	background: unset;
	color: rgb(242, 23, 41);
}
@media (max-width: 1200px) {
	.top-slider .slide:before {
	    background-color: rgba(255,255,255,0.8);
	}
}
@media (max-width: 767px) {
	.top-slider .slide-1 {
   		background: url(../img/slide2.jpg) 0% 50% / cover no-repeat;
   	}
}
/*ENF OF SLIDER*/

/*SERVICES*/
.services-wrapper {
	width: 100%;
}
.services {
	max-width: 1200px;
	margin: 50px auto;
}
.services-text {
	text-align: center;
	margin-bottom: 40px;
}
.block-title {
	font-family: 'Raleway', sans-serif;    
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
    margin: 0;
}
.block-subtitle {
    font-size: 14px;
}
.service-items {
    font-size: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.service-item {
	display: inline-block;
	box-sizing: border-box;
	width: 300px;
    padding: 0 10px 20px;
    vertical-align: top;
}
.service-item-wrapper {
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-item
.service-img {
	text-align: center;
	background-color: #eee;
}
.service-img img {
    margin-top: 10px;
    width: 100%;
    height: auto;
}
.service-text {
    padding: 0 10px 30px;
}

.service-title {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #000;
}
.service-description {
	font-size: 13px;
	text-align: center;
}
.service-btn, .gallery-btn {
	display: block;
	margin: 0 auto;
	width: 150px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
	letter-spacing: 1px;
    background: rgb(242, 23, 41);
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid rgb(242, 23, 41);
    transition: all 300ms ease-out 0s;
    text-decoration: none !important;
	background: unset;
	color: rgb(242, 23, 41);
}
.gallery-btn {
	margin-bottom: 70px;
}
.service-btn:hover, .gallery-btn:hover {
    color: #fff;
    background: rgb(242, 23, 41);
}
@media (max-width: 500px) {
	.service-item {
		max-width: 400px;
		width: 100%;
	}
}
/*END OF SERVICES*/

/*ABOUT-SECTION*/
.about-section {
	max-width: 1200px;
	margin: 30px auto;
}
.about-section .container {
    padding: 0 10px;
}
.about-section .title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}
.about-section q {
	display: block;
    margin-bottom: 30px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    font-size: 16px;
    padding-left: 20px;
    border-left: 3px solid rgb(242, 23, 41);
    quotes: "" "";
}
.num-section {
    background: url(../img/pattern1.png) -3px -3px #23292A;
    margin: 70px 0;
}
.num-section .row {
	font-size: 0;
}
.num-section .element {
	display: inline-block;
	box-sizing: border-box;
	width: 25%;
	padding: 0 10px;
	vertical-align: top;
}

.num-section .element .img-wrapper{
    height: 86px;
    margin-bottom: 20px;
}
.num-section .element .num{
    color: rgb(242, 23, 41);
    font-weight: bold;
    font-size: 56px;
    visibility: hidden;
}
.num-section .element .num.visible{
    visibility: visible;
}
.num-section .element p{
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
.num-section .container {
	max-width: 1200px;
	text-align: center;
	margin: 0 auto;
	padding: 20px 0 50px;
}
.num-section .title {
	font-size: 35px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}
.num-section .subtitle-2 {
	font-size: 22px;
	color: #fff;
	font-weight: 700;

}
.num-section .red {
	color: rgb(242, 23, 41);
}
@media (max-width: 768px) {
	.num-section .element {
		width: 50%;
	}
}
@media (max-width: 500px) {
	.num-section .element {
		width: 99%;
	}
}
/*END OF ABOUT-SECTION*/


/*GALLERY*/
.gallery {
	max-width: 1200px;
	margin: 50px auto;
    text-align: center;
    font-size: 0;
}
.gallery a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-top: 1px;
    margin-right: 1px;
}
.gallery a img{
    width: 235px;
    height: 160px;
    object-fit: cover;
    object-position: center;
	-moz-transition: all 1s ease-out;
 	-o-transition: all 1s ease-out;
 	-webkit-transition: all 1s ease-out;
}
.gallery a:hover img {
	-webkit-transform: scale(1.1);
 	-moz-transform: scale(1.1);
 	-o-transform: scale(1.1);
}
.gallery a:before { 
    content: '';
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(255,255,255,0);
    opacity: 1; 
}
.gallery a:after { 
    content: '\1F50D'; 
    color: rgba(255,255,255,0.7);
    font-size: 40px;
    position: absolute; 
    top: 50px; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    opacity: 0; 
}
.gallery a:hover:after { 
	opacity: 1; 
}
.gallery a:hover:before { 
	opacity: 0; 
}
@media (max-width: 500px) {
	.gallery a {
		width: 99%;
	}
}
/*END OF GALLERY*/

/*ADV-SECTION*/
.adv-section .container {
	max-width: 1200px;
	margin: 20px auto;
	text-align: center;
}
.adv-subtitle {
	font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #215E97;
}
.adv-section .row {
	font-size: 0;
	text-align: center;
}
.adv-section .element {
	display: inline-block;
	box-sizing: border-box;
	width: 25%;
	padding: 10px;
	vertical-align: top;
}
.element-wrapper .img-wrapper img {
	width: 60px;
	height: 60px;

}
.adv-section .element-wrapper {
	border: 1px solid #EBEBEB;
    padding: 35px 20px;
    border-radius: 3px;
    margin-bottom: 20px;
}
.adv-section .element-wrapper p {
	font-size: 14px;
}
@media (max-width: 768px) {
	.adv-section .element {
		width: 50%;
	}
}
@media (max-width: 500px) {
	.adv-section .element {
		width: 99%;
	}
}
/*END OF ADV-SECTION*/

.slogan {
	width: 100%;
	background-image: url(../img/slogan-bg.jpg);
	background-position: center center;
	background-attachment: fixed;
}
.slogan-wrapper {
	background-color: rgba(33,94,151,0.9);
}
.slogan .container {
	max-width: 1200px;
	margin: 20px auto;
	padding: 50px 5px;
	text-align: center;
}
.slogan-title {
	text-align: center;
	color: #fff;
	font-size: 32px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.slogan-subtitle {
	color: #fff;
	text-align: center;
	font-size: 14px; 
}
.slogan-btn {
	display: inline-block;
    color: rgb(242, 23, 41);
    font-size: 16px;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 20px;
    position: relative;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
	letter-spacing: 1px;
    background: #fff;
    padding: 18px 35px;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    border-color: #fff;
    border-image: initial;
    transition: all 200ms ease-out 0s;
    text-decoration: none !important;
}
.slogan-btn:hover {
	background: unset;
	color: #fff;
}


/*CONTACTS*/
.contacts-section .row {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 0; 
}
.contacts-section .contacts-sec, .contacts-section .feedback-sec {
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	vertical-align: top;
	padding: 10px;
	margin: 0;
}
.contacts-section-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 !important;
    color: #000;
    font-weight: bold;
}
.contacts-section-text {
	font-size: 14px;
	margin: 20px 0;
}
.contacts-sec .el1 {
	font-weight: bold;
}
.contacts-sec .el2 i {
	top: 8px;
}
.contacts-sec .el2 a {
	font-weight: bold;
	font-size: 20px !important;
	color: #000;
	text-decoration: none;
}
.contacts-sec .el2 a:hover {
	color: #F21729;
}
.contacts-sec .el4 a, .contacts-sec .el5 a {
	color: #F21729;
}
.contacts-sec .el4 a:hover, .contacts-sec .el5 a:hover {
	color: #075E98;
	text-decoration: none;
}
.contacts-elements {
	position: relative;
    padding-left: 30px;
   	font-size: 14px;
   	color: #000;
}
.contacts-elements i {
	position: absolute;
    left: 0px;
    top: 3px;
    color: rgb(242, 23, 41);
    font-size: 18px;
}
.contacts-sec .el5 i {
	color: #075E98;
    font-weight: bold;
    font-size: 19px;
}
.social-links i {
	font-size: 18px;
}
.social-links a {
	font-size: 18px;
}

.form-feedback {
	font-size: 0;
}
.form-control, .form-text {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #737373;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
}
.form-feedback-col {
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	padding: 5px;
}
.contacts-section .slide-btn {
	margin: 10px 5px;
}
.form-feedback-text {
	padding: 5px;
}
.form-text {
	display: block;
	width: 100%;
	height: 70px;
	font: 400 13.3333px Arial;
	padding: 10px 15px;
}
@media (max-width: 968px) {
	.contacts-section .contacts-sec, .contacts-section .feedback-sec {
		display: block;
		width: 100%;
		padding: 10px;
	}
}
@media (max-width: 500px) {
	.form-feedback-col {
		display: block;
		width: 100%;
	}
}
/*END OF CONTACTS*/

.map-section {
	margin-top: 50px;
}

/*FOOTER*/
.footer-wrapper {
    color: rgba(255,255,255,0.7);
}
.footer-wrapper .inner {
    position: relative;
    background: #1B1E1F;
}
.footer-wrapper .inner .container {
	max-width: 1200px;
    margin: 0 auto;
    font-size: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer-wrapper .inner .container .row div {
	display: inline-block;
	box-sizing: border-box;
	width: 50%;
	font-size: 14px;
}
.footer-wrapper .inner .container .row .text-right-sm {
	text-align: right;
	vertical-align: top;
}
.footer-wrapper .inner .container .row .text-right-sm p {
	margin-top: 5px;
	margin-bottom: 5px;
}
.footer-wrapper .inner .container .row .text-right-sm a {
	color: #F21729;
	text-decoration: none;
}
.footer-wrapper .inner .container .row .text-right-sm a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.footer-wrapper .inner .container .row .text-right-sm p {
		font-size: 12px;
	}
}
@media (max-width: 500px) {
	.footer-wrapper .inner .container .row div {
		display: block;
		width: 100%;
		padding: 10px;
		text-align: center;
	}
	.footer-wrapper .inner .container .row .text-right-sm p {
		text-align: center;
	}
}
/*END OF FOOTER*/

/*modal*/
.modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000; 
  color: #000;
}
.modal-body {
  background-color: #fff;
  position: fixed;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 500px; 
}
.modal-input, .modal-phone {
  display: block;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #CACACA;
  border-radius: 3px;
  box-sizing: border-box;
}
.modal-title {
  font-size: 25px;
}
.modal-inner {
  position: relative;
  padding: 20px;
  text-align: center; 
}
.modal-close {
  position: absolute;
  display: inline-block;
  top: 2rem;
  right: 2rem;
  cursor: pointer; 
}
  .modal-close i {
    font-size: 20px; 
}
.modal-content span {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}
.modal-btn {
  display: inline-block;
  background-color: #ef7600;
  font-size: 16px;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  cursor: pointer;
  border: none; 
}
.modal-btn:hover {
	background-color: #ff9023;
}
#result_id, #result_id2 {
  margin-bottom: 10px;
  color: #F21729;
  font-weight: bold;
  padding: 0 20px;
  margin-top: 10px;
  font-size: 20px;
}
.hidden {
  display: none;
  opacity: 1;
  height: 0; 
}
@media (max-width: 500px) {
	.modal-body {
		width: 100%;
		top: 10%;
	}
}
/*end of modal*/

#up {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: rgb(242, 23, 41);
  color: #fff;
  display: none;
  font-size: 1.5rem;
  text-align: center;
  line-height: 3rem;
  text-decoration: none;
  font-weight: 900; 
}
.show {
  display: inline-block !important; 
}
@media (max-width: 768px) {
	.slide-title, .about-section .title, .num-section .title, .block-title, .slogan-title, .contacts-section-title {
		font-size: 28px;
	}
	.subtitle {
		font-size: 13px;
	}
}

@media (max-width: 500px) {
	.slide-title, .about-section .title, .num-section .title, .block-title, .slogan-title, .contacts-section-title {
		font-size: 22px;
	}
	.subtitle {
		font-size: 13px;
	}
}

.gallery a.hidden {
	display: none;
}

.service-2-items {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-2-item {
    width: 300px;
    margin: 20px;
    padding: 20px 10px;
    box-shadow: 0px 1px 9px #106FB7;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
	display: flex;
    align-items: center;
    justify-content: center;
}