:root {
  --color-black: #000;
  --color-white: #fff;
  --color-text: #4f4f4f;
  --color-text-2: #7599b8;
  --color-blue-1: #1d4369;
  --color-blue-2: #215783;
  --color-blue-3: #286ca2;
  --color-green: #92c738;
  --color-gray-1: #d4dee8;
  --color-gray-2: #e9eef2;
  --color-gray-3: #bed2e4;
  --color-link: #3da5ff
}

a {
  text-decoration: none
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px
}

.btn {
  align-items: center;
  border-radius: 3px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 14px;
  justify-content: center;
  line-height: 1.1428571429;
  padding: 8px 20px;
  text-transform: uppercase;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content
}

.btn-green {
  background: var(--color-green)
}

.btn-green:hover {
  background: var(--color-blue-1)
}

.btn-blue {
  background: var(--color-blue-3)
}

.btn-blue:hover {
  background: var(--color-green)
}

.btn-icon {
  background: var(--color-blue-3);
  padding: 8px;
  width: 32px
}

.btn-icon img {
  height: 16px;
  width: auto
}

.btn-icon:hover {
  background: var(--color-blue-1)
}

.header__top {
  background: var(--color-blue-2);
  box-shadow: 0 0 10px 0 rgba(29, 67, 105, .5);
  height: 60px
}

.header__top .container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between
}

.header__logo {
  flex-shrink: 0;
  width: 85px
}

.header__menu-button {
  display: none
}

.header__menu {
  justify-content: center;
  width: 100%
}

.header__action,
.header__menu {
  align-items: center;
  display: flex
}

.header__action {
  gap: 10px;
  justify-content: space-between;
  margin-left: auto
}

.header__lang,
.header__time {
  color: #fff;
  font-size: 13px
}

.header__lang {
  margin-left: 25px
}

.header__settings {
  flex-shrink: 0;
  width: 13px
}

.menu {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0
}

.menu a {
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 10px;
  text-transform: uppercase
}

.menu a:hover {
  background: var(--color-green)
}

.wrapper {
  grid-gap: 15px;
  display: grid;
  grid-template-columns: 180px auto 210px;
  padding-top: 10px;
  width: 100%
}

.sidebar {
  color: var(--color-blue-3)
}

.sidebar__block {
  background: var(--color-gray-2);
  margin-bottom: 15px
}

.sidebar__title {
  align-items: center;
  background: var(--color-blue-3);
  color: #fff;
  display: flex;
  justify-content: space-between;
  line-height: 1.1875;
  padding: 10px 15px;
  text-align: center;
  text-transform: uppercase
}

.sidebar__title img {
  width: 15px
}

.sidebar__title img:last-child {
  margin-left: 20px
}

.sidebar__subtitle {
  padding: 10px;
  text-transform: uppercase
}

.sidebar__category {
  align-items: center;
  background: var(--color-gray-1);
  display: flex;
  font-size: 13px;
  gap: 5px;
  padding: 6px 13px;
  position: relative
}

.sidebar__category:before {
  background-image: url(../img/arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 7px;
  position: absolute;
  right: 13px;
  top: auto;
  transition: all .3s ease-in-out;
  width: 12px
}

.sidebar__category img {
  width: 16px
}

.sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0
}

.sidebar__list a {
  align-items: center;
  border-bottom: 1px solid var(--color-gray-1);
  color: var(--color-blue-3);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  padding: 6px 13px
}

.sidebar__list a img {
  width: 16px
}

.sidebar__head {
  font-weight: 600;
  padding: 15px;
  text-align: center
}

.sidebar__actions {
  align-items: center;
  display: flex;
  padding: 0 15px
}

.sidebar__btn {
  align-items: center;
  background: var(--color-gray-1);
  color: #fff;
  display: flex;
  font-size: 11px;
  gap: 5px;
  padding: 8px 13px;
  width: 50%
}

.sidebar__btn-active {
  background: var(--color-blue-2)
}

.sidebar__btn img {
  width: 8px
}

.sidebar__form {
  margin-top: 5px;
  padding: 0 15px
}

.sidebar__form .btn {
  width: 100%
}

.sidebar__input {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 3px;
  color: var(--color-blue-2);
  display: flex;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  padding: 6px 9px;
  position: relative;
  width: 100%
}

.sidebar__input::-moz-placeholder {
  color: var(--color-blue-2)
}

.sidebar__input::placeholder {
  color: var(--color-blue-2)
}

.sidebar__input-select:before {
  background-image: url(../img/arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 7px;
  position: absolute;
  right: 13px;
  top: auto;
  transform: rotate(180deg);
  transition: all .3s ease-in-out;
  width: 12px
}

.sidebar__text {
  color: var(--color-text-2);
  font-size: 11px;
  margin-top: 15px;
  padding-bottom: 15px;
  text-align: center
}

.sidebar__image {
  display: block;
  padding: 5px 5px 30px
}

.content {
  background: var(--color-gray-2)
}

.content__wrap {
  padding: 35px 30px
}

.content h1 {
  font-size: 30px
}

.content h1,
.content h2,
.content h3,
.content h4 {
  font-weight: 400;
  line-height: 1.1666666667;
  margin: 0 0 10px
}

.content h2,
.content h3,
.content h4 {
  font-size: 24px
}

.content p {
  margin-bottom: 20px;
  margin-top: 0
}

.banner {
  background-position: 50%;
  background-size: cover;
  padding: 50px;
  position: relative
}

.banner:before {
  background-color: rgba(29, 67, 105, .5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.banner__block {
  position: relative;
  z-index: 2
}

.banner .h1 {
  color: #fff;
  font-size: 35px;
  line-height: 1.1714285714;
  margin: 0
}

.banner p {
  color: #fff;
  font-size: 14px;
  line-height: 1.1428571429;
  margin: 10px 0
}

.banner-1 {
  background-image: url(../img/bg-1.webp)
}

.banner-2 {
  background-image: url(../img/bg-2.webp)
}

.banner-3 {
  background-image: url(../img/bg-3.webp)
}

.banner-4 {
  background-image: url(../img/bg-4.webp)
}

.table {
  margin: 20px 0;
  overflow: auto;
  width: 100%
}

.table table {
  border-spacing: 0;
  width: 100%
}

.table table td {
  border: 1px solid var(--color-text);
  padding: 10px
}

.table table td+td {
  border-left: 0
}

.table table tr+tr td {
  border-top: 0
}

.faq {
  grid-gap: 5px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr
}

.faq h3 {
  align-items: center;
  background: #fff;
  border-radius: 3px;
  display: flex;
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;
  margin: 0;
  padding: 13px 30px 13px 10px;
  position: relative;
  text-align: left
}

.faq h3:before {
  background-image: url(../img/arrow.svg);
  content: "";
  height: 7px;
  position: absolute;
  right: 15px;
  top: auto;
  transform: rotate(180deg);
  width: 12px
}

.faq__item {
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  height: -moz-min-content;
  height: min-content;
  overflow: hidden
}

.faq__item.active h3:before {
  transform: rotate(0)
}

.faq__answer {
  height: 0;
  overflow: hidden;
  transition: all .2s linear
}

.faq__answer p {
  margin: 0;
  padding: 0 30px 10px 10px
}

.footer {
  padding-bottom: 35px
}

.footer__block {
  background: var(--color-blue-2);
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 15px
}

.footer__block-flex {
  display: flex
}

.footer__block-social {
  width: 100%
}

.footer__block p {
  color: var(--color-gray-3);
  font-size: 12px;
  margin: 0
}

.footer__title {
  color: #fff;
  margin-bottom: 10px
}

.footer__wrap {
  width: 50%
}

.footer__logo {
  align-items: center;
  display: flex;
  justify-content: space-between
}

.footer__row {
  display: flex;
  gap: 8px
}

.footer__support {
  align-items: center;
  display: flex;
  gap: 15px;
  height: 100%;
  white-space: nowrap
}

.footer__support .footer__title {
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase
}

.footer__support a {
  color: var(--color-gray-3);
  font-size: 16px
}

.footer__support img {
  width: 33px
}

.footer__social {
  gap: 10px;
  width: 100%
}

.footer__social,
.footer__social a {
  align-items: center;
  display: flex;
  justify-content: center
}

.footer__social a {
  background: var(--color-gray-2);
  border-radius: 50%;
  height: 30px;
  width: 30px
}

.footer__social a:hover {
  background: var(--color-blue-1)
}

.footer__social a img {
  width: 16px
}

.footer__age {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 100%
}

.footer .btn {
  width: 100%
}

.footer__grid {
  grid-gap: 8px;
  display: grid;
  grid-template-columns: auto 270px 270px
}

.footer__grid .footer__block {
  align-items: center;
  display: flex
}

.footer__grid>.footer__block {
  margin: 0
}

@media screen and (max-width:1240px) {
  .menu a {
    font-size: 12px
  }

  .header__lang {
    margin-left: 5px
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto
  }

  .footer__wrapper {
    grid-column: 1/3
  }
}

@media screen and (max-width:1140px) {

  .header__action .btn-icon,
  .header__lang,
  .header__settings,
  .header__time {
    display: none
  }

  .footer__block-flex {
    flex-direction: column;
    gap: 40px
  }

  .footer__wrap {
    width: 100%
  }
}

@media screen and (max-width:1024px) {
  .sidebar {
    order: 0
  }

  .sidebar:last-child {
    order: 1
  }

  .wrapper {
    display: flex;
    flex-direction: column;
    gap: 0
  }

  .content {
    order: 2
  }

  .header__logo {
    width: 70px
  }

  .header__menu-button {
    background: hsla(0, 0%, 100%, 0);
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    letter-spacing: normal;
    margin-right: 15px;
    padding: 0;
    text-transform: none;
    white-space: nowrap;
    z-index: 1001
  }

  .header__menu-button svg {
    display: block;
    overflow: visible;
    width: 30px
  }

  .header__menu-button .path {
    fill: #fff;
    stroke: #fff
  }

  .header__menu-button rect {
    transition: all .3s linear
  }

  .header__menu-button.active .rect1 {
    transform: rotate(45deg);
    transform-origin: 6px 13px
  }

  .header__menu-button.active .rect2 {
    display: none
  }

  .header__menu-button.active .rect3 {
    transform: rotate(-45deg);
    transform-origin: 6px 10px
  }

  .header .btn {
    font-size: 8px
  }

  .header__top {
    height: 65px
  }

  .sidebar__form .btn {
    font-size: 16px;
    width: 100%
  }

  .banner {
    padding: 20px 15px 40px
  }

  .content__wrap {
    font-size: 14px;
    line-height: 1.5;
    padding: 35px 15px
  }

  .faq {
    grid-template-columns: 1fr
  }

  .faq h3 {
    font-size: 16px
  }

  .footer__logo img {
    max-height: 45px;
    max-width: 45px
  }

  .footer__grid {
    display: flex;
    flex-wrap: wrap
  }

  .footer__grid .footer__block,
  .footer__grid .footer__wrapper {
    width: 100%
  }

  .footer__grid .footer__age {
    justify-content: center;
    width: 100%
  }

  .menu {
    display: block;
    padding: 15px 0
  }

  .menu a {
    font-size: 15px;
    text-align: center
  }

  .header__menu {
    background: var(--color-blue-2);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 70px;
    transition: all .3s ease;
    visibility: hidden;
    z-index: 1000
  }

  .header__menu.active {
    opacity: 1;
    visibility: visible
  }
}

.page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0
}

.img-micro {
  float: left;
  margin: 20px 20px 20px 0;
  max-width: 200px
}

.img-micro-right {
  float: right;
  margin: 20px 0 20px 20px;
  max-width: 200px
}

.big-img {
  width: 100%
}