/* ----------------------- 

TABLE OF CONTENTS

# GLOBAL
    # DEFINE GLOBAL VARIABLES (CUSTOM PROPERTIES)
    # SET GLOBAL COLORS
    # SET GLOBAL TYPOGRAPHY
        # SET BODY TYPE
        # SET HEADINGS TYPE
    # GLOBAL MEDIA (images, videos, svg)
    # GLOBAL HELPERS
    # GLOBAL RESETS
        # ENABLE SMOOTH SCROLLING
    # LINKS
    ...

# LAYOUT
    # CONTAINER
    # MAIN
        # SECTIONS
    # FOOTER

# SITE STRUCTURE
    # HEADER
        # LOGO
        # SITE NAV
    # GRID SYSTEM (12 COLUMNS)

# UI COMPONENTS
    # BUTTONS
    # CARDS
    # HR (HORIZONTAL RULES)
    # CODE BLOCKS
    # SWIPER SLIDER (CAROUSEL)

    (WILL ADD MORE HERE)

# CUSTOM SITE STYLING (OPINIONATED)
    # BODY GRID LAYOUT SYSTEM (header, main, footer)
    # CUSTOM HERO STYLING
    # CUSTOM PAGE LAYOUT - 2 COLUMNS: ASIDE + MAIN CONTENT
    # STICKY BOX
    # AO DAI TYPEBLOCK


# ANIMATIONS
    # REGULAR ON PAGE LOAD ANIMATIONS
    # SCROLL-TRIGGERED ANIMATIONS
-------------------------*/

/* --------------------- 
        GLOBALS 
------------------------ */

/* DEFINE GLOBAL VARIABLE */

:root {

    /* DEFINE BASE COLORS */
    
    --color-white: #ffffff;
    --color-black: #000000;
    --color-beige: rgb(238, 231, 213);
    --color-black-80: rgb(0,0,0,.8);
    --color-black-70: rgb(0,0,0,.7);
    --color-black-60: rgb(0,0,0,.6);
    --color-black-50: rgb(0,0,0,.5);
    --color-black-40: rgb(0,0,0,.4);
    --color-black-30: rgb(0,0,0,.3);
    --color-black-20: rgb(0,0,0,.2);

    --color-grey-700: rgba(200, 200, 200, 0.7);

    --color-darkbrown-10: rgb(92, 74, 60, .1);
    --color-darkbrown-50: rgb(92, 74, 60, .5);
    --color-darkbrown-70: rgb(92, 74, 60, .7);
    --color-darkbrown-100: rgb(92, 74, 60, 1);

    --color-brown-10: rgb(143, 119, 86, .1);
    --color-brown-50: rgb(143, 119, 86, .5);
    --color-brown-80: rgb(143, 119, 86, .8);
    --color-brown-100: rgb(143, 119, 86, 1);

    --color-lightbrown-50: rgb(205, 193, 169, .5);
    --color-lightbrown-80: rgb(205, 193, 169, .8);
    --color-lightbrown-100: rgb(205, 193, 169, 1);

    /* DEFINE SEMANTIC COLORS */
    --color-body-background: var(--color-beige);
    --color-body-text: var(--color-darkbrown-70);
    --color-body-text-dark: var(--color-darkbrown-100);

    --color-primary: var(--color-blue-400);
    --color-primary-dark: var(--color-blue-900);
    --color-secondary: var(--color-green-400);

    --color-border: var(--color-beige);

    --color-quote: var(--color-brown-80);

    /* ACTION COLORS */
    --color-links: var(--color-lightbrown-80);
    --color-links-hover: var(--color-lightbrown-100);
    --color-links-light: var(--color-lightbrown-50);

    /* SECTION SPECIFIC */
    --color-hero-background: var(--color-beige);
    --color-siteheader-background: transparent;
    --color-sitefooter-background: transparent;
    --color-siteheader-links: var(--color-lightbrown-80);
    --color-siteheader-links-hover: var(--color-lightbrown-100);

    /* BORDER */
    --color-border: var(--color-grey-700);
    --border-radius: 10px;
    --border-thickness: 0.5px;

    /* SIZING UNITS */
    --unit-3xs: 0.125rem;
    --unit-2xs: 0.25rem;
    --unit-xs: 0.5rem;
    --unit-s: 1rem;
    --unit-m: 1.5rem;
    --unit-l: 2rem;
    --unit-xl: 3rem;
    --unit-2xl: 4rem;
    --unit-3xl: 6rem;

    --container-width: 1100px;

    /* GLOBAL FONTS */
    --title-font: 'Meow Script', cursive;
    --font-body: 'solitairemvbpro', sans-serif;
    --font-headings: 'ivypresto-display', serif;
    --body-font-size: 100%;
}

/* SET GLOBAL TYPOGRAPHY */
/* SET BODY TYPE */
body {
    font-family: var(--font-body);
    font-size: var(--body-font-size);
    background-color: var(--color-body-background);
    color: var(--color-body-text);
}

/* SET HEADINGS TYPE */
h1, h2 {
    font-family: var(--title-font);
    color: var(--color-brown-50);
    /* ADD SUPPORT FOR TEXTWRAP BALANCE */
    text-wrap: balance;
}

h3, h4 {
    font-family: var(--font-headings);
    color: var(--color-brown-80);
    text-wrap: balance;
}

h6 {
    font-family: var(--font-body);
    color: var(--color-darkbrown-80);
    text-wrap: balance;
}

/* TYPOGRAPHIC SCALE */
h1 {
    font-size: 3em; /* 48px */
    line-height: 1em;
}

h2 {
    font-size: 2.25em; /* 36px */
    line-height: 1.1em;
}

h3 {
    font-size: 1.5em; /* 24px */
    line-height: 1.2em;
}

h4 {
    font-size: 1.3125em; /* 21px */
    line-height: 1.3em;
}

h5 {
    font-size: 1.125em; /* 18px */
    line-height: 1.4em;
}

h6 {
    font-size: 1em; /* 16px */
    line-height: 1.5em;
}

/* REMOVE WIDOWS FOR ALL PARAGRAPHS AND LIST ITEMS */
p, li {
    text-wrap: pretty;
}

/* LIMIT THE NUMBER OF CHARACTERS PER LINE FOR ALL PARAGRAPHS */
p, h6 {
    max-inline-size: 75ch;
}

/* GLOBAL MEDIA */

/* IMAGES */
/* responsive on small screens, do not stretch (beyond the original on large screens) */
img {
    max-width: 100%;
    height: auto;
}

/* GLOBAL HELPERS */
.text-centered {
    text-align: center;
}

/* CENTER PARAGRAPHS INSIDE CENTERED PARENTS */
.text-centered h6 {
    margin-inline: auto;
}

/* HIDE CONTENT VISUALLY (BUT KEEP FOR SEO AND ACCESBILITY) */
.hide-visually, 
.visually-hidden,
.screen-reader-only {
    position: absolute;
    top: -9999px;
    left: -9999px;

}
/* Remove the default 8px margin on body */
body {
    margin: 0;
}

/* GLOBAL RESETS */
/* Set all elements to bix sizing border-box */
* { box-sizing: border-box;}

/* ENABLE SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* ADD OFFSET TO ALL INLINE ANCHOR LINKS */
:target {
    scroll-margin-top: var(--unit-s);   
}

/* LINKS */
a {
    color: var(--color-links);
    text-decoration-color: var(--color-black);
    text-underline-offset: .1em;
    text-decoration-thickness: 0.75px;
}

a:hover {
    color: var(--color-links-hover);
}


/* ------------------------- 
        LAYOUT
---------------------------- */

/* CONTAINER */
.container {
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--unit-s);
}

/* GRID SYSTEM (12 COLUMNS) */

.row {
    --grid-gap: var(--unit-2xs);
}

.row > * {
    margin-block-end: var(--grid-gap);
}

/* NEW WIDTH SYNTAX (updated from min-width: 768px) */
@media (width >= 768px) {

    .row {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: var(--grid-gap);
    }

    /* SEMANTIC COLUMNS */
    .one-half { grid-column: auto / span 6; }
    .one-third { grid-column: auto / span 4; }
    .two-thirds { grid-column: auto / span 8;}
    .one-fourth { grid-column: auto / span 3; }    
    .three-fourths { grid-column: auto / span 9; }     

    /* SWAPS (REVERSE COLUMNS) - WORKS ONLY w/ 2 COLUMNS */
    .row.swapped > *:first-child { order: 2; }
    .row.swapped > *:last-child { order: 1; }

    /* CENTERED COLUMNS */
    .one-half.centered { grid-column-start: 4; }
    .two-thirds.centered { grid-column-start: 3; }

    /* 12 COLUMNS CLASS-BASED GRID SYSTEM */
    .col-1 { grid-column: auto / span 1; }
    .col-2 { grid-column: auto / span 2; }
    .col-3 { grid-column: auto / span 3; }
    .col-4 { grid-column: auto / span 4; }
    .col-5 { grid-column: auto / span 5; }
    .col-6 { grid-column: auto / span 6; }
    .col-7 { grid-column: auto / span 7; }
    .col-8 { grid-column: auto / span 8; }
    .col-9 { grid-column: auto / span 9; }
    .col-10 { grid-column: auto / span 10; }
    .col-11 { grid-column: auto / span 11; }
    .col-12 { grid-column: auto / span 12; }

    /* PUSHES */
    .push-1 { grid-column-start: 2; }
    .push-2 { grid-column-start: 3; }
    .push-3 { grid-column-start: 4; }
    .push-4 { grid-column-start: 5; }
    .push-5 { grid-column-start: 6; }
    .push-6 { grid-column-start: 7; }
    .push-7 { grid-column-start: 8; }
    .push-8 { grid-column-start: 9; }
    .push-9 { grid-column-start: 10; }
    .push-10 { grid-column-start: 11; }
    .push-11 { grid-column-start: 12; }
}

/* FOR DEMO PURPOSES ONLY */
.row.demo > * {
    background-color: #eee;
    text-align: center;
    padding: var(--unit-s);
}

/* ------------------------- 
        SITE STRUCTURE 
---------------------------- */

/* SITE HEADER */
/* .site-header {
    padding-block: var(--unit-s);
    padding-inline: var(--unit-s);
} */

/* OVERLAY NAV */
.site-header {
    position: relative;
    z-index: 50;
}

/* REMOVE HEADER PADDING IF HAS A CONTAINER */
.site-header:has(.container) {
    padding-inline: 0;
}

/* LOGO STYLING */
.navbar .site-logo {
    display: flex;
    align-items: center;
    gap: var(--unit-s);
    padding-left: var(--unit-s);
}

.navbar .logo svg {
    max-height: 50px;
    min-width: 50px;
}


    /* DISPLAY LOGO ON FLEX AND NAV ON RIGHT */
    /* .site-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--unit-s);
        flex-wrap: wrap;
} */

/* SITE NAV */
/* .site-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: var(--unit-s);
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: var(--unit-s);
    padding-block-start: calc(var(--unit-xs) + .1em);
    color: var(--color-siteheader-links);
}

.site-nav a:hover {
    color: var(--color-siteheader-links-hover);
} */

/* SHOW MENU BUTTON ON HIGHER LAYER WHEN NAV IS OPEN */
/* .site-nav .menubutton {
    position: relative;
    z-index: 100;
    background-color: transparent;
    border: none;
    font-size: inherit;
    font-family: inherit;
    padding: var(--unit-xs);
    padding-block-start: var(--unit-xs);
    font-size: inherit;
    background-color: transparent;
    text-align: center; */
    /* visibility: hidden; */
    /* line-height: 1;
    display: block;
    width: 55px;
    height: 50px;
    color: var(--color-text-header);
} */

/* SMALL SCREENS: SHOW MENU, HIDE NAV */
/* .site-nav .menubutton { display: block; }
.site-nav ul { display: none; } */

/* BIG SCREENS: HIDE MENU BUTTON, SHOW NAV */
/* @media ( width >= 768px ) {
    .site-nav .menubutton { display: none; }
    .site-nav ul { display: flex; }
} */

/* SMALL SCREENS ONLY: ENABLE OVERLAY */
/* @media ( width < 768px ) {
    .site-nav[data-menustate] ul {
        display: grid;
        align-content: center;
        justify-content: center;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--color-black);
        transition: translate 0.4s ease-out;
    }

    .site-nav[data-menustate] a {
        color: var(--color-white);
    }

    .site-nav[data-menustate="open"] ul {
        translate: 0 0;
    }

    .site-nav[data-menustate="closed"] ul {
        translate: 100% 0;
    } */

    /* ENABLE SVG ANIMATION FOR THE NAVICON*/
    /* .site-nav[data-menustate] svg.simple-navicon rect {
        transition: all 0.2s ease-out;
        fill: var(--color-black);
    } */

    /* CHANGE COLOR OF THE SVG NAVICON WHEN MENU IS OPEN */
    /* .site-nav[data-menustate="open"] svg.simple-navicon rect {
        fill: var(--color-white);
    } */

    /* ANIMATE NAVICON LINES TO AN X WHEN OPEN */
    /* .site-nav .simple-navicon {
        display: block;
    } */
/*     
    .site-nav .simple-navicon rect {
        transform-origin: center;
        width: 100%
    }
    .site-nav[data-menustate="open"] .simple-navicon-top {
        position: fixed;
        top: calc(var(--unit-s) + var(--unit-s));
        right: calc(var(--unit-s) + var(--unit-xs));
        
    }
    .site-nav[data-menustate="open"] .simple-navicon-top {
        rotate: 45deg;
        translate: -21% 24%;
    }
    .site-nav[data-menustate="open"] .simple-navicon-middle {
        opacity: 0;
    }
    .site-nav[data-menustate="open"] .simple-navicon-bottom {
        rotate: -45deg;
        translate: -21% -24%;
    }
} */

/* SITE MAIN */
.site-main {
    background-color: transparent;
}

section {
    padding-block: var(--unit-m);
}

.hero {
    padding-block: var(--unit-3xl);
    padding-inline: var(--unit-s);
}

.hero:has(.container) {
    padding-inline: 0;
}

/* SITE FOOTER */
.site-footer {
    background-color: var(--color-sitefooter-background);
    padding-block: var(--unit-2xl);
    padding-inline: var(--unit-s);
}

.site-footer li {
    padding: var(--unit-3xs);
}
/* REMOVE FOOTER PADDING IF HAS A CONTAINER */
.site-footer:has(.container) {
    padding-inline: 0;
}


/* ------------------------- 
        UI COMPONENTS 
---------------------------- */

/* BUTTONS */
.button {
    background: var(--color-links);
    color: var(--color-white);
    padding: var(--unit-s);
    margin-block: var(--unit-2xs);
    display: inline-block;
    text-decoration: none;
    border-radius: var(--border-radius);
    line-height: 1;
}

.button:hover {
    background-color: var(--color-links-hover);
    color: var(--color-white);
}

/* CARDS */
.cards {
    border: var(--border-thickness) solid var(--color-border);
    display: inline-block;
    margin-right: var(--unit-xs);
    padding: var(--unit-s);
    border-radius: var(--border-radius);
}

.color-swatch {
    --swatch-color: grey;
    background-color: var(--_swatch-color);
    width: 150px;
    height: 150px;
}

/* HR */
hr {
    border: none;
    border-bottom: var(--border-thickness) solid var(--color-border);
    margin: var(--unit-xl) 0;
}

/* CODE BLOCKS */
pre:has(code) {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--unit-s);
    border-radius: var(--border-radius);
    white-space: pre-wrap;
}

/* SWIPER CSS STYLING */
.swiper {
    margin-inline: 4rem;
    padding-block-end: 2rem;
}

/* MOVESWIPER ARROWS OUTSIDE OF SWIPER */
.swiper-button-prev,
.swiper-button-next {
    /* translate: -50% 0; */
    background-color: var(--color-white);
    padding: var(--unit-xs);
    border-radius: 100%;
}

.swiper-button-next {
    /* translate: 50% 0; */
}
/* ------------------------- 
    CUSTOM SITE STYLING
---------------------------- */
/* PUSH THE FOOTER TO THE BOTTOM BY DEFAULT */
body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100svh;
}

/* TO FIX OVERFLOW WORD BREAK */
body > * {
    min-width: 0;
}

/* NUDGE THE NAV ITEMS DOWN TO ALIGN WITH LOGO TEXT */
.site-header .site-nav ul {
    padding-block-start: calc(var(--unit-xs) + 0.35em);
}

/* CUSTOM HERO STYLING */

/* .hero h1 {
    font-size: 4em;
    font: clamp(2.5em, 4vw, 4em);
    margin-block: 0;
    overflow-wrap: break-word;
} */

.hero h1 {
    max-inline-size: 50ch;
    text-wrap: balance;
}

/* CUSTOM PAGE LAYOUT - 2 COLUMNS: ASIDE + MAIN CONTENT */

.pagelayout-wrapper-twocolumn {
    padding-inline: var(--unit-2xs);
}

@media ( width>= 768px ) {
.pagelayout-wrapper-twocolumn {
    display: flex;
    gap: var(--unit-l);
}

.pagesection-aside {
    width: 25%;
}

.pagesection-maincontent {
    width: 75%;
}
}

/* STICKY BOX */
/* NOTE NEEDED ON SMALL SCREENS, SO IT IS SET INSIDE OF A MEDIA QUERY SO IT ALLOWS THE OVERLAY MENU TO RENDER ON TOP OF SMALL SCREENS */
@media ( width >= 768px ) {
    .stickybox {
        position: sticky;
        top: var(--unit-s);
}}

/* AO DAI TYPEBLOCK */
.aodai-eyebrow {
    font-size: .875rem;
    font-weight: bold;
    text-transform: uppercase;
    opacity: .5;
    line-height: 1;
}

.aodai-headline {
    font-size: 3rem;
    margin-block: var(--unit-s);
    line-height: 1.1;
}

.aodai-subheadline {
    font-weight: 400;
    font-style: italic;
    font-size: 1.5rem;
    margin-block: var(--unit-xs);
    opacity: .8;
    line-height: 1.2;
}

/* --------------------- 
        ANIMATIONS
------------------------ */
/* .scale-and-fade-in {
    animation-name: scale-and-fade-in;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0,1,0,1);
}

@keyframes scale-and-fade-in {
    0% {
        scale: 0;
        opacity: 0;
    }
    100% {
        scale: 1;
        opacity: 1;
    }
} */

/* REGULAR ON PAGE LOAD ANIMATIONS */
.slide-from-top-and-fade-in {
    animation-name: slide-from-top-and-fade-in;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0,0.5,0.5,1);
    animation-fill-mode: forwards;
    opacity: 0;
    translate: 0 -40px ;
    
}

@keyframes slide-from-top-and-fade-in {
    0% {
        opacity: 0;
        translate: 0 -40px;
    }
    100% {
        opacity: 1;
        translate: 0 0;
    }
}

.slide-from-left-and-fade-in {
    animation-name: slide-from-left-and-fade-in;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0,1,0,1);
    animation-fill-mode: forwards;
    opacity: 0;
    translate: -40px 0;
    
}

@keyframes slide-from-left-and-fade-in {
    0% {
        opacity: 0;
        translate: -40px 0;
    }
    100% {
        opacity: 1;
        translate: 0 0;
    }
}

.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.7s; }
.delay-6 { animation-delay: 0.9s; }

/* SCROLL-TRIGGERED ANIMATIONS */

/* fix scroll-bar on all scroll animation sections */
.section:has(.observe-me) {
    overflow-x: clip;
}
/* on scroll slide-in from the left */
.observe-me.onscroll-slide-in-from-left {
    opacity: 0;
    translate: -20px 0;
    transition: all .5s ease-out .2s;
}

.observe-me[data-viewstate="active"].observe-me.onscroll-slide-in-from-left {
    opacity: 1;
    translate: 0 0;
}

/* on scroll slide-in from the right */
.observe-me.onscroll-slide-in-from-right {
    opacity: 0;
    translate: 20px 0;
    transition: all .5s ease-out .2s;
}

.observe-me[data-viewstate="active"].observe-me.onscroll-slide-in-from-right {
    opacity: 1;
    translate: 0 0;
}
.observe-me.delay-0 { animation-delay: 0s; }
.observe-me.delay-1 { animation-delay: 0.1s; }
.observe-me.delay-2 { animation-delay: 0.2s; }
.observe-me.delay-3 { animation-delay: 0.3s; }
.observe-me.delay-4 { animation-delay: 0.5s; }
.observe-me.delay-5 { animation-delay: 0.7s; }
.observe-me.delay-6 { animation-delay: 0.9s; }

/* CUSTOM NAVBAR */
.navbar {
    padding: 0;
    justify-content: space-between;
}

.navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-darkbrown-100);
  }

  .navbar-toggler {
    border-color: transparent;
  }
  
  .navbar-toggler,
  .navbar-brand {
    position: relative;
    z-index: 1;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse .nav-link {
    font-size: 1.5em;
    letter-spacing: 2px;
    color: var(--color-beige);
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: var(--color-lightbrown-100);
  }

  .nav-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
    padding: 0.2em 4em;
  }

  @media (min-width: 768px) {
    .nav-item:not(:last-child) {
      padding: 0.5em 8em;
    }
  }

  .navbar-collapse.show {
    transition: all 0.5s;
  }

.sound {
    padding-top: 1em;
    display: flex;
    grid-gap: var(--grid-gap);
}

.site-main, .site-footer, .site-header {
    background-image: url(../img/background_texture.jpg);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero {
    width: auto;
    margin: 0 auto;
    position: relative;
}

.hero img {
    max-width: 100%;
    height: auto;
}

/* .hero textimg {
    max-width: 100%;
    font-family: var(--title-font);
    font-size: 12em;
    padding-top: .75em;
    border: 1px solid red;
} */

.quote {
    display: flex;
}

.quote blockquote {
    font-family: 'solitaire-mvb-pro', sans-serif;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.4;
	position: relative;
	margin: 0 auto;
	padding: 50px;
}

.quote blockquote::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-image: url('../img/quote-close.svg');
    background-size: fit-content;
    background-repeat: no-repeat;
}

.quote blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-image: url('../img/quote-open.svg');
    background-size: fit-content;
    background-repeat: no-repeat;
}

.quote blockquote h6 {
    max-inline-size: none;
    text-wrap: normal;
}

.img-full-width {
    width: 100vw;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -50vw;
    left: 50%;
}
  
.introduction img {
    object-fit: cover;
    object-position: center;
    height: 600px;
    width: 100%;
}

.student {
    display: flex;
    align-items: flex-start;
    padding: 1em;
}
  
.student:nth-child(odd) {
    flex-direction: row-reverse;
}
  
.student img {
    width: 100%;
    height: auto;
}
  
.student-meta,
.left-img,
.right-img {
    width: 50%;
    padding: 1em;
}
  
.left-img,
.right-img {
    padding-left: 0;
    padding-right: 0;
}
  
.student-meta {
    position: sticky;
    top: 0;
    padding: 1em 2em 0em 2em;
}

.drop-cap {
    margin-bottom: 0;
    &:first-child {
      &:first-letter {
        float: left;
        font-size: 5em;
        margin-right: 10px;
        line-height: 0.8;
    }
}}

.student-meta blockquote p {
    width: 80%;
	font-size: 1.5rem;
	/* max-width: 600px; */
	line-height: 1.4;
	position: relative;
	margin: 0 auto;
	padding: var(--unit-s);
    font-family: ivypresto-display, serif;
    font-weight: 400;
    font-style: italic;
    color: var(--color-quote);
}

.student-meta blockquote p:first-of-type:before {
    content: '\201c';
    position: absolute;
    left: 0.2em;
}

.student-meta blockquote p:last-of-type:after {
    content: '\201d';
    position: absolute;
}
@media (min-width: 768px) {
    .student .left-img {
        top: 0;
        left: -210px;
        translate: 10% 0;
    }

    .student .right-img {
        top: 0;
        right: -220px;
        translate: -10% 0;
}}


.title-centered {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(20%, -50%);
    text-align: center;
    max-width: 25em;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0%);
    } 

    100% {
        opacity: 1;
        transform: scale(100%);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0%);
    } 

    100% {
        opacity: 1;
        transform: scale(100%);
    }
}

@keyframes slideIn {
    0% {
        right: 0%;
        opacity: 0;
    }

    50% {
        right: 50%;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.vertical_timeline {
    margin: 100px 0;
    padding: 0 100px;
    position: relative;
}

.timeline_lists {
    list-style: none;
    position: relative;
    margin: 0;
    height: 900px;
}

.contents_container-1 span  {
    margin-top: 140px;
    left: 55%;
    text-align: left;
}

.contents_container-2 span {
    margin-top: -360px;
    right: 60%;
    text-align: right;
}

.contents_container-3 span {
    margin-top: -820px;
    left: 55%;
    text-align: left;
}

.contents_container-4 span {
    margin-top: -1330px;
    right: 60%;
    text-align: right;
}

.contents_container-5 span {
    margin-top: -1800px;
    left: 55%;
    text-align: left;
}

.contents_container-6 span {
    margin-top: -2260px;
    right: 60%;
    text-align: right;
}

.contents_container-7 span {
    margin-top: -2780px;
    left: 55%;
    text-align: left;
}

.contents_container-8 span {
    margin-top: -3250px;
    right: 60%;
    text-align: right;
}

.contents_container-9 span {
    margin-top: -3650px;
    left: 55%;
    text-align: left;
}

.contents_container-10 span {
    margin-top: -4000px;
    right: 60%;
    text-align: right;
}

.contents_container span {
    color: var(--color-body-text);
    background: #5C4A3C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    animation: slideIn 1.5s ease-in-out;
}

.contents_container ul {
    list-style: none;
}

.content {
    color: var(--color-body-text);
    font-size: 1rem;
    text-align: center;
    position: absolute;
    animation: slideIn 1.5s ease-in-out;
}

.content img {
    width: 350px;
}

.content-1 {
    margin-top: 60px;
    left: 0;   
}

.content-2 {
    margin-top: -420px;
    right: 0;   
}

.content-3 {
    margin-top: -880px;
    left: 0;   
}

.content-4 {
    margin-top: -1370px;
    right: 0; 
}

.content-5 {
    margin-top: -1870px;
    left: 0;   
}

.content-6 {
    margin-top: -2350px;
    right: 0; 
}

.content-7 {
    margin-top: -2820px;
    left: 0;   
}

.content-8 {
    margin-top: -3300px;
    right: 0; 
}

.content-9 {
    margin-top: -3800px;
    left: 0;   
}

.content-10 {
    margin-top: -4150px;
    right: 0; 
}

.timeline_progress_bar {
    background-color: var(--color-darkbrown-100);
    position: absolute;
    height: 50%;
    width: 10px;
    top: 0px;
    right: 50%;
    border-radius: 20px;
    overflow: hidden;
    animation: slideIn 1.5s ease-in-out;
}

.timeline_progress {
    background-color: var(--color-beige);
    position: absolute;
    height: 50%;
    width: 100%;
    top: -3450px;
    border-radius: 20px;
    animation-timeline: scroll(root);
    animation-name: scaleProgress;
    animation-duration: auto;
    animation-timing-function: linear(0.13 13.86%, 0.74 35.95%);
}

@keyframes scaleProgress {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(400%);
    }
}

.timeline_points {
    position: absolute;
    height: 80%;
    width: 10px;
    top: 200px;
    right: 50%;
    border-radius: 20px;
}

.timeline_points div {
    background-color: var(--color-darkbrown-100);
    position: absolute;
    height: 30px;
    width: 30px;
    border: 8px solid var(--color-darkbrown-100);
    border-radius: 50%;
    animation: slideIn 1.5s ease-in-out 1s;
    z-index: 1;
    animation-fill-mode: backwards;
    right: -100%;
}

.timeline_points div:nth-child(1) {
    top: -220px;
}

.timeline_points div:nth-child(2) {
    top: 200px;
}

.timeline_points div:nth-child(3) {
    top: 620px;
}

.timeline_points div:nth-child(4) {
    top: 1040px;
}

.timeline_points div:nth-child(5) {
    top: 1460px;
}

.timeline_points div:nth-child(6) {
    top: 1880px;
}

.timeline_points div:nth-child(7) {
    top: 2300px;
}

.timeline_points div:nth-child(8) {
    top: 2720px;
}

.timeline_points div:nth-child(9) {
    top: 3140px;
}

.timeline_points div:nth-child(10) {
    top: 3700px;
}

.timeline_points div:nth-child(11) {
    top: 4230px;
}

@media (max-width: 900px) {
    .vertical_timeline {
        margin-top: 0;
    }
    
    .contents_container-1 span  {
        left: 20%;
        right: 5%;
    }
    
    .contents_container-2 span {
        left: 20%;
        right: 5%;
        text-align: left;
    }
  
    .contents_container-3 span  {
        left: 20%;
        right: 5%;
    }
    
    .contents_container-4 span {
        left: 20%;
        right: 5%;
        text-align: left;
    }

    .contents_container-5 span  {
        left: 20%;
        right: 5%;
    }

    .contents_container-6 span {
        left: 20%;
        right: 5%;
        text-align: left;
    }
    
    .contents_container-7 span  {
        left: 20%;
        right: 5%;
    }

    .contents_container-8 span {
        left: 20%;
        right: 5%;
        text-align: left;
    }

    .contents_container-9 span  {
        left: 20%;
        right: 5%;
    }

    .contents_container-10 span {
        left: 20%;
        right: 5%;
        text-align: left;
    }

    .content img {
        width: 350px;
    }
    
    .content-1 img {
        margin-top: 350px;
    }
    
    .content-2 img {
        margin-top: 350px;
    }
    
    .content-3 img {
        margin-top: 350px;
    }
    
    .content-4 img {
        margin-top: 350px;
    }

    .content-5 img {
        margin-top: 350px;
    }

    .content-6 img {
        margin-top: 350px;
    }

    .content-7 img {
        margin-top: 350px;
    }

    .content-8 img {
        margin-top: 350px;
    }

    .content-9 img {
        margin-top: 350px;
    }

    .content-10 img {
        margin-top: 350px;
    }

    .content-1 {
        left: 20%;  
    }
    
    .content-2 {
        left: 20%;      
    }
  
    .content-3 {
        left: 20%;  
    }
    
    .content-4 {
        left: 20%;      
    }

    .content-5 {
        left: 20%;  
    }

    .content-6 {
        left: 20%;      
    }

    .content-7 {
        left: 20%;  
    }

    .content-8 {
        left: 20%;
    }

    .content-9 {
        left: 20%;  
    }

    .content-10 {
        left: 20%;  
    }

    .timeline_progress_bar {
        left: 10%;
    }
    
    .timeline_progress {
        height: 90%;
    }
    
    .timeline_points {
        left: 10%;
    }

}

/* Mobile Devices (480px and below) */
@media (max-width: 600px) {  
    .content-1 {
      margin-top: 100px; 
      width: 200px;
    }

    .content-2 {
      margin-top: 200px; 
      width: 200px;
    }
  
    .content-3 {
      margin-top: 300px; 
      width: 200px;
    }

    .content-4 {
        margin-top: 400px; 
        width: 200px;
    }

    .content-5 {
        margin-top: 500px; 
        width: 200px;
    }

    .content-6 {
        margin-top: 600px; 
        width: 200px;
    }

    .content-7 {
        margin-top: 700px; 
        width: 200px;
    }

    .content-8 {
        margin-top: 800px; 
        width: 200px;
    }

    .content-9 {
        margin-top: 900px; 
        width: 200px;
    }

    .content-10 {
        margin-top: 1000px; 
        width: 200px;
    }
    
    .timeline_progress_bar {
        width: 5px;
    }
    
    .timeline_points {
        width: 6px;
    }
    
    .timeline_points div {
        height: 20px;
        width: 20px;
        border: 5px solid #595B3C;
    }
}

.content-1 h1, 
.content-2 h1,
.content-3 h1,
.content-4 h1,
.content-5 h1,
.content-6 h1,
.content-7 h1,
.content-8 h1,
.content-9 h1,
.content-10 h1 {
    font-size: 12em;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-darkbrown-100);
}

.content-1 h2, 
.content-2 h2,
.content-3 h2,
.content-4 h2,
.content-5 h2,
.content-6 h2,
.content-7 h2,
.content-8 h2,
.content-9 h2,
.content-10 h2 {
    font-size: 3em;
    font-family: var(--font-headings);
    font-weight: 400;
    color: var(--color-brown-80);
}

.content-9 .custom,
.content-10 .custom {
    font-family: var(--title-font);
    font-size: 10em;
    font-weight: 100;
    color: var(--color-lightbrown-100);
}

/* .content-2 h1 {
    font-size: 12em;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-darkbrown-100);
}

.content-2 h2 {
    font-size: 3em;
    font-family: var(--font-headings);
    font-weight: 400;
}

.content-3 h1 {
    font-size: 12em;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-darkbrown-100);
}

.content-3 h2 {
    font-size: 3em;
    font-family: var(--font-headings);
    font-weight: 400;
} */


.row h2 {
    font-family: var(--font-headings);
}

.one-half.text {
    margin: var(--unit-l);
    width: auto;
    align-items: center;
    align-content: center;
}
