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

.home {
  padding: 1rem;
  width: 100%;
  height: 100.1vh;
  max-width: 100%;
  z-index: 2;
  background: linear-gradient(243deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.4)), url(/assets/Rectangle62.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.home .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.home .container img {
  width: fit-content;
}

.home .red-cross-logo_container {
  position: relative;
  display: flex;
  bottom: 180px;
}

.home .red-cross-logo_container .red-cross__logo {
  margin-left: auto;
  margin-right: 20px;
}

.home h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home h1 {
    font-size: 54px;
  }
}

.menu-btn {
  position: absolute;
  color: #A5063B;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #A5063B;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before {
  content: '';
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #A5063B;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #A5063B;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger.open {
  transform: rotate(720deg);
  background: transparent;
}

.menu-btn__burger.open::before {
  transform: rotate(45deg) translate(5px, 8px);
}

.menu-btn__burger.open::after {
  width: 28px;
  transform: rotate(-45deg) translate(3px, -7px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0.98;
  visibility: hidden;
}

.nav .logo {
  display: none;
}

.nav .logo .logo__image {
  height: 100%;
  margin-left: 30px;
  max-height: 80px;
}

.nav.scrolled {
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, white 80%, rgba(0, 0, 0, 0) 90%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
  /* IE6-9 */
  transition: all 0.5s ease-in-out;
}

.nav.open {
  visibility: visible;
}

.nav .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: #ffffff;
  list-style-type: none;
  padding: 0;
  transform: translateY(-100%);
}

@media screen and (max-width: 1023px) {
  .nav .menu-nav {
    transition: all 0.5s ease-in-out;
  }
}

.nav .menu-nav.open {
  transform: translateY(0);
}

.nav .menu-nav__item {
  padding-bottom: 0.5rem;
  transform: translateX(100vw);
  transition: all 0.5s ease-in-out;
}

.nav .menu-nav__item a {
  color: #A5063B;
}

.nav .menu-nav__item.open {
  transform: translateX(0);
}

.nav .menu-nav__item.active > a {
  color: #A5063B;
}

.nav .menu-nav__link {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border-bottom: 3px solid transparent;
}

.nav .menu-nav__link:hover {
  border-bottom: 3px solid #A5063B;
}

@media screen and (max-width: 1023px) {
  .menu-nav__item:nth-child(1) {
    transition-delay: 0.25s;
  }
}

@media screen and (max-width: 1023px) {
  .menu-nav__item:nth-child(2) {
    transition-delay: 0.35s;
  }
}

@media screen and (max-width: 1023px) {
  .menu-nav__item:nth-child(3) {
    transition-delay: 0.45s;
  }
}

@media screen and (max-width: 1023px) {
  .menu-nav__item:nth-child(4) {
    transition-delay: 0.55s;
  }
}

@media screen and (max-width: 1023px) {
  .menu-nav__item:nth-child(5) {
    transition-delay: 0.65s;
  }
}

@media screen and (max-width: 1023px) {
  .menu-nav__item:nth-child(6) {
    transition-delay: 0.75s;
  }
}

@media screen and (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
  .nav {
    width: 100%;
    visibility: visible;
    position: inherit;
    display: flex;
    justify-content: space-between;
  }
  .nav .logo {
    display: block;
  }
  .nav .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    padding: 1rem 1rem 1.5rem 0;
    margin-left: auto;
    background: transparent;
    text-align: right;
  }
  .nav .menu-nav__item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav__item a {
    color: #ffffff !important;
  }
  .nav .menu-nav__item.active > a {
    color: #A5063B;
  }
  .nav .menu-nav__link {
    transition-delay: 0s;
    font-size: 1.5rem;
  }
  .nav .menu-nav .menu-home__link {
    display: none;
  }
}

.courses {
  width: 100%;
  color: #1e1e1e;
}

.courses .courses-content {
  margin: 0 !important;
}

.courses .grid {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 0.6fr));
  justify-content: space-around;
  margin: 30px auto 0 auto;
  width: 100%;
}

.courses .grid .card {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.courses .grid .card__btn {
  background-color: #A5063B;
  width: fit-content;
  margin-top: 10px;
  padding: 10px;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 700;
  border: 2px solid transparent;
}

.courses .grid .card__btn:hover {
  background-color: white;
  color: #A5063B;
  border: 2px solid #A5063B;
}

.about-content__text {
  max-width: 100%;
}

.about-content__image {
  width: max-content;
  max-width: 165px;
  margin: 20px auto;
}

.about-joanna__container {
  display: flex;
}

.about-joanna__container img {
  max-width: 150px;
}

.about-joanna__container .about-joanna__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-joanna__container .about-joanna__text .title {
  margin: 10px 0;
}

@media screen and (min-width: 768px) {
  .about-content .about__container {
    justify-content: space-between;
  }
  .about-content__text {
    max-width: 75%;
    padding-right: 30px;
  }
  .about-content__image {
    margin-top: 0;
    height: 100%;
    max-width: 180px;
  }
  .about-joanna__container .about-joanna__text {
    margin-left: 30px;
  }
  .about-joanna__container .about-joanna__text .title {
    margin: 10px 0;
  }
}

.instructor__container:last-of-type {
  padding-top: 20px;
}

.instructor__container p {
  display: inline-block;
}

.instructor__container p span {
  font-weight: 700;
}

.testimonials-content {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 0.6fr));
  justify-content: space-around;
  margin: 30px auto 0 auto;
  width: 100%;
}

.testimonials-content .testimonial__container {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 4px;
  border: 2px solid #A5063B;
}

.testimonials-content .testimonial__container svg {
  margin: 5px auto;
}

.testimonials-content .testimonial__container .testimonial-content__text {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonials-content .testimonial__container .testimonial-author {
  text-align: end;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .testimonials-content {
    grid-template-columns: repeat(2, minmax(320px, 0.6fr));
  }
}

.contact-section__wrapper {
  background-color: #e5e5e533;
}

.contact {
  margin: 30px auto 0 auto !important;
  padding: 40px 20px 20px 20px !important;
}

.contact-content {
  display: flex;
  flex-direction: column;
}

.contact-content .container__text {
  width: 100%;
}

.contact-content .container__text .contact-info__table {
  margin: 20px 0;
}

.contact-content .container__text .contact-info__table td {
  vertical-align: middle;
}

.contact-content .container__text .contact-info__table p,
.contact-content .container__text .contact-info__table a {
  margin-left: 25px;
  color: #1e1e1e;
}

.contact-content .container__text .contact-info__table .contact-detail {
  display: flex;
  align-items: center;
}

.contact-content .container__form {
  width: 100%;
}

.contact-content .container__form .name__container,
.contact-content .container__form .email__container,
.contact-content .container__form .subject__container,
.contact-content .container__form .message__container,
.contact-content .container__form .phone-number__container {
  margin-bottom: 10px;
}

.contact-content .container__form input,
.contact-content .container__form textarea {
  display: block;
  max-width: 400px;
  width: 100%;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  max-width: 100%;
  min-width: 100%;
  font-family: inherit;
  font-size: inherit;
}

.contact-content .container__form input {
  padding-left: 5px;
  height: 30px;
}

.contact-content .container__form textarea {
  padding: 5px;
  min-height: 100px;
}

.contact-content .container__form .btn-submit {
  background-color: #A5063B;
  font-weight: 700;
  border: 2px solid transparent;
}

.contact-content .container__form .btn-submit:hover {
  background-color: white;
  color: #A5063B;
  border: 2px solid #A5063B;
}

.contact .text-secondary {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

@media screen and (min-width: 768px) {
  .contact-content {
    display: flex;
    flex-direction: row;
  }
  .contact-content .container__text {
    width: 35%;
    margin-right: 40px;
  }
  .contact-content .container__text .contact-info__table {
    margin: 20px 0;
  }
  .contact-content .container__text .contact-info__table td {
    vertical-align: middle;
  }
  .contact-content .container__text .contact-info__table p {
    margin-left: 25px;
  }
  .contact-content .container__text .contact-info__table .contact-detail {
    display: flex;
    align-items: center;
  }
  .contact-content .container__form {
    width: 65%;
  }
  .contact-content .container__form input {
    height: 30px;
  }
  .contact-content .container__form textarea {
    min-height: 100px;
  }
  .contact-content .container__form .btn-submit {
    background-color: #A5063B;
  }
  .contact .text-secondary {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .contact__list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact-content .container__form .name-email__container {
    display: flex;
  }
  .contact-content .container__form .name__container,
  .contact-content .container__form .phone-number__container {
    padding-right: 20px;
  }
  .contact-content .container__form .name__container,
  .contact-content .container__form .email__container,
  .contact-content .container__form .phone-number__container {
    width: 50%;
  }
}

section {
  margin: 20px auto 0 auto;
  padding: 20px 20px 0 20px;
  max-width: 1200px;
}

section:first-of-type {
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}

section .subsection {
  display: flex;
  flex-direction: column;
}

section .section-title {
  size: 3rem;
  color: #1e1e1e;
}

section .section-title h1 {
  width: fit-content;
  border-bottom: 3px solid #A5063B;
  padding: 0 5px;
  margin: 0 auto;
}

section .section-content {
  margin: 30px auto 0 auto;
  max-width: 1200px;
}

@media screen and (min-width: 768px) {
  section .subsection {
    padding-top: 20px;
    flex-direction: row;
  }
}

.course-details .subsection {
  display: block;
  padding: 0;
  margin-bottom: 20px;
}

.section {
  padding: 0 20px !important;
}

.title_underline {
  width: 200px;
  height: 3px;
  background-color: #A5063B;
}

.title__container {
  padding-top: 20px;
  margin-bottom: 35px;
}

.course__container .course-main__container .course-content__container ul {
  padding-left: 20px;
}

.course__container .length-price__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 450px;
  height: fit-content;
}

.course__container .length-price__container .length {
  margin-bottom: 20px !important;
  padding-right: 5px;
}

.course__container .length-price__container .price {
  padding-left: 5px;
}

.course__container .length-price__container .subsection {
  margin-bottom: 0;
}

.course__container .length-price__container .container {
  margin-bottom: 6px;
}

.course__container .length-price__container .container p:first-of-type {
  font-weight: 700;
}

.course__container .length-price__container .original p:first-of-type {
  background-color: #b2b2b2;
}

.course__container .length-price__container .recertification p:first-of-type {
  background-color: #dddcdc;
}

.course__container .length-price__container .container_options {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .course__container {
    display: flex;
  }
  .course__container .course-main__container {
    padding: 10px 0;
    width: 50%;
  }
  .course__container .details {
    width: 50%;
    padding: 10px 0;
    min-width: 379px;
  }
  .course__container .length-price__container {
    border: 2px solid lightgray;
    padding: 10px;
    flex-direction: row;
    border-radius: 4px;
  }
  .course__container .length-price__container .length {
    margin-bottom: 0;
  }
  .certification {
    max-width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  .title__container {
    padding-top: 125px;
  }
  .course__container .course-main__container {
    width: 65%;
  }
  .course__container .details {
    width: 35%;
  }
  .course__container .length-price__container {
    border: 2px solid lightgray;
    padding: 10px;
    flex-direction: row;
    border-radius: 4px;
  }
  .course__container .length-price__container .length {
    margin-bottom: 0;
  }
  .nav .menu-nav .menu-nav__item .text-black {
    color: #1e1e1e !important;
  }
}

@media screen and (min-height: 1100px) {
  .course-details__main {
    min-height: calc(100vh - 56px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

body {
  background: #ffffff;
  font-family: 'Nunito Sans', sans-serif;
  height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

.text-secondary {
  color: #1e1e1e;
}

.logo {
  height: 90px;
  padding: 15px;
}

img {
  aspect-ratio: attr(width)/attr(height);
}

.table {
  display: table;
  width: 100%;
}

.table-body {
  display: table-row-group;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  border-bottom: solid 1px #d6d6d6;
}

.row-title .original p:first-of-type {
  background-color: #b2b2b2;
}

.row-title .recertification p:first-of-type {
  background-color: #dddcdc;
}

.row-title .table-cell:first-of-type p:first-of-type {
  font-weight: 700;
  padding-left: 5px;
  border-radius: 2px;
}

.first_cell_padding-left .table-cell:first-of-type p {
  padding-left: 20px;
}

.table-cell:last-of-type {
  border-left: solid 1px #d6d6d6;
  min-width: 116px;
  padding-left: 5px;
  text-align: right;
}

.row-padding {
  padding-top: 20px;
}

.btn {
  padding: 10px;
  margin: 15px 0;
  width: 100%;
  font: inherit;
  cursor: pointer;
  border: none;
  float: right;
  border-radius: 4px;
  color: #ffffff;
}

header {
  padding: 1rem;
  position: fixed;
  width: 100%;
  z-index: 2;
}

.overlay {
  visibility: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.overlay .alert__card {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
  max-width: 80%;
}

.overlay .alert__card .alert__actions {
  display: flex;
  justify-content: end;
}

.overlay .alert__card .alert__actions .action__btn {
  padding: 10px;
  margin-top: 20px;
  border: none;
  border-radius: 4px;
  margin-left: 20px;
  color: #ffffff;
  background-color: #A5063B;
  cursor: pointer;
}

main {
  height: 100%;
  width: 100%;
}

main .social-icons a {
  transition: all 0.5s ease-in-out;
}

main .social-icons a:hover {
  color: #ffffff;
}

footer {
  display: flex;
  font-size: 1rem;
  padding: 1rem;
  justify-content: center;
  background-color: #c4c4c4;
}

footer a {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .btn {
    width: auto;
  }
}

@media screen and (min-width: 1024px) {
  header {
    position: absolute;
  }
}
/*# sourceMappingURL=style.css.map */