@font-face {
  font-family: 'Lucida Grande';
  src: url('..//fonts/lucida-sans-unicode.woff2') format('woff2'),
    url('..//fonts/lucida-sans-unicode.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #00f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
  font-size: 14.5px;
  line-height: 24px;
  -webkit-tap-highlight-color: transparent;
  background: url(..//img/body_bg.webp);
}

.wrapper {
  overflow: hidden;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2%;
}

.logo_box {
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.logo_box img {
  padding-left: 4%;
}

.logo_box h1 {
  color: #0788b5;
  font-family: 'Times New Roman PS';
  font-weight: 300;
  font-size: 39px;
  line-height: 39px;
  margin: 10px 0 0 0;
}

.menu_content {
  margin-top: 50px;
}

.menu_content {
  display: flex;
  gap: 25px;
}

.menu {
  width: fit-content;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menu_item {
  font-family: 'Times New Roman PS';
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-align: right;
  cursor: pointer;
  line-height: 24px;
  padding: 1px 6px 1px 24px;
  background-color: #ff9200;
  width: fit-content;
  margin-bottom: 2px;
}

.menu_item:hover {
  opacity: .1;
  transition: opacity 500ms ease-out;
}

.menu_item:nth-child(2) {
  background-color: #0788b5;
}

.menu_item:nth-child(3) {
  background-color: #0a50ff;
}

.menu_item:nth-child(4) {
  background-color: #b14f00;
}

.menu_item:nth-child(5) {
  background-color: #ffbb2c;
}

.menu_item:nth-child(6) {
  background-color: #c40e0e;
}

.menu_item:nth-child(7) {
  background-color: #630534;
}

.menu_item:nth-child(8) {
  background-color: #e80c7a;
}

.menu_item:nth-child(9) {
  background-color: #698d25;
}

.menu_item:nth-child(10) {
  background-color: #c4da49;
}

.menu_item_active {
  cursor: default;
}

.content_item {
  opacity: 0;
  display: none;
  transition: opacity 0.3s;
}

.content_item_active {
  opacity: 1;
  display: block;
  transition: opacity 0.3s;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin: 0;
  font-weight: normal;
  font-size: 1.8333em;
}

.content_item:first-child p {
  margin: 0;
}

.content_item:last-child h2 {
  font-size: 24px;
}

.content_item_images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.content_item_images img {
  height: fit-content;
  max-width: 100%;
}

.content_item:nth-child(3) a {
  width: calc(50% - 10px);
  max-height: 310px;
}

.content_item:nth-child(3) a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_item:nth-child(5) a {
  width: calc(33.333% - 14px);
}

.content_item:nth-child(5) a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_item:nth-child(6) a {
  width: calc(33.333% - 14px);
}

.content_item:nth-child(6) a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_item_text p {
  margin-bottom: 12px;
}

.footer_content {
  font-size: 12px;
  margin-top: 20%;
  margin-bottom: 10%;
  margin-left: 23%;
}

.footer_content a {
  color: #0788B5;
}

.socials {
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 0;
  margin-bottom: 15px;
}

.socials .fb-share-button span,
.fb_iframe_widget iframe,
.fb_iframe_widget {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  line-height: 0;
}

.socials .fb-share-button span {
  opacity: 0;
  z-index: 99;
}

.fb-share-button::after {
  content: url(..//img/facebook.gif);
  position: absolute;
  top: 0;
  left: 0;
}

.twitter {
  position: relative;
}

.twitter iframe {
  opacity: 0;
  width: 16px !important;
  height: 16px !important;
  position: relative !important;
  z-index: 99;
}

.twitter::after {
  content: url(..//img/twitter.gif);
  position: absolute;
  top: 0;
  left: 0;
}

.google a {
  line-height: 0;
  display: block;
}

.google a::after {
  content: url(..//img/gplus.gif);
}

#pdf-content {
  display: none;
}

#print-pdf-button {
  line-height: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

#print-pdf-button::after {
  content: url(..//img/pdf.gif);
}

@media(max-width:768px) {
  .menu_content {
    flex-direction: column-reverse;
  }

  .container {
    max-width: 95%;
  }

  .footer_content {
    margin-left: 0;
  }

  .logo_box img {
    padding-left: 0;
  }
}

@media(max-width:600px) {
  .content_item:nth-child(3) a {
    width: 100%;
    max-height: 100%;
  }

  .content_item:nth-child(5) a {
    width: 100%;
  }

  .content_item:nth-child(6) a {
    width: 100%;
  }
}