/*$ff-outfit: "Outfit", sans-serif;*/
.smooth-container {
  position: relative;
  min-height: 100vh;
}

#smooth-wrapper {
  position: relative;
  will-change: transform;
}

#smooth-content {
  min-height: 100vh;
  will-change: transform;
}

.body-parralax {
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.body-parralax *,
.body-parralax ::after,
.body-parralax ::before {
  outline: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.body-parralax .ps {
  opacity: 0;
  visibility: hidden;
  transition: none;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 8;
}
.body-parralax .ps.ps-ready {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s;
}
.body-parralax .bgp {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.body-parralax .bgp::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 2;
}
.body-parralax .ps_lnk {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.body-parralax .fixed_t {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: visible;
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  text-align: center;
}
.body-parralax .fixed_t .section-heading {
  display: block;
  color: #ffffff;
  /* font-size: 70px;
   font-style: normal;
   font-weight: 400;
   line-height: 1;*/
  width: 100%;
  padding: 0 15px;
}
.body-parralax .fixed_t .section-heading .section-description {
  display: block;
  /*  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;*/
  color: #ffffff;
  margin: 10px 0;
}
.body-parralax .section-heading {
  position: absolute;
  top: 22.708vw;
  display: block;
  color: #ffffff;
  /* font-size: 70px;
   font-style: normal;
   font-weight: 400;
   line-height: 1;
   font-family: sans-serif;*/
  z-index: 15;
  width: 100%;
  will-change: transform;
  transform: translateZ(0);
}
