@property --shining-angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

:root {
  --shining-angle: 90deg;
  --shining-c1: rgb(247 221 33);
  --shining-c2: rgb(186 128 255);
  --app-color: #c97d04;
  --app-hover-color: #ffd898;
  --glow-color: hsl(186 100% 69%);
}

a {
  text-decoration: none;
  color: var(--app-color);
  transition: color .2s ease-in-out;
  cursor: pointer;
}

a:hover {
  color: var(--app-hover-color);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.pusher {
  background: url('../img/app-bg.jpg') 50% 0px no-repeat fixed rgba(0, 0, 0, 1) !important;
  background-size: cover !important;
  position: relative;
}

.pusher::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
  z-index: -1;
}

.text-color-gold {
  background: linear-gradient(to bottom, #cfc09f 22%, #634f2c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #704d03 78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--app-color);
}

.text-color-app {
  color: var(--app-color) !important;
}

.text-color-white {
  color: #fff !important;
}

.text-tiny {
  font-size: 12px;
}

/* grid */
.ui.grid .flexed.column {
  flex: 1 1 auto;
}


/* sidebar */
.ui.sidebar .logo {
  text-align: center;
}

.ui.sidebar .logo img {
  width: 60%;
}

.ui.inverted.sidebar {
  background: linear-gradient(135deg, #000, #444);
}

/* Mobile Only Hide */
@media only screen and (max-width: 767px) {
  .tablet.only:not(.mobile) {
    display: none !important;
  }

  .computer.only:not(.mobile) {
    display: none !important;
  }

  .large.screen.only:not(.mobile) {
    display: none !important;
  }

  .widescreen.only:not(.mobile) {
    display: none !important;
  }
}

/* Tablet Only Hide */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile.only:not(.tablet) {
    display: none !important;
  }

  .computer.only:not(.tablet) {
    display: none !important;
  }

  .large.screen.only:not(.mobile) {
    display: none !important;
  }

  .widescreen.only:not(.mobile) {
    display: none !important;
  }

  .ui.celled.grid>.column:not(.row),
  .ui.celled.grid>.row>.column {
    box-shadow: none;
  }
}

/* Computer Only Hide */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mobile.only:not(.computer) {
    display: none !important;
  }

  .tablet.only:not(.computer) {
    display: none !important;
  }

  .large.screen.only:not(.mobile) {
    display: none !important;
  }

  .widescreen.only:not(.mobile) {
    display: none !important;
  }
}

/* Large Screen Only Hide */
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .mobile.only:not(.computer) {
    display: none !important;
  }

  .tablet.only:not(.computer) {
    display: none !important;
  }

  .widescreen.only:not(.mobile) {
    display: none !important;
  }
}

/* Widescreen Only Hide */
@media only screen and (min-width: 1920px) {
  .mobile.only:not(.computer) {
    display: none !important;
  }

  .tablet.only:not(.computer) {
    display: none !important;
  }
}

/** shining */
.ui.shining.card {
  border: 0.35rem solid;
  border-image: conic-gradient(from var(--shining-angle), var(--shining-c2), var(--shining-c1), var(--shining-c1) 0.15turn, var(--shining-c2) 0.25turn) 30;
  animation: borderShining 3s linear infinite forwards;
  background: #c59924;
}

.ui.shining.card>.content {
  background: linear-gradient(45deg, #000, #222);
  color: var(--app-color);
}

.ui.shining.card>:last-child {
  border-radius: 0 !important;
}

@keyframes borderShining {
  100% {
    --shining-angle: 420deg;
  }
}

/** segment */
.ui.inverted.segment {
  color: var(--app-color);
}

.ui.transparent.segment {
  background: transparent;
  color: var(--app-color);
}

/** form */
.ui.transparent.form,
.ui.transparent.form .ui.header,
.ui.transparent.form label {
  color: var(--app-color);
}

.ui.transparent.form input,
.ui.transparent.form input:focus,
.ui.transparent.form select,
.ui.transparent.form textarea,
.ui.transparent.form textarea:focus {
  background: rgba(255, 255, 255, .1);
  color: #04c0c9;
}

.ui.transparent.form .ui.label {
  background: transparent;
  color: var(--app-color);
  border-color: rgba(194, 194, 194, 0.2);
}

/* footer */
.ui.footer.segment .sitemap {
  text-align: center;
}

.ui.footer.segment .sitemap a {
  padding-left: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #fff;
}

.ui.footer.segment .sitemap a:last-child {
  border-right: none;
}

.ui.footer.segment .copyright {
  text-align: center;
  padding-bottom: 0.5rem;
  color: #fff;
  font-size: 12px;
}

/** menu */
.ui.transparent.menu {
  background: transparent;
  width: 100%;
}

.ui.transparent.menu .item {
  min-width: 130px;
  line-height: 1.1;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  color: inherit;
  padding-top: 1em;
  padding-bottom: 1em;
  flex: 1;
  position: relative;
  transition: 0.2s ease-in-out;
  font-family: 'serif', 'Helvetica Neue', 'cursive';
  white-space: nowrap;
}

@media only screen and (max-width: 991px) {

  .ui.transparent.menu .item {
    min-width: auto;
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {

  .ui.transparent.menu .item {
    font-size: 16px;
  }
}

.ui.transparent.menu .item:not(.static):hover {
  color: inherit;
  text-shadow: 0 0 15px rgba(255, 200, 125, 0.5),
    0 0 15px rgba(2255, 200, 125, 0.5), 0 0 15px rgba(255, 200, 125, 0.5),
    0 0 15px rgba(255, 200, 125, 0.5);
  background: linear-gradient(to bottom, #000 0%, #111 50%, #222 100%);
}

.ui.transparent.menu .item:not(.no-divider)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  transform: scaleX(0.2);
}

.ui.transparent.menu .item:not(.no-divider):last-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  transform: scaleX(0.2);
}

/** gallery */
.gallery .card {
  height: 100%;
  position: relative;
  aspect-ratio: 3 / 4;
}

.gallery .card .image {
  overflow: hidden;
  height: calc(100% - 48px);
}

.gallery .card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s, transform .5s, filter .5s;
}

.gallery .card:hover .image img {
  opacity: 0.75;
  transform: scale(1.2);
  filter: brightness(0.75);
}

.gallery .card .content {
  border-top: 1px solid #666;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  padding: 1em;
  transition: height .5s;
  flex-grow: unset;
  background: #fff;
  color: #000;
  overflow: hidden;
}

.gallery .card:hover .content {
  height: 96px;
}

.gallery .card .content .title {
  font-weight: bold;
  font-size: 16px;
}

.gallery .card .content .description {
  color: #666C74;
  line-height: 27px;
  opacity: 0;
  transform: translateY(45px);
  transition: all .3s;
  transition-delay: 0.2s;
}

.gallery .card:hover .content .description {
  opacity: 1;
  transform: translateY(0);
}

/** ui glowing button */
.ui.glowing.button {
  color: var(--glow-color);
  background: none;
  border: 0.15em solid var(--glow-color);
  box-shadow: inset 0px 0px 0.5em 0px var(--glow-color), 0px 0px 0.5em 0px var(--glow-color);
  transition: all .2s ease-in-out;
  width: 200px;
}

.ui.glowing.button:hover {
  width: 240px;
  color: rgba(0, 0, 0, .75);
  background-color: var(--glow-color);
  box-shadow: 0 0 2em 0.2em var(--glow-color);
}

/** ui divider */
.ui.transparent.divider {
  color: var(--app-color);
}

.ui.header.divider {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ui.roomy.divider {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/** rhombus */
.back-rhombus {
  position: relative;
  font-size: 24px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  line-height: 1.414;
}

.back-rhombus::before {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: #2a1e02;
  transform: rotate(45deg);
  z-index: -1;
}

/** footer menu */
.ui.bottom.fixed.menu {
  background: linear-gradient(160deg, #322f2c, #6d6c6a, #b4b4b4, #84827c, #121212);
  padding: 0.5rem;
}

.ui.bottom.fixed.menu .segment {
  cursor: pointer;
  display: block;
  height: 100%;
  line-height: 1.414;
  font-size: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  user-select: none;
  background: linear-gradient(45deg, #222, #000, #111);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%),
    0 3px 6px rgb(110 80 20 / 40%),
    inset 0 -2px 5px 1px rgb(30 29 28),
    inset 0 -1px 1px 3px rgb(201 201 201);
}

.ui.bottom.fixed.menu .goto-top {
  line-height: 3rem;
}

/** padding */
.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

/** box */
.box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 2px solid #b78846;
  position: relative;
  padding: 5px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, .75));
}

.box:before,
.box:after {
  content: "•";
  position: absolute;
  width: 16px;
  height: 16px;
  font-size: 14px;
  color: #b78846;
  border: 2px solid #b78846;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box:before {
  left: 5px;
}

.box:after {
  right: 5px;
}

.box>.box-inner {
  position: relative;
  border: 2px solid #b78846;
  padding: 40px;
  height: 100%;
  width: 100%;
  display: block;
}

.box>.box-inner:before,
.box>.box-inner:after {
  content: "•";
  position: absolute;
  width: 16px;
  height: 16px;
  font-size: 14px;
  color: #b78846;
  border: 2px solid #b78846;
  bottom: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box>.box-inner:before {
  left: -2px;
}

.box>.box-inner:after {
  right: -2px;
}

/** */
.img-box {
  overflow: hidden;
  aspect-ratio: 9 / 10;
  border: 1px solid #918e8e;
  padding: 0 !important;
  border: 0.15rem solid;
  border-image: conic-gradient(from var(--shining-angle), var(--shining-c2), var(--shining-c1), var(--shining-c1) 0.15turn, var(--shining-c2) 0.25turn) 30;
  animation: borderShining 3s linear infinite forwards;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .2s;
}

.img-box:hover img {
  opacity: 0.75;
  transform: scale(1.2);
  filter: brightness(0.75);
}

/** message */
.ui.top-center.fixed.message {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
}