@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&family=Raleway:wght@300;400;500;700;800;900&family=Roboto+Condensed:wght@300&display=swap");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

ul {
  padding: 0;
  list-style-type: none;
}

body {
  font-family: 'Raleway', sans-serif;
}

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

.logo {
  text-transform: uppercase;
}

.logo-suptext {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  color: #7b7b7c;
}

.logo-text {
  font-weight: 900;
  color: #093d93;
  font-size: 32px;
}

.button {
  width: 295px;
  height: 60px;
  background-color: #093d93;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  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;
  -webkit-box-shadow: inset 0px -4px 2px 0px #245ab2;
          box-shadow: inset 0px -4px 2px 0px #245ab2;
  -webkit-transition: all .1s ease-out;
  -o-transition: all .1s ease-out;
  transition: all .1s ease-out;
}

.button:hover {
  background-color: #245ab2;
  -webkit-box-shadow: 0px 5px 1px 0px #093d93;
          box-shadow: 0px 5px 1px 0px #093d93;
}

.button:active {
  -webkit-box-shadow: inset 0px 3px 0px 0px #093d93;
          box-shadow: inset 0px 3px 0px 0px #093d93;
}

.title {
  font-weight: 900;
  font-size: 37px;
  color: #093d93;
}

.title--main {
  text-align: center;
  font-size: 56px;
  color: #fff;
}

.title--white {
  text-align: center;
  font-weight: 900;
  color: #fff;
}

.text {
  font-weight: 500;
  font-size: 17px;
  line-height: 19px;
  color: #121213;
}

.link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #093d93;
  padding-bottom: 1px;
  padding-right: 20px;
}

.link::before, .link::after {
  content: '';
  position: absolute;
  background-color: #093d93;
}

.link::before {
  width: 93%;
  height: 2px;
  bottom: 0;
}

.link::after {
  width: 15px;
  height: 8px;
  background: url("/images/icons/arrow-down.png") no-repeat;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.divider-line {
  max-width: 1280px;
  height: 1px;
  background-color: #d7d7d9;
  margin: 35px auto;
}

.header {
  padding-top: 28px;
}

.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__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
}

.header__contacts-adress {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  color: #7b7b7c;
  text-transform: uppercase;
}

.header__contacts-phone {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: #093d93;
  font-size: 32px;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.header__contacts-phone:hover {
  color: #245ab2;
}

.promo {
  color: #fff;
  margin-top: 40px;
}

.promo__inner {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 575px;
  background: url("/images/bg/promo-bg.jpg") top center/cover no-repeat;
}

.promo__title {
  margin-bottom: 25px;
}

.promo__subtitle {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 31px;
}

.services__item {
  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;
}

.services__item--reverse .services__item-img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 40px;
  margin-right: 0;
}

.services__item-img {
  margin-right: 40px;
  width: 50%;
}

.services__item-info {
  width: 50%;
}

.services__item-title {
  margin-bottom: 30px;
}

.services__item-text {
  margin-bottom: 30px;
}

.banner__inner {
  min-height: 265px;
  background: url("/images/bg/banner-bg.jpg") center center/cover no-repeat;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.banner__title {
  margin-bottom: 25px;
}

.banner__descr {
  color: #fff;
  margin-bottom: 30px;
}

.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 295px 295px;
  grid-template-columns: 295px 295px;
  -ms-grid-rows: 160px 160px;
  grid-template-rows: 160px 160px;
  gap: 35px 35px;
}

.contacts__item {
  padding: 30px;
  position: relative;
  -webkit-transition: -webkit-box-shadow .5s;
  transition: -webkit-box-shadow .5s;
  -o-transition: box-shadow .5s;
  transition: box-shadow .5s;
  transition: box-shadow .5s, -webkit-box-shadow .5s;
  border: 1px solid #d7d7d9;
  color: #121213;
  font-weight: 400;
  font-size: 20px;
}

.contacts__item-title {
  font-weight: 500;
  color: #245ab2;
  margin-bottom: 40px;
}

.contacts__item-text address {
  font-style: normal;
}

.contacts__item-icon {
  content: '';
  position: absolute;
  right: 18px;
  top: 18px;
}

.contacts__item-link {
  color: #245ab2;
  text-decoration: underline;
}

.contacts__item:hover {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.7);
}

.contacts__item--accent {
  background-color: #245ab2;
  color: #fff;
  font-weight: 900;
}

.contacts__item--accent .contacts__item-title {
  font-weight: 900;
  color: #fff;
}

.footer {
  font-weight: 400;
  font-size: 14px;
}

.footer__copy span {
  text-transform: uppercase;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__link {
  text-align: right;
}

.footer__link:hover {
  color: #093d93;
}

@media (min-width: 1201px) and (max-width: 1300px) {
  .services__item-img img {
    max-width: 500px;
  }
  .contacts__map iframe {
    max-width: 480px;
  }
}

@media (max-width: 1200px) {
  .services__item-img img {
    width: 480px;
  }
  .contacts__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contacts__items {
    margin-bottom: 20px;
  }
}

@media (max-width: 976px) {
  .button:hover {
    background-color: #093d93;
    -webkit-box-shadow: inset 0px -4px 2px 0px #245ab2;
            box-shadow: inset 0px -4px 2px 0px #245ab2;
  }
  .button:active {
    -webkit-box-shadow: 0px -2px 1px 0px #245ab2;
            box-shadow: 0px -2px 1px 0px #245ab2;
  }
  .title--main {
    font-size: 45px;
  }
  .services__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .services__item--reverse .services__item-img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-left: 0;
  }
  .services__item-info {
    width: 80%;
  }
  .services__item-img {
    width: auto;
    margin-right: 0;
  }
  .reviews__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reviews__item {
    max-width: 300px;
    margin: 10px;
  }
  .reviews__item-text {
    font-size: 14px;
  }
  .banner__descr {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 30px;
  }
  .title--main {
    font-size: 35px;
  }
  .text {
    font-size: 14px;
  }
  .link {
    padding: 0;
  }
  .link::before {
    width: 100%;
  }
  .link::after {
    top: unset;
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -15px;
  }
  .button {
    width: 250px;
    font-size: 16px;
  }
  .logo-suptext {
    font-size: 10px;
  }
  .logo-text {
    font-size: 18px;
  }
  .header__contacts-address {
    font-size: 10px;
  }
  .header__contacts-phone {
    font-size: 18px;
  }
  .promo__title {
    text-align: center;
    font-size: 38px;
  }
  .promo__subtitle {
    font-size: 18px;
  }
  .services__item-info {
    width: auto;
  }
  .services__item-img {
    margin-bottom: 20px;
  }
  .services__item-img img {
    width: 100%;
  }
  .reviews__item {
    max-width: 100%;
  }
  .contacts__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__map iframe {
    max-width: 100%;
  }
  .footer__inner {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__copy {
    margin-bottom: 20px;
  }
  .footer__link {
    text-align: center;
  }
}
