:root {
  --color-dark: #0F1D25;
  --color-dark-2: #414141;
  --color-primary: #9C6BAB;
  --color-primary-2: #7c4e8a;
  --radius: 6px;
  --max-width: calc(100% - 40px);
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  margin: 0;
  background-color: #FCFCFC;
  overflow: hidden auto;
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5rem 1rem 1rem;
}

.logo, .slogan, .slogan-2 {
  width: 30rem;
  max-width: var(--max-width);
  color: var(--color-dark);
}

.slogan {
  margin-top: 4rem;
}

.slogan-2 {
  display: block;
  margin: 4rem auto 0;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--max-width);
  max-width: 600px;
  margin: 0 auto 0;
  user-select: none;
}

h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-dark);
  line-height: 3rem;
}

h2 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-2);
}

.cta {
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  margin-top: 1rem;
  border: none;
  border-radius: var(--radius);
  padding: .5rem 1rem;
  color: var(--color-dark);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  outline: none;
  transition: background-color 150ms;
}

.cta:hover {
  text-decoration: underline;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  color: white;
  background-color: var(--color-primary);
}

.icon > svg {
  font-size: 1rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 0;
  padding: 0;
}

.about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-item_title {
  position: relative;
  margin: 3rem 0 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.about-item_title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  border-radius: 2px;
  height: 3px;
  background: linear-gradient(45deg, var(--color-primary) 45%, #334C64, #577B8D, #56A6A1, #A6CB6F);
}

.about-item:nth-child(2) > .about-item_title::after {
  background-color: #577B8D;
}

.about-item:nth-child(3) > .about-item_title::after {
  background-color: #57A7A2;
}

.about-item:nth-child(4) > .about-item_title::after {
  background-color: #A6CB6F;
}

.about-item_description {
  width: calc(100% - 40px);
  max-width: 700px;
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-2);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  padding: .5rem;
  color: var(--color-dark);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
}
