*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #000000;
}

/*--------------------------------------------------------------------------------*/
/* --------------------------------- NAVIGATION --------------------------------- */
/*--------------------------------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
  font-family: "Arial", "Helvetica", sans-serif;
}
.site-header .header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header .brand a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.site-header {
  /* --- DESKTOP NAV LAYOUT --- */
}
.site-header .site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header .site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-header .site-nav a:hover {
  color: #5f5e5e;
}
.site-header .site-nav {
  /* Desktop Dropdown Layout Setup */
}
.site-header .site-nav .dropdown {
  position: relative;
  padding: 20px 0; /* Keeps hover state active when moving mouse down */
}
.site-header .site-nav .dropdown .arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.site-header .site-nav .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #5f5e5e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}
.site-header .site-nav .dropdown .dropdown-menu a {
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  white-space: nowrap;
}
.site-header .site-nav .dropdown .dropdown-menu a:hover {
  background-color: #f9f9f9;
  color: #000000;
}
.site-header .site-nav .dropdown {
  /* Hover Engine for Desktop Dropdown */
}
.site-header .site-nav .dropdown:hover .arrow {
  transform: rotate(180deg);
}
.site-header .site-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-header {
  /* --- HAMBURGER TOGGLE BUTTON --- */
}
.site-header .nav-toggle {
  display: none; /* Hidden by default on large desktop monitors */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 101;
}
.site-header .nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.site-header .nav-toggle {
  /* Morphing Hamburger into an "X" when active */
}
.site-header .nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.site-header .nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.site-header .nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.site-header {
  /*--------------------------------------------------------*/
  /* -------------------- PORTRAIT & MOBILE --------------- */
  /*--------------------------------------------------------*/
}
@media (orientation: portrait) {
  .site-header .nav-toggle {
    display: flex; /* Expose the hamburger menu */
  }
  .site-header .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* DESIGN PRO-TIP: Adds a modern "frosted glass" effect to anything scrolling behind the menu */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s ease-in-out, visibility 0.35s;
  }
  .site-header .site-nav.open {
    max-height: 500px;
    visibility: visible;
    overflow-y: auto;
  }
  .site-header .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
  }
  .site-header .site-nav a {
    padding: 15px 30px;
    display: block;
    width: 100%;
    color: #5f5e5e; /* Ensures base text stays grey */
    background-color: transparent;
    transition: all 0.2s ease;
    /* FIX 1: Override the desktop white hover */
  }
  .site-header .site-nav a:hover {
    color: #000000;
    background-color: #e4e3e3; /* Optional: Adds a subtle light-grey background flash on tap */
  }
  .site-header .site-nav {
    /* REVISED DROPDOWN MOBILE RULES */
  }
  .site-header .site-nav .dropdown {
    padding: 0;
  }
  .site-header .site-nav .dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0;
    border-radius: 0;
    display: block;
    transform: none;
    transition: none;
  }
  .site-header .site-nav .dropdown .dropdown-menu a {
    padding-left: 50px; /* Indent nested options */
    opacity: 1;
    visibility: visible;
  }
  .site-header .site-nav .dropdown {
    /* FIX 2: Intercept the desktop hover state to stop it from shifting left */
  }
  .site-header .site-nav .dropdown:hover .arrow {
    transform: none;
  }
  .site-header .site-nav .dropdown:hover .dropdown-menu {
    transform: none; /* Forces the element to stay in its clean layout line */
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 550px) {
  .site-header .nav-toggle {
    display: flex; /* Expose the hamburger menu */
  }
  .site-header .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* DESIGN PRO-TIP: Adds a modern "frosted glass" effect to anything scrolling behind the menu */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s ease-in-out, visibility 0.35s;
  }
  .site-header .site-nav.open {
    max-height: 500px;
    visibility: visible;
    overflow-y: auto;
  }
  .site-header .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
  }
  .site-header .site-nav a {
    padding: 15px 30px;
    display: block;
    width: 100%;
    color: #5f5e5e; /* Ensures base text stays grey */
    background-color: transparent;
    transition: all 0.2s ease;
    /* FIX 1: Override the desktop white hover */
  }
  .site-header .site-nav a:hover {
    color: #000000;
    background-color: #e4e3e3; /* Optional: Adds a subtle light-grey background flash on tap */
  }
  .site-header .site-nav {
    /* REVISED DROPDOWN MOBILE RULES */
  }
  .site-header .site-nav .dropdown {
    padding: 0;
  }
  .site-header .site-nav .dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0;
    border-radius: 0;
    display: block;
    transform: none;
    transition: none;
  }
  .site-header .site-nav .dropdown .dropdown-menu a {
    padding-left: 50px; /* Indent nested options */
    opacity: 1;
    visibility: visible;
  }
  .site-header .site-nav .dropdown {
    /* FIX 2: Intercept the desktop hover state to stop it from shifting left */
  }
  .site-header .site-nav .dropdown:hover .arrow {
    transform: none;
  }
  .site-header .site-nav .dropdown:hover .dropdown-menu {
    transform: none; /* Forces the element to stay in its clean layout line */
    opacity: 1;
    visibility: visible;
  }
}

/*--------------------------------------------------------------------------------*/
/* --------------------------------- PAGE STYLES -------------------------------- */
/*--------------------------------------------------------------------------------*/
.section1 {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_homePage.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1 {
    background-image: url("../img/background_homePage_portrait.webp");
  }
}
.section1 .inner {
  width: 100%;
  height: 100%;
}

.section1_services {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_services.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1_services {
    background-image: url("../img/background_services_portrait.webp");
  }
}
.section1_services .inner {
  width: 100%;
  height: 100%;
}

.section1_child_therapy {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_child_therapy.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1_child_therapy {
    background-image: url("../img/background_child_therapy_portrait.webp");
  }
}
.section1_child_therapy .inner {
  width: 100%;
  height: 100%;
}

.section1_individual_therapy {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_individual_therapy.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1_individual_therapy {
    background-image: url("../img/background_individual_therapy_portrait.webp");
  }
}
.section1_individual_therapy .inner {
  width: 100%;
  height: 100%;
}

.section1_family_services {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_family_services.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1_family_services {
    background-image: url("../img/background_family_services_portrait.webp");
  }
}
.section1_family_services .inner {
  width: 100%;
  height: 100%;
}

.section1_about {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_about.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1_about {
    background-image: url("../img/background_about_portrait.webp");
  }
}
.section1_about .inner {
  width: 100%;
  height: 100%;
}

.section1_resources {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background_resources.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: ani_fadeIn 1s ease-out forwards 0.1s;
}
@media (orientation: portrait) {
  .section1_resources {
    background-image: url("../img/background_resources_portrait.webp");
  }
}
.section1_resources .inner {
  width: 100%;
  height: 100%;
}
.section1_resources img {
  width: 100%;
  max-width: 50%;
}

.section2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 2; /* Sits on a layer above Section 1 */
  background-color: #f2f2f2;
}
.section2 .inner {
  width: 100%;
  height: 100%;
}
.section2 img {
  width: 100%;
  max-width: 40vw;
}
@media (orientation: portrait) {
  .section2 img {
    max-width: 80vw;
  }
}

.section3 {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../img/background2_homePage.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (orientation: portrait) {
  .section3 {
    background-image: url("../img/background2_homePage_portrait.webp");
  }
}
.section3 .inner {
  width: 100%;
  height: 100%;
}

.section4 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  background-color: #f2f2f2;
  padding-top: 5vw;
}
.section4 .inner {
  width: 100%;
  height: 100%;
}

.homepage-takeover {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Arial", "Helvetica", sans-serif;
}
.homepage-takeover .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.homepage-takeover .wrap .content1 {
  width: 50%;
  display: flex;
  height: 100%;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap .content1 {
    width: 100%;
    height: auto;
  }
}
.homepage-takeover .wrap .content2 {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap .content2 {
    width: 100%;
    height: auto;
    min-height: unset;
  }
}
.homepage-takeover .wrap .content2 .logo_rbc {
  width: 80%;
  max-width: 36vw;
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: ani_fadeIn 3s ease-out forwards 0.5s;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap .content2 .logo_rbc {
    max-width: 40vw;
    margin-top: 6vw;
    display: none;
  }
}
@media (max-width: 550px) {
  .homepage-takeover .wrap .content2 .logo_rbc {
    max-width: 70vw;
    margin-top: 11vw;
  }
}
.homepage-takeover .wrap .content2 .logo_rbc_portrait {
  width: 80%;
  max-width: 36vw;
  display: block;
  margin: 0 auto;
  display: none;
  opacity: 0;
  animation: ani_fadeIn 2s ease-out forwards 0.5s;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap .content2 .logo_rbc_portrait {
    max-width: 32vw;
    margin-top: 11vw;
    display: inline-block;
  }
}
@media (max-width: 550px) {
  .homepage-takeover .wrap .content2 .logo_rbc_portrait {
    max-width: 65vw;
    margin-top: 18vw;
  }
}
.homepage-takeover .wrap .content2 img {
  width: 100%;
  height: auto;
}
.homepage-takeover .wrap2 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage-takeover .wrap2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #5f5e5e;
  pointer-events: none;
}
.homepage-takeover .wrap2 .content1 {
  max-width: 60vw;
  display: flex;
  gap: 2.5%;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 60px 0;
  margin-top: 3vw;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap2 .content1 {
    width: 100%;
    max-width: 90vw;
    height: auto;
    min-height: 50%;
  }
}
.homepage-takeover .wrap2 .content1 .logos_certification_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3vw;
}
.homepage-takeover .wrap2 .content1 .logos_certification_wrap img {
  width: 100%;
  max-width: 10vw;
  margin: 1vw;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap2 .content1 .logos_certification_wrap img {
    max-width: 15vw;
  }
}
@media (max-width: 550px) {
  .homepage-takeover .wrap2 .content1 .logos_certification_wrap img {
    max-width: 20vw;
  }
}
.homepage-takeover .wrap2 .content1 h1 {
  font-size: clamp(26px, 2vw, 50px);
  color: #9d9c9c;
  text-align: center;
  text-transform: uppercase;
}
.homepage-takeover .wrap2 .content1 h3 {
  font-size: clamp(16px, 1vw, 30px);
  color: #9d9c9c;
  text-align: left;
  width: 40vw;
}
@media (orientation: portrait) {
  .homepage-takeover .wrap2 .content1 h3 {
    width: 60vw;
  }
}
@media (max-width: 550px) {
  .homepage-takeover .wrap2 .content1 h3 {
    width: 80vw;
  }
}
.homepage-takeover .wrap2 .content1 p {
  color: #5f5e5e;
  text-align: left;
  font-size: clamp(20px, 1vw, 50px);
  line-height: 1.6;
}
.homepage-takeover .wrap2 .content1 a {
  text-decoration: none;
  color: #5f5e5e;
}
.homepage-takeover .wrap2 .content1 a:hover {
  color: rgb(146.0793650794, 144.9206349206, 144.9206349206);
  cursor: pointer;
}
.homepage-takeover .wrap2 .content1 li {
  color: #5f5e5e;
  font-size: clamp(20px, 1vw, 50px);
  margin: 0.8vw;
}
.homepage-takeover .wrap2 .content1 iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 550px) {
  .homepage-takeover .wrap2 .content1 iframe {
    height: 320px;
  }
}
.homepage-takeover .wrap2 .content1 .button {
  background-color: #5f5e5e;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 50px);
  width: auto;
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  margin-bottom: 3vw;
}
@media (max-width: 550px) {
  .homepage-takeover .wrap2 .content1 .button {
    font-size: 1rem;
    margin-bottom: 10vw;
  }
}
.homepage-takeover .wrap2 .content1 .button:hover {
  background-color: rgb(120.6349206349, 119.3650793651, 119.3650793651);
  cursor: pointer;
}
.homepage-takeover {
  /*--------------------------------------------------------------------------------*/
  /* --------------------------------- ANIMATIONS --------------------------------- */
  /*--------------------------------------------------------------------------------*/
  /*---------------- FADE IN ------------------*/
}
@keyframes ani_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.homepage-takeover {
  /*----------------Background SKY Move Left to Right------------------*/
}
@keyframes ani_backgroundSky {
  0% {
    opacity: 1;
    transform: scaleX(150%) translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: scaleX(150%) translateX(0px);
  }
}
@keyframes ani_backgroundSkyPortrait {
  0% {
    opacity: 1;
    transform: scaleX(150%) translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: scaleX(150%) translateX(0px);
  }
}
.homepage-takeover {
  /*---------------- Animation Confetti------------------*/
}
@keyframes ani_confetti {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.2);
    animation-timing-function: ease-out;
  }
  10% {
    opacity: 1;
    transform: translateY(0) scale(1.2);
    animation-timing-function: cubic-bezier(0.45, 0, 1, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(4800px) scale(2);
  }
}
@keyframes ani_confettiPortrait {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.2);
    animation-timing-function: ease-out;
  }
  10% {
    opacity: 1;
    transform: translateY(0) scale(2);
    animation-timing-function: cubic-bezier(0.45, 0, 1, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(4800px) scale(2.5);
  }
}
.homepage-takeover {
  /*---------------- Ticket Animations------------------*/
}
@keyframes ani_ticket_10dollars {
  0% {
    opacity: 0;
    transform: translateX(180px) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(-10deg);
  }
}
@keyframes ani_ticket_3dollars {
  0% {
    opacity: 0;
    transform: translateX(-180px) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(10deg);
  }
}
@keyframes ani_ticketsEnter {
  0% {
    transform-origin: 50% 100%;
    transform: translateY(800px) translateX(400px) rotate(45deg);
  }
  100% {
    transform-origin: 50% 100%;
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes ani_ticketsWave {
  0% {
    transform: translateX(0px);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.homepage-takeover {
  /*---------------- Headline Animations------------------*/
}
@keyframes ani_headlineScaleUp {
  0% {
    opacity: 0;
    transform: translate(-100px, 50px) scale(0.1) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px) scale(1) rotate(-5deg);
  }
}
@keyframes ani_headlineScaleDown {
  0% {
    opacity: 0;
    transform: scale(2) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes ani_headlineScaleUpDown {
  0% {
    opacity: 1;
    transform: scale(1) rotate(-5deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-5deg);
  }
}
.homepage-takeover {
  /*---------------- CTA Animation------------------*/
}
@keyframes ani_ctaEnter {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.homepage-takeover {
  /*---------------- SCALING------------------*/
}
@keyframes ani_scaleDown {
  0% {
    opacity: 0;
    transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.homepage-takeover {
  /*---------------- FADE IN ------------------*/
}
@keyframes ani_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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