/* CSS for index.html landing page */

.container {
  padding-bottom: 0;
}
.page-hero {
  /* background by SVGBackgrounds.com */
  background-color: rgb(20, 48, 130);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 200 200'%3E%3Cpolygon fill='%232B58B2' points='100 0 0 100 100 100 100 200 200 100 200 0'/%3E%3C/svg%3E");
  background-attachment: fixed;
  min-height: 720px;
  height: 66vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-text {
  text-align: center;
  width: 100%;
  color: white;
  margin: 64px;
}

.hero-text h1 {
  font-size: 62px;
  font-weight: 400;
  margin: 0;
}
.hero-text h2 {
  width: 66%;
  font-weight: 300;
  margin: 40px auto;
}

.hero-cta-button {
  color: black;
  background: white;
  font-weight: 400;
  line-height: 40px;
  font-size: 24px;
  text-align: center;
  padding: 16px 12px;
  display: inline-block;
}
.hero-cta-button:hover {
  background: #eee;
}
.macbook-img {
  height: 320px;
  width: auto;
}
.features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.feature {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 25%;
  margin: 0 4%;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
  padding: 32px 16px;
  box-sizing: border-box;
  background: rgb(29, 62, 138);
  color: white;
}

.feature-icon {
  font-size: 24px;
}
.feature-title {
  font-size: 24px;
}
.feature-details {
  font-size: 18px;
}

.description {
  padding-top: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: white;
  margin-bottom: 24px;
}
.description-area {
  width: 46%;
  margin: 2%;
  display: flex;
  justify-content: center;
}
.description-image {
  height: 420px;
  width: auto;
  background: black;
  border-radius: 22px;
  padding: 1px;
}
.description-number {
  font-size: 36px;
}
.description-text {
  font-size: 22px;
  color: black;
}
.final-cta-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.final-cta-button .hero-cta-button {
  background: rgb(29, 62, 138);
  color: white;
}

/* Responsive Mobile Styles */
@media all and (max-width: 660px) {
  .page-hero {
    height: 600px;
  }
  .hero-text {
    width: 96%;
  }
  .hero-text h1 {
    font-size: 44px;
  }
  .hero-text h2 {
    font-size: 32px;
  }

  .description {
    flex-direction: column;
  }
  .description-area {
    width: 82%;
    margin: 9%;
  }
}

@media all and (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text h2 {
    font-size: 24px;
    width: 100%;
  }
  .hero-cta-button {
    font-size: 20px;
    padding: 6px 10px;
  }
}
