/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  margin-top: 70px;
  padding: 0;
  height: 100%;
  right: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #333;
  font-weight: 400;
  box-sizing: border-box;
  transition: right ease 0.15s;
}
body {
  --green: #8ac44b;
  --darkgreen: #4caf50;
}
body.subpage {
  background-color: #ededed;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  color: var(--black);
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: var(--black);
}
a:hover {
  color: #666;
  text-decoration: none;
}

.anchor {
  position: absolute;
  top: -75px;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}
/*ol { margin-left: 20px; }*/

/* HEADER */

#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  box-shadow: 0 5px 5px rgb(0 0 0 / 2%);
  z-index: 10;
  background-color: #fff;
}
#header #header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  padding-bottom: 5px;
  width: 90%;
  height: 100%;
  box-sizing: border-box;
}

#header nav {
}
#header nav .close {
  display: none;
}
#header nav ul {
  display: flex;
  gap: 25px;
}
#header nav ul li {
  list-style: none;
}
#header nav ul li a {
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}
#header nav ul li a:hover {
  opacity: 0.8;
}
#header nav ul li a.active {
  color: var(--green);
}

#header .darken {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  background-color: #000;
}
#header .darken.active {
  opacity: 0.5;
  visibility: visible;
}

#header .logo {
  position: absolute;
  top: 25px;
  left: 0;
  width: 110px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgb(0 0 0 / 3%);
  transition: all ease 0.15s;
  background-color: #fff;
}
body.scroll #header .logo {
  width: 80px;
}
#header .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#header .logo a img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

#header .nav-button {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--green);
}
#header .nav-button img {
  width: 16px;
  height: 16px;
}

#header-image {
  display: flex;
  width: 100%;
  height: calc(100vh - 140px);
}
#header-image-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
}

#header-image-content .center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/*#header-image-content .center .logo { position: absolute; display: flex; align-items: center; justify-content: center; top: -45px; width: 110px; aspect-ratio: 1 / 1; border-radius: 50%; background-color: #fff; }
#header-image-content .center .logo img { display: block; width: auto; max-width: 100%; height: auto; max-height: 100%; }*/
#header-image-content .center h1 {
  position: relative;
  margin-bottom: 15px;
  font-size: 80px;
}
#header-image-content .center h1:after {
  position: absolute;
  top: 3px;
  right: -10px;
  padding: 6px 6px 5px 8px;
  content: "BETA";
  font-size: 12px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  background-color: var(--green);
}
#header-image-content .center span {
  font-size: 40px;
}
#header-image-content .center .buttons {
  display: flex;
  gap: 12px;
  margin-top: 60px;
}
#header-image-content .center .buttons a.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 30px 13px 30px;
  font-size: 21px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  filter: brightness(1);
  transition: all ease 0.15s;
  background-color: var(--green);
}
#header-image-content .center .buttons a.btn:hover {
  filter: brightness(1.05);
}
#header-image-content .center .buttons a.btn img {
  position: relative;
  top: 0px;
  margin-left: -2px;
  width: 20px;
  filter: invert(1);
}

#header-image-content .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}
#header-image-content .image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(255, 255, 255);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
#header-image-content .image img {
  display: block;
  width: 100%;
  height: 100%;
}

#header-image-image {
  width: 50%;
  height: 100%;
  background-image: url("../images/header-image.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* CONTENT */

.row {
}
.row .content {
}
.row .content .page_content {
}

body.subpage .row .content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: auto;
  padding: 60px 0 90px 0;
  width: 90%;
  max-width: 1400px;
}
body.subpage .row .content .page_content {
  flex: 1;
  padding: 60px;
  width: 100%;
  border-radius: 8px;
  background-color: #fff;
}
body.subpage .row .content .media {
  width: 400px;
  max-width: 100%; /*background-color: #fff;*/
}
body.subpage .row .content .media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

body.subpage h1 {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--green);
}
body.subpage h2 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 24px;
}
body.subpage p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.row.taglines {
  background-color: var(--green);
}
.row.taglines .content {
  display: flex;
}
.row.taglines .page_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 5%;
  width: 50%;
  font-size: 21px;
  color: #fff;
  box-sizing: border-box;
}

.row.taglines h2 {
  font-size: 32px;
  font-weight: 700;
}
.row.taglines ul {
  margin-top: 30px;
}
.row.taglines ul li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: 28px;
  list-style: none;
}
.row.taglines ul li img {
  position: relative;
  top: 1px;
  margin-right: 15px;
  width: 28px;
  filter: invert(1);
}
.row.taglines ul li span {
  flex: 1;
}

.row.taglines .image {
  padding: 90px 5%;
  width: 50%;
  box-sizing: border-box;
  background-color: #ededed;
}
.row.taglines .image img {
  position: relative;
  display: block;
  top: 2%;
  width: 100%;
}

.row.app {
  background-color: var(--green);
}
.row.app .content {
  display: flex;
}
.row.app .page_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 5%;
  width: 50%;
  font-size: 21px;
  color: #fff;
  line-height: 1.4;
  box-sizing: border-box;
}
.row.app .page_content img {
  display: block;
  margin-top: 15px;
  width: 200px;
}

.row.app h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}
.row.app p {
  margin-bottom: 15px;
}
.row.app ol {
  margin-top: 30px;
}
.row.app ol li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 28px;
  list-style: none;
}
.row.app ol li img {
  position: relative;
  top: 1px;
  margin-right: 15px;
  width: 28px;
  filter: invert(1);
}

.row.app .image {
  padding: 90px 5%;
  width: 50%;
  box-sizing: border-box;
  background-color: #ededed;
}
.row.app .image img {
  position: relative;
  display: block;
  top: 2%;
  width: 100%;
}

/* FOOTER */

#footer {
  padding: 90px 5%;
  box-sizing: border-box;
}
