:root {
  --alpha: transparent;
  --texture: #1B1B1B;
  --themeColor: #000088;
  --whiteColor: #FFFFFF;
}

.text-theme {
  color: var(--themeColor);
}

.bg-theme {
  background-color: var(--themeColor);
}

*[class^=fa-] {
  transition: all 500ms ease;
}

.fa-youtube:hover {
  color: red;
}

.fa-link:hover {
  color: green;
}

.fa-solid:hover {
  color: blue;
}

header {
  width: 100%;
  height: 80px;
  line-height: 80px;
  color: var(--whiteColor);
  margin: auto;
  position: relative;
  z-index: 10;
}
header #logo {
  width: 100%;
}
header menu {
  width: 100%;
  font-size: 20px;
  display: none;
}
header menu ul {
  background-color: rgba(0, 0, 0, 0.6588235294);
}
header menu ul li a {
  display: block;
  transition: all 500ms ease;
}
header menu ul li:hover a {
  background-color: #FFFFFF;
  color: var(--themeColor);
}
header nav {
  width: 2em;
  height: 1em;
  position: absolute;
  right: 1em;
  top: calc(40px - 0.5em);
}
header nav *[class^=ham] {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transform-origin: 0 1px;
  position: absolute;
}
header nav .hamT {
  top: 0;
}
header nav .hamM {
  top: calc(0.5em - 1px);
}
header nav .hamB {
  bottom: 0;
}

#theme {
  width: 100%;
  height: 100vh;
  margin-top: -80px;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  line-height: 90vh;
  font-size: 40px;
  font-weight: 900;
  color: #FFFFFF;
  text-shadow: 5px 5px 5px rgba(255, 255, 255, 0.5215686275);
}

#service {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1em 0;
}
#service .grid-12 {
  padding: 2em 0;
}
#service .grid-11 {
  padding: 2em 2.25em;
  margin: 1.5em 0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 580ms ease;
}
#service .grid-11 img {
  box-shadow: 2px 2px 5px #AAA;
}
#service .grid-11 h3 {
  line-height: 2.5em;
}
#service .grid-11:hover {
  background-color: #EFEFEF;
}
#service .box input {
  font-size: 20px;
  padding: 0.3em 0.5em;
}
#service .box input::-moz-placeholder {
  color: #AAAAAA;
}
#service .box input::placeholder {
  color: #AAAAAA;
}
#service .box button {
  font-size: 20px;
  padding: 0.3em 1em;
}
#service .box button:disabled {
  color: #DDDDDD;
}
#service .box b.text-center {
  display: block;
  padding: 0.75em 0;
}
#service .box b.text-center a {
  letter-spacing: 1em;
}
#service .news {
  width: 100%;
  max-width: 1200px;
  min-width: 320px;
  margin: auto;
  border: 0.5px solid rgba(0, 0, 136, 0.1333333333);
}
#service .news tr th {
  color: var(--whiteColor);
  padding: 0.6em;
}
#service .news tr td {
  padding: 0.6em;
}
#service .news tr td:nth-of-type(1) {
  width: 6em;
  text-align: center;
}
#service .news tr td:nth-of-type(2) {
  width: auto;
  max-width: calc(1200px - 13em);
  min-width: calc(320px - 12em);
}
#service .news tr td:nth-of-type(3) {
  width: 6em;
  text-align: center;
}
#service .news tr:nth-of-type(2n) {
  background-color: rgba(0, 0, 136, 0.1333333333);
}

#ads {
  text-align: center;
  justify-content: center;
  padding: 1em;
}

footer {
  padding: 1.5em 0;
  background-color: #EEEEEE;
}

#alert {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5333333333);
  z-index: 150;
}
#alert .box {
  width: 320px;
  margin: 15vh auto 0;
  padding: 1em;
  background-color: #FFFFFF;
  border: 5px solid #BBBBBB;
  border-radius: 8px;
  line-height: 1.8em;
}
#alert .box h2 {
  text-align: center;
  color: red;
  padding: 0.5em 0;
}
#alert .box p {
  text-align: justify;
}
#alert .box p a {
  color: #0000dd;
}
#alert .box button {
  display: block;
  width: 100%;
  margin: 0.5em auto;
  padding: 0.5em 0;
  font-size: 16px;
  letter-spacing: 5px;
  border: 1px solid #6d00ba;
  border-radius: 6px;
  background-color: #f9f0ff;
  box-shadow: 3px 3px 4px #e7c4ff;
  cursor: pointer;
}
#alert .box button:hover {
  filter: brightness(1.1);
}
#alert .box button:active {
  box-shadow: 3px 3px 4px #e7c4ff inset;
  filter: brightness(1);
  color: #686868;
}

#lightbox {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8666666667);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  text-align: center;
  color: #FFF;
  display: none;
}
#lightbox img {
  margin-top: 2em;
  width: 300px;
}
#lightbox h4 {
  line-height: 4em;
}
#lightbox i {
  position: absolute;
  top: 1em;
  right: 1em;
}

@media only screen and (min-width: 768px) {
  header #logo {
    width: 25%;
  }
  header menu {
    width: 75%;
    font-size: 16px;
    display: block !important;
  }
  header menu ul {
    background-color: var(--alpha);
  }
  header menu ul li a {
    display: block;
    padding: 0 0.5em;
  }
  header nav {
    display: none;
  }
  #theme {
    font-size: 100px;
  }
  #lightbox img {
    margin-top: 3em;
    width: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  header #logo {
    width: 35%;
  }
  header menu {
    width: 65%;
    font-size: 18px;
  }
  #theme {
    font-size: 180px;
  }
}
@media only screen and (min-width: 1200px) {
  header {
    width: 1200px;
    margin: auto;
    padding: 0 2em;
  }
  header #logo {
    text-align: start;
  }
  #theme {
    font-size: 220px;
  }
}/*# sourceMappingURL=design.css.map */