.bar {
  padding: 0;
}

.bar--green {
  background: var(--green);
}

.bar--blue {
  background: var(--blue);
}

.bar--light {
  background: rgb(248,252,255);
  background: linear-gradient(0deg, rgba(248,252,255,1) 0%, rgba(230,245,254,1) 100%);
}

.bar__row {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1400px) {
  flex
}

.bar__title {
  color: white;
  width: 87.5rem;
  margin: 0 0 5rem 0;
}

.bar--light .bar__title {
  color: var(--dark);
}

/* @media(min-width: 1400px) {
  .bar__title {
    margin: 0;
  }
} */

@media(max-width: 1400px) {
  .bar__title {
    padding: 0 !important;
  }
}

@media(max-width: 1200px) {
  .bar__title {
    width: 100%;
    margin: 0 0 5rem 0;
  }
}

@media(max-width: 1200px) {
  .bar__title {
    width: 100%;
    padding: 0;
    margin: 0 0 5rem 0;
  }
}

@media(max-width: 768px) {
  .bar__title {
    font-size: 3.6rem;
    line-height: 4rem;
    margin-bottom: 3rem;
  }
}

.bar__title--large {
  font-size: 5rem;
  font-weight: bold;
  line-height: 6rem;
}

.bar__title--medium {
  font-size: 3rem;
  line-height: 4.6rem;
}

.bar__title--small {
  font-size: 2.4rem;
  line-height: 3.4rem;
}

@media(max-width: 768px) {
  .bar__title--large {
    font-size: 3.4rem;
    line-height: 4rem;
  }

  .bar__title--medium {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }

  .bar__title--small {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.bar__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media(max-width: 768px) {
  .bar__ctas {
    min-width: 100%;
    justify-content: space-between;
  }
}

.bar .cta_button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-size: 1.8rem; 
  font-weight: bold;
  border-radius: 0.3rem;
  border: 3px solid transparent;
  text-decoration: none;
  color: #fff;
}

@media(max-width: 768px) {
  .bar .cta_button {
    margin-top: 3rem;
  }
}

.bar .hs-cta-wrapper:nth-of-type(1) .cta_button {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
  background: white;
  border-color: white;
  color: var(--dark);
} 

.bar .hs-cta-wrapper:nth-of-type(1) .cta_button:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}

.bar .hs-cta-wrapper:nth-of-type(2) .cta_button {
  margin-left: 2rem;
  background: transparent;
  border-color: #fff;
}

.bar--light .hs-cta-wrapper:nth-of-type(2) .cta_button {
  border-color: #1d263b;
  color: #1d263b;
}

@media(max-width: 768px) {
  .bar .hs-cta-wrapper:nth-of-type(2) .cta_button {
    margin-left: 0;
  }
}

.bar .hs-cta-wrapper:nth-of-type(2) .cta_button:hover {
  background: #fff;
  color: #1d263b;
}

.bar .bar__ctas--blue .hs-cta-wrapper:nth-of-type(1) .cta_button {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.bar .bar__ctas--green .hs-cta-wrapper:nth-of-type(1) .cta_button {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.bar .bar__ctas--blue .hs-cta-wrapper:nth-of-type(1) .cta_button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);;
}

.bar .bar__ctas--green .hs-cta-wrapper:nth-of-type(1) .cta_button:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

















