@import url(https://fonts.googleapis.com/css?family=Roboto:regular,500,700,&display=swap);
@charset "UTF-8";

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

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "Roboto";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Roboto";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style-type: disc;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  text-shadow: none;
  font-weight: 700;
  margin-bottom: .5em;
  text-align: inherit;
}

body {
  background-color: #00bfff;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.wrapper>main {
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  max-width: 73.125rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.page__container {
  background-color: #4389fa;
  min-height: 50vh;
}

section {
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px #1e191e;
  text-align: center;
  padding: 1em 1.5em;
}

@media (max-width: 47.99875em) {
  h1 {
    font-size: 1.7rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 1px 2px #1e191e;
}

@media (max-width: 47.99875em) {
  h2 {
    font-size: 1.5rem;
  }
}

.text-bold {
  font-weight: 700;
}

.text-regular {
  font-weight: 400;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #171ca6;
  background: linear-gradient(90deg, rgba(23, 28, 166, 0.9948354342) 2%, rgba(24, 98, 91, 0.975227591) 22%, #3359ec 78%, #333aec 95%);
  color: #fff;
  width: 100%;
}

.header__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 1em;
}

.header__logo {
  font-size: 2rem;
  font-weight: 700;
}

.footer {
  background: #171ca6;
}

.footer__container {
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

.banner {
  position: relative;
  margin: 0 -15px 2.5rem;
  background-color: #1e191e;
}

.banner-ibg::after {
  display: block;
  content: "";
  padding-bottom: 45%;
}

.banner-ibg__shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 25, 30, 0.3);
}

.banner__text {
  position: absolute;
  bottom: 0;
  right: 0;
}

.banner__text h1 {
  font-size: 2rem;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
  text-shadow: 3px 3px 2px #1e191e;
  max-width: 17em;
  padding: 1em;
  margin-bottom: 0;
}

@media (max-width: 47.99875em) {
  .banner__text h1 {
    font-size: 1.3rem;
  }
}

.services {
  padding-bottom: 2rem;
}

.services__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.card-services {
  display: block;
  display: flex;
  flex: 0 1 500px;
  align-items: center;
  gap: 1rem;
  height: 150px;
  background-color: #fff;
  padding: 1em;
  border-radius: 0.2em;
  -webkit-box-shadow: -4px 5px 25px -4px rgba(0, 3, 6, 0.92);
  -moz-box-shadow: -4px 5px 25px -4px rgba(0, 3, 6, 0.92);
  box-shadow: -4px 5px 25px -4px rgba(0, 3, 6, 0.92);
  overflow: hidden;
}

.card-services:hover {
  -webkit-box-shadow: -2px 2px 6px 3px #008efb inset;
  -moz-box-shadow: -2px 2px 6px 3px #008efb inset;
  box-shadow: -2px 2px 6px 3px #008efb inset;
}

.card-services:hover img {
  width: 110%;
  height: 105%;
}

.card-services__img {
  height: 100%;
  flex: 0 1 50%;
}

.card-services__img img {
  transition: all 0.3s ease;
}

.card-services__content {
  flex: 1 1 70%;
  text-align: center;
}

.card-services__content *+* {
  margin-top: 1.5em;
}

.card-services__title {
  font-weight: 700;
  line-height: 1.3;
}

.card-services__description {
  font-weight: 700;
  color: darkblue;
}

.working-time {
  margin: 0 -15px;
  display: flex;
  align-items: center;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 142, 251, 0.46);
  -moz-box-shadow: 0px 0px 12px 3px rgba(0, 142, 251, 0.46);
  box-shadow: 0px 0px 12px 3px rgba(0, 142, 251, 0.46);
}

.working-time__img {
  min-height: 400px;
  width: 100%;
  flex: 50%;
}

@media (max-width: 47.99875em) {
  .working-time__img {
    display: none;
  }
}

.working-time__content {
  flex: 1 1 50%;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 3em 2em;
}

.working-time__h2 {
  color: #000;
  text-shadow: none;
  margin-bottom: 1em;
}

.working-time p {
  margin-bottom: 2em;
  line-height: 1.5em;
}

.address {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 142, 251, 0.46);
  -moz-box-shadow: 0px 0px 12px 3px rgba(0, 142, 251, 0.46);
  box-shadow: 0px 0px 12px 3px rgba(0, 142, 251, 0.46);
}

.address__content {
  flex: 1 1 30%;
  color: #fff;
  text-shadow: 1px 1px 2px #1e191e;
  font-weight: 700;
  text-align: center;
  padding: 3em 2em;
}

@media (max-width: 47.99875em) {
  .address__content {
    flex: 1 1 100%;
  }
}

.address__content p {
  margin-bottom: 1em;
  line-height: 1.5em;
}

.address__location {
  flex: 1 1 70%;
}

@media (max-width: 47.99875em) {
  .address__location {
    flex: 1 1 100%;
  }
}

.services-page {
  line-height: 1.4;
  font-size: 1.2rem;
  padding-bottom: 1em;
}

.services-page__main {
  background-color: #fff;
  padding: 1em 1.5em;
}

.services-page__img {
  max-width: 50%;
  width: 500px;
  height: 300px;
  float: right;
  margin: 0 0 1em 2em;
}

@media (max-width: 47.99875em) {
  .services-page__img {
    width: auto;
    height: 200px;
    max-width: 100%;
    float: none;
    margin: 0 0 1em 0;
  }
}

.services-page__content {
  text-align: justify;
}

.services-page__content p {
  margin-bottom: 1em;
}

.services-page__content h2 {
  color: #000;
  box-shadow: none;
}


.services-page__content h3 {
  font-size: 1.7rem;
}

.services-page__content h4 {
  font-size: 1.3rem;
}

.services-page__content h5 {
  font-size: 1rem;
}

.services-page__content h6 {
  font-size: 1rem;
  font-weight: 400;
}

.services-page__content img {
  object-fit: contain;
}

.services-page__content ul,
.services-page__content ol {
  padding: 0px 0px 0px 40px;
  margin-bottom: 1em;
}