.notification--yellow {
  align-content: center;
  justify-content: center;
  background-color: #fad490;
  display: flex;
  height: auto;
  padding: 0.3rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .notification--yellow {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 31px;
    left: 0;
    position: absolute;
    right: 0;
    width: 60%;
    z-index: 2;
  }
}
.notification--yellow p {
  align-self: center;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  color: #013b5e;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .notification--yellow p {
    font-size: 0.85rem;
  }
}
.notification--green {
  align-items: center;
  background-color: #00b0ab;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 2rem;
  text-align: center;
}
.notification--green p {
  font-size: 1.125rem;
}
@media screen and (min-width: 992px) {
  .notification--green p {
    margin-right: 2rem;
  }
}
.notification--green span {
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .notification--green span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
}
@media screen and (min-width: 992px) {
  .notification--green {
    flex-direction: row;
    padding: 1.1rem 10rem;
  }
}
.btn-round-red {
  align-content: center !important;
  align-items: center;
  justify-content: center;
  background: #d64045;
  border-radius: 24px;
  border: none;
  color: #fff !important;
  display: flex;
  transition: all 0.3s ease-in;
  margin: 0px;
  width: 190px;
}
.btn-round-red:hover {
  background: #d02d32;
  cursor: pointer;
  text-decoration: none !important;
}
@media screen and (min-width: 992px) {
  .btn-round-red {
    height: 100%;
  }
}
.btn-round-red a {
  align-self: center;
  color: #fff !important;
  font-weight: 700 !important;
}
.btn-rounded-red {
  align-content: center;
  background: #d64045;
  border-radius: 16px;
  color: #fff !important;
  display: flex;
  padding: 0.6rem 3.3rem;
  transition: all 0.3s ease-in;
  text-transform: capitalize;
}
.btn-round-salmon {
  background-color: #ef767a;
  border-radius: 9px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.125rem;
  padding: 0.5rem 3rem;
  text-transform: capitalize;
}
.btn-round-salmon:hover {
  background: #ec5f64;
  color: #fff;
}
.btn-round-yellow {
  background: #fad490;
  border-radius: 19px;
  color: #013b5e;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.5px;
  padding: 0.6rem 2rem;
  text-transform: capitalize;
}
.btn-round-yellow:hover {
  background: #f9cb78;
}
.navbar {
  background-color: #013b5e;
  border-bottom-left-radius: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0.5rem;
  position: relative;
  height: auto;
}
@media screen and (min-width: 992px) {
  .navbar {
    padding: 0 3.5rem;
    height: 128px;
  }
}
.navbar-toggler {
  display: none;
  outline: none !important;
  border: none !important;
  padding: 0.5rem;
  width: calc(30px + 1rem);
  height: calc(30px + 1rem);
  background: transparent;
  position: relative;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
  }
  .navbar-toggler.open {
    margin-top: -7rem;
  }
}
.navbar-toggler__icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
}
.navbar-toggler__icon--close {
  display: none;
}
.navbar-toggler.open .navbar-toggler__icon--open {
  display: none;
}
.navbar-toggler.open .navbar-toggler__icon--close {
  display: block;
}
.navbar-toggler:focus {
  outline: none !important;
  border: none !important;
}
.navbar .collapse {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #013b5e;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  .navbar .collapse:not(.show) {
    right: -100vw;
  }
}
@media screen and (min-width: 992px) {
  .navbar .collapse {
    position: relative;
    background-color: #fff;
    border-radius: 24px;
    margin-top: 1.5rem;
    height: 48px;
    width: 90%;
  }
}
.navbar-brand {
  justify-content: flex-start;
  flex-grow: 1;
}
.navbar-nav {
  display: flex;
  height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 8rem;
  padding: 0 1.2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .navbar-nav {
    align-self: flex-start;
    margin-top: 3rem;
    height: 40%;
    padding: 0 4rem;
  }
}
@media screen and (min-width: 769px) {
  .navbar-nav {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav {
    height: 100%;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }
}
.navbar-nav li {
  display: block;
  padding: 5px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .navbar-nav li {
    width: 26%;
  }
}
@media screen and (min-width: 768px) {
  .navbar-nav li {
    align-self: center;
    height: auto;
    width: 130px !important;
    flex-grow: 0;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav li {
    width: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .navbar-nav li:last-child {
    margin-top: -0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .navbar-nav li:last-child {
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .navbar-nav li {
    margin: 0;
    padding: 0;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav li:not(:last-child) {
    padding-right: 0.3rem;
  }
}
@media screen and (min-width: 1366px) {
  .navbar-nav li:not(:last-child) {
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav li.active a span {
    opacity: 0.8;
    font-weight: 700;
  }
}
.navbar-nav li a {
  text-transform: capitalize;
}
@media screen and (min-width: 1366px) {
  .navbar-nav li a:hover span {
    opacity: 0.7;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav li a.btn-round-red {
    width: 160px;
  }
}
@media screen and (min-width: 1366px) {
  .navbar-nav li a.btn-round-red {
    width: 190px;
  }
}
.navbar-nav li a span {
  color: #fff;
  display: block;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .navbar-nav li a span {
    opacity: 0.5;
    color: #000;
    margin-top: 0;
  }
}
.navbar-nav li img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .navbar-nav li img {
    width: 100px !important;
  }
}
@media screen and (min-width: 1024px) {
  .navbar-nav li img {
    width: 70% !important;
  }
}
@media screen and (min-width: 992px) {
  .navbar-nav li img {
    display: none;
  }
}
.navbar::after {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: -34px;
  right: 20px;
  height: 55px;
  transform: rotate(90deg);
  width: 13px;
  border-top-left-radius: 90px;
  box-shadow: 0 -40px 0 0 #013b5e;
}
@media screen and (min-width: 1900px) {
  .navbar::after {
    height: 55px;
    right: 21px;
  }
}
@media screen and (min-width: 992px) {
  .navbar::after {
    bottom: -34.4px;
  }
}
.jumbotron--contact {
  background-image: url("../../../img/contact-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 310px;
  margin-top: -15px;
}
.jumbotron--hero {
  background-image: url("../../img/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  height: 500px;
  margin-top: -15px;
  margin-bottom: 0;
  padding-bottom: 5rem;
}
@media screen and (min-width: 992px) {
  .jumbotron--hero {
    padding-bottom: 5rem;
    background-size: cover;
  }
}
@media screen and (min-width: 1900px) {
  .jumbotron--hero {
    padding-bottom: 7rem;
  }
}
.jumbotron--hero h1 {
  color: #ffffff;
  letter-spacing: 0;
}
@media screen and (min-width: 992px) {
  .jumbotron--hero h1 {
    font-size: 3rem;
    max-width: 55%;
  }
}
@media screen and (min-width: 1366px) {
  .jumbotron--hero h1 {
    font-size: 75px;
    line-height: 79px;
    max-width: 60%;
  }
}
.jumbotron--hero p {
  margin: 0.5rem 0;
}
@media screen and (min-width: 992px) {
  .jumbotron--hero p {
    font-size: 0.95rem;
    margin: 1.5rem 0;
    max-width: 60%;
  }
}
@media screen and (min-width: 1900px) {
  .jumbotron--hero p {
    font-size: 1rem;
    margin: 2rem 0;
  }
}
@media screen and (min-width: 992px) {
  .jumbotron--hero {
    height: 500px;
  }
}
@media screen and (min-width: 1900px) {
  .jumbotron--hero {
    height: 800px;
  }
}
.jumbotron--secondary {
  background-color: #013b5e;
  border-bottom-left-radius: 15px;
  color: #fff;
  padding: 1.5rem 1rem;
  position: relative;
  min-height: 190px;
}
@media screen and (max-width: 767px) {
  .jumbotron--secondary {
    margin-top: -0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .jumbotron--secondary {
    min-height: 200px;
    padding: 2rem 2rem 3rem 2rem;
  }
}
.jumbotron--secondary::after {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: -34px;
  right: 20px;
  height: 55px;
  transform: rotate(90deg);
  width: 13px;
  border-top-left-radius: 90px;
  box-shadow: 0 -40px 0 0 #013b5e;
}
@media screen and (min-width: 1900px) {
  .jumbotron--secondary::after {
    height: 55px;
    right: 21px;
  }
}
.jumbotron--secondary h1 {
  font-size: 3.3rem;
}
@media screen and (min-width: 992px) {
  .jumbotron--secondary h1 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1366px) {
  .jumbotron--secondary h1 {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 2rem;
  }
}
.footer h6.ul-heading {
  color: #fce7c1;
  font-size: 0.81rem;
  font-weight: bold;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .footer ul {
    margin-top: 1rem;
  }
}
.footer ul li {
  margin-top: 0.3rem;
}
.footer ul li a {
  color: #fcfcfc !important;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: lighter;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (min-width: 992px) {
  .footer ul li a {
    font-size: 0.81rem;
  }
}
.footer ul li a span {
  font-weight: 500;
}
.footer__wrapper {
  background-color: #013b5e;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 3rem 0 2rem 0;
  position: relative;
}
@media screen and (min-width: 992px) {
  .footer__wrapper {
    padding: 3rem 0 1rem 0;
  }
}
.footer-brand {
  width: 63px;
  height: auto;
  margin-bottom: 2rem;
}
.footer__social a {
  font-size: 1.9rem;
  color: #fff;
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 1366px) {
  .footer__social a {
    font-size: 1.9rem;
  }
}
.footer__social a:not(:first-child) {
  margin-left: 0.2rem;
}
.footer__social ul li {
  margin-top: 0;
}
.footer__bottom {
  padding: 0.5rem 0;
}
.footer__bottom > .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .footer__bottom > .container {
    flex-direction: row;
  }
}
.footer__bottom > .container p {
  color: #d4d4d4;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 992px) {
  .footer__bottom > .container p {
    font-size: 0.8rem;
  }
}
.footer__bottom > .container p a {
  font-family: "Dosis", sans-serif;
  font-weight: bolder;
  color: #fff;
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: "Sora", sans-serif;
  background-color: #fafafa;
}
*:focus {
  outline: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Quicksand", sans-serif;
  margin: 0;
}
p {
  font-family: "Sora", sans-serif;
  margin-bottom: 0;
}
.h-100 {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .h-100 {
    height: auto !important;
  }
}
@media screen and (min-width: 1024px) {
  .h-100 {
    height: 100% !important;
  }
}
@media screen and (min-width: 1366px) {
  .h-100 {
    height: 100% !important;
  }
}
.section-intro {
  display: flex;
}
@media screen and (max-width: 767px) {
  .section-intro {
    margin-top: 1.5rem;
  }
}
.section-intro p {
  color: #afbbc3;
  font-family: "Quicksand", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.47px;
  padding-left: 0.5rem;
  text-transform: uppercase;
}
.section-intro--border {
  align-self: center;
  background-color: #fad490;
  height: 4px;
  width: 25px;
}
.navbar {
  border-bottom-left-radius: 0;
}
.caps {
  text-transform: uppercase;
}
.color-blue {
  color: #013b5e;
}
.text-muted {
  font-size: 1.125rem;
  font-weight: lighter;
  color: #898d8f;
  letter-spacing: 0.6px;
}
.bb-blue {
  border-bottom: 2px solid #00b0ab !important;
}
.first-container,
.second-container,
.third-container {
  background: #fff;
  border-radius: 7px;
  position: relative;
  padding: 3.75rem 3rem;
}
@media screen and (min-width: 768px) {
  .first-container,
  .second-container,
  .third-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .first-container,
  .second-container,
  .third-container {
    padding: 3.75rem 3rem;
  }
}
.second-container,
.third-container {
  margin: 3rem auto;
}
@media screen and (max-width: 767px) {
  .second-container,
  .third-container {
    padding: 3rem 1.5rem;
  }
}
.second-container h5,
.third-container h5 {
  color: #013b5e;
  font-size: 1.5rem;
  font-weight: bolder;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  padding-bottom: 1rem;
}
.second-container .heading,
.third-container .heading {
  display: flex;
}
.second-container .heading-line,
.third-container .heading-line {
  align-self: center;
  background-color: #fafafa;
  margin-left: 4rem;
  height: 2px;
  width: 100%;
}
.first-container {
  height: auto;
  padding: 2rem 1.5rem;
}
.first-container img {
  height: auto;
  margin-top: -6rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .first-container {
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .first-container {
    padding: 3rem;
    height: auto;
  }
  .first-container img {
    margin-top: -7rem;
    max-width: 115%;
  }
}
.first-container h2 {
  color: #f8f8f8;
  bottom: -15px;
  font-size: 3.5rem;
  position: absolute;
  right: 0;
  text-transform: capitalize;
}
@media screen and (min-width: 769px) {
  .first-container h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .first-container h2 {
    bottom: -29px;
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .first-container img {
    margin-left: -0.5rem;
    width: 105%;
  }
}
@media screen and (min-width: 1366px) {
  .first-container img {
    margin-left: 0;
  }
}
.second-container p {
  margin-top: 1rem;
}
.second-container h5 {
  border-bottom: 2px solid #935fa7;
}
.third-container .heading-line {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .third-container .heading-line {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .third-container img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .third-container img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .third-container img {
    margin-top: 1.5rem;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1366px) {
  .third-container img {
    width: auto;
    height: auto;
  }
}
.third-container ul {
  padding-left: 0;
}
.third-container ul li {
  list-style: none;
  font-size: 1.125rem;
}
.third-container ul li:not(:first-child) {
  margin-top: 0.8rem;
}
.third-container ul li:before {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  background-image: url("../img/bullet-list-orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}
.third-container ul.second-ul li:before {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  background-image: url("../img/bullet-list-purple.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}
.legal h5 {
  font-size: 0.81rem;
  color: #00b0ab;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0.9rem 0;
}
.legal p {
  font-size: 0.87rem;
  color: #8e8e8e;
  letter-spacing: 0;
  margin: 0;
}
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
