@import url("https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --main_color: #36632a;
  --secondary_color: #90b133;
  --accent_color: #f4a63e;
  --accent_color_2: #f1891a;
  --white_text: #f8f7f7;
  --black_text: #1d1d1b;
  --alter_bg: #dfedd5;
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type="file"] {
  max-width: 100%;
}

body {
  font-family: "SN Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--alter_bg);
}

h2 {
  font-weight: 700;
  font-size: 35px;
}

.hero {
  width: 100%;
  min-height: 765px;
  background-image: url(../assets/heroback.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -50px;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
}

.hero > .wrapper {
  display: flex;
  justify-content: space-between;
}

.hero__logo > img {
  width: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.hero__menu {
  margin-left: 50px;
  margin-right: 50px;
}

.hero__menu > ul,
.hero__langswitch > ul {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 20px;
  color: var(--white_text);
  padding-top: 5px;
}

.hero__menu > ul > li {
  margin-right: 40px;
  padding-top: 15px;
}

.hero__langswitch > ul > li {
  padding-top: 15px;
}

.hero__menu > ul > li:last-child {
  margin-right: 0px;
}

.hero__langswitch > ul {
  font-weight: 700;
}

.hero__langswitch > ul > li:first-child {
  margin-right: 10px;
}

.hero__langswitch > ul > li:first-child::after {
  margin-left: 10px;
  content: "|";
}

.hero a {
  color: var(--white_text);
}

.hero a:hover {
  text-decoration: underline;
}

.hero__image > img {
  border-radius: 5px;
  box-shadow: 0px 5px 10px 0px var(--black_text);
}

.title {
  padding-left: 30px;
}

.title h1 {
  font-weight: 800;
  color: var(--accent_color);
  font-size: 60px;
  line-height: 80px;
}

.subtext {
  padding-left: 30px;
  padding-top: 50px;
}

.subtext p {
  color: var(--white_text);
  font-weight: 500;
  font-style: italic;
  font-size: 30px;
  line-height: 40px;
}

.hero__cta {
  padding-left: 30px;
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta a {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 30px;
  background-color: var(--accent_color);
  border-radius: 5px;
  color: var(--black_text);
  font-weight: 700;
  font-size: 20px;
  align: center;
}

.hero__cta a:hover {
  background-color: var(--accent_color_2);
  color: var(--white_text);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.process {
  padding-bottom: 50px;
}

.process .wrapper {
  display: flex;
  justify-content: space-between;
}

.process__card {
  max-width: 350px;
  border-radius: 5px;
  box-shadow: 0px 5px 5px 1px #999;
  background-color: var(--white_text);
}

.process__card-image > img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.process__card-text {
  padding: 15px;
}

.process__card-text h2 {
  font-weight: 700;
  color: var(--secondary_color);
  font-size: 25px;
  line-height: 35px;
}

.process__card-text p {
  color: var(--black_text);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  padding-top: 15px;
}

.appsheet {
  width: 100%;
  min-height: 500px;
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 50px;
}

.appsheet h2 {
  color: var(--main_color);
  font-weight: 700;
}

.appsheet__tech-behind {
  display: flex;
  padding-top: 30px;
  align-items: center;
}

.tech-behind-image {
  min-width: 65%;
}

.tech-behind-text {
  padding-left: 40px;
}

.tech-behind-text h3 {
  color: var(--secondary_color);
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 30px;
}

.tech-behind-text p {
  color: var(--black_text);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
}

.gamechanger {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(../assets/heroback.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.gamechanger h2 {
  color: var(--accent_color);
  font-weight: 700;
  line-height: 35px;
}

.gamechanger p,
ul,
li {
  color: var(--white_text);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  padding-top: 15px;
}

.gamechanger b {
  color: var(--accent_color);
}

.threesteps {
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #fff;
}

.threesteps h2 {
  color: var(--main_color);
  font-weight: 700;
}

.threesteps p {
  color: var(--black_text);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
}

.threesteps__cards {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}

.threesteps__card {
  max-width: 350px;
  position: relative;
}

p.card_number1,
p.card_number2,
p.card_number3 {
  position: absolute;
  font-size: 200px;
  font-weight: 900;
  color: var(--secondary_color);
}

p.card_number1 {
  top: 40px;
  left: -50px;
}

p.card_number2 {
  top: 250px;
  left: 0px;
}

.card_number2 + img + p {
  padding-left: 130px;
}

p.card_number3 {
  top: 20px;
  left: -70px;
}

.footer {
  background-color: var(--secondary_color);
  color: var(--white_text);
  text-align: center;
  padding-top: 30px;
}

.footer .wrapper {
  display: flex;
}

.footer h2 {
  color: var(--main_color);
}

.footer__logo-image {
  width: 150px;
}

.footer__form {
  padding-left: 250px;
}
