/* ---------------
   Base Styles
   --------------- */
:root {
  font-size      :  18px;               /* Base font = 18 px */
  --color-bg     :#fdfdfd;
  --color-text   :#333;
  --color-accent :#2563eb;
  --padding-mob  : 0px 25px; 
}

*, *::before, *::after {
  box-sizing : border-box;
  margin     : 0;
  padding    : 0;
  transition-duration: 0.5s;
}

.loader 
{
  width: 100vw; 
  height: 100vh; 
  background-color: white;
  display: flex; 
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0; 
  top: 0; 
  z-index: 100;
  flex-direction: column;
}

.navigation
{
  top: 0; 
  left: 0; 
  width: 100vw; 
  height:100vh;
  background-color: #fff;
  z-index: 20; 
  position: fixed;

  display: flex; 
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.navigation > div:first-child 
{
  top: 50px; 
  right: 50px;
  width: 25px; 
  height: 25px;  
  position: absolute; 
  background-color: black;
  display: flex; 
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.navigation > div:first-child > p
{
  color: white; 
  font-size: 32px;
}


.navigation-links
{
  display: flex; 
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.navigation-links > a 
{
  color: black; 
  text-decoration: none;
  margin-bottom: 25px; 

  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(0, 0, 0,0.5);
}

.navigation-links > a:hover
{
  color: black; 
  text-decoration: none;
  margin-bottom: 25px; 

  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(0, 0, 0,1);
  transition-duration: 0.6s;
}

@keyframes fade-text-in-background-black
{
  0% 
  {
    background-color: rgba(0,0,0,0);
  }
  80% 
  {
    background-color: rgba(0,0,0,0);
  }
  100%
  {
    background-color: rgba(0,0,0,0.5);
  }
}

@keyframes transform-text-in-background-black-up
{
  0% 
  {
    transform: translate(0,2000%);
  }
  80% 
  {
    transform: translate(0,2000%);
  }
  100%
  {
    transform: translate(0,0);
  }
}

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 7675.06640625px;
    stroke-dasharray: 7675.06640625px;
  }

  50% {
    stroke-dashoffset: 0;
    stroke-dasharray: 7675.06640625px;
  }

  100% {
    stroke-dashoffset: 7675.06640625px;
    stroke-dasharray: 7675.06640625px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    
    transform: rotate(0deg);
    stroke-dashoffset: 7675.06640625px;
    stroke-dasharray: 7675.06640625px;
  }

  25% {
    transform: rotate(0deg);
    stroke-dashoffset: 0;
    stroke-dasharray: 7675.06640625px;
  }

  40% {
    
    transform: rotate(-30deg) translate(-20%,-50%);
    stroke-dashoffset: 0;
    stroke-dasharray: 7675.06640625px;
  }

  50% {
    
    transform: rotate(0deg);
    stroke-dashoffset: 0;
    stroke-dasharray: 7675.06640625px;
  }

  60% {
    transform: rotate(30deg) translate(20%,-50%);
    stroke-dashoffset: 0;
    stroke-dasharray: 7675.06640625px;
  }

  70% {
    transform: rotate(0deg);
    stroke-dashoffset: 0;
    stroke-dasharray: 7675.06640625px;
  }

  100% {
    transform: rotate(0deg);
    stroke-dashoffset: 7675.06640625px;
    stroke-dasharray: 7675.06640625px;
  }
}

.blog-gallery 
{
  width: 100%; 
  height: auto; 
  text-align: center; 
  padding: 25px 0px; 
}

.blog-section > h2 
{
  text-align: center; 
  font-size: 1.2rem; 
}

.blog-gallery > img 
{
  width: 80%;
  height: auto; 
  margin-bottom: 15px;
}

.blog-button 
{
  font-size: 1rem; 
  text-decoration: none;
  color: black; 
  padding: 5px 10px; 
  border: 1px solid black; 
  align-self: center;
}

.svg-elem-1 {
  transform-origin: center;
  -webkit-animation: animate-svg-stroke-1 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s forwards;
          animation: animate-svg-stroke-1 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s forwards;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

#loader-gif 
{
  max-width: 200px; 
  max-height: 200px; 
  overflow: visible;
}

.hidden 
{
  opacity: 0;
  display: none;
  pointer-events: none; 
}

.loader-button 
{
  text-align: center;
}

.emphasize-text-underline-black
{
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(0,0,0,0.75);
}

body 
{
  font-family : 'Kiwi Maru', serif;
  background  : var(--color-bg);
  color       : var(--color-text);
  line-height : 1.6;
}

header
{
  width         : 100%; 
  min-height    : 360px; 
  color         : #fff;
  text-align    : center;
  border-radius : 0px 0px 15px 15px; 
  position      : absolute;
  z-index:        3
}

header > img 
{
  top: 0;
  left: 25px;
  z-index: -1;
  width: calc(100% - 50px); 
  height: 100%;
  position: absolute;
}

.nav-bar-items 
{
  display         : inline-flex;
  align-items     : center     ;
  color           : black    ;
  column-gap      : 0.875rem   ;
  width           : 100%       ; 
  justify-content : center  ;
  padding         : 10px 0px; 
  border-radius   : 0px 0px 15px 15px; 
  background-color: rgba(255, 255, 255,0.8);
  position        : fixed;
  top: 0; 
  left: 0;
}

.section-video
{
  width: 100%; 
  height: auto; 
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 6rem; 
  overflow: hidden;
  margin-bottom: 50px;
  position: relative; 
}

.section-video > video 
{
  width: 100%; 
  height: auto; 
  border-radius: 0% 0% 5% 5%;
  pointer-events: none;
}

.section-video-overlay
{
  top: 0; 
  left: 0; 
  position:absolute; 
  
  color: white;
  width: calc(100% - 12rem); 
  height: 100%; 
  z-index : 1;
  margin: 0 6rem;  
  background-color: rgba(0,0,0,0.5) ;
  border-radius: 0% 0% 5% 5%;

  display: flex; 
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.animate-overlay-black
{
  animation-name: fade-text-in-background-black;
  animation-duration: 7s;
  animation-fill-mode: forwards;
}

.animate-overlay-text-black-up
{
  animation-name: transform-text-in-background-black-up;
  animation-duration: 7s;
  animation-fill-mode: forwards;
}

main 
{
  margin  : 0 auto;
  padding : var(--padding-mob ); 
}

.section-1
{
  display: flex; 
  justify-content: center;
  align-items: center;
  text-align: center; 
  flex-direction: column;
  min-height    : 360px; 
  position: relative;
}

.section-1 > div 
{
  display: inline-flex;
  justify-content: space-between;
  column-gap: 1rem;
  font-size: larger;
  border-radius: 0.5rem;
}


.section-1 > div > p 
{
  font-size: medium;
  transform: translate(0,50%);
}

.section-1 > div > p:first-child
{
  position: absolute;
  left    : 10%; 
}

.section-1 > div > p:last-child 
{
  position: absolute;
  right   : 10%; 
}
 
.section-1 > div:first-child > h2
{
  background-color: rgba(255, 255, 255,0.5);
  padding         : 0.25rem 3rem; 
  border-radius   : 0.25rem;
}

.section-1 > div:last-child > h4
{
  background-color: rgba(255, 255, 255,0.5);
  padding         : 0.25rem 1.5rem; 
  border-radius   : 0.25rem;
}

.section-2
{
  width   : 100%;
}

.section-2 > h3
{
  width: 60%;
}

.book-now-banner 
{
  display         : flex; 
  align-items     : center;
  justify-content : center;
  width           : 100%; 
  min-height      : 328px;
  position        : relative;
  margin          : 25px 0px; 
}

.book-now-banner > img
{
  z-index  : -1;
  position : absolute;
  width    : 100%; 
  height   : 100%; 
}

.book-now-banner > a 
{
  border          : 1px solid white; 
  padding         : 1rem 2rem ;
  color           : white; 
  text-decoration : none;
}

.book-now-banner > a:hover
{
  border          : 1px solid white; 
  padding         : 1rem 2rem ;
  color           : black; 
  text-decoration : none;
  background-color: rgba(255, 255, 255,0.5);
}

.section-3
{
  width         : 100%;
  margin-bottom : 25px;
  text-align    : center;
}

.section-3 > h3
{
  padding : 0 25px;
}

.section-3 > p 
{
  padding : 25px 0px; 
}

.glasses-gallery
{
  text-align: center;
  display: grid; 
  grid-template : auto auto auto/ 100%;  
  justify-content: center;
  align-items: center;
  margin: 25px; 
}

.glasses-gallery > div > img 
{
  width: 70%;
  margin: 10px;
}

.glasses-gallery > div > svg
{
  width: 50px; 
  height: auto; 
  margin: 25px; 
}

.image-text-section
{
  width: 100%; 
}

.image-text-container
{
  display: grid; 
  grid-template: 100% / 70% 30%;
}

.image-text-container img
{
  width: 100%; 
  text-align: right;
}

.horizontal-top-to-bottom
{
  width: 100%;
  height: 100%;
}

.horizontal-top-to-bottom > p
{
  width: 100%;
  line-height: 105%;
  max-height: 420px;
  font-size: 2rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.5;
}

.section-5
{
  width         : 100%;
  margin-bottom : 25px;
}

.section-5 > h3
{
  width          : 60%; 
  padding-bottom : 25px; 
}

.services-banner
{
  width : 100%;
  min-height : 357px; 
  position: relative; 
}

.services-banner > img 
{
  z-index: -1; 
  position: absolute;
  width: 100%;
  height: 100%;
}

.service-banner-text
{
  display: flex;
  flex-direction: column;
  color : white;
  width : 100%; 
  height: 100%; 
  padding: 25px; 
}

.service-banner-text > p 
{
  font-size: larger;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: auto;
  text-decoration-color: white;
  margin-bottom: 25px;
}

.service-banner-services ul , li
{
  list-style: none;
  margin-bottom: 10px;
}

.service-banner-text > a
{
  width           : 50%;
  margin          : 25px 0px; 
  border          : 1px solid white; 
  padding         : 0.5rem 1rem ;
  color           : white; 
  text-decoration : none;
}

footer
{
  color            : white; 
  width            : 100%; 
  height           : auto; 
  background-color : #9DB5C5; 
  padding          : 25px 2rem; 

} 

footer p 
{
  font-size: smaller;
}

footer > section 
{
  padding: 12px 0px; 
}

footer > section > h3 
{
  margin-bottom: 25px;
}

.footer-link 
{
  width: 100;
  display: flex;
  justify-content: center;
}
footer > section > a 
{
  color            : #9DB5C5;
  border           : 1px solid white; 
  background-color : white; 
  padding          : 1rem 2rem;
  text-decoration  : none;
  text-align: center;
}

footer > section > a:hover
{
  color            : white;
  border           : 1px solid white; 
  background-color : #9DB5C5; 
  padding          : 1rem 2rem;
  text-decoration  : none;
  text-align: center;
}

footer > section:last-child 
{
  text-align: center;
  margin-top: 40px;
  padding   : 25px;
  border-top: 2px solid white;
}

.section-ruler
{
  height           : 8px; 
  width            : 28%;
  margin           : 25px 0px; 
  background-color : #D4B69B; 
}

.yellow-text , .purple-text 
{
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
}

.yellow-text 
{
  text-decoration-color: rgba(248, 189, 97,0.5);
}

.purple-text 
{
  text-decoration-color: rgba(135, 71, 127,0.5);
}

.yellow-text:hover , .purple-text:hover
{
  text-underline-offset: 10px;
}

.desktop-text 
{
  display: none; 
}

.overflow-hidden
{
  overflow: hidden; 
}

.animate-in-up 
{
  animation-name: animate-in-up;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.animate-in-down 
{
  animation-name: animate-in-down;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.invisible-mobile
{
  display: none;
}

.fixed 
{
  position: relative;
}

.info 
{
  margin: 25px 0px; 
}

.infoCard 
{
  color: white;
  width : auto; 
  min-height: auto; 
  margin-bottom: 10px;

  background-size: cover;
  background-image: url(../images/packagebackground.png);
  background-repeat: no-repeat;

  border-radius : 10px; 
  transition-duration : 0.3s; 
}

.info-button-facade
{
  width: 100%; 
  padding: 10px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.infoCard.expanded 
{
  width: 100%; 
  height: auto;
  transition-duration : 0.5s; 
  padding: 10px;
}

.infoCard.expanded > div
{
  width: 100%;
  height: 100%;
  padding: 10px;
}

.infoCard.expanded > div > h3 
{
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: rgba(250,250,250,1);
}

.infoCard.expanded > div > ul
{
  margin: 25px 0px; 
}
.infoCard.expanded > div > p
{
  margin: 25px 0px; 
}

.infoCard.expanded > div > ul
{
  margin: 25px 0px; 
}

.infoCard.expanded > div > ul > li
{
  margin: 0px 0px; 
}

.infoCard.expanded > div > a 
{
  color: white; 
  text-decoration: none;
  border: 1px solid white; 
  padding: 0.5rem 1rem;
  margin-top: 25px; 
}

.hiddenCard
{
  display : none; 
}

.circularButton
{
  border : 1px solid white; 
  border-radius : 50%; 
  padding : 10px 15px; 
  transform: translate(-100%,0%);
}

.infoCard.expanded > div:nth-child(2).hiddenCard
{
  display: flex;
}

.infoCard.expanded > div:nth-child(2).hiddenCard > h3
{
  opacity: 0;
}

.infoCard.expanded > div:nth-child(2).hiddenCard > p
{
  border: 1px solid rgba(0,0,0,0);
  transform-origin: center;
  transform: rotate(45deg) scale(2);
}

.offers-section-2
{
  width: 100%;
  height: auto; 
  text-align: center;
  padding: 0 25px; 
  margin-bottom: 50px;
}

.offers-section-2 > p 
{
  margin: 25px 0px; 
}

.offers-section-2-packages 
{
  margin-bottom: 25px; 
  overflow: hidden;
}

.offers-section-2-packages > div
{
  width: 100%; 
  display: flex; 
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}

.offers-section-2-buttons > a 
{
  color: black;
  text-decoration: none;
  padding:0.5rem 1rem; 
  border: 1px solid black;
}

@keyframes animate-in-up
{
  25%
  {
    opacity: 0;
    transform: translate(0,0);
  }
  50% 
  {
    opacity: 0;
    transform: translate(0,100%);
  }

  100% 
  {
    transform: translate(0,0);
  }
  
}

@keyframes animate-in-down
{

  25%
  {
    opacity: 0;
    transform-origin: center;
    transform: translate(0,0) rotate(0);
  }
  70% 
  {
    opacity: 0;
    transform-origin: center;
    transform: translate(-100%,-100%) rotate(90deg);
  }

  100% 
  {
    transform: translate(0,0);
  }
  
}


/* ---------------
   Responsive Breakpoints
   --------------- */

/* Mobile (default) ———— up to 599 px */
/* —Already covered by the base styles—*/

/* Tablet — 600–1023 px */
@media (min-width: 37.5rem) and (max-width: 63.9375rem) {
  :root { font-size: 19px; }   /* slightly larger text */
  header, footer { padding: 1.5rem; }
  main { padding: 2rem; }
.blog-section > h2 
{
  text-align: left; 
}

.fixed 
{
  position: absolute;
}

  .section-video
{
  width: 100%; 
  height: auto; 
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 3rem; 
  overflow: hidden;
  margin-bottom: 50px;
}

.section-video > video 
{
  width: 100%; 
  height: auto; 
  border-radius: 0% 0% 5% 5%;
}

.section-video-overlay
{
  margin: 0 3rem; 
  width: calc(100% - 6rem);  

}

.offers-section-2-packages > div > p
{
  font-size: 16px; 
}

  .invisible-mobile
  {
    display: block;
  }

  .invisible-desktop
  {
    display: none; 
  }

  #loader-gif {
  max-width: 300px; 
  overflow: visible;
  }

  .invisible-mobile
  {
    display: block;
  }

  .invisible-desktop
  {
    display: none; 
  }

  .desktop-text 
  {
    display: block;
  }

  main 
  {
     display: grid; 
     grid-template:  auto auto auto auto / 50% 50%; 
     grid-row-gap: 50px;
  } 

  .section-2 
  {
    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 1; 
    grid-column-end: 3; 

    display: grid; 
    grid-template : auto auto auto / calc(50% - 25px) calc(50% - 25px);   
    grid-column-gap: 50px;
  }

  .section-2 > div:first-child
  {
    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }
  
  .section-2 > h3 
  {
    font-size: 24px; 

    grid-row-start: 2; 
    grid-row-end:   3; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }

  .section-2 > p 
  {
    font-size: 16px; 

    grid-row-start: 3; 
    grid-row-end:   4; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }

  .section-2 > .book-now-banner 
  {
    grid-row-start: 1; 
    grid-row-end:   4; 
    grid-column-start: 2; 
    grid-column-end: 3; 

    height: 80%;
    width: auto;
  }

  .section-3
  {
    grid-row-start: 2; 
    grid-row-end:   3; 
    grid-column-start: 1; 
    grid-column-end: 3; 

    display: grid; 
    grid-template : auto / calc(50% - 25px) calc(50% - 25px);  
    grid-column-gap: 50px;
  }

  .section-3 > h3 
  {
    font-size: 24px; 
    text-align: right; 

    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 2; 
    grid-column-end: 3; 
  }

  

  .section-3 > p 
  {
    font-size: 16px; 

    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }

  .image-text-section
  {
    max-height: 400px; 
  }

  .image-text-container > img
  {
    height: 400px; 
    width: auto; 
  }

  .horizontal-top-to-bottom > p
  {
    width: 100%;
    line-height: 105%;
    max-height: 500px;
    font-size: 2rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.5;
  }

  .service-banner-desktop > p
  {
    margin: 10px 0; 
  }

  .see-more-banner 
  {
    width: 100%; 
    display: flex; 
    justify-content: center;
    align-items: center;
  }

  .see-more-banner > div 
  {
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .see-more-banner > div > img 
  {
     height: auto; 
     width: 100%; 
  }


  .see-more-banner > div > a 
  {
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%);
    position: absolute; 

    color: white; 
    text-decoration: none;
    padding: 0.5rem 1rem; 
    border: 1px solid white; 

  }

  .see-more-banner > div > a:hover
  {
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%);
    position: absolute; 

    color: black; 
    text-decoration: none;
    padding: 0.5rem 1rem; 
    border: 1px solid white; 

    background-color: rgba(255, 255, 255,0.5);

  }

  .section-5
  {
    padding: 25px; 
  }

  .section-5 > h3 
  {
    font-size: 16px; 
  }

  .section-5 > p 
  {
    font-size: 12px; 
  }

  .section-5 > div > ul li 
  {
    font-size: 12px; 
  }

}

/* Desktop — ≥ 1024 px */
@media (min-width: 64rem) {
  :root { font-size: 20px; }
  header, footer { padding: 2rem; }
  main { 
    padding: 0rem 5.5rem;
    margin-bottom: 50px; }
  .flex {
    display: flex;
    gap: 2rem;
  }

    .fixed 
{
  position: absolute;
}
  #loader-gif {
  max-width: 400px; 
  overflow: visible;
}

  .invisible-mobile
  {
    display: block;
  }

  .invisible-desktop
  {
    display: none; 
  }

  .desktop-text 
  {
    display: block;
  }

  main 
  {
     display: grid; 
     grid-template:  auto auto auto auto / 50% 50%; 
     grid-row-gap: 75px;
  } 

  .section-2 
  {
    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 1; 
    grid-column-end: 3; 

    display: grid; 
    grid-template : auto auto auto / calc(50% - 25px) calc(50% - 25px);   
    grid-column-gap: 50px;
  }

  .section-2 > div:first-child
  {
    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }
  
  .section-2 > h3 
  {
    font-size: 38px; 

    grid-row-start: 2; 
    grid-row-end:   3; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }

  .section-2 > p 
  {
    font-size: 24px; 

    grid-row-start: 3; 
    grid-row-end:   4; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }

  .section-2 > .book-now-banner 
  {
    grid-row-start: 1; 
    grid-row-end:   4; 
    grid-column-start: 2; 
    grid-column-end: 3; 

    height: 100%;
    width: auto;
  }

  .section-3
  {
    grid-row-start: 2; 
    grid-row-end:   3; 
    grid-column-start: 1; 
    grid-column-end: 3; 

    display: grid; 
    grid-template : auto / calc(50% - 25px) calc(50% - 25px);  
    grid-column-gap: 50px;
  }

  .section-3 > h3 
  {
    font-size: 42px; 
    text-align: right; 

    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 2; 
    grid-column-end: 3; 
  }

  .section-3 > p 
  {
    font-size: 24px; 

    grid-row-start: 1; 
    grid-row-end:   2; 
    grid-column-start: 1; 
    grid-column-end: 2; 
  }

  .image-text-section
  {
    max-height: 500px; 
  }

  .image-text-container > img
  {
    height: 450px; 
    width: auto; 
  }

  .horizontal-top-to-bottom > p
  {
    width: 100%;
    line-height: 105%;
    max-height: 500px;
    font-size: 2.4rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.5;
  }

  .service-banner-desktop > p
  {
    margin: 10px 0; 
  }

  .see-more-banner 
  {
    width: 100%; 
    display: flex; 
    justify-content: center;
    align-items: center;
  }

  .see-more-banner > div 
  {
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .see-more-banner > div > img 
  {
     height: auto; 
     width: 80%; 
  }


  .see-more-banner > div > a 
  {
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%);
    position: absolute; 

    color: white; 
    text-decoration: none;
    padding: 1rem 2rem; 
    border: 1px solid white; 

  }

  .see-more-banner > div > a:hover
  {
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%);
    position: absolute; 

    color: white; 
    text-decoration: none;
    padding: 1rem 2rem; 
    border: 1px solid white; 
    background-color: rgba(255, 255, 255,0.5);

  }

  .section-5
  {
    padding: 25px; 
  }

  .section-5 > h3 
  {
    font-size: 32px; 
  }

  .section-5 > p 
  {
    font-size: 24px; 
  }

  .section-5 > div > ul li 
  {
    font-size: 24px; 
  }


  
}


@media (min-width: 90rem) {

  .horizontal-top-to-bottom > p
  {
    width: 100%;
    line-height: 110%;
    max-height: 500px;
    font-size: 3rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.5;
  }

}

