/* bessaa.com — "Coming Soon" landing page, static rebuild */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  color: #fff;
  background-color: #65d061;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color .2s, opacity .2s;
}

p {
  margin-bottom: 0;
}

/* Layout */

.cs-page-wrapper {
  text-align: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 3rem 2rem;
}

.cs-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.cs-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-logo {
  display: block;
  max-width: 104px;
  letter-spacing: -.015em;
  font-size: 24px;
  font-weight: 500;
  line-height: .9;
}

.cs-logo img {
  width: 100%;
}

.cs-middle {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  opacity: 0;
  animation: cs-fade-in 850ms cubic-bezier(.25, .46, .45, .94) 600ms forwards;
}

@keyframes cs-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cs-page-titles {
  position: absolute;
  inset: 0%;
}

.cs-page-title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.cs-page-title.position-top,
.cs-page-title.position-bot {
  z-index: -1;
}

.cs-page-title.position-top {
  transform: translate(-50%, -50%) translateY(-100%);
}

.cs-page-title.position-bot {
  transform: translate(-50%, -50%) translateY(100%);
}

.d--100 {
  margin: 0 0 0 -7px;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: 7rem;
  font-weight: 400;
  line-height: .97;
}

.cs-img-wrap {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 21rem;
  will-change: transform;
}

.cs-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
}

.cs-bot {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.cs-contact-list-item {
  display: block;
}

.link {
  font-size: 15px;
  line-height: 20px;
  text-decoration: underline;
  transition: opacity .2s, color .2s;
}

.link:hover {
  opacity: .6;
}

.heading {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 44px;
}

/* Responsive */

@media screen and (min-width: 1440px) {
  .d--100 {
    font-size: 8.4rem;
    line-height: .85;
  }

  .cs-img-wrap {
    max-width: 28rem;
  }
}

@media screen and (max-width: 991px) {
  .d--100 {
    font-size: 7rem;
  }

  .cs-page-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cs-page-title.position-top,
  .cs-page-title.position-bot {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .d--100 {
    letter-spacing: -.06em;
    font-size: 14vw;
    font-weight: 500;
  }

  .cs-page-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cs-img-wrap {
    max-width: 23rem;
  }
}

@media screen and (max-width: 479px) {
  .d--100 {
    letter-spacing: -.05em;
    font-size: 56px;
  }

  .cs-page-wrapper {
    padding: 2rem 1rem;
  }

  .cs-top {
    padding-bottom: 3rem;
  }

  .cs-img-wrap {
    max-width: 17rem;
  }

  .cs-bot {
    padding-top: 3rem;
  }
}
