:root {
  --color-primary: #002E53;
  --color-disabled: #3C6075;
  --color-secondary: #05C3DD;
  --color-radiant: #FFC747;
  --color-light: #EDEDED;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito Sans';
}

html {
  overflow-x: hidden;
}

html, body, .app {
  height: 100%;
}

body {
  background: var(--color-primary);
  background: linear-gradient(-90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  max-width: 975.56px;
  /* max-height: 700px; */
  display: block;
  margin: 0 auto;
}

.app {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  align-items: center;
  /* max-height: 100%; */
  /* gap: 200px; */
  /* display: block; */
  margin: 0 auto;
  /* background: var(--color-primary); */
}

.Background {
  position: relative;
  height: 100%;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.Background-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.Background-images__arrows {
  max-width: 850px;
  height: 750px;
  left: -40px;
  bottom: 90px;
  transform: translateX(-50px);
  position: absolute;
  object-fit: cover;
}

.Background-images__man {
  max-width: 100%;
  object-fit: cover;
  height: 700px;
  object-position: 27%;
  position: relative;
  /* position: absolute; */
  z-index: 1;
  /* left: 10%; */
  /* transform: translateX(-50px); */
}

.Background__Text-container {
  position: absolute;
  left: 47%;
  bottom: 140px;
  transform: translateY(-50%);
  z-index: 1;
}

.Badge--Yellow,
.Badge--Yellow--Title {
  padding: 15px;
  text-align: center;
  font-weight: bolder;
  width: 100%;
  text-decoration: none;
  background-color: var(--color-radiant);
  color: var(--color-primary);
  border-radius: 15px;
  font-size: 24px;
  font-weight: 800;
}

.Badge--Yellow--Title {
  padding: 0px 10px;
  font-weight: 800;
  font-size: 45px;
  width: fit-content;
}

/* .Actions {
  display: flex;
  justify-content: center;
  flex-direction: column;
} */

.Actions-card-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: calc(100% - 154px);
  /* width: 50%; */
  padding: 25px 0px;
  /* position: absolute; */
  max-height: 100%;
  overflow: auto;
  padding-bottom: 15px;
  margin-right: 15px;
}

.Actions-header {
  padding-top: 50px;
  height: 154px;
  position: relative;
  width: 100%;
  top: 0;
}

.Actions-header__logo {
  width: 100%;
  height: 98px;
  object-fit: cover;
  object-position: right;
  position: absolute;
  right: 0;
  max-width: 340px;
}

h2:first-of-type {
  margin-top: 10px;
}

h2 {
  font-size: 35px;
  color: white;
  font-weight: 300;
  line-height: 35px;
}

h3 {
  font-size: 35px;
  font-weight: 900;
  color: var(--color-primary);
}

.Actions-card {
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.39);
  max-width: 400px;
  /* padding-bottom: 50px; */
  text-align: center;
  position: relative;
  z-index: 3;
}

.Actions-card__header {
  background-color: var(--color-light);
  border-radius: 25px 25px 0 0;
  padding: 25px;
}

.Actions-card__header p {
  margin: 0;
  font-size: 19px;
  color: var(--color-disabled);
  margin-top: -8px;
}

.Actions-card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  padding: 20px 45px;
}

.Background--other {
  display: none;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 5px;
  text-align: center;
  background: white;
}

@media screen and (max-width: 700px) {
  .Background {
    display: none;
  }

  .Actions-card {
    max-width: 500px;
  }

  .Background--other {
    display: block;
    min-height: 800px;
    position: relative;
    height: calc(100% - 741px);
  }

  body {
    padding-bottom: 80px;
  }

  .fakeHeight {
    height: 25px;
  }

  .app {
    grid-template-columns: 1fr;
    max-height: 50%;
    min-height: 655px;
  }

  .Actions {
    grid-row: 1 / 2;
  }

  .Actions-card-container {
    width: 100%;
    justify-content: center;
    padding: 15px;
    height: fit-content;
  }

  .Actions-header {
    display: flex;
    justify-content: center;
  }

  .Actions-header__logo {
    right: 0;
  }

  .Background-images__man {
    left: 0;
    bottom: 0;
    position: absolute;
    transform: none;
  }

  .Badge--Yellow {
    font-size: 31px;
  }

  .Badge--Yellow--Title {
    font-size: 35px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 35px;
  }

  .Actions-card__header p {
    font-size: 20px;
  }

  footer {
    font-size: 20px;
  }
}
