:root {
  --size-xs: 20px;
  --size-sm: 40px;
  --size-md: 60px;
  --size-lg: 80px;
  --size-xl: 120px;
}

@media (max-width: 1200px) {
  :root {
    --size-xs: 10px;
    --size-sm: 20px;
    --size-md: 40px;
    --size-lg: 60px;
    --size-xl: 100px;
  }
}
@media (max-width: 768px) {
  :root {
    --size-xs: 10px;
    --size-sm: 20px;
    --size-md: 30px;
    --size-lg: 50px;
    --size-xl: 80px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  position: relative;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.pt-sm {
  padding-top: var(--size-sm);
}

.pt-md {
  padding-top: var(--size-md);
}

.pt-lg {
  padding-top: var(--size-lg);
}

.pt-xl {
  padding-top: var(--size-xl);
}

.pb-sm {
  padding-bottom: var(--size-sm);
}

.pb-md {
  padding-bottom: var(--size-md);
}

.pb-lg {
  padding-bottom: var(--size-lg);
}

.pb-xl {
  padding-bottom: var(--size-xl);
}

.fix-os {
  position: sticky;
  top: 100px;
}
@media only screen and (max-width: 992px) {
  .fix-os {
    position: unset;
    top: unset;
  }
}

.vertical-align {
  display: flex;
  align-items: center;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

.wrap-out {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #283239;
}

.img-slider {
  width: 100vw;
  height: 100vh;
  display: none;
}
.img-slider .slick-list,
.img-slider .slick-track {
  height: 100%;
}
.img-slider .slick-slide {
  height: 100vh;
}
.img-slider .slick-slide > div {
  height: 100%;
}
.img-slider .slick-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
  display: block;
}

.filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 5;
  opacity: 0.6;
  transition: opacity 0.45s ease;
  pointer-events: none;
  display: none;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  z-index: 20;
  overflow: hidden;
}

.logo-mark {
  position: absolute;
  top: 60px;
  left: calc(50% - 52px);
  width: 104px;
  margin: 0;
  transform: translateX(-50%);
}

.site-logo {
  display: block;
}

.logo-sm {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  margin: 0;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {
  .logo-sm {
    display: block;
  }
}

.logo-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 920px;
  max-width: calc(100vw - 80px);
  margin: 0;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {
  .logo-lg {
    display: none;
  }
}

.contact-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #E4E5E6;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.contact-top {
  cursor: pointer;
  padding: 22px 0;
  position: relative;
  z-index: 2;
}
.contact-top h6 {
  color: #283239;
  margin: 0;
}

.contact-body {
  max-height: 0;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.45s ease;
}

.contact-details {
  padding: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-details a {
  color: #283239;
  text-decoration: none;
  opacity: 1;
}
.contact-details a:hover {
  opacity: 0.8;
}

body.contact-open .filter {
  opacity: 0.8;
}
body.contact-open .contact-body {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */