@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@500;600;700&display=swap");
:root {
  --white: #ffffff;
  --lightgray: #E3E0E0;
}

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

html {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  color: var(--white);
  line-height: 1;
}

body {
  margin: 0;
  background: url(../media/bg.jpg) no-repeat scroll center;
  background-size: cover;
  min-height: 100dvh;
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}
.ucBox {
  --space: 145px;
  --border: 12px;
  border: var(--border) solid var(--white);
  padding: var(--space);
  text-align: center;
  width: min(1598px, 90%);
}
@media only screen and (max-width: 1023px) {
  .ucBox {
    --space: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .ucBox {
    --space: 20px;
    --border: 6px;
  }
}
.ucBoxOuter {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
}
.ucBox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
@media only screen and (max-width: 767px) {
  .ucBox__inner {
    gap: 40px;
  }
}
.ucBox__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 11px;
  overflow: hidden;
  background: linear-gradient(90deg, #666, #fff, #666);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}
@media only screen and (max-width: 1023px) {
  .ucBox__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .ucBox__text {
    font-size: 15px;
  }
}
.ucBox__title {
  font-size: 70px;
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .ucBox__title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .ucBox__title {
    font-size: 30px;
  }
}
.ucBox__logo {
  margin: 0 0 30px;
}
.ucBox__logo svg {
  width: 375px;
  max-width: 100%;
}
.ucBox__address {
  margin: 10px 0 0;
  font-size: 19px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.05;
  color: var(--lightgray);
}
.ucBox__addressLine {
  margin: 8px 0;
}
@media only screen and (max-width: 1023px) {
  .ucBox__address {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .ucBox__address {
    font-size: 15px;
  }
}
.ucBox__link, .ucBox__link:link, .ucBox__link:visited {
  color: inherit;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */