@import url(https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;

400;500;600;700;900&family=Roboto:wght@300;400;500;700&display=swap);.container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}

.strong-container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
}

.column-1 {
  width: 50%;
}

@media (max-width: 768px) {
  .column-1 {
    width: 100%;
  }
}

.column-full {
  width: 100%;
}

.flex-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: #e5e5e5;
}

html *,
body * {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Fira Sans", sans-serif;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 32px;
}

a {
  text-decoration: none;
}

.input-field {
  padding-right: 20px;
  width: 100%;
  max-width: 100%;
}

.input-field input,
.input-field textarea {
  background: none;
  font-size: 18px;
  line-height: 160%;
  border: none;
  border-bottom: 1px solid #34343481;
  outline: none;
  box-shadow: none;
  padding: 6px 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
}

.input-field input:focus,
.input-field input:active,
.input-field textarea:focus,
.input-field textarea:active {
  border-bottom: 1px solid #343434;
}

.input-field.backgrounded input,
.input-field.backgrounded textarea {
  border: none;
  padding-left: 10px;
  margin-right: 0;
  background: #efefef;
}

.primary-button {
  color: #fff;
  font-weight: 500;
  background: #0069b4;
  font-size: 18px;
  padding: 15px 60px;
  font-family: "Fira Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.3s;
  box-shadow: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.primary-button.small {
  padding: 10px 20px;
  font-size: 14px;
}

.primary-button:hover {
  background: #0078ce;
  transition: background 0.3s;
}

.secondary-button {
  display: inline-block;
  color: #0069b4;
  font-weight: 600;
  background: none;
  border: 2px solid #0069b4;
  font-size: 18px;
  padding: 15px 60px;
  font-family: "Fira Sans", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.secondary-button:hover {
  color: #1ba0ff;
  border: 2px solid #1ba0ff;
  transition: all 0.3s;
}

.secondary-button:hover.arrow-button::after {
  right: 15px;
  transition: right 0.4s;
}

.secondary-button.arrow-button {
  padding-right: 60px;
  position: relative;
  padding-left: 20px;
}

.secondary-button.arrow-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 22px;
  height: 20px;
  background-image: url("/img/right-arrow-blue.svg");
  background-size: contain;
  transition: right 0.4s;
}

nav.navbar {
  position: relative;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background-color: #fff;
}

nav.navbar > .strong-container {
  margin: 0 auto;
}

nav.navbar > .strong-container > .column-full {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #34343430;
}

nav.navbar .logo {
  display: block;
  max-width: 174px;
  margin-right: 40px;
}

@media (max-width: 360px) {
  nav.navbar .logo {
    max-width: 124px;
  }
}

nav.navbar .logo img {
  width: 100%;
}

nav.navbar .left-menu {
  padding-top: 10px;
}

nav.navbar .right-menu {
  margin-left: auto;
  padding-top: 10px;
}

nav.navbar .right-menu a:first-of-type .menu__text-item {
  border-left: 1px solid #34343430;
  padding-left: 30px;
}

nav.navbar .right-menu .menu__item {
  background-size: contain;
  width: 46px;
  height: 46px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

nav.navbar .right-menu .menu__item.menu__item-message {
  background-image: url("/img/message-icon.svg");
}

nav.navbar .right-menu .menu__item.menu__item-personal {
  background-image: url("/img/personal-icon.svg");
}

nav.navbar .right-menu .menu__item.menu__item-lang {
  background-image: url("/img/ru-icon.png");
}

nav.navbar .right-menu .menu__item.menu__item-lang.en {
  background-image: url("/img/en-icon.png");
}

@media (max-width: 550px) {
  nav.navbar .right-menu .menu__item {
    display: none;
  }
}

nav.navbar .right-menu .menu__item.menu__item-burger {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-image: url("/img/menu.svg");
}

@media (max-width: 1070px) {
  nav.navbar .right-menu .menu__item.menu__item-burger {
    display: inline-block !important;
  }
}

@media (max-width: 360px) {
  nav.navbar .right-menu .menu__item {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 400px) {
  nav.navbar .right-menu .menu__item {
    width: 32px;
    height: 32px;
  }
}

nav.navbar .menu__text-item {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  color: #1d1e21;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  nav.navbar .menu__text-item {
    font-size: 12px;
  }
}

@media (max-width: 1070px) {
  nav.navbar .menu__text-item {
    display: none;
    margin-bottom: 20px;
  }
}

.popup-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  background-color: #fff;
  z-index: 10;
}

.popup-menu.is-closed {
  display: none;
}

.popup-menu.is-open {
  display: flex !important;
}

.popup-menu .menu-close {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-image: url("/img/close.svg");
  background-size: contain;
  display: block;
  z-index: 11;
  padding: 10px;
}

@media (max-width: 360px) {
  .popup-menu .menu-close {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 400px) {
  .popup-menu .menu-close {
    width: 32px;
    height: 32px;
  }
}

.popup-menu > div {
  margin: auto;
  padding: 20px;
}

.popup-menu .menu__item {
  background-size: contain;
  width: 46px;
  height: 46px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  margin-top: 40px;
}

.popup-menu .menu__item.menu__item-message {
  margin-left: 0;
  background-image: url("/img/message-icon.svg");
}

.popup-menu .menu__item.menu__item-personal {
  background-image: url("/img/personal-icon.svg");
}

.popup-menu .menu__item.menu__item-lang {
  background-image: url("/img/ru-icon.png");
}

.popup-menu .menu__item.menu__item-lang.en {
  background-image: url("/img/en-icon.png");
}

@media (max-width: 550px) {
  .popup-menu .menu__item {
    display: inline-block;
  }
}

.popup-menu .menu__item.menu__item-burger {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-image: url("/img/menu.svg");
}

@media (max-width: 1070px) {
  .popup-menu .menu__item.menu__item-burger {
    display: inline-block !important;
  }
}

@media (max-width: 400px) {
  .popup-menu .menu__item {
    width: 32px;
    height: 32px;
  }
}

.popup-menu .menu__text-item {
  display: block;
  color: #1d1e21;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.header {
  min-height: calc(100vh - 100px);
}

@media (max-width: 768px) {
  .header {
    min-height: none;
  }
}

.header .header-image {
  background-image: url("/img/header-image.png");
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 768px) {
  .header .header-image {
    display: none;
  }
}

.header .header-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header-logo .navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}

.header .header-logo .navbar .logo {
  float: left;
  max-width: 174px;
}

@media (max-width: 360px) {
  .header .header-logo .navbar .logo {
    max-width: 124px;
  }
}

.header .header-logo .navbar .logo img {
  width: 100%;
}

.header .header-logo .navbar .navbar-burger {
  display: inline-block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-image: url("/img/menu.svg");
  background-size: 100%;
  vertical-align: middle;
  margin-left: 10px;
}

.header .header-logo .navbar .menu {
  float: right;
  padding-top: 10px;
}

.header .header-logo .navbar .menu .menu__item {
  background-size: contain;
  width: 46px;
  height: 46px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.header .header-logo .navbar .menu .menu__item.menu__item-message {
  background-image: url("/img/message-icon.svg");
}

.header .header-logo .navbar .menu .menu__item.menu__item-personal {
  background-image: url("/img/personal-icon.svg");
}

.header .header-logo .navbar .menu .menu__item.menu__item-lang {
  background-image: url("/img/ru-icon.png");
}

.header .header-logo .navbar .menu .menu__item.menu__item-lang.en {
  background-image: url("/img/en-icon.png");
}

@media (max-width: 450px) {
  .header .header-logo .navbar .menu .menu__item.menu__item-lang {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 880px) {
  .header .header-logo .navbar .menu .menu__item.menu__item-lang {
    display: none;
  }
}

@media (max-width: 360px) {
  .header .header-logo .navbar .menu .menu__item {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 400px) {
  .header .header-logo .navbar .menu .menu__item {
    width: 32px;
    height: 32px;
  }
}

.header .header-logo .navbar .menu .menu__text-item {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  color: #1d1e21;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 3px;
}

@media (max-width: 1270px) {
  .header .header-logo .navbar .menu .menu__text-item {
    display: none;
    margin-bottom: 20px;
  }
}

.header h1 {
  font-size: 48px;
  text-transform: uppercase;
  color: #343434;
  margin-bottom: 40px;
}

@media (max-width: 1166px) {
  .header h1 {
    font-size: 32px;
  }
}

@media (max-width: 400px) {
  .header h1 {
    font-size: 24px;
  }
}

.about .about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.about .about-content > div {
  padding: 40px 30px;
}

.about .about-content p {
  font-size: 16px;
  line-height: 160%;
  color: #343434;
}

.about .about-squares .about-squares__item {
  height: 300px;
  cursor: pointer;
}

.about .about-squares .about-squares__item h3 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  text-decoration: none;
}

.about .about-squares .about-squares__item > div {
  padding: 10px;
  height: 100%;
  position: relative;
  z-index: 0;
}

.about .about-squares .about-squares__item > div > a {
  text-decoration: none;
}

.about .about-squares .about-squares__item .about-squares__item-background {
  background-size: cover;
  background-position: 50%;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
}

.about .about-squares .about-squares__item .about-squares__item-button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  max-width: 100%;
  max-height: 100%;
  background-color: #0069b4;
  transition: all 0.2s;
  z-index: -1;
}

.about .about-squares .about-squares__item .about-squares__item-button img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.about .about-squares .about-squares__item:hover .about-squares__item-button {
  width: 1800px;
  height: 900px;
  transition: all 0.7s;
  transition-timing-function: ease-in-out;
}

.about h2 {
  color: #0069b4;
}

.news {
  padding: 0 30px;
  margin-bottom: 50px;
  width: 100%;
  overflow-x: hidden;
}

.news h2 {
  color: #343434;
}

.news > .container {
  padding: 20px 0;
}

.news .news-pagination {
  text-align: right;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .news .news-pagination {
    text-align: left;
  }
}

.news .news-slider {
  display: block;
  white-space: nowrap;
  position: relative;
  left: 0;
  transition: left 0.4s;
  font-size: 0;
  width: 100%;
}

.news .news-slider .news-slider__item {
  display: inline-block;
  width: 350px;
  max-width: 350px;
  height: 100%;
  background-color: #fff;
  position: relative;
  margin-right: 30px;
  white-space: normal;
}

@media (max-width: 400px) {
  .news .news-slider .news-slider__item {
    width: 260px;
    max-width: 260px;
  }
}

.news .news-slider .news-slider__item .news-slider__item-image {
  background-size: cover;
  background-position: 50%;
  height: 215px;
  position: relative;
  z-index: 1;
}

.news .news-slider .news-slider__item .news-slider__item-content {
  padding: 28px;
  position: relative;
  z-index: 1;
}

.news .news-slider .news-slider__item .news-slider__item-content h4 {
  color: #0069b4;
  font-size: 16px;
  transition: all 0.2s;
  height: 120px;
}

.news .news-slider .news-slider__item .news-slider__item-content .news-slider__item-date {
  color: #343434;
  font-size: 14px;
  transition: all 0.2s;
}

.news .news-slider .news-slider__item .news-slider__item-content:hover .news-slider__item-button {
  width: 600px;
  height: 600px;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
  z-index: -1;
}

.news .news-slider .news-slider__item .news-slider__item-content:hover h4 {
  color: #fff !important;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
}

.news .news-slider .news-slider__item .news-slider__item-content:hover .news-slider__item-date {
  color: #fff !important;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
}

.news .news-slider .news-slider__item .news-slider__item-button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  max-width: 100%;
  max-height: 100%;
  background-color: #0069b4;
  transition: all 0.2s;
  z-index: 0;
}

.news .news-slider .news-slider__item .news-slider__item-button img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.devices {
  height: auto;
}

@media (max-width: 768px) {
  .devices {
    min-height: none;
  }
}

.devices .devices-image {
  background-image: url("/img/devices-image.png");
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 768px) {
  .devices .devices-image {
    display: none;
  }
}

.devices .devices-content {
  background-color: #0069b4;
  padding: 30px 50px;
  padding-bottom: 60px;
}

.devices .devices-content p {
  color: #fff;
  font-size: 16px;
  line-height: 160%;
}

.devices .devices-content .devices-content__logo-block {
  font-size: 0;
}

.devices .devices-content .devices-content__logo-block > div {
  width: calc(33% - 20px);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.devices .devices-content .devices-content__logo-block > div img {
  max-width: 100%;
}

.devices h2 {
  color: #fff;
}

.rules {
  height: auto;
}

@media (max-width: 768px) {
  .rules {
    min-height: none;
  }
}

.rules .rules-image {
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 768px) {
  .rules .rules-image {
    height: 300px;
  }
}

.rules .rules-content {
  background-color: #fff;
  padding: 30px 50px;
  padding-bottom: 60px;
}

.rules .rules-content p {
  font-size: 16px;
  line-height: 160%;
}

.rules h2 {
  color: #0069b4;
}

.block {
  height: auto;
}

@media (max-width: 768px) {
  .block {
    min-height: none;
  }
}

.block .block-image {
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 768px) {
  .block .block-image {
    height: 300px;
  }
}

.block .block-content {
  background-color: #fff;
  padding: 30px 50px;
  padding-bottom: 60px;
}

.block .block-content p {
  font-size: 16px;
  line-height: 160%;
}

.block h2 {
  color: #0069b4;
}

.people {
  position: relative;
}

.people .people-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.people .people-content > div {
  padding: 40px 30px;
}

@media (max-width: 768px) {
  .people .people-content > div {
    padding-bottom: 60px;
  }
}

.people .people-content p {
  font-size: 16px;
  line-height: 160%;
  color: #343434;
}

.people .people-content h2 {
  color: #1d1e21;
}

.people .people-slider {
  padding: 50px;
  display: block;
  white-space: nowrap;
  position: relative;
  left: 0;
  transition: left 0.4s;
  font-size: 0;
  width: 100%;
}

.people .people-slider .people-slider__item {
  position: relative;
  display: inline-block;
  width: 350px;
  height: 350px;
  margin-right: 25px;
  white-space: normal;
  background-size: cover;
  background-position: 50%;
}

@media (max-width: 400px) {
  .people .people-slider .people-slider__item {
    width: 240px;
    max-width: 240px;
  }
}

.people .people-slider .people-slider__item .people-slider__item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: rgba(0, 105, 180, 0.9);
}

.people .people-slider .people-slider__item .people-slider__item-content div {
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
}

.people .people-slider .people-slider__item .people-slider__item-content p {
  color: #fff;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 14px;
}

.people .people-pagination {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 !important;
  text-align: right;
}

.pagination {
  font-size: 0;
}

.pagination .pagination__button {
  display: inline-block;
  position: relative;
  width: 55px;
  height: 55px;
  background-color: #0069b4;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.pagination .pagination__button:hover {
  background: #0078ce;
  transition: background 0.3s;
}

.pagination .pagination__button:first-of-type {
  margin-right: 5px;
}

.pagination .pagination__button img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

footer {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

footer.alt-footer {
  background-color: #f5f5f5;
}

footer.alt-footer h2 {
  margin-top: 80px;
}

@media (max-width: 768px) {
  footer.alt-footer .column-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

footer .column-padding {
  padding: 80px 30px;
}

footer h2 {
  color: #0069b4;
}

footer p {
  font-size: 16px;
  line-height: 25px;
  color: #343434;
  margin-bottom: 20px;
}

footer .footer-border-right {
  border-right: 1px solid #e5e5e5;
}

footer .footer-border-top {
  border-top: 1px solid #e5e5e5;
}

footer form .input-field {
  margin-bottom: 20px;
}

footer .menu-buttons {
  padding-top: 80px;
}

@media (max-width: 768px) {
  footer .menu-buttons {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
  }
}

footer .menu-buttons .menu-buttons__button {
  margin-bottom: 20px;
}

footer .footer-menu {
  border-top: 1px solid #e5e5e5;
}

footer .footer-menu > .column-1 > div {
  padding: 30px;
}

footer .footer-menu .logo {
  max-width: 250px;
}

footer .footer-menu .logo img {
  width: 100%;
}

footer .footer-menu .footer-menu__items {
  padding-top: 30px;
}

footer .footer-menu .footer-menu__items .column-1:last-of-type {
  padding-left: 10px;
}

@media (max-width: 1200px) {
  footer .footer-menu .footer-menu__items .column-1 {
    display: block !important;
    width: 100%;
    padding-left: 0 !important;
  }
}

@media (max-width: 768px) {
  footer .footer-menu .footer-menu__items {
    padding-top: 0px;
    padding-bottom: 40px;
  }
}

footer .footer-menu .footer-menu__items .container {
  padding: 0;
  padding-left: 30px;
}

footer .footer-menu .footer-menu__items a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 200%;
  color: #343434;
}

.page {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}

.page h1 {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.05em;
  color: #0069b4;
}

.page p {
  font-size: 16px;
  line-height: 160%;
  color: #343434;
}

.page .page__content img {
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .page .page__content img {
    height: auto;
  }
}

.page .page__image {
  width: 100%;
  padding-left: 40px;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .page .page__image {
    margin-top: 40px;
    padding: 0;
  }
}

.page .page__image img {
  max-width: 100%;
}

.page.page-service .page__image {
  padding: 0;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .page.page-service .page__image {
    margin-bottom: 10px;
    margin-top: 0px;
  }
}

@media (max-width: 600px) {
  .page.page-service h1 {
    font-size: 32px;
    line-height: 140%;
  }
}

@media (max-width: 400px) {
  .page.page-service h1 {
    font-size: 24px;
    line-height: 120%;
  }
}

.page.page-service .page-service__other {
  padding-left: 60px;
}

@media (max-width: 768px) {
  .page.page-service .page-service__other {
    padding-left: 0;
  }
}

.page.page-service .page-service__other h2 {
  font-size: 24px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .page.page-service .page-service__other h2 {
    padding-left: 0;
  }
}

.page.page-service .page-service__other a:first-of-type .page-service__other-item {
  margin-top: 20px;
  border-top: 1px solid #3434344f;
}

.page.page-service .page-service__other .page-service__other-item {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #3434344f;
  border-top: none;
  padding: 40px 20px;
  z-index: 0;
}

.page.page-service .page-service__other .page-service__other-item h4 {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  color: #0069b4;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
}

.page.page-service .page-service__other .page-service__other-item .page-service__other-item__button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  max-width: 100%;
  max-height: 100%;
  background-color: #0069b4;
  transition: all 0.2s;
  z-index: -1;
}

.page.page-service .page-service__other .page-service__other-item .page-service__other-item__button img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.page.page-service .page-service__other .page-service__other-item:hover h4 {
  color: #fff;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
}

.page.page-service .page-service__other .page-service__other-item:hover .page-service__other-item__button {
  width: 1800px;
  height: 600px;
  transition: all 0.7s;
  transition-timing-function: ease-in-out;
}

.page.page-contacts {
  padding-bottom: 0;
}

.page.page-contacts .page-contacts__address {
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
  padding-right: 50px;
}

.page.page-contacts .page-contacts__links {
  padding-right: 60px;
}

.page.page-contacts .page-contacts__links a {
  display: block;
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 160%;
  color: #0069b4;
}

.page.page-contacts .page-contacts__right {
  font-size: 0;
}

.page.page-contacts .page-contacts__right > div {
  display: inline-block;
  vertical-align: top;
}

.page.page-contacts .page-contacts__map {
  height: 350px;
  display: block;
  margin-top: 80px;
}

.news-slider.fsa .news-slider__item-button {
  background-color: #4a4c52 !important;
}

.news-page {
  background-color: #fff;
  overflow-x: hidden;
}

.news-page .news {
  padding: 0;
  overflow-x: visible;
}

.news-page .news .news-slider .news-slider__item {
  width: 336px;
}

.news-page .news .news-slider .news-slider__item-content {
  background-color: #0000000e;
}

.news-page .news .news-slider .news-slider__item-button {
  background: #4a4c52;
}

.news-page .news-divider {
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.164);
  width: 100%;
  height: 1px;
  padding-top: 60px;
  margin-top: 60px;
}

.news-page .news-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% + 30px);
  height: auto;
  margin-left: -30px;
}

.news-page .news-list .news-list__item {
  flex: 1 0 calc(33% - 30px);
  max-width: calc(33% - 30px);
  background-color: #fff;
  position: relative;
  margin-left: 30px;
  margin-top: 30px;
  white-space: normal;
}

@media (max-width: 768px) {
  .news-page .news-list .news-list__item {
    flex: 1 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 700px) {
  .news-page .news-list .news-list__item {
    flex: 1 0 100%;
    max-width: calc(100% - 30px);
    margin-right: 30px;
  }
}

.news-page .news-list .news-list__item .news-list__item-image {
  background-size: cover;
  background-position: 50%;
  height: 215px;
  position: relative;
  z-index: 1;
}

.news-page .news-list .news-list__item .news-list__item-content {
  padding: 28px;
  position: relative;
  z-index: 1;
  background-color: #0000000e;
}

.news-page .news-list .news-list__item .news-list__item-content h4 {
  color: #0069b4;
  font-size: 16px;
  transition: all 0.2s;
}

.news-page .news-list .news-list__item .news-list__item-content .news-list__item-date {
  color: #343434;
  font-size: 14px;
  transition: all 0.2s;
}

.news-page .news-list .news-list__item .news-list__item-content:hover .news-list__item-button {
  width: 600px;
  height: 600px;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
  z-index: -1;
}

.news-page .news-list .news-list__item .news-list__item-content:hover h4 {
  color: #fff !important;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
}

.news-page .news-list .news-list__item .news-list__item-content:hover .news-list__item-date {
  color: #fff !important;
  transition: all 0.4s;
  transition-timing-function: ease-in-out;
}

.news-page .news-list .news-list__item .news-list__item-button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  max-width: 100%;
  max-height: 100%;
  background-color: #0069b4;
  transition: all 0.2s;
  z-index: 0;
}

.news-page .news-list .news-list__item .news-list__item-button img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.login-block {
  max-width: 500px;
  width: 100%;
  margin: auto;
  background: #fff;
}

.login-block button {
  padding: 10px 15px;
  font-size: 16px;
  margin-top: 10px;
}

.login-block .input-field .invalid-feedback {
  color: red;
  padding: 10px 0;
}

.login-block .input-field input {
  border: none;
  padding-left: 10px;
  margin-right: 0;
  background: #efefef;
}

.lk .lk__chat {
  max-height: 600px;
  overflow-y: scroll;
  margin-bottom: 20px;
}

.lk .lk__chat .lk__chat-item {
  margin-bottom: 20px;
}

.lk .lk__chat .lk__chat-item .lk__chat-message {
  font-weight: normal;
  background: #f3f3f3;
  padding: 15px 20px;
}

.lk .lk__chat .lk__chat-item .lk__chat-message.is-manager {
  background: #d7ebff;
}

.lk .lk__chat .lk__chat-item .lk__chat-date {
  color: #adadad;
  font-size: 14px;
  font-weight: 300;
  padding-left: 20px;
}

.lk .lk__chat .lk__chat-item .lk__chat-file {
  background: #e1e0e0;
  padding: 10px;
}

.lk .lk__chat .lk__chat-item .lk__chat-file * {
  vertical-align: middle;
}

.lk .lk__chat .lk__chat-item .lk__chat-file img {
  width: 20px;
}

.lk .lk__chat .lk__chat-item .lk__chat-file a {
  font-size: 12px;
  color: #000;
}

.lk .lk__chat .lk__chat-item .lk__chat-file a span {
  padding-left: 10px;
}

.lk .logout-link {
  color: #6e8eca;
  margin-left: 20px;
}

.lk form textarea {
  font-size: 14px;
}

.lk form label {
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
}

.lk form label img {
  width: 24px;
  height: 24px;
}

.lk .files-column {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .lk .files-column {
    padding-left: 20px;
    margin-top: 0;
  }

  .lk .lk__chat {
    padding-right: 20px;
  }
}

