:root {
  --atlas-purple: #4945ff;
}

* {
  -webkit-box-sizing: border-box;
  text-decoration: none;
}
*:not(a) {
  color: #425466;
}
a {
  color: var(--atlas-purple);
}
body,
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}
body {
  font-size: 1.3rem;
  font-family: Lato, Helvetica, Arial, Verdana, sans-serif;
  background: #fafafb;
  margin: 0;
  padding: 40px 0 80px 0;
  color: #333740;
  line-height: 1.8rem;
  position: relative;
}

body::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";

  background: linear-gradient(197deg, var(--atlas-purple), #8582ff, #c2c1ff);
  animation: gradient-animation 18s ease infinite alternate;

  background-size: 180% 180%;

  clip-path: ellipse(94% 41% at 50% 80%);

  z-index: -1;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

strong {
  font-weight: 700;
}
.wrapper {
  width: 540px;
  margin: auto;
}
h1 {
  text-align: center;
}
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1px;
}
.logo {
  height: 40px;
  margin-bottom: 74px;
}
.informations {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* height: 126px; */
  margin-top: 18px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 4px 0 #e3e9f3;

  border: 0.5px solid #eaeaef;
}
.informations:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: var(--atlas-purple);
}
.environment {
  display: inline-block;
  padding: 0 10px;
  height: 20px;
  margin-bottom: 36px;
  background: #d4d3ff;
  border: 1px solid var(--atlas-purple);
  border-radius: 99rem;
  text-transform: uppercase;
  color: var(--atlas-purple);
  font-size: 1rem;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.03rem;
}
.cta {
  display: inline-block;
  height: 30px;
  padding: 0 15px;
  margin-top: 32px;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  line-height: 28px;
}
.cta i {
  position: relative;
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  font-size: 1rem;
  margin-right: 20px;
}
.cta i:before {
  position: absolute;
  top: 8px;
}
.cta-primary {
  background: var(--atlas-purple);
}
.cta-secondary {
  background: #6dbb1a;
}
.text-align-right {
  text-align: right;
}
.lets-started {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 144px;
  margin-top: 18px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 #e3e9f3;
}
.people-saying-hello {
  position: absolute;
  right: 30px;
  bottom: -8px;
  width: 113px;
  height: 70px;
}
.visible {
  opacity: 1 !important;
}
.people-saying-hello img {
  position: absolute;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    width: auto !important;
    margin: 0 20px;
  }
  .informations {
    flex-direction: column;
    height: auto;
  }
  .environment {
    width: 100%;
    text-align: center;
    margin-bottom: 18px;
  }
  .text-align-right {
    margin-top: 18px;
    text-align: center;
  }
  .cta {
    width: 100%;
    text-align: center;
  }
  .lets-started {
    height: auto;
  }
  .people-saying-hello {
    display: none;
  }
}

.informations:has(.mainTitle) {
  align-items: flex-start;
  flex-direction: column;
  display: flex;

  padding: 24px 0 0 0;
}

.informations:has(.mainTitle) > * {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.topSpan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;

  margin-bottom: 18px;
}

.topSpan .environment {
  margin-bottom: 0;
  order: -1;
}

.mainTitle {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.384615385;
  letter-spacing: -0.018em;

  text-align: left;
  color: #0a2540;
}

.subTitle {
  font-size: 18px;
  color: #425466;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.about-atlas {
  padding-bottom: 20px;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #eaeaef;
  background-color: #f6f6f9;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learn-more-iliad:hover {
  text-decoration: underline;
}

.informations > :not(:is(.topSpan, .about-atlas)) {
  margin-top: 16px;
}
