* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1b1b1b;
  line-height: 1.6;
}

header.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;

  @media screen and (min-width: 992px) {
    font-size: 3.125rem;
  }
}

h2 {
  font-size: 2rem;
  @media screen and (min-width: 992px) {
    font-size: 2.75rem;
  }
}

h3 {
  font-size: 1.625rem;
  @media screen and (min-width: 992px) {
    font-size: 1.875rem;
  }
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.eyebrow {
  font-size: 1rem;
  color: #48484A;
  font-weight: 600;
}

.top-nav .logo {
  width: 200px;
  height: auto;

}
.top-nav nav a {
  margin-right: 1.5rem;
  text-decoration: none;
  color: #004AF3;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding: .25rem;
  z-index: 5;
  position: relative;
  
  &:hover {
    color: #001982;
    border-bottom: 2px solid #001982;
  }

  @media screen and (min-width: 992px) {
    margin-left: 1.5rem;
    margin-right: 0;
  }
}

.container {
  max-width: 1300px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  padding-right: 1rem;
  padding-left: 1rem;
}

.img-fluid {
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.gradient-blue {
  background: #004AF3;
  background: linear-gradient(180deg, rgba(0, 74, 243, 1) 0%, rgba(0, 57, 224, 1) 21%, rgba(0, 41, 177, 1) 59%, rgba(0, 33, 154, 1) 80%, rgba(0, 25, 130, 1) 100%);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 1rem;
  background: #EBF8FE;
  margin-bottom: 150px;
  position: relative;

  @media screen and (min-width: 992px) {
    padding: 3rem 2rem;
  }
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-buttons .primary {
  margin-bottom: 1rem;

  @media screen and (min-width: 992px) {
    margin-right: 1rem;
  }
}

.hero-image {
  display: none;

  @media screen and (min-width: 992px) {
    display: block;
    max-width: 45%;
    position: absolute;
    right: 0;
    bottom: -125px;
  }
  @media screen and (min-width: 1200px) {
    max-width: 50%;
    bottom: -200px;
  }

}

.btn {
  padding: 0.75rem 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: .5rem;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  text-align: center;

  @media screen and (min-width: 992px) {
    width: auto;
  }
}
.primary {
  background: #004AF3;
  color: white;
  border: 2px solid #004AF3;
  &:hover {
    background: #001982;
    border: 2px solid #001982;
  }
}

.secondary {
  background: white;
  color: #004AF3;
  border: 2px solid #004AF3;
  &:hover {
    color: #001982;
    border-color: #001982;
  }
}

.tertiary {
  background: #FB5F4F;
  color: white;
  border: 2px solid #FB5F4F;
  &:hover {
    background: #fa321d;
  }
}

.negative-mt {
    margin-top: -130px;
}

.w-100 {
  width: 100%;
}

.content-image {
  display: flex;
  padding: 2rem 1rem;
  flex-direction: column;
  align-items: start;

  @media screen and (min-width: 992px) {
    flex-direction: row;
    padding: 3rem 2rem;
    align-items: center;
  }
}

.image {
  max-width: 200px;

  @media screen and (min-width: 992px) {
    margin-right: 30px;
    max-width: 100%;
  }
}

.image, .content {
  flex: 1;
}

.image-right {
  @media screen and (min-width: 992px) {
    order: 2;
    margin-right: 0;
    margin-left: 30px;
  }
  
}

.content ul {
  list-style: none;
  padding-left: 1rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  
}

.content ul li {
  margin: .5rem;
  
}

.check-list li{
  display: flex;
  &::before {
    content: url('images/icon-check.svg');
    margin-right: 0.5rem;
  }
}

.content ul.content-grid {
  @media screen and (min-width: 992px) {
    display: flex;
    flex-wrap: wrap;
  }
}

.content ul.content-grid li {
  display: flex;
  @media screen and (min-width: 992px) {
    width: 45%;
  }
}

.content ul li span {
  display: flex;
  flex-direction: column;
}
.pathways {
  color: white;
  padding: 3rem 1rem;
  @media screen and (min-width: 992px) {
    padding: 5rem 2rem;
  }
}

.pathways .container {
  flex-direction: column;

  @media screen and (min-width: 992px) {
    flex-direction: row;
  }
}

.pathways-content {
  @media screen and (min-width: 992px) {
    margin-right: 30px;
  }
}

.pathways .card .check-list {
  margin: 0 1rem;
  font-size: 18px;
}

.cards {

  @media screen and (min-width: 992px) {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
}

.card {
  background: white;
  color: #1b1b1b;
  border-radius: 10px;
  padding: 1.25rem;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: fit-content;
  margin-bottom: 2rem;

  @media screen and (min-width: 1200px) {
    min-width: 380px;
    margin-bottom: 0;
  }
}

.card h3 {
  margin-bottom: 1rem;
  color: #004AF3;
}

.price {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.price del {
  color: #7E7E7E;
}

.price del, .price span {
  font-size: 1.875rem;
}

.success-stories {
  padding: 1rem 1rem 3rem;
  background: #001982;

  @media screen and (min-width: 992px) {
    padding: 2rem 2rem 4rem;
  }
}

.success-stories .container {
  flex-direction: column;
  align-items: center;
}

.success-stories h2 {
  color: #fff;
}

.success-stories h4 {
  color: #004AF3;
}

.stories {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.story {
  
  @media screen and (min-width: 992px) {
    flex: 1;
    min-width: 200px;
  }
}

.story-logo {
  padding: 1rem;
  border-radius: 20px;
  margin-right: 2rem;
  height: 200px;
}

.story-logo img {
  max-height: 85px;
  max-width: 100%;
}

.story-content {
  background: #fff;
  padding: 1rem;
  border-radius: 20px;
  margin-left: 2rem;
  margin-top: -90px;
}

.story-content p {
  font-size: 1.125rem;
  margin: 0;
}

.choose-buttons {
  margin-top: 1rem;
}

.choose-buttons a {
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.newsletter {
  padding: 2rem;
  background: #EBF8FE;
  text-align: center;

  @media screen and (min-width: 992px) {
    padding: 3rem 2rem;
  }
}

.newsletter h2 {
  color: #004AF3;
}

.newsletter p {
  max-width: 700px;
  margin: auto;
}

.newsletter input, .newsletter button {
  margin-top: 1rem;
}

.newsletter input {
  padding: 0.5rem;
  width: 100%;
  margin-right: 1rem;
  height: 51px;
  border: 1px solid #004AF3;
  font-size: 18px;
  color: #004AF3;
  font-weight: 600;

  &:focus {
    border: 2px solid #004AF3;
  }

  @media screen and (min-width: 992px) {
    width: 250px;
  }
}
  
.hs-form-frame {
	margin: auto;
	max-width: 500px;
}

footer {
  padding: 1rem;
  text-align: center;
  background: #f8f8f8;
}

footer p {
  margin-bottom: 0;
  font-size: 1rem;
}

