@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #0f0e0e;
  background: #ffffff;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1213px;
  padding: 0 15px;
  margin: 0 auto;
}

.section-title {
  font-weight: 700;
  line-height: 1.3;
  color: #1c1c1c;
  text-align: center;
}

.actions-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.actions-block__list {
  list-style: none;
  margin-right: 10px;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.actions-block__list-item {
  margin-right: 10px;
}

.actions-block__list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  padding: 3px;
  background-color: #2AB640;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.actions-block__list-link img {
  display: block;
  width: 21px;
  height: auto;
}

.actions-block__list-link.light-blue {
  background-color: #64A9DC;
}

.main-button {
  display: inline-block;
  background-color: #3478B7;
  -webkit-box-shadow: 0px 1px 2px rgba(15, 14, 14, 0.25);
  box-shadow: 0px 1px 2px rgba(15, 14, 14, 0.25);
  border-radius: 7px;
  padding: 15px 20px 13px;
  font-weight: 500;
  line-height: 1.22;
  color: #ffffff;
  letter-spacing: -0.01em;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

h1,
.big-title {
  font-weight: 600;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1,
h2,
.big-title {
  font-size: 32px;
}

h3,
.medium-title {
  font-size: 28px;
}

h4,
.small-title {
  font-size: 24px;
}

.ul-list {
  list-style: none;
  list-style-position: inside;
}

.ul-list.margin-bottom {
  margin-bottom: 27px;
}

.ul-list__item {
  padding-left: 30px;
  position: relative;
}

.ul-list__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0f0e0e;
  position: absolute;
  left: 13px;
  top: 12px;
}

.ol-list {
  list-style-position: inside;
  padding-left: 5px;
}

.ol-list.margin-bottom {
  margin-bottom: 27px;
}

.header {
  padding: 33px 0 34px;
  background-color: #ffffff;
  position: relative;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 20px;
  color: #0f0e0e;
}

.header__logo-image {
  display: block;
  width: 70px;
  height: auto;
  margin-right: 20px;
}

.header__logo-text {
  width: 100px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
}

.header__navigation-wrap {
  width: 611px;
}

.header__menu {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu-item {
  margin-right: 15px;
}

.header__menu-item:last-child {
  margin-right: 0;
}

.header__menu-link {
  display: inline-block;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  color: #0f0e0e;
  letter-spacing: -0.01em;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}

.header__menu-link.active {
  font-weight: 700;
}

.header__actions {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
}

.header__burger {
  display: none;
}

.header__burger.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__burger.active span:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.header__burger.active span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
}

.modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(15, 14, 14, 0.6);
}

.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 428px;
  max-width: 95vw;
  max-height: 95vh;
  background-color: #F5F6F8;
  border: 1px solid #95B7D8;
  border-radius: 30px;
  padding: 35px 68px 40px;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 23px;
  right: 18px;
}

.modal__close img {
  display: block;
  width: 34px;
  height: auto;
}

.modal__title {
  max-width: 240px;
  margin: 0 auto 20px;
  font-size: 22px;
  text-align: center;
  letter-spacing: -0.01em;
}

.modal__form {
  width: 100%;
}

.modal__input {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 14px 26px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #0f0e0e;
}

.modal__input::-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #aaaaaa;
}

.modal__input::-moz-placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #aaaaaa;
}

.modal__input:-ms-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #aaaaaa;
}

.modal__input::-ms-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #aaaaaa;
}

.modal__input::placeholder {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #aaaaaa;
}

.modal__input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 5px #3478B7;
  box-shadow: 0 0 5px #3478B7;
}

.modal__submit {
  width: 100%;
  margin-top: 10px;
}

.top {
  position: relative;
}

.top.inner-page .top__inner {
  min-height: 251px;
  margin-right: 0;
}

.top.inner-page .top__title {
  margin-bottom: 0;
  font-size: 32px;
}

.top__images {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top__images-item {
  width: 50%;
  height: 100%;
  background-color: #F5F6F8;
  position: relative;
}

.top__images-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top__images-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(15, 14, 14, 0.45);
  position: absolute;
  left: 0;
  top: 0;
}

.top__inner {
  position: relative;
  min-height: 590px;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 33px;
  color: #ffffff;
}

.top__title {
  max-width: 1015px;
  margin-bottom: 95px;
  font-size: 32px;
  line-height: 54px;
  text-align: center;
}

.top__types {
  width: 100%;
  max-width: 482px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top__types-item {
  max-width: 48%;
  text-align: center;
}

.top__types-icon {
  display: inline-block;
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}

.top__types-title {
  display: block;
  font-size: 20px;
}

.services {
  padding: 31px 0 50px;
}

.services.inner-page {
  padding-top: 60px;
}

.services.inner-page .services__button-wrap {
  margin-top: 3px;
}

.services__title {
  margin-bottom: 56px;
}

.services__block {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services__column {
  width: 33.333%;
  margin-bottom: 57px;
  padding: 0 10px;
}

.services__item {
  max-width: 215px;
  margin: 0 auto;
  text-align: center;
}

.services__item-icon {
  display: inline-block;
  height: 100px;
  width: auto;
  margin-bottom: 20px;
}

.services__item-description {
  line-height: 1.17;
}

.services__button-wrap {
  margin-top: -6px;
  text-align: center;
}

.works {
  background-color: #F5F6F8;
  padding: 56px 0 27px;
}

.works__title {
  margin-bottom: 21px;
  font-weight: 700;
}

.works__triggers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -15px 30px;
}

.works__triggers-link {
  display: inline-block;
  padding: 0 41px;
  font-weight: 700;
  color: #3478B7;
  text-align: center;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.works__triggers-link.active {
  color: #1c1c1c;
}

.works__tab {
  display: none;
}

.works__tab.open {
  display: block;
}

.works__description {
  text-align: center;
  margin-bottom: 46px;
}

.works__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -17px;
}

.works__column {
  width: 25%;
  padding: 0 17px;
  margin-bottom: 55px;
}

.works__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 7px;
  overflow: hidden;
}

.works__item-image {
  height: 227px;
  border-radius: 7px 7px 0 0;
}

.works__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.works__item-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 101px;
  padding: 20px 15px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  text-align: center;
}

.clients {
  padding: 48px 0 100px;
}

.clients__title {
  margin-bottom: 50px;
}

.clients__logo-slider {
  margin-bottom: 50px;
}

.clients .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../images/icons/icon-slider-arrow.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-52%);
  -ms-transform: translateY(-52%);
  transform: translateY(-52%);
  z-index: 2;
  font-size: 0;
  line-height: 0;
}

.clients .slick-arrow.slick-prev {
  left: -45px;
}

.clients .slick-arrow.slick-next {
  -webkit-transform: translateY(-52%) rotateY(180deg);
  transform: translateY(-52%) rotateY(180deg);
  right: -45px;
}

.logo-slider {
  position: relative;
  margin-bottom: 94px;
}

.logo-slider__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.logo-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-slider .slick-slide {
  height: auto;
}

.logo-slider .slick-slide > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 10px;
}

.reviews-slider {
  position: relative;
}

.reviews-slider__item {
  display: block;
  border: 1px solid #0f0e0e;
}

.reviews-slider__item img {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-slider .slick-slide {
  height: auto;
}

.reviews-slider .slick-slide > div {
  height: 100%;
  margin: 0 29px;
  text-align: center;
}

.text-content {
  padding: 89px 0 130px;
}

.text-content__title {
  max-width: 560px;
  margin: 0 auto 30px;
}

.text-content__text.margin-bottom {
  margin-bottom: 28px;
}

.text-content__share-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.text-content__share-text {
  display: inline-block;
  margin-right: 11px;
}

.text-content__share-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-content__share-item {
  margin-right: 5px;
}

.text-content__share-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  padding: 5px;
  background-color: #2AB640;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.text-content__share-link img {
  display: block;
  width: 25px;
  height: auto;
}

.text-content__share-link.light-blue {
  background-color: #64A9DC;
}

.footer {
  background-color: #0B4B96;
  padding: 40px 0 55px;
  color: #ffffff;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 34px;
}

.footer__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 172px;
  margin-right: 25px;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer__logo-image {
  display: block;
  width: 70px;
  height: auto;
  margin-right: 20px;
}

.footer__logo-text {
  font-size: 18px;
  line-height: 1.1;
}

.footer__info-text {
  font-size: 13px;
  line-height: 1.62;
}

.footer__navigation {
  width: 601px;
  padding-top: 23px;
}

.footer__menu {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 19px;
}

.footer__menu-item {
  margin-right: 15px;
  margin-bottom: 20px;
}

.footer__menu-item:last-child {
  margin-right: 0;
}

.footer__menu-link {
  display: inline-block;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  line-height: 1.22;
  color: inherit;
  letter-spacing: -0.01em;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}

.footer__menu-link.active {
  font-weight: 700;
}

.footer__navigation-text {
  font-size: 14px;
  margin-bottom: 13px;
}

.footer__navigation-contact {
  font-size: 13px;
  line-height: 1.61;
  margin-bottom: 14px;
}

.footer__navigation-contact a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  color: inherit;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}

.footer__actions {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 25px;
  padding-top: 11px;
}

.footer__actions .actions-block__list {
  padding-top: 3px;
}

.footer__actions .actions-block__list-item.invisible {
  display: none;
}

.footer__actions .actions-block__list-link {
  width: 44px;
  height: 44px;
}

.footer__actions .actions-block__list-link img {
  width: 25px;
}

.footer__copyright {
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.objects {
  padding: 66px 0 105px;
}

.objects__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.objects__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 24px;
}

.objects__item {
  height: 100%;
  min-height: 240px;
  background: #D9D9D9;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  padding: 12px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.objects__item-title {
  font-weight: 600;
  font-size: 20px;
  word-break: break-word;
  margin-bottom: 22px;
}

.objects__item-text {
  font-weight: 300;
  font-size: 16px;
}

.equipment {
  padding: 34px 0 82px;
}

.equipment__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.equipment__item {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.equipment__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 21px;
}

.equipment__item-image {
  margin-top: auto;
  position: relative;
  padding-bottom: 59%;
}

.equipment__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts {
  padding: 36px 0 207px;
  text-align: center;
}

.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts__link {
  display: inline-block;
  border-bottom: 1px solid transparent;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #356999;
  opacity: 0.8;
  -webkit-transition: border 0.3s, opacity 0.3s;
  -o-transition: border 0.3s, opacity 0.3s;
  transition: border 0.3s, opacity 0.3s;
}

.contacts__address {
  font-size: 22px;
  margin-bottom: 22px;
}

.contacts__map-wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  max-width: 1042px;
  height: 530px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05))), url(image.png);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url(image.png);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url(image.png);
  border: 3px solid #0B4B96;
  border-radius: 15px;
  overflow: hidden;
}

.contacts__map-wrap > div {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .actions-block__list-link:hover,
  .actions-block__list-link:focus {
    background-color: #25a139;
  }

  .actions-block__list-link:hover.light-blue,
  .actions-block__list-link:focus.light-blue {
    background-color: #4f9dd7;
  }

  .main-button:hover,
  .main-button:focus {
    background-color: #2e6ba3;
  }

  .header__menu-link:hover,
  .header__menu-link:focus {
    border-bottom-color: #0f0e0e;
  }

  .text-content__share-link:hover,
  .text-content__share-link:focus {
    background-color: #25a139;
  }

  .text-content__share-link:hover.light-blue,
  .text-content__share-link:focus.light-blue {
    background-color: #4f9dd7;
  }

  .footer__menu-link:hover,
  .footer__menu-link:focus {
    border-bottom-color: #ffffff;
  }

  .footer__navigation-contact a:hover,
  .footer__navigation-contact a:focus {
    border-bottom-color: #ffffff;
  }

  .contacts__link:hover,
  .contacts__link:focus {
    opacity: 1;
    border-bottom-color: currentColor;
  }
}

@media (min-width: 993px) {
  .header__navigation-wrap {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 1300px) {
  .clients__logo-slider {
    padding: 0 30px;
  }

  .clients__reviews-slider {
    padding: 0 30px;
  }

  .clients .slick-arrow.slick-prev {
    left: -10px;
  }

  .clients .slick-arrow.slick-next {
    right: -10px;
  }
}

@media (max-width: 1200px) {
  .top.inner-page .top__inner {
    min-height: 180px;
  }

  .top__inner {
    min-height: 500px;
    margin-right: 0;
  }

  .top__title {
    max-width: 800px;
    margin-bottom: 70px;
    font-size: 28px;
    line-height: 1.5;
  }

  .top__types-icon {
    height: 80px;
  }

  .top__types-title {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  h1,
  h2,
  .big-title {
    font-size: 28px;
  }

  h3,
  .medium-title {
    font-size: 26px;
  }

  h4,
  .small-title {
    font-size: 22px;
  }

  .header {
    padding: 19px 0 20px;
  }

  .header__logo-image {
    width: 60px;
    margin-right: 10px;
  }

  .header__logo-text {
    font-size: 18px;
  }

  .header__navigation-wrap {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 5;
    width: 100vw;
    height: calc(100vh - 110px);
    background-color: rgba(15, 14, 14, 0.6);
  }

  .header__navigation-wrap.open .header__navigation {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__navigation {
    height: 100%;
    overflow-y: auto;
    max-width: 320px;
    margin-left: auto;
    background-color: #ffffff;
    padding: 30px 10px 20px 30px;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    border-top: 2px solid #0f0e0e;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }

  .header__menu-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .header__menu-link {
    font-size: 22px;
  }

  .header__actions {
    margin-left: auto;
  }

  .header__burger {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 10;
    margin-left: 10px;
  }

  .header__burger span {
    display: block;
    width: 18px;
    height: 3px;
    background: #0f0e0e;
    border-radius: 20px;
    position: absolute;
    left: 6px;
    top: calc(50% - 1px);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .header__burger span:first-child {
    top: 7px;
  }

  .header__burger span:last-child {
    top: auto;
    bottom: 6px;
  }

  .top.inner-page .top__inner {
    min-height: 150px;
  }

  .top.inner-page .top__title {
    font-size: 28px;
  }

  .top__images-item:nth-child(1) img {
    -o-object-position: right center;
    object-position: right center;
  }

  .top__images-item:nth-child(2) img {
    -o-object-position: left center;
    object-position: left center;
  }

  .top__title {
    font-size: 26px;
  }

  .top__types {
    max-width: 420px;
  }

  .services__title {
    margin-bottom: 40px;
  }

  .services__column {
    margin-bottom: 40px;
  }

  .services__item-icon {
    height: 80px;
    margin-bottom: 17px;
  }

  .services__item-description {
    font-size: 16px;
  }

  .works__description {
    font-size: 16px;
    margin-bottom: 33px;
  }

  .works__column {
    width: 33.333%;
    margin-bottom: 34px;
  }

  .works__item-title {
    font-size: 16px;
  }

  .clients {
    padding-bottom: 50px;
  }

  .clients__title {
    margin-bottom: 35px;
  }

  .logo-slider {
    margin-bottom: 60px;
  }

  .reviews-slider__item {
    max-width: 237px;
    margin: 0 auto;
  }

  .reviews-slider .slick-slide > div {
    margin: 0 10px;
  }

  .text-content {
    padding: 60px 0 77px;
  }

  .footer__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__info {
    margin-bottom: 30px;
  }

  .footer__navigation {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__menu {
    width: auto;
    margin-bottom: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer__menu-item {
    margin-right: 40px;
  }

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

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

  .objects {
    padding-bottom: 50px;
  }

  .objects__column {
    width: 50%;
    margin-bottom: 20px;
  }

  .equipment {
    padding-bottom: 60px;
  }

  .equipment__item-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contacts {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  h1,
  h2,
  .big-title {
    font-size: 26px;
  }

  h3,
  .medium-title {
    font-size: 24px;
  }

  h4,
  .small-title {
    font-size: 20px;
  }

  .top.inner-page .top__title {
    font-size: 26px;
  }

  .top__inner {
    min-height: 432px;
    padding-top: 19px;
  }

  .top__title {
    max-width: 650px;
    margin-bottom: 53px;
    font-size: 22px;
  }

  .top__types-icon {
    height: 65px;
    margin-bottom: 9px;
  }

  .top__types-title {
    font-size: 16px;
  }

  .works {
    padding: 29px 0 14px;
  }

  .works__column {
    width: 50%;
  }

  .footer__menu {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__menu-item {
    margin-right: 20px;
  }

  .objects__item {
    padding: 15px 20px;
  }

  .objects__item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .equipment__item-title {
    font-size: 18px;
  }

  .contacts__map-wrap {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: calc(100% + 30px);
    border-radius: 0;
    border: none;
    margin: 0 -15px;
  }

  .contacts__map-wrap [class*="-image"] {
    width: 200px !important;
    height: 100px !important;
    background-size: 200px 100px !important;
    left: -150px !important;
  }
}

@media (max-width: 576px) {
  h1,
  h2,
  .big-title {
    font-size: 24px;
  }

  h3,
  .medium-title {
    font-size: 22px;
  }

  h4,
  .small-title {
    font-size: 18px;
  }

  .ul-list.margin-bottom {
    margin-bottom: 15px;
  }

  .ol-list.margin-bottom {
    margin-bottom: 15px;
  }

  .header__logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__logo-image {
    width: 36px;
  }

  .header__logo-text {
    width: auto;
    line-height: 1.3;
  }

  .header__logo-text span {
    display: block;
  }

  .header__navigation-wrap {
    height: calc(100vh - 86px);
  }

  .header__menu-item {
    margin-bottom: 15px;
  }

  .header__menu-link {
    font-size: 20px;
  }

  .header .actions-block__list {
    margin-right: -10px;
  }

  .header .actions-block__recall {
    margin-top: 30px;
  }

  .modal__content {
    padding: 35px 45px 30px;
  }

  .modal__close {
    top: 15px;
  }

  .modal__close img {
    width: 26px;
  }

  .modal__title {
    font-size: 18px;
  }

  .modal__input {
    font-size: 18px;
  }

  .modal__input::-webkit-input-placeholder {
    font-size: 18px;
  }

  .modal__input::-moz-placeholder {
    font-size: 18px;
  }

  .modal__input:-ms-input-placeholder {
    font-size: 18px;
  }

  .modal__input::-ms-input-placeholder {
    font-size: 18px;
  }

  .modal__input::placeholder {
    font-size: 18px;
  }

  .top.inner-page .top__inner {
    min-height: 138px;
  }

  .top.inner-page .top__title {
    font-size: 24px;
  }

  .top__title {
    font-size: 18px;
  }

  .services {
    padding: 48px 0 75px;
  }

  .services__column {
    width: 50%;
    margin-bottom: 30px;
  }

  .services__button-wrap {
    margin-top: 0;
  }

  .works__block {
    margin: 0 -10px;
  }

  .works__column {
    padding: 0 10px;
    margin-bottom: 18px;
  }

  .works__item-image {
    height: 189px;
  }

  .clients {
    padding: 82px 0 35px;
  }

  .clients .slick-arrow {
    width: 30px;
    height: 30px;
  }

  .logo-slider {
    margin-bottom: 37px;
  }

  .text-content {
    padding-top: 40px;
  }

  .text-content__title {
    margin-bottom: 20px;
  }

  .text-content__text.margin-bottom {
    margin-bottom: 15px;
  }

  .text-content__share-block {
    margin-top: 25px;
  }

  .footer {
    padding: 20px 0 77px;
  }

  .footer__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 53px;
  }

  .footer__info {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    margin-right: 0;
    margin-bottom: 14px;
    width: auto;
  }

  .footer__logo {
    margin-bottom: -7px;
  }

  .footer__logo-text {
    padding-top: 10px;
    font-weight: 700;
    font-size: 22px;
  }

  .footer__info-text {
    padding-left: 90px;
  }

  .footer__menu {
    width: auto;
    margin-bottom: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer__menu-item {
    margin-bottom: 29px;
    margin-right: 0;
  }

  .footer__menu-link {
    font-weight: 500;
    font-size: 24px;
  }

  .footer__navigation-text {
    max-width: 230px;
  }

  .footer__navigation-contact {
    max-width: 230px;
  }

  .footer__actions {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
    padding-top: 0;
  }

  .footer__actions .actions-block__list {
    margin-right: -10px;
    margin-bottom: 39px;
  }

  .footer__actions .actions-block__list-item.invisible {
    display: block;
  }

  .footer__actions .actions-block__list-link {
    width: 60px;
    height: 60px;
  }

  .footer__actions .actions-block__list-link img {
    width: 34px;
  }

  .footer__actions .actions-block__recall {
    display: none;
  }

  .objects {
    padding: 50px 0 40px;
  }

  .objects__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .objects__column {
    width: 100%;
  }

  .equipment {
    padding: 50px 0 30px;
  }

  .equipment__item {
    width: 100%;
  }

  .equipment__item-title {
    font-size: 16px;
  }

  .contacts {
    padding: 50px 0;
  }

  .contacts__link {
    font-size: 18px;
  }

  .contacts__address {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .modal__content {
    padding: 35px 25px 30px;
  }

  .top__title {
    max-width: 305px;
  }

  .top__types {
    max-width: 315px;
  }

  .services__title {
    margin-bottom: 27px;
  }

  .services__block {
    max-width: 314px;
  }

  .services__item-icon {
    height: 65px;
  }

  .services__item-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .works__title {
    margin-bottom: 24px;
  }

  .works__triggers {
    margin-bottom: 33px;
  }

  .works__triggers-link {
    line-height: 1.64;
  }

  .works__description {
    font-size: 15px;
  }

  .works__item-title {
    padding: 14px 10px;
  }
}

@media (max-width: 375px) {
  body {
    font-size: 16px;
  }

  .works__triggers-link {
    padding: 0 15px;
  }

  .works__column {
    width: 100%;
  }

  .clients__logo-slider {
    padding: 0 20px;
  }
}