@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.header-container, .hero-container, footer {
  background-color: #251f37;
  padding: 18px;
  display: flex;
  justify-content: center;
}

.header, .hero {
  width: 1025px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    color: #F9FAF8;
    font-size: 24px;
    font-weight: 900;
}

nav {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

a {
    text-decoration: none;
    color: #F9FAF8;
}

nav a, .hero-secondary, footer {
    color: #e5e7eb;
    font-size: 18px;
}

nav a {
    text-align: center;
}

.hero-container {
    padding: 100px 16px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}

.hero-left, .hero-right {
    margin: auto;
}

.hero-left {
    flex: 1 1 225px;
}

.hero-right {
    flex: 1 0 240px;
    aspect-ratio: 7 / 3;
    min-height: 240px;
    max-width: min-content;
    width: 50%;
    object-fit: cover;
    border-radius: 12px
}

.hero-main {
    color: #F9FAF8;
    font-size: 48px;
    font-weight: 900;
}

.hero-secondary {
    margin-bottom: 12px;
}

.btn {
    background-color: #844af6;
    color: #F9FAF8;
    font-size: 18px;
    font-weight: 900;
    border: none;
    padding: 8px 34px;
    border-radius: 8px;
    cursor: pointer;
}

.btn:hover {
    color: #fff;
    transition: 0.4s;
}

.hero-left .btn:hover {
    background-color:#844af6BF;
}

.cta .btn:hover {
    background-color:#703bdc;
    border: 2px solid #F9FAF8;
}

.hero-left .btn:active, .cta .btn:active {
    background-color: #844af6;
    transition: 0.1s;
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 18px 120px;
    gap: 52px;
}
.info-head {
    color: #251f37;
    font-size: 36px;
    font-weight: 900;
}
.info-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 52px;
}

.info {
    max-width: 168px;
    text-align: center;
}

.info img {
    border: 4px solid #844af6;
    border-radius: 12px;
    object-fit: cover;
    width: 168px;
    height: 168px;
}

.info-subtext {
    color: #251f37;
    font-size: 18px;
    font-weight: 300;
    margin-top: 4px;
}

.quote-container {
    background-color: #e8e5eb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 130px 18px;
}

.quote {
    display: flex;
    flex-wrap: wrap;
    width: 790px;
    gap: 8px;
}

.quote-text {
    color:#251f37;
    font-size: 36px;
    font-weight: 250;
    font-style: italic;
}

.quote-attribution {
    color:#251f37;
    font-size: 24px;
    font-weight: bold;
    margin-left: auto;
}

.cta-container {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 18px;
}

.cta {
    background-color: #844af6;
    border-radius: 12px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1025px;
    padding: 50px;
    gap: 18px;
}

.cta-text h2 {
    color: #F9FAF8;
}

.cta-text p {
    color: #e5e7eb;
    font-size: 18px;
}

.cta .btn {
    border: 2px solid #F9FAF8;
    white-space: nowrap;
}

footer {
    padding: 40px;
}

.grow {
  transition: 0.3s;
}

.grow:hover { 
  transform: scale(1.05);
  transition: 0.3s;
  box-shadow: 0px 0px 12px #110e1b80; 
}