* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 10px;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  position: relative;
  touch-action: none;
}

img {
  width: 100%;
  height: auto;
}

.ui-overlay-a,
.ui-page-theme-a,
.ui-page-theme-a .ui-panel-wrapper {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
  text-shadow: none !important;
}

.header {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  border-bottom: 2px solid #4955a11a;
  display: flex;
  align-items: center;
}

.header .language-switcher a {
  color: #4955a1;
  line-height: 1;
}

.header .language-switcher a.is-active {
  border-bottom: 1px solid #4955a1;
}

.header .logo {
  margin-left: auto;
  text-align: center;
}

.header .logo img {
  width: 150px;
  cursor: pointer;
}

.header .mobile-menu__button {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .mobile-menu__button .button__box {
  position: relative;
  width: 28px;
  height: 20px;
}

.header .mobile-menu__button .button__box .button__inner,
.header .mobile-menu__button .button__box .button__inner::before,
.header .mobile-menu__button .button__box .button__inner::after {
  background-color: #4955a1;
  position: absolute;
  height: 2px;
  border-radius: 5px;
  width: 100%;
  transition: 0.15s;
}

.header .mobile-menu__button .button__box .button__inner::before,
.header .mobile-menu__button .button__box .button__inner::after {
  display: block;
  content: '';
  top: 18px;
}

.header .mobile-menu__button .button__box .button__inner::before {
  top: 9px;
}

.header .mobile-menu__button.is-active .button__inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.header .mobile-menu__button.is-active .button__inner::before {
  opacity: 0;
  transform: rotate(-45deg) translateY(0);
}

.header .mobile-menu__button.is-active .button__inner::after {
  transform: translateY(-18px) rotate(-90deg);
}

#container {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  scrollbar-width: none;
}

.container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

#container .article {
  background-color: white;
  padding: 20px;
}

.menu {
  width: 100%;
  max-width: 1000px;
  position: fixed;
  right: 0;
  left: 0;
  top: 95px;
  bottom: 0;
  margin: 0 auto;
  background-color: #fff;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.menu ul {
  padding: 0 20px 20px;
  text-align: center;
}

.menu .menu-item {
  cursor: pointer;
  padding: 10px 0;
  color: #4955a1;
  font-size: 2rem;
  font-weight: 500;
}

.menu .menu-item.active {
  color: #B38510;
}

.menu .menu-item:not(:last-child) {
  border-bottom: 1px solid #4955a12e;
}

#container .home-page {
  padding: 20px 0;
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.social p {
  flex: 0 1 100%;
  text-align: center;
  font-size: 25px;
  /* color: #4955a1; */
}

.social>div {
  padding: 15px 10px 0;
  text-align: center;
}

.social img {
  width: auto;
}

.logos {
  margin-top: 30px;
}

.logos .logos-container {
  display: flex;
  gap: 20px;
}

.logos .logo {
  text-align: center;
}

.logos .logo img {
  height: 50px;
  width: auto;
}

.logos .logo p {
  font-size: 12px;
}

.logos .logos-text {
  margin-top: 10px;
  text-align: center;
}

.home-page .footer {
  padding: 10px 20px;
  background-color: #4955a1;
  text-align: center;
}

.home-page .footer p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}

.article h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #4955a1;
  border-bottom: 2px solid currentColor;
}

.article h2 span {
  font-size: 18px;
  color: #000;
  display: block;
  font-weight: 300;
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.item .item__value {
  font-size: 18px;
  font-weight: 300;
}

.item .item__value:first-child {
  margin-right: 20px;
}

.item .item__value span {
  font-size: 1.4rem;
  display: block;
}

.article .after {
  background-color: #f6f6f6;
  padding: 10px;
  margin-bottom: 20px;
}

.article .after span {
  display: block;
}

@media (max-width: 1000px) {
  .logos .logos-container {
    flex-wrap: wrap;
    gap: 0;
    row-gap: 20px;
  }

  .logos .logo {
    flex: 0 1 25%;
  }
}

@media (max-width: 750px) {
  .logos .logo {
    flex: 0 1 33.3%;
  }
}

@media (max-width: 535px) {
  .logos .logo {
    flex: 0 1 50%;
  }
}

@media (max-width: 370px) {
  .logos .logo {
    flex: 0 1 100%;
  }
}