@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,600,600i&display=swap");
:root {
  --text-color: black;
  --bg: white;
  --main-color: #f6f6f6;
  --main-color-second: #eaeaea;
  --main-color-third: #e5e5e5;
  --submenu-hover: rgb(172, 241, 149);
  --yellow: rgb(238, 240, 122);
  --yellow-second: rgb(226, 228, 100);
  --green: rgb(172, 241, 149);
  --green-second: rgb(162, 235, 137);
  -webkit-text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1rem;
  padding-bottom: 0;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1500px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  background-color: var(--bg);
  color: var(--text-color);
  font-size: 16px;
}
body h1 {
  font-weight: 600;
  font-size: 2rem;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  text-align: left;
}
body h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.4rem;
  text-align: left;
}
body h2 > i {
  padding: 0.5rem;
  padding-left: 0;
}
body a,
body #more-news-button {
  color: var(--text-color);
  text-decoration: none;
  border: none;
}
body .link,
body #more-news-button {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 1rem auto;
  background-color: var(--yellow);
  border-radius: 20px;
  transition-duration: 0.2s;
  width: 200px;
  height: 50px;
  box-shadow: 0 5px 0 0 var(--yellow-second);
}
body .link div,
body .link table,
body #more-news-button div,
body #more-news-button table {
  margin: auto;
  width: auto;
}
body .link td,
body #more-news-button td {
  padding: 0.2rem;
}
body .link:hover,
body #more-news-button:hover {
  background-color: var(--green);
  box-shadow: 0 5px 0 0 var(--green-second);
}
body #more-news-button {
  display: block;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
body .button-array {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
body .button-array > .link {
  margin: 0;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 5;
}
header > div {
  width: 20%;
  min-width: 170px;
  background-color: var(--main-color);
  border-radius: 30px;
  transition-duration: 0.2s;
  box-shadow: 0 5px 0 0 var(--main-color-second);
}
header > div:hover {
  background-color: var(--main-color-second);
  box-shadow: 0 5px 0 0 var(--main-color-third);
}
header > div img {
  width: 80%;
  padding: 1rem;
}
header nav {
  width: 80%;
  height: 70px;
  background-color: var(--main-color);
  border-radius: 0 20px 20px 0;
  padding: 0;
  font-size: 0;
  box-shadow: 0 5px 0 0 var(--green), 0 10px 0 0 var(--yellow);
}
header nav > div > ul {
  display: flex;
  padding: 0;
  height: 70px;
  cursor: default;
}
header nav > div > ul > li {
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 70px;
  width: 20%;
  border-left: 3px solid var(--main-color-second);
  transition-duration: 0.2s;
}
header nav > div > ul > li:last-of-type {
  border-radius: 0 20px 20px 0;
}
header nav > div > ul > li:last-of-type:hover {
  border-radius: 0 20px 0 0;
}
header nav > div > ul > li:last-of-type .submenu {
  width: calc(100% + 3px);
}
header nav > div > ul > li:hover {
  background-color: var(--main-color-second);
}
header nav > div > ul > li:hover .submenu {
  display: flex;
}
header nav > div > ul > li span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
header nav > div > ul > li .submenu {
  display: none;
  width: calc(100% + 6px);
  flex-direction: column;
  margin: -3px;
  padding: 0;
  transition: 0.2s;
  margin-top: 0;
}
header nav > div > ul > li .submenu li {
  background-color: var(--main-color-second);
  font-weight: 400;
  transition-duration: 0.2s;
  list-style-type: none;
  height: 70px;
  border-top: 2px solid var(--main-color-third);
}
header nav > div > ul > li .submenu li:last-of-type {
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 0 0 var(--main-color-third);
}
header nav > div > ul > li .submenu li:hover {
  background-color: var(--submenu-hover);
  border-top-color: var(--submenu-hover);
}
header nav > div > ul > li a {
  display: block;
  width: 100%;
  height: 100%;
}
header nav > div > div {
  display: none;
}

section {
  position: relative;
  margin-top: -50px;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  padding: 0;
  padding-top: 50px;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 0 0 var(--green), 0 10px 0 0 var(--yellow);
  z-index: 1;
}
section > h1 {
  padding: 0 5rem 0 5rem;
}
section article {
  padding: 2rem 5rem 2rem 5rem;
  text-align: justify;
}
section article:first-of-type {
  padding-top: 0;
}
section article:last-of-type {
  margin-bottom: 0;
}
section article + hr {
  margin-top: 1rem;
}
section article ul {
  text-align: left;
}
section article .icon {
  width: 1.5rem;
}
section article .img-hover-zoom {
  border-radius: 20px;
  box-shadow: 0 5px 0 0 var(--main-color-third);
  overflow: hidden;
}
section article .img-hover-zoom img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
section article .img-hover-zoom:hover img {
  transform: scale(1.05);
}
section article > table {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  margin-bottom: 2rem;
}
section article > table tr {
  border-bottom: 2px solid var(--main-color-third);
}
section article > table tr:last-of-type {
  border: none;
}
section article > table tr td {
  box-sizing: border-box;
  padding: 1rem;
  height: 3rem;
  min-width: 100px;
}
section article > table tr td:first-of-type {
  text-align: left;
}
section aside {
  background-color: var(--main-color-second);
  padding: 1rem 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 0 0 var(--main-color-third);
}
section > hr {
  border: 3px solid var(--green);
  box-shadow: 0 6px 0 0 var(--yellow);
  width: 20%;
  margin: 0 auto 6px auto;
}
section > hr + article {
  padding-top: 3rem;
}
section > img {
  display: block;
  margin: auto;
  margin-top: 0;
  width: 70%;
}

img.light-mode {
  display: block;
  margin: auto;
}

img.dark-mode {
  display: none;
}

footer {
  margin-top: auto;
  margin-left: 2rem;
  margin-right: 2rem;
  padding: 0;
  background-color: var(--main-color);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 0 0 var(--main-color-second);
  font-size: 12px;
  text-align: center;
  z-index: -10;
}
footer span {
  display: inline-block;
  padding: 0.5rem 2rem;
  margin: auto;
}
footer span:first-of-type {
  float: left;
}
footer span:last-of-type {
  float: right;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-color: white;
    --bg: rgb(26, 26, 27);
    --main-color: rgb(52, 53, 55);
    --main-color-second: rgb(72, 72, 73);
    --main-color-third: rgb(102, 103, 105);
    --submenu-hover: rgb(102, 103, 105);
    --yellow: rgb(178, 180, 18);
    --yellow-second: rgb(195, 197, 48);
    --green: rgb(90, 182, 59);
    --green-second: rgb(103, 192, 73);
  }
  img.light-mode {
    display: none;
  }
  img.dark-mode {
    display: block;
    margin: auto;
  }
}
@media (max-width: 1000px) {
  body {
    box-sizing: border-box;
    padding: 0;
  }
  body header {
    position: fixed;
    top: 0;
  }
  body header > div {
    height: 100px;
    width: 170px;
    border-radius: 0;
    box-shadow: 0 5px 0 0 var(--green), 0 10px 0 0 var(--yellow);
  }
  body header > div:hover {
    box-shadow: 0 5px 0 0 var(--green), 0 10px 0 0 var(--yellow);
  }
  body header > div img {
    width: auto;
    height: 80px;
    padding: 0;
    padding-top: 10px;
  }
  body header nav {
    height: 100px;
    width: 100%;
    border-radius: 0;
  }
  body header nav > div > ul {
    height: 100px;
  }
  body header nav > div > ul > li {
    font-size: 0.9rem;
    line-height: 100px;
  }
  body header nav > div > ul > li:last-of-type:hover {
    border-radius: 0;
  }
  body header nav > div > ul > li .submenu {
    max-height: calc(100vh - 100px);
    overflow-y: scroll;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  body header nav > div > ul > li .submenu::-webkit-scrollbar {
    width: 0 !important;
  }
  body header nav > div > ul > li .submenu li {
    height: 45px;
    min-height: 45px;
    padding: 0.5rem;
    line-height: 45px;
  }
  body section {
    margin-top: 110px;
    padding-top: 1px;
  }
  body section > h1 {
    padding: 0 3rem 0 3rem;
  }
  body section article {
    padding: 2rem 3rem 0.5rem 3rem;
  }
  body section article > table tr td {
    padding: 0.5rem;
  }
  body section aside {
    padding: 1rem;
  }
}
@media (max-width: 670px) {
  body {
    font-size: 0.9rem;
  }
  body.menu-visible {
    overflow: hidden;
  }
  body.menu-visible #main-menu {
    display: block;
  }
  body h1 {
    font-size: 1.6rem;
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
  }
  body h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  body .button-array {
    gap: 0.7rem;
  }
  body header {
    box-sizing: border-box;
    background-color: var(--main-color);
    box-shadow: 0 5px 0 0 var(--green), 0 10px 0 0 var(--yellow);
  }
  body header > div {
    height: 80px;
    width: auto;
  }
  body header > div img {
    padding-top: 2.5px;
    height: 75px;
  }
  body header nav {
    height: 80px;
    box-shadow: none;
  }
  body header nav #hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    height: 80px;
    width: 80px;
    font-size: 1.5rem;
    color: var(--text-color);
    transition-duration: 0.2s;
  }
  body header nav #hamburger:hover {
    cursor: pointer;
  }
  body header nav #hamburger .fa-times {
    font-size: 1.7rem;
  }
  body header nav #main-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--main-color);
  }
  body header nav #main-menu #main-menu-ul {
    flex-direction: column;
    width: 100%;
    height: 80%;
    max-height: 550px;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid var(--main-color-second);
  }
  body header nav #main-menu #main-menu-ul .link {
    display: block;
    font-size: 0.9rem;
  }
  body header nav #main-menu #main-menu-ul .menu-item {
    height: 110px;
    box-sizing: border-box;
    display: block;
    border-bottom: 2px solid var(--main-color-second);
    border-left: none;
    transition-duration: 0.3s;
    width: 100%;
    line-height: 110px;
  }
  body header nav #main-menu #main-menu-ul .menu-item:last-of-type {
    border-radius: 0;
    border: none;
  }
  body header nav #main-menu #main-menu-ul .menu-item:hover {
    background-color: inherit;
  }
  body header nav #main-menu #main-menu-ul .menu-item:hover .submenu {
    display: none;
  }
  body header nav #main-menu #main-menu-ul .menu-item .submenu {
    position: relative;
    margin: 0;
    width: 100%;
  }
  body header nav #main-menu #main-menu-ul .menu-item .submenu.visible {
    display: block;
  }
  body header nav #main-menu #main-menu-ul .menu-item .submenu li:first-of-type {
    border: none;
  }
  body header nav #main-menu #main-menu-ul .menu-item .submenu li:last-of-type {
    border-radius: 0;
    box-shadow: none;
  }
  body header nav #main-menu #phone-number {
    position: absolute;
    bottom: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 20%;
    min-height: 70px;
    background-color: var(--main-color);
    border-top: 2px solid var(--main-color-second);
  }
  body header nav #main-menu #phone-number .link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.9rem;
  }
  body section {
    margin: 90px 0.5rem 1.5rem 0.5rem;
  }
  body section > h1 {
    padding: 0 1.2rem 0 1.2rem;
  }
  body section article {
    padding: 2rem 1.2rem 0.5rem 1.2rem;
  }
  body section article ul {
    padding-left: 1rem;
  }
  body section article > table {
    width: 100%;
    font-size: 2vw;
  }
  body section article > table tr td {
    padding: 0.2rem;
  }
  body section aside {
    padding: 0.5rem 1rem;
  }
  body footer {
    overflow: auto;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  body footer span:first-of-type, body footer span:last-of-type {
    display: none;
  }
}
.construction {
  display: block;
  width: 100%;
  font-size: 8rem;
  text-align: center;
}

@media (min-width: 1001px) {
  .menu-item:last-of-type {
    border-radius: 0 20px 20px 0;
  }
  .menu-item:last-of-type.clicked {
    border-radius: 0 20px 0 0;
  }
  .menu-item.clicked {
    background-color: var(--main-color-second);
  }
  .menu-item.clicked .submenu {
    display: flex;
  }
}/*# sourceMappingURL=general.css.map */