@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "area-variable", sans-serif;
  background: #fff; /* now black */
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero-mobile {
display: none;
}
.page-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}
.left-panel, .right-panel {
  flex: 1 1 50%;
  min-height: 50vh;
  position: relative;
}
.left-panel {
  padding: 3rem 11vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo {
  margin-bottom: 4rem;
}
.inner {
  max-width: 65%;
}
.logo-img {
  width: 70%;
  height: auto;
  display: block;
}
h1 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #c0d008;
  font-family: "area-variable", sans-serif;
  font-variation-settings: 'INKT'0, 'wght'900, 'wdth'200, 'slnt'0;
}
.tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2ecc71;
  margin-bottom: 1.5rem;
}
.body-text {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 46rem;
  margin-bottom: 2.5rem;
  color: #313436;
  font-family: "area-variable", sans-serif;
  font-variation-settings: 'INKT'0, 'wght'400, 'wdth'200, 'slnt'0;
}
.body-text strong {
  font-variation-settings: 'INKT'0, 'wght'900, 'wdth'200, 'slnt'0;
  color: #45bccc;
}
.contacts {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #313436;
  margin-top: 4rem;
}
.contact-block {
  margin-bottom: 1rem;
  display: inline-block;
  margin-right: 90px;
}
.contact-name strong {
  color: #c0d008;
}
.contact-email a {
  color: #313436;
  text-decoration: none;
}
.contact-email strong {
  color: #45bccc;
}
.gradient-top {
  border-top: 1px solid;
  border-image: linear-gradient(90deg, #a5a4a4, #fff) 1;
  margin: 40px 0;
}
.hero-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-wrapper img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  position: absolute;
  right: 0;
  top: 0;
}


/* Responsive tweaks */
@media (max-width: 1300px) {
	.inner {
  max-width: 60%;
}
}
@media (max-width: 1300px) {
.hero-wrapper img {
  height: 85%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  position: absolute;
  right: -60px;
  top: 0;
}
	}
@media (max-width: 900px) {
  .right-panel {
    position: relative;
    order: 2;
    min-height: 60vh;
  }
.inner {
  max-width: 60%;
}
.hero-wrapper img {
  height: 70%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  position: absolute;
  right: -50px;
  top: 0;
}
  .left-panel, .right-panel {
    flex: 1 1 100%;
  }
  .right-panel {
    min-height: 40vh;
  }
  .left-panel {
    padding: 2.5rem 7vw;
  }

}
@media (max-width: 680px) {
.hero-wrapper, .logo {
  display: none;
}
	.hero-mobile {
display: block;
}
	.inner {
    max-width: 100%;
  }
	.logo-img {
  width: 100%;
  height: auto;
  display: block;
}
	  .left-panel {
    padding: 0.5rem 7vw;
  }
	.logo {
margin-bottom: 2rem;
}
	.contacts {
margin-top: 2rem;
}
}