/*------------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img,
abbr {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ul li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
legend {
  color: #000;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
.wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 992px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*----------------------------------------------------------------------------*/
/*header*/
header {
  height: 630px;
  background: url(../img/header_bg.jpeg) no-repeat center center / cover;
  border-bottom: 2px solid #737173;
}
@media screen and (max-width: 992px) {
  header {
    height: auto;
  }
}
.header_overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
}
nav {
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}
.menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  height: 100%;
  -ms-align-items: center;
  align-items: center;
}
.logo {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .logo {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 992px) {
  .logo {
    margin-bottom: 15px;
  }
}
.menu_but {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .menu_but {
    display: block;
  }
}
.fa-bars {
  color: #EF4942;
  font-weight: 700;
  font-size: 25px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.menu_list {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(50% - 30px);
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .menu_list {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 992px) {
  .menu_list {
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .menu_list {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    text-align: center;
    display: none;
  }
}
.number {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(25% - 30px);
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .number {
    width: calc(100% - 30px);
  }
}
.menu_item a {
  text-decoration: none;
  color: #3160C0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  display: block;
  padding: 5px 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}
.menu_item a:hover {
  border-radius: 10px;
  background-color: #3160C0;
  color: #fff;
}
.number {
  color: #EF4942;
  font-weight: 700;
  font-size: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .number {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
.header_title h1 {
  display: inline-block;
  background-color: red;
  margin: 200px auto;
  padding: 10px;
  border-radius: 10px;
  line-height: 1.5;
  color: #396DDE;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 1px 1px 1px #000;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 1px 1px 1px #000;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .header_title h1 {
    font-size: 15px;
  }
}
.header_title {
  text-align: center;
}
.header_arrow {
  text-align: center;
}
.fa-chevron-down {
  font-size: 40px;
  text-shadow: 1px 1px 1px #000;
  transition: all 0.3s;
}
.fa-chevron-down:hover {
  color: #fff;
}
.block_prise {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  right: -65px;
  top: 50%;
  background-color: #E71F10;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 992px) {
  .block_prise {
    display: none;
  }
}
.block_prise a {
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  font-size: 16px;
}
.but_pulse {
  width: 90px;
  height: 90px;
  color: #fff;
  text-align: center;
  background-color: #E71F10;
  border-radius: 50% ;
  position: fixed;
  z-index: 9999;
  left: 10px;
  bottom: 10px;
  cursor: pointer;
  /*overflow: hidden;*/
  transition: all 0.5s;
}
.but_pulse:hover .text {
  transform: scaleX(1);
  opacity: 1;
}
.but_pulse:hover i {
  transition: 0.5s;
  transform: scale(0);
}
@media screen and (max-width: 576px) {
  .but_pulse {
    display: none;
  }
}
.but_pulse a {
  text-decoration: none;
  color: #fff;
}
.but_pulse::before {
  content: '';
  position: absolute;
  border: 2px solid #E71F10;
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border-radius: 50%;
  animation: but_pulse 1.8s linear infinite;
}
.text {
  position: absolute;
  text-transform: uppercase;
  font-weight: 700;
  top: 20px;
  text-shadow: 1px 1px 1px #000;
  transform: scaleX(-1);
  transition: all 0.5s;
  opacity: 0;
}
.phone {
  position: absolute;
  font-size: 40px;
  text-align: center;
  width: 100px;
  height: 90px;
  line-height: 83px;
  text-shadow: 1px 1px 1px #000;
  animation: phone 0.9s infinite;
}
.phone i {
  transition: 0.5s;
}
@keyframes phone {
  0%,
  100% {
    transform: rotate(-30deg);
  }
  50% {
    transform: rotate(31deg);
  }
}
@keyframes but_pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*uslugi*/
.uslugi {
  height: 100%;
}
.uslugi_items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.uslugi_title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.fa-wrench {
  color: #E71F10;
  font-size: 35px;
}
.span_title {
  color: #396DDE;
  font-weight: 700;
  font-size: 35px;
  text-shadow: 1px 1px 1px #000;
}
.uslugi_item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(41.66666666666667% - 30px);
  border-radius: 15px;
  border: 2px solid #737173;
  overflow: hidden;
  height: 250px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .uslugi_item {
    width: calc(75% - 30px);
  }
}
.uslugi_item__img {
  height: 70%;
  border: 1px solid rgba(115, 113, 115, 0.5);
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.img_mod {
  background: url(../img/item_1.jpeg) no-repeat center top / cover;
}
.img_mod2 {
  background: url(../img/item_2.jpeg) no-repeat center top / cover;
}
.img_mod3 {
  background: url(../img/item_3.jpeg) no-repeat center center / cover;
}
.img_mod4 {
  background: url(../img/item_4.jpeg) no-repeat center center / cover;
}
.item_title {
  text-align: center;
  margin: auto 0 0 0;
  background-color: rgba(255, 255, 255, 0.7);
  height: 50px;
  font-size: 20px;
  font-weight: 700;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.item_buttons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  -ms-align-items: center;
  align-items: center;
  margin-top: 15px;
}
.item_buttons a {
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}
.record_but {
  padding: 10px 15px;
  background-color: #E71F10;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.record_but:hover {
  opacity: 0.6;
}
.more_but {
  padding: 10px 15px;
  border-radius: 15px;
  background-color: #2E50A3;
  cursor: pointer;
  transition: all 0.3s;
}
.more_but:hover {
  opacity: 0.6;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*about*/
.about {
  /*background: url(../img/about_bg.jpg) no-repeat center center /cover;*/
  background: rgba(49, 142, 206, 0.5);
  background: -moz-linear-gradient(left, #63D3F7 0%, #3F9DD6 75%, #318ECE 100%);
  background: -webkit-linear-gradient(left, #63D3F7 0%, #3F9DD6 75%, #318ECE 100%);
  background: linear-gradient(to right, #63D3F7 0%, #3F9DD6 75%, #318ECE 100%);
  margin-top: 20px;
}
.about_overlay {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.about_title {
  text-align: center;
  margin-top: 20px;
}
.about_title h2 {
  padding-top: 30px;
}
.fa-address-card {
  color: #E71F10;
  font-size: 35px;
}
.about_info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .about_info {
    margin: 0 auto;
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about_info__img {
  width: 300px;
  height: 100px;
  background: url(../img/photo.jpg) no-repeat center -10px / cover;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .about_info__img {
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 200px;
  }
}
.about_info p {
  font-weight: 700;
  color: #949294;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.about_map {
  height: 400px;
  margin-top: 20px;
  border: 2px solid #737173;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*footer*/
footer {
  height: 200px;
}
.footer_items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  height: 170px;
  border-bottom: 1px solid #9CB6EF;
}
.footer_item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(16.666666666666668% - 30px);
  height: 170px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  --webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 992px) {
  .footer_item {
    width: calc(100% - 30px);
  }
}
.footer_item_title {
  text-align: center;
  color: #3971DE;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.footer_item_text {
  text-align: center;
  color: #3971DE;
  border: 1px solid #3971DE;
  padding: 5px 15px;
  border-radius: 20px;
}
.footer_item_text a {
  text-decoration: none;
}
.fa-vk {
  font-size: 25px;
  margin-right: 10px;
}
.fa-instagram {
  font-size: 25px;
}
.footer_copyright {
  text-align: center;
  color: #3971DE;
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.form-modal {
  display: none;
  width: 300px;
  background-color: #E71F10;
  padding: 30px;
}
.form-modal_group h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
.form-modal_group input {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
  outline: none;
  border: none;
  padding: 5px 10px;
}
.form-modal_group button {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  /*background-color: #C7C7C7;*/
  color: #897070;
  font-weight: 700;
  transition: 0.5s all;
}
.form-modal_group button:hover {
  opacity: 0.8;
}
.more_title {
  text-align: center;
}
.more_title h2 {
  color: #396DDE;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 1px 1px 1px #000;
  text-transform: uppercase;
}
.more_1,
.more_2,
.more_3,
.more_4 {
  display: none;
}
.but_up {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
.fa-chevron-up {
  color: #E71F10;
  font-size: 40px;
}
