/* Fonts */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'Roboto_Light';
  src: url('../fonts/Roboto-Light.ttf') format('truetype');
}
/*Basic settings*/
input,
a,
button,
textarea {
  outline: none;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  font-family: 'Roboto';
  margin: 0;
  padding: 80px 0 0 0;
}
.title {
  font-size: 30px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  font-family: 'Roboto_Light';
  font-weight: 100;
}
.title_hr {
  width: 60px;
  height: 4px;
  background-color: #008dd2;
  border: none;
}
/*Header*/
header {
  position: fixed;
  height: 80px;
  width: 100vw;
  top: 0;
  background-color: #151515;
  line-height: 80px;
  z-index: 999;
}
.logo {
  position: absolute;
  height: 50px;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .logo {
    left: 80px;
  }
}
@media screen and (min-width: 768px) {
  .logo {
    display: block !important;
  }
}
nav {
  width: 61%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  nav {
    display: none;
  }
}
.nav_link {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  padding: 0 15px;
  cursor: pointer;
}
.nav_link:hover {
  color: #008dd2;
}
.nav_link:focus {
  color: #008dd2;
}
.active_link {
  color: #008dd2;
}
.burger_icon {
  display: none;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 25px;
  cursor: pointer;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .burger_icon {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .burger_icon {
    display: none !important;
  }
}
.mobile_arrow {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 25px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .mobile_arrow {
    display: none !important;
  }
}
.mobile_menu_text {
  display: none;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 30px;
  position: absolute;
  top: -30px;
  left: 80px;
}
@media screen and (min-width: 768px) {
  .mobile_menu_text {
    display: none !important;
  }
}
#mobile_menu {
  display: none;
  background-color: #151515;
  height: 600px;
  margin-top: 80px;
  text-align: center;
  padding-top: 120px;
}
@media screen and (min-width: 768px) {
  #mobile_menu {
    display: none !important;
  }
}
.mobile_link {
  display: block;
  height: 60px;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 23px;
  cursor: pointer;
}
.mobile_link:hover {
  color: #008dd2;
}
.mobile_link:focus {
  color: #008dd2;
}
/*Main*/
.main {
  height: 600px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .main_fullscreen_bg {
    height: 100%;
  }
}
@media screen and (min-width: 1900px) {
  .main_fullscreen_bg {
    width: 100%;
  }
}
.main_title {
  position: absolute;
  font-size: 50px;
  font-family: 'Roboto_Light';
  font-weight: 100;
  text-transform: uppercase;
  color: #ffffff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -80%);
          transform: translate(-50%, -80%);
  z-index: 10;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .main_title {
    font-size: 40px;
  }
}
/*Services*/
.services {
  background-color: #151515;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 80px;
}
.services_description {
  color: #ffffff;
  font-size: 17px;
  line-height: 24px;
  font-family: 'Roboto_Light';
  width: 50%;
  margin: 30px auto;
}
@media screen and (min-width: 360px) and (max-width: 500px) {
  .services_description {
    font-size: 12px;
    width: 80%;
  }
}
@media screen and (min-width: 501px) and (max-width: 767px) {
  .services_description {
    font-size: 15px;
    width: 70%;
  }
}
.services_container {
  width: 70%;
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .services_container {
    display: block;
  }
}
.service_wrap {
  width: 18%;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .service_wrap {
    width: 100%;
    margin-bottom: 35px;
  }
}
.services_img {
  height: 58px;
}
.services_item_description {
  margin-top: 15px;
  color: #ffffff;
  font-family: 'Roboto_Light';
  font-size: 13px;
  text-transform: uppercase;
  line-height: 24px;
}
/*Works*/
.works {
  background-color: #f5f5f5;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 160px;
}
.works_title {
  font-size: 30px;
  color: #151515;
  text-transform: uppercase;
  margin: 0 0 64px 0;
  font-family: 'Roboto_Light';
  font-weight: 100;
}
.works-block {
  text-align: center;
}
.works_slider_content {
  position: relative;
  background-color: #ffffff;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
  height: 450px;
}
@media screen and (min-width: 410px) and (max-width: 767px) {
  .works_slider_content {
    height: 615px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .works_slider_content {
    height: 470px;
  }
}
@media screen and (min-width: 1800px) and (max-width: 2500px) {
  .works_slider_content {
    height: 550px;
  }
}
@media screen and (min-width: 2501px) and (max-width: 3500px) {
  .works_slider_content {
    height: 650px;
  }
}
@media screen and (min-width: 3501px) and (max-width: 4500px) {
  .works_slider_content {
    height: 750px;
  }
}
.works_img {
  width: 100%;
  margin: 0 auto;
  -webkit-filter: grayscale(95%);
          filter: grayscale(95%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.works_img:hover {
  -webkit-filter: none;
          filter: none;
}
.works_icon {
  width: 24px;
  height: 22px;
  margin: 30px auto;
}
.works_slider {
  width: 90%;
  margin: 0 auto;
}
.slick-active {
  outline: none;
}
.prev {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/left_arrow.png) center;
  background-size: cover;
  width: 34px;
  height: 34px;
  border: none;
  opacity: .3;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.prev:hover {
  opacity: 1;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .prev {
    left: 0;
  }
}
.next {
  position: absolute;
  z-index: 99;
  top: 50%;
  right: -50px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/right_arrow.png) center;
  background-size: cover;
  width: 34px;
  height: 34px;
  border: none;
  opacity: .3;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.next:hover {
  opacity: 1;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .next {
    right: -32px;
  }
}
.works_slider_descriptions {
  font-family: 'Roboto_Light';
  font-size: 13px;
  line-height: 24px;
}
.works_link {
  color: #008dd2;
  font-size: 13px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.works_link:hover {
  color: #00699e;
}
/*Team*/
.team {
  padding-top: 170px;
  height: 600px;
  text-align: center;
}
/*Message*/
.message {
  height: 570px;
  background-color: #151515;
  text-align: center;
  padding-top: 64px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .message {
    height: 795px;
  }
}
.message_form {
  width: 60%;
  margin: 0 auto;
  height: 250px;
  margin-top: 70px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .message_form {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .message_form {
    width: 80%;
  }
}
.message_side {
  display: inline-block;
  width: 49%;
  height: 100%;
  vertical-align: top;
  padding: 0 20px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .message_side {
    display: block;
    width: 100%;
  }
  .message_side:last-child {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.submit_btn {
  border-radius: 15px;
  padding: 5px 30px 7px 30px;
  margin-top: 40px;
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  border: 1px solid #ffffff;
  cursor: pointer;
}
.submit_btn:hover {
  background-color: #008dd2;
}
input:-webkit-autofill {
  -webkit-box-shadow: inset 0 1px 4px 0 #151515, /* Внутренняя тень */ inset 0 0 0 50px #151515, /* Цвет фона */ 0 1px rgba(255, 255, 255, 0.06) !important;
  /* Наружная тень */
  -webkit-text-fill-color: #ffffff !important;
}
.btn_disabled {
  border-radius: 15px;
  padding: 5px 30px 7px 30px;
  margin-top: 40px;
  background: transparent;
  color: gray;
  font-size: 17px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  border: 1px solid gray;
  cursor: pointer;
}
.message_label {
  display: block;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  margin-bottom: 10px;
}
.message_input {
  width: 100%;
  height: 40px;
  margin-bottom: 17px;
  border: solid 0.5px #e5e5e5;
  background: transparent;
  caret-color: #008dd2;
  color: #ffffff;
}
.message_text_input {
  width: 100%;
  height: 210px;
  margin-bottom: 17px;
  border: solid 0.5px #e5e5e5;
  background: transparent;
  caret-color: #008dd2;
  color: #ffffff;
}
/*Map*/
.map {
  height: 600px;
}
/*Footer*/
.footer {
  position: relative;
  background-color: #151515;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 360px) and (max-width: 1100px) {
  .footer {
    display: none;
  }
}
.footer_about {
  width: 35%;
}
.footer_description {
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  margin-left: 120px;
  margin-top: 38px;
}
@media screen and (min-width: 901px) and (max-width: 1247px) {
  .footer_description {
    font-size: 10px;
  }
}
.footer_items {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer_items_phone {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer_items_mail {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer_items_pdf {
  width: 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 30px;
}
.footer_img_wrap {
  display: inline-block;
  vertical-align: top;
  text-align: right;
  margin-right: 10px;
  width: 35px;
  height: 100%;
}
.footer_text_wrap {
  display: inline-block;
  height: 100%;
}
.footer_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 80%;
  margin-left: -4px;
}
.footer_icons {
  height: 32px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer_address {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  line-height: 1.5;
  margin-top: 29px;
}
@media screen and (min-width: 901px) and (max-width: 1310px) {
  .footer_address {
    font-size: 8px;
    margin-top: 37px;
  }
}
.footer_phone {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  line-height: 1.5;
  margin-top: 36px;
}
@media screen and (min-width: 901px) and (max-width: 1310px) {
  .footer_phone {
    font-size: 10px;
    margin-top: 45px;
    width: 125px;
  }
}
.footer_mail {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  line-height: 1.5;
  margin-top: 49px;
  text-decoration: none;
}
@media screen and (min-width: 901px) and (max-width: 1310px) {
  .footer_mail {
    font-size: 10px;
    margin-top: 52px;
  }
}
.footer_requisites {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  line-height: 1.5;
  margin-top: 49px;
  text-decoration: none;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 901px) and (max-width: 1310px) {
  .footer_requisites {
    font-size: 10px;
    margin-top: 52px;
  }
}
.footer_phone_span {
  font-size: 20px;
  font-family: 'Roboto';
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (min-width: 901px) and (max-width: 1310px) {
  .footer_phone_span {
    font-size: 11px;
  }
}
.mobile_footer {
  display: none;
  background-color: #151515;
  padding: 20px 0 5px 0;
}
@media screen and (min-width: 360px) and (max-width: 1100px) {
  .mobile_footer {
    display: block;
  }
}
.footer_mobile_item_wrap {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer_mobile_item_wrap {
    display: inline-block;
    width: 49%;
  }
}
.mobile_icon_wrap {
  width: 20%;
  display: inline-block;
  text-align: right;
}
.mobile_text_wrap {
  width: 79%;
  display: inline-block;
  margin-left: -4px;
  margin-top: 0;
}
.mobile_logo {
  height: 40px;
}
.mobile_description {
  color: #ffffff;
  font-size: 11px;
  font-family: 'Roboto_Light';
  margin-left: 25px;
  position: relative;
  top: -4px;
}
.footer_mobile_span {
  font-size: 15px;
  font-family: 'Roboto';
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.footer_mobile_mail {
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  text-decoration: none;
  position: relative;
  top: -12px;
}
.footer_mobile_pdf {
  color: #ffffff;
  font-size: 13px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  text-decoration: none;
  position: relative;
  top: -12px;
  text-decoration: underline;
}
/*Модальные окна*/
#map_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #151515;
  z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  display: none;
  pointer-events: none;
}
#works_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(21, 21, 21, 0.8);
  z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  display: none;
  pointer-events: none;
  overflow-y: auto;
}
#works_modal_utp {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(21, 21, 21, 0.8);
  z-index: 99999;
  -webkit-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  display: none;
  pointer-events: none;
  overflow-y: auto;
}
#works_modal_utp a {
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-family: 'Roboto_Light';
  margin-bottom: 10px;
  color: #008dd2;
}
#works_modal_utp a:hover {
  color: #00476b;
}
.works_close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.modal_content {
  position: relative;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80%;
  border-radius: 10px;
  padding: 10px;
  background-color: #ffffff;
  pointer-events: auto;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_content {
    width: 96%;
    top: 20%;
  }
}
.works_modal_content {
  position: relative;
  margin: 0 auto;
  margin-top: 70px;
  width: 80%;
  border-radius: 10px;
  padding: 10px 10px 50px 10px;
  background-color: #ffffff;
  pointer-events: auto;
  max-height: 1000px;
  overflow-y: auto;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .works_modal_content {
    width: 96%;
  }
}
@media screen and (min-height: 650px) and (max-height: 850px) {
  .works_modal_content {
    max-height: 560px;
  }
}
@media screen and (min-height: 851px) and (max-height: 1080px) {
  .works_modal_content {
    max-height: 800px;
  }
}
.works_mopdal_title {
  font-size: 20px;
  font-family: 'Roboto';
  font-weight: 500;
  text-transform: uppercase;
  width: 60%;
  margin: 30px auto;
  text-align: center;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .works_mopdal_title {
    font-size: 13px;
  }
}
.modal_hr {
  width: 60px;
  height: 4px;
  background-color: #008dd2;
  border: none;
  margin-bottom: 30px;
}
.target_wrap {
  width: 90%;
  margin: 0 auto;
}
.full_map_img {
  width: 100%;
}
.modal_left_side {
  display: inline-block;
  width: 30%;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_left_side {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
.modal_right_side {
  vertical-align: top;
  display: inline-block;
  width: 70%;
  margin-left: -4px;
  padding-left: 30px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_right_side {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}
.project_img {
  width: 100%;
}
.modal_text {
  margin-top: 0;
  color: #151515;
  font-size: 22px;
  font-family: 'Roboto';
  font-weight: bold;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_text {
    font-size: 18px;
    text-align: justify;
  }
}
.modal_text_span {
  color: #151515;
  font-size: 19px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  margin-left: 10px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_text_span {
    font-size: 14px;
  }
}
.modal_text_span_rezult {
  color: #151515;
  font-size: 19px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  margin-left: 10px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_text_span_rezult {
    font-size: 14px;
  }
}
.modal_text_span_technologies {
  color: #151515;
  font-size: 19px;
  font-family: 'Roboto_Light';
  font-weight: 300;
  margin-left: 10px;
}
@media screen and (min-width: 360px) and (max-width: 767px) {
  .modal_text_span_technologies {
    font-size: 14px;
  }
}
