:root {
  --bg-color: #f8fbff;
  --bg-content-color: rgba(255, 255, 255, 0.7);
  --max-width: 1400px;
  --noise: url(/assets/svg/noise.png);
  /* not using svg version because it's lagging on phone */
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  padding: 2rem 2rem 0 2rem;
  margin: 0 auto;
  max-width: var(--max-width);
  overflow: hidden;
  min-width: 320px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans",
    "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  background-image: var(--noise);
  /*background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #f8fbff 7px ), repeating-linear-gradient( #ffffff55, #ffffff );*/
}

@media only screen and (max-width: 850px) {
  body {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}

#alert {
  margin: 5rem 0;
  padding: 2rem;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  position: relative;
  visibility: hidden;
  position: fixed;
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

@media only screen and (max-width: 600px) {
  #alert {
    margin: 5rem 0 3rem 0;
    padding: 1.5rem;
  }
}

#alert.open {
  position: inherit;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#alert_icon {
  font-size: 40px;
  position: absolute;
  top: -30px;
  left: 20px;
  background-color: var(--bg-color);
  background-image: var(--noise);
  color: rgba(0, 0, 0, 0.3);
  padding: 0 1rem;
}

#alert_remove {
  width: 20px;
  height: 20px;
  position: absolute;
  color: rgba(0, 0, 0, 0.3);
  font-size: 34px;
  right: 1.5rem;
  top: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

#alert_remove:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.alert_msg> :nth-child(1) {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alert_msg> :nth-child(2) {
  font-size: 19px;
  font-weight: 300;
  line-height: 24px;
}

#splash {
  height: clamp(350px, 60vw, 600px);
  width: 100%;
  position: relative;
}

#splash.reveal {
  opacity: 0;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all .75s;
  -o-transition: all .75s;
  transition: all .75s;
}

#splash.reveal-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#splash-img {
  background-image: url(/assets/img/gmftr_2_blur.jpg);
  background-size: cover;
  background-position: center center;
  position: absolute;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

#splash-front {
  border-radius: 1rem;
  height: 100%;
  position: relative;
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
}

#splash-header {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#splash-header #splash-header-logo {
  background-color: white;
  padding: .5rem;
  border-radius: .25rem;
}

#splash-header #splash-header-logo.reveal {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all .75s;
  -o-transition: all .75s;
  transition: all .75s;
}

#splash-header #splash-header-logo.reveal-animate {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

#splash-header #splash-header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  max-width: 500px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

#splash-header #splash-header-buttons.reveal {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .75s;
  -o-transition: all .75s;
  transition: all .75s;
}

#splash-header #splash-header-buttons.reveal-animate {
  opacity: 1;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

#splash-header #splash-header-buttons>a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: .6rem;
  padding: .7rem 1.3rem;
  border: thin solid white;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  text-decoration: none;
  color: white;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

@media only screen and (max-width: 700px) {
  #splash-header #splash-header-buttons>a>div {
    display: none;
  }
}

#splash-header #splash-header-buttons>a:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

#splash-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  height: 100%;
}

#splash-text> :nth-child(1) {
  font-size: clamp(16px, 7vw, 60px);
  color: white;
}

#splash-text> :nth-child(2) {
  font-size: clamp(16px, 4vw, 30px);
  color: #dfdfdf;
}

#main_info {
  margin: -5rem 2rem 0rem 2rem;
  background-color: var(--bg-color);
  background-image: var(--noise);
  padding: 2rem 2rem 0rem 2rem;
  border-radius: 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

@media only screen and (max-width: 850px) {
  #main_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem 1rem 0rem 1rem;
    gap: 2rem;
    margin: -4rem .5em 0rem .5em;
  }
}

#main_info.reveal {
  opacity: 0;
  -webkit-transform: translateY(15%);
  -ms-transform: translateY(15%);
  transform: translateY(15%);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

#main_info.reveal-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#main_info> :nth-child(2) {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
}

#main_info>div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#main_info>div> :nth-child(1) {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .8rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

#main_info>div> :nth-child(2) {
  font-size: 17px;
  line-height: 20px;
}

#main_info>div> :nth-child(2) table {
  border-collapse: collapse;
  width: 100%;
}

#main_info>div> :nth-child(2) table td {
  border-bottom: 2px solid rgba(0, 0, 0, 0.7);
  padding: 10px 0;
}

#main_info>div> :nth-child(2) table td:last-child {
  font-weight: 500;
  text-align: end;
  white-space: nowrap;
}

#main_info>div> :nth-child(2) table tr:last-child td {
  border-bottom: none;
}

#main_info_open_hour_status {
  padding: .5rem 1rem;
  border-radius: .5rem;
  margin-bottom: .5rem;
}

#main_info_open_hour_status.opened {
  color: green;
  border: thin solid green;
}

#main_info_open_hour_status.closed {
  color: red;
  border: thin solid red;
}

#main_info_alert {
  border: 2px dashed rgba(0, 0, 0, 0.3);
  padding: .7rem;
  border-radius: .5rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#payment.reveal {
  background: white;
  padding: 1rem;
  margin: 2rem auto 0 auto;
  max-width: 500px;
  border-radius: 1rem;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#payment.reveal {
  opacity: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

#payment.reveal-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#welcome.reveal {
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

#welcome.reveal-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#rvsq.reveal {
  opacity: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

#rvsq.reveal-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}


#law_25.reveal {
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

#law_25.reveal-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#main_info_location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5rem;
}

#main_info_location> :nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.intro {
  padding: 5rem;
  background-color: var(--bg-content-color);
  border-radius: 2rem;
  margin: 5rem 0;
  background: -o-linear-gradient(left, var(--bg-content-color), rgba(255, 255, 255, 0));
  background: -webkit-gradient(linear, left top, right top, from(var(--bg-content-color)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, var(--bg-content-color), rgba(255, 255, 255, 0));
}

@media only screen and (max-width: 600px) {
  .intro {
    margin: 3rem 0;
    padding: 2rem 1.5rem;
    background: var(--bg-content-color);
  }
}

.intro_title {
  font-size: 44px;
  font-weight: 400;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 600px) {
  .intro_title {
    margin-top: 2rem;
  }
}

.intro_msg {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: .5rem;
  max-width: 85%;
  line-height: 32px;
}

.section {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 600px) {
  .section {
    margin-bottom: 3rem;
  }
}

.section_title {
  padding: 2rem 2rem 0 2rem;
  font-size: 44px;
  background-color: var(--bg-content-color);
  display: inline-block;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

@media only screen and (max-width: 600px) {
  .section_title {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}

.section_content {
  background-color: var(--bg-content-color);
  background: -o-linear-gradient(left, var(--bg-content-color), rgba(255, 255, 255, 0));
  background: -webkit-gradient(linear, left top, right top, from(var(--bg-content-color)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, var(--bg-content-color), rgba(255, 255, 255, 0));
  padding: 2rem;
  border-radius: 2rem;
  border-top-left-radius: 0;
}

@media only screen and (max-width: 600px) {
  .section_content {
    padding: 1.5rem;
    background: var(--bg-content-color);
  }
}

#installations_content {
  font-size: 30px;
  font-weight: 300;
  line-height: 50px;
}

#team_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team_item_title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 1rem;
}

.team_item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  font-weight: 300;
  font-size: 20px;
  row-gap: .5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.8);
}

#services.reveal,
#team.reveal,
#installations.reveal {
  opacity: 0;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

#services.reveal-animate,
#team.reveal-animate,
#installations.reveal-animate {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#service_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.service_item> :nth-child(1) {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: .5rem;
}

.service_item> :nth-child(2) {
  font-size: 24px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
}

#footer.reveal {
  opacity: 0;
  -webkit-transition: all 1.1s;
  -o-transition: all 1.1s;
  transition: all 1.1s;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

#footer.reveal-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#footer-info {
  padding: 5rem 0;
}

@media only screen and (max-width: 600px) {
  #footer-info {
    padding: 3rem 0;
  }
}

#footer-info> :nth-child(1) {
  font-size: 30px;
  margin-bottom: 1rem;
}

#footer-info> :nth-child(2) {
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 1rem;
}

#footer-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2rem 0;
  font-size: 20px;
  gap: 1rem;
}

#footer-bg {
  position: absolute;
  background-color: var(--bg-content-color);
  /*background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));*/
  left: 0;
  right: 0;
  height: 500px;
  z-index: -1;
}

#footer-bg.reveal {
  opacity: 0;
  -webkit-transition: all 1.1s;
  -o-transition: all 1.1s;
  transition: all 1.1s;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

#footer-bg.reveal-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#go_up {
  position: fixed;
  bottom: 2rem;
  text-align: right;
  right: 2rem;
}

#go_up button {
  background: none;
  color: #0f0f0f;
  border: none;
  font-size: 40px;
  cursor: pointer;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
  opacity: .3;
}

#go_up button:hover {
  opacity: 1;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

#alert_popup {
  position: absolute;
  background-color: var(--bg-color);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 2rem;
  top: 0;
  max-width: var(--max-width);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .75s;
  -o-transition: all .75s;
  transition: all .75s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  margin-right: 2rem;
  z-index: 2;
}

@media only screen and (max-width: 850px) {
  #alert_popup {
    margin-right: 1.5rem;
  }
}

@media only screen and (max-width: 600px) {
  #alert_popup {
    padding: 1rem;
    margin-right: 0;
    left: 0;
    right: 0;
  }
}

#alert_popup.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

#alert_popup_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .75s;
  -o-transition: all .75s;
  transition: all .75s;
}

#alert_popup_backdrop.open {
  visibility: visible;
  opacity: 1;
}

#alert_popup_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  margin-top: 1rem;
}

#alert_popup_bottom button {
  background: transparent;
  border: thin solid black;
  color: black;
  padding: .5rem 1rem;
  border-radius: 1rem;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .5em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 0;
}

#alert_popup_bottom button:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

#bg-line {
  position: absolute;
  z-index: -1;
  width: 100%;
  opacity: .3;
  left: 0;
  top: 0;
  height: 100vw;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url(/assets/svg/line_2.svg);
  background-size: 100% 1500px;
}

.mark_important {
  background-color: rgba(211, 156, 37, 0.171);
}