* {
  margin: 0px;
  padding: 0px;
}

body {
  display: block;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
}
@media (width >= 1100px) {
  .container {
    width: 1100px;
  }
}

.hero {
  display: flex;
  justify-content: center;
  position: relative;
  height: 1087px;
  width: 100%;
  background-color: #254d5a;
  text-align: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 76.04%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.44) 0%,
      rgba(255, 255, 255, 0) 87.75%
    );
}
.hero:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100vw;
  height: 368px;
  background-image: url("../src/images/hero-accent.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (width >= 1100px) {
  .hero:after {
    bottom: 0;
  }
}

.hero__image {
  width: 100vw;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero-content {
  position: absolute;
  top: 0;
  padding: 20px;
  max-width: 890px;
  font-family: "Inter", sans-serif;
  z-index: 1;
}
@media (width >= 1100px) {
  .hero-content {
    padding: 40px 0 0 0;
  }
}

.hero__logo {
  margin: 100px 0;
}
@media (width >= 1100px) {
  .hero__logo {
    margin: 0 0 80px 0;
  }
}

.hero__heading {
  margin-bottom: 45px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
}
@media (width >= 1100px) {
  .hero__heading {
    font-size: 2.5rem;
  }
}

.hero__subhead {
  margin-bottom: 70px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #000;
}
@media (width >= 1100px) {
  .hero__subhead {
    font-size: 1.5rem;
  }
}

.hero__cta {
  padding: 12px 55px;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #00c2ff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #00c2ff;
  transition: all 0.2s ease-in-out;
}
.hero__cta:hover {
  background-color: transparent;
}
@media (width >= 1100px) {
  .hero__cta {
    font-size: 1.5rem;
  }
}

.welcome {
  padding: 110px 0;
  background-color: #e8fbff;
}

.welcome__title {
  padding: 0 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  text-align: center;
}
@media (width >= 1100px) {
  .welcome__title {
    font-size: 1.5625rem;
  }
}

.pdf-section {
  padding: 100px 20px;
}

.pdf-section__container {
}

.pdf-section__group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-bottom: 50px;
}

.pdf-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 225px;
}

.pdf-section__link {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-decoration: none;
}

.pdf-section__link:visted {
  color: white;
}

.pdf-section__link:link {
  color: white;
}

.pdf-section__image {
  align-self: flex-start;
  max-width: 240px;
  width: 100%;
  height: auto;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.pdf-section__button {
  padding: 10px 30px;
  border: 1px solid #00c2ff;
  border-radius: 5px;
  color: #e8fbff;
  background-color: #00c2ff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.pdf-section__button:hover {
  background-color: #fff;
  color: #454547;
  border: 1px solid #454547;
}

@media (width >= 1100px) {
  .pdf-section__button {
    padding: 10px 40px;
  }
}

.pdf-section__body {
  padding: 25px 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.7;
  text-align: left;
}
@media (width >= 1100px) {
  .pdf-section__body {
    padding: 40 0;
  }
}

.icon-section {
  padding: 0 20px 50px 20px;
  background-color: #e8fbff;
}
@media (width >= 1100px) {
  .icon-section {
    padding: 80px 50px 200px 50px;
  }
}

.icon-section__row {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
@media (width >= 1100px) {
  .icon-section__row {
    flex-direction: row;
    margin-bottom: 70px;
    text-align: left;
  }
}

.icon-section__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px;
  width: 100px;
  aspect-ratio: 1/1;
  background-color: #00c2ff;
  border-radius: 50%;
}
@media (width >= 1100px) {
  .icon-section__icon-container {
    margin: 0 90px 0 0;
    padding: 20px;
  }
}

.icon-section__icon {
  font-size: 2.625rem;
  color: #fff;
}

.icon-section__body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 30px;
}
@media (width >= 1100px) {
  .icon-section__body {
    padding-right: 80px;
  }
}

.book-section {
  position: relative;
  padding: 50px 20px;
  z-index: 0;
}

.book-section--gradient {
  background-color: #e8fbff;
}

.book-section--gradient:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1059px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: -1;
}
@media (width >= 1100px) {
  .book-section {
    padding: 50px 30px 100px 30px;
  }
  .book-section--gradient:before {
    top: -450px;
  }
}

.book-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width >= 1100px) {
  .book-section__container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.book-section__content {
  margin: 50px 0;
  text-align: center;
}
@media (width >= 1100px) {
  .book-section__content {
    margin: 0;
    text-align: left;
  }
}

.book-section__image {
  max-width: 350px;
}
@media (width >= 1100px) {
  .book-section__image {
    margin-right: 130px;
  }
}

.book-section__image--shadow {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
}

.book-section__new-icon {
  display: inline-block;
  padding: 3px 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 5px;
  background-color: #254d5a;
}
@media (width >= 1100px) {
  .book-section__new-icon {
    padding: 5px 15px;
    font-size: 1rem;
  }
}

.book-section__book-title {
  padding-bottom: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #454547;
  border-bottom: 1px solid rgba(69, 69, 71, 0.5);
}
@media (width >= 1100px) {
  .book-section__book-title {
    font-size: 2.25rem;
  }
}

.book-section__body {
  margin: 40px 0 20px 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #454547;
}
@media (width >= 1100px) {
  .book-section__body {
    font-size: 1rem;
  }
}

.book-section__select {
  display: flex;
  margin-bottom: 60px;
  justify-content: center;
}
@media (width >= 1100px) {
  .book-section__select {
    margin-bottom: 90px;
    justify-content: flex-start;
    font-size: 2.25rem;
  }
}

.book-section__select-button {
  position: relative;
  margin-right: 15px;
  padding: 10px 30px;
  border: 1px solid #000;
  border-radius: 5px;
  color: #e8fbff;
  background-color: #454547;
  transition: all 0.2s ease-in-out;
}
.book-section__select-button:nth-of-type(2) {
  background-color: #fff;
}
.book-section__select-button:nth-of-type(2) a:link {
  color: #454547;
}
.book-section__select-button:nth-of-type(2) a:visited {
  color: #454547;
}
.book-section__select-button:nth-of-type(2):hover {
  background-color: #454547;
}
.book-section__select-button:nth-of-type(2):hover a {
  color: #e8fbff;
}
.book-section__select-button a:link {
  color: #e8fbff;
  text-decoration: none;
}
.book-section__select-button a:visited {
  color: #e8fbff;
  text-decoration: none;
}
.book-section__select-button a:before {
  content: "";
  position: absolute;
  inset: 0;
}
.book-section__select-button:hover {
  background-color: #fff;
}
.book-section__select-button:hover a {
  color: #454547;
}
@media (width >= 1100px) {
  .book-section__select-button {
    margin-right: 40px;
    padding: 15px 40px;
  }
}

.book-section__link {
  padding: 15px 100px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
  border: 2px solid #00c2ff;
  border-radius: 5px;
  background-color: #00c2ff;
  transition: all 0.2s ease-in-out;
}
.book-section__link:hover {
  background-color: transparent;
  color: #454547;
}

.video {
  padding: 100px 20px;
  position: relative;
  background-color: #e8fbff;
}
.video:before {
  content: "";
  position: absolute;
  background-image: url("../src/images/wave-accent.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 30px;
  left: 0;
  top: -25px;
}
.video:after {
  content: "";
  position: absolute;
  background-image: url("../src/images/curve-accent.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  max-height: 100px;
  height: 100%;
  left: 0;
  bottom: 0;
}
@media (width >= 1100px) {
  .video {
    padding: 220px 30px 300px 30px;
  }
  .video:before {
    height: 89px;
    left: 0;
    top: -80px;
  }
  .video:after {
    max-height: 340px;
  }
}

.video__container {
  display: flex;
  flex-direction: column;
  position: inherit;
  z-index: 1;
}
@media (width >= 1100px) {
  .video__container {
    flex-direction: row;
    gap: 100px;
  }
}

.video-content {
  text-align: center;
}
@media (width >= 1100px) {
  .video-content {
    text-align: left;
    max-width: 30%;
  }
}

.video__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.video__body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2rem;
}
@media (width >= 1100px) {
  .video__body {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}

.video-media {
  display: flex;
  justify-content: center;
  margin: 10px;
}

@media (width >= 1100px) {
  .video-media {
    margin: 0;
    max-width: 100%;
/*    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);*/
  }
}

@media (width < 1100px) {
  .video-media {
    margin: 0;
    max-width:100%;

  }

  .hero-content {
      width:90%;
      padding:20px 5%;
      height:auto !important;
    }

  .hero {
/*    height:164vh;*/
  }

  .hero__logo{
    margin:20px 0px;
  }

  .hero__subhead, .hero__heading {
    margin-bottom:40px;
  }
}


.video-media iframe {
  height: 360px;
  width: 640px;
}

.footer {
  padding-top: 50px;
  background-color: #254d5a;
}

.footer-column {
  padding: 20px;
  text-align: center;
}

.footer__logo {
  margin-bottom: 25px;
}

.footer__contact-email {
  display: block;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #e8fbff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.footer__contact-email:hover {
  color: #00c2ff;
}

.footer__contact-phone {
  display: block;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #e8fbff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.footer__contact-phone:hover {
  color: #00c2ff;
}

.footer-socials__link {
  display: inline-block;
  padding: 0 10px 10px 10px;
  font-size: 2rem;
  color: #e8fbff;
  transition: color 0.2s ease-in-out;
}
.footer-socials__link:hover {
  color: #00c2ff;
}

.footer-socials__body {
  margin: 0 0 10px 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #e8fbff;
}

.footer-socials__form {
  display: flex;
  margin-left: 10px;
}

.footer-socials__form-label {
  margin: 0;
}

.footer-socials__form-input {
  margin: 0;
  padding: 10px;
  border: 1px solid #fff;
}

.footer-socials__submit {
  margin: 0;
  padding: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #e8fbff;
  border: none;
  background-color: #00c2ff;
  cursor: pointer;
}

.footer-legal {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(232, 251, 255, 0.25);
}

.footer-legal__copyright {
  padding: 25px 50px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #e8fbff;
  transition: color 0.2s ease-in-out;
}

.footer-legal__privacy {
  padding: 25px 50px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.footer-legal__privacy:link {
  color: #e8fbff;
}
.footer-legal__privacy:visited {
  color: #e8fbff;
}
.footer-legal__privacy:hover {
  color: #00c2ff;
}

/*# sourceMappingURL=styles.css.map */


