body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-width: 320px;
}


/* ------------------ Intro Section ------------------ */
#intro_section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: center;
    background-color: #1E1C1C;
}
#intro_side {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 2vw 0 0; 
}

/* ----  Title ---- */
#logo {
    display: block;
    box-sizing: border-box;
    height: 100%;
    justify-self: start;
    align-self: center;
} 

#title {
    margin-left: 20px;
}

h1 {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    color: white;
}
h3 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    margin: 2px 0 0 0;
    font-style: italic;
    color: white;
}

/* ---- Carousel ---- */
.carousel {
    height: 100%; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.ss_content{ 
    margin-bottom: 0px; 
    width: 15.7vw; /* width of image holder */
    perspective: 1000px; 
    position: relative; 
} 

.ss_content-carousel { 
    width: 100%; /* width of image holder, change in ss_content */
    position: absolute; 
    float: right; 
    animation: rotar 45s infinite linear; /* change carousel speed */
    transform-style: preserve-3d;
} 

.ss_content-carousel:hover { 
    animation-play-state: paused; 
    cursor: pointer; 
} 

.ss_content-carousel figure { 
    width: 100%; /* width of image holder, change in ss_content */
    height: 12vw; /* change image and holder height */
    border: 1px solid #1E1C1C; 
    overflow: hidden; 
    position: absolute; 
    background-color: #2D2B2B;
    border-radius: 10px;
} 

/* change carousel width with translateZ value */
.ss_content-carousel figure:nth-child(1) {transform: rotateY(0deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(2) {transform: rotateY(40deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(3) {transform: rotateY(80deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(4) {transform: rotateY(120deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(5) {transform: rotateY(160deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(6) {transform: rotateY(200deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(7) {transform: rotateY(240deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(8) {transform: rotateY(280deg) translateZ(23vw);} 
.ss_content-carousel figure:nth-child(9) {transform: rotateY(320deg) translateZ(23vw);} 

.shadow { 
    position: absolute; 
    box-shadow: 0px 0px 20px 0px #000; 
    border-radius: 2px; 
} 

.ss_content-carousel img { 
    image-rendering: auto; 
    transition: all 300ms; 
    width: 15.7vw; /* image width in holder */
    height: 100%; 
    border-radius: 10px;
} 

.ss_content-carousel img:hover { 
    transform: scale(1.03); 
    transition: all 300ms; 
} 
@keyframes rotar { 
    from{ transform: rotateY(0deg); } to{ transform: rotateY(360deg); } 
}

/* mobile static image */
img {vertical-align: middle;}
.static-image-container {
  width: 100%;
  position: absolute;
  z-index: -1;
}
#static_img {
    width: 100%;
    filter: brightness(80%)
}


/* ----  Nav ---- */

/* PC Nav */
nav {
    position: absolute;
    top: 36px;
    right: 40px;
    padding: 0;
}
ul {
    margin: 0;
}
li {
    display: inline-block;
    margin-left: 30px;
    color: white;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}
li:hover {   
    text-decoration: underline;  
}

/* Mobile Nav */
#menu_toggle {
	display: block;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
	user-select: none;
}
#menu_toggle input {
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
}
#menu_toggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: white;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), 
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	opacity 0.55s ease;
}
#menu_toggle span:first-child { transform-origin: 0% 0%; }
#menu_toggle span:nth-last-child(2) { transform-origin: 0% 100%; }
#menu_toggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(-2px, -1px);
	background: white; /* cross */
}
#menu_toggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}
#menu_toggle input:checked~span:nth-last-child(2) {
	opacity: 1;
	transform: rotate(-45deg) translate(0, -1px);
}
#menu_toggle input:checked~ul {
	transform: scale(1.0, 1.0);
	opacity: 1;
}

#menu {
	position: absolute;
	width: 170px;
	margin: -100px 0 0 0;
	padding: 125px 0 10px 0;
	right: -40px;
	background: #1E1C1C;
	list-style-type: none;
	transform-origin: 0% 0%;
	transform: translate(100%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	overflow-x: hidden;
}
#menu li {
	padding: 8px 0;
	font-size: 22px;
    display: list-item;
}

a:link {
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	color: white;
}
a:visited {
	color: white;
}


/* ------------------ Quote Section ------------------ */

#quote_section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: auto;
    background-color: #F4F4F4;
}
#quote_section h5 {
    color: black;
    font-family: 'Istok Web', sans-serif;
    margin: 0 10px;
    font-weight: 400;
    height: 50px;
    font-size: 80px;
}
#quote_section h4 {
    color: black;
    font-family: 'Merriweather', serif;
    font-weight: 500;
    margin: 0;
    text-align: center;
    align-self: center;
    letter-spacing: 1px;
    font-size: 20px;
}
#quotation_1 {
    align-self: flex-start;
    line-height: 110%;
}
#quotation_2 {
    align-self: flex-end;
    line-height: 140%;
}


/* ------------------ Stories Section ------------------ */

article {
    background-color: #f1f1f1;
    box-sizing: border-box;
}

/* ----  Stories Heading ---- */
#stories_heading {
    background-color: #1E1C1C;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#stories_heading h2 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: white;
    letter-spacing: 3px;
    font-weight: 500;
}

.pillar_1 {
    background-color: #7F3B3B;
}
.pillar_2 {
    background-color: #77815D;
}
.pillar_3 {
    background-color: #619DA9;
}

/* ----  PC Pillars ---- */
#flex_container {
    /* display:flex declared in media queries */
    height: auto;
    width: 100%;
    overflow: hidden;
    flex-direction: row;
}

.flex_slide {
    flex: 1;
    cursor: pointer;
    transition: all 0.8s ease;
}
.flex_slide:hover {
    flex-grow: 2; /* section hover growth */
}

.post_section {
    height: 100vh;
    height: 800px; /* height of section, placed here for background scaling */
}
.section_1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../assets/post_background/building.jpeg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    object-fit: cover;
}
.section_2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../assets/post_background/forest.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    object-fit: cover;
}
.section_3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url(../assets/post_background/waves.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    object-fit: cover;
}

.post_container {
    position: relative;
    height: 100%;
    font-size: 50px; /* change scale of post */
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    float: right;
    width: 100%;
    transition: width 0.8s ease;
    z-index: 10;
}

/* shapes */
.shape, .face, .face_wrapper, .cr {
    position: absolute;
    transform-style: preserve-3d;
}

.scene {
    display: block;
    position: relative;
    width: 300px;
    height: 100%; /* 100% of post container */
    transform-style: preserve-3d;
    transform: rotateX(-0deg) rotateY(0deg); /* change angle of post */
    animation: post_animation_reverse 0.8s alternate;
    margin-right: 0;
}

.shape {
    top: 48%; /* center post in individual container */
    left: 50%; /* center post in individual container */
}  

.face, .face_wrapper {
    overflow: hidden;
    transform-origin: 0 0;
    backface-visibility: hidden; /* prevents glitching */
}
.face {
    background-size: 100% 100%!important;
    background-position: center;
}
.face_wrapper .face {
    left: 100%;
    width: 100%;
    height: 100%
}

.img_container {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.post_logo {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

.pillar_label {
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-items: center;
}
.pillar_label span {
    text-align: center;
    writing-mode: vertical-rl;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
    color: white;
    letter-spacing: 3px;
    font-weight: 500;
}

.side {left: 50%;}
.cr, .cr .side {height: 100%;}
/* cube faces*/
[class*="cuboid"] .ft, [class*="cuboid"] .bk {
    width: 100%;
    height: 100%;
}
[class*="cuboid"] .bk {left: 100%;}
[class*="cuboid"] .rt {transform: rotateY(-90deg) translateX(-50%);}
[class*="cuboid"] .lt {transform: rotateY(90deg) translateX(-50%);}
[class*="cuboid"] .tp {transform: rotateX(90deg) translateY(-50%);}
[class*="cuboid"] .bm {transform: rotateX(-90deg) translateY(-50%);}
[class*="cuboid"] .lt {left: 100%;}
[class*="cuboid"] .bm {top: 100%;}

/* prism faces*/
[class*="prism"] .ft, [class*="prism"] .bk {
    width: 100%;
    height: 100%;
}
[class*="prism"] .bk {left: 100%;}
[class*="prism"] .rt {transform: rotateY(-90deg) translateX(-50%);}
[class*="prism"] .lt {transform: rotateY(90deg) translateX(-50%);}
[class*="prism"] .bm {transform: rotateX(-90deg) translateY(-50%);}
[class*="prism"] .lt {left: 100%;}
[class*="prism"] .bm {top: 100%;}
[class*="prism"] .rt .face {
    left: -100%;
    transform-origin: 100% 0;
}
  
/* .cube styles */
.cube {
    transform: translate3D(0em, 0em, 0em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    opacity: 1;
    width: 4em; /* cube front width */
    height: 9em; /* cube front height */
    margin: -2.5em 0 0 -2em;
}
.cube .rt, .cube .lt {
    width: 4em; /* cube sides width */
    height: 9em; /* cube sides height */
}
.cube .tp, .cube .bm {
    width: 4em;
    height: 4em;
}
.cube .ft {transform: translateZ(2em);}
.cube .bk {transform: translateZ(-2em) rotateY(180deg);}
.cube .face {background-color: #333333;}
  
/* .pyramid styles */
.pri {
    transform: translate3D(0em, -4.5em, 0em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    opacity: 1;
    width: 4em; /* pyramid width */
    height: 4em; /* pyramid height */
    margin: -2em 0 0 -2em;
}
.pri .ft {
    height:5.656854249492381em;
    transform: translateZ(-2em) rotateX(45.00000000000001deg);
}
.pri .rt, .pri .lt {
    width: 4em;
    height: 4em;
}
.pri .bm {
    width: 4em;
    height: 4em;
}
.pri .rt .face {transform: rotateZ(-45.00000000000001deg);}
.pri .lt .face {transform: rotateZ(45.00000000000001deg);}
.pri .bk {transform: translateZ(-2em) rotateY(180deg);}
.pri .rt .face, .pri .lt .face {height: 5.656854249492381em;}
.pri .face {background-color: #333333;}

/* stories text */
.section_text {
    position: absolute;
    color: white;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    
}
.text_wide {
    width: calc(48vw - 380px); /* width of expanded section - text width */
    opacity: 0;
    animation: text_animation_reverse 0.5s alternate;
    margin: 200px 0 20px 40px;
    max-height: 600px;
    font-size: 22px; /* scale story text */
}
.text_side {
    margin: 0 10px 10px 10px;
    font-size: 12px; /* scale story text */
    overflow: hidden;
}
.flex_slide:hover .scene {
    animation: post_animation 0.8s alternate;
    animation-fill-mode: both;
}
.flex_slide:hover .section_text {
    animation: text_animation 0.5s 0.3s alternate;
    animation-fill-mode: both;
}

@keyframes text_animation {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes text_animation_reverse {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

.section_text h6 {
    font-size: 1.3em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}
.section_text p {
    font-size: 1em;
    font-weight: 300;
    padding: 0;
    color: #fff;
    line-height: 1.5;
    text-justify: inter-word;
}
.text_wide p {
    margin: 0 0 40px 0;
}
.text_side p {
    margin: 0 0 20px 0;
}

/* ----  Mobile Expanding Box ---- */
#content_1 {
    background-color: rgba(127, 59, 59, 0.6);
}
#content_2 {
    background-color: rgba(119, 129, 93, 0.6);
}
#content_3 {
    background-color: rgba(97, 157, 169, 0.6);
}

.collapsible {
    color: white;
    cursor: pointer;
    padding: 15px 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 26px;
    font-family: 'Merriweather', serif;
    letter-spacing: 2px;
  }
  
  .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .collapse_active:after {
    content: "\2212";
  }
  
  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f1f1f1;
    font-family: 'Merriweather', serif;
    font-size: 16px;
  }


/* ------------------  Footer Section ------------------ */

/* ----  Footer ---- */
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2D2B2B;
    color: white;
    width: 100%;
}

#footer_lower {
    background-color: #2D2B2B;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    width: 100%;
}
.footer_group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

/* Sponsors */
#sponsors_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 5px 10px 5px;
    gap: 6px;
}
#logos_group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 30px;
    flex-wrap: wrap;
    min-width: 300px;
}
#sponsors_section p {
    margin: 13px 20px 0 20px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
.sponsor_logo {
    height: 40px;
}

/* Nav */
#f_group_nav a {
    font-family: 'Poppins', sans-serif;
}
#f_group_nav a:hover {
    text-decoration: underline;  
}

.media_link {
    color: white;
    font-size: 24px;
    margin: 3px -5px 0 0;
}

.icon_text {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
}
.icon_text:hover {
    text-decoration: underline;  
}

#f_group_nav li {
    display: inline-block;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
#f_group_nav li:hover {
    text-decoration: underline;  
}


/* ----  Sub Footer ---- */
#subfooter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: #1E1C1C;
    width: 100%;
    gap: 60px;
}
#subfooter p {
    color: lightgrey;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

#subfooter a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-decoration: underline;
}

#subfooter a:link {
	color: lightgrey;
}
#subfooter a:visited {
	color: lightgrey;
}


/* ------------------ Media Queries ------------------ */

/* Extra small devices (phones) */
@media (max-width: 550px) {
    /* intro section */
    #intro_section {height: 67vw;}
    #title {margin-top: 70px;}
    #logo {padding: 4vh 2vw 4vh 2vw;} 
    h1 {font-size: 7vw;} /* title */
    h3 {font-size: 3vw;} /* slogan */

    /* set nav type */
	nav {display: none;}
	#menu_toggle {display: block;}

    /* carousel */
    .ss_content{height: 120px;} /* change container height to fix vertical perspective */
    .carousel {display: none;}
	.slideshow {display: block;}

    /* quote section */
    #quote_section h1 {font-size: 60px;}
    #quote_section h4 {font-size: 14px;}
    #quote_section {padding: 30px 0;}

    /* stories section */
    #stories_mobile {display: block;}
    #flex_container {display: none;}
    #stories_heading {height: 60px;}
    #stories_heading h2 {font-size: 25px;}

    /* footer section */
    #footer_lower {
        flex-direction: column;
        gap: 10px;
    }
    .footer_group {gap: 15px;}
    #logos_group {
        padding: 20px 5px 20px 5px;
        gap: 5px;
    }
    #f_group_nav a {font-size: 14px;}
    .icon_text {font-size: 14px;}
    #subfooter {
        flex-direction: column;
        height: 100px;
        gap: 5px;
    }
}

/* Small devices (phones) */
@media (min-width: 551px) {
    /* intro section */
    #intro_section {height: 54vw;}
    #title {margin-top: 70px;}
    #logo {padding: 4vh 2vw 4vh 2vw;} 
    h1 {font-size: 7vw;} /* title */
    h3 {font-size: 3vw;} /* slogan */

    /* set nav type */
	nav {display: none;}
	#menu_toggle {display: block;}

    /* carousel */
    .ss_content{height: 120px;} /* change container height to fix vertical perspective */
    .carousel {display: flex;}
	.slideshow {display: none;}

    /* quote section */
    #quote_section h1 {font-size: 60px;}
    #quote_section h4 {font-size: 14px;}
    #quote_section {padding: 30px 0;}

    /* stories section */
    #stories_mobile {display: block;}
    #flex_container {display: none;}
    #stories_heading {height: 60px;}
    #stories_heading h2 {font-size: 25px;}

    /* footer section */
    #footer_lower {
        flex-direction: column;
        gap: 10px;
    }
    .footer_group {gap: 17px;}
    #logos_group {
        padding: 20px 10px 20px 10px;
        gap: 10px;
    }
    #f_group_nav a {font-size: 14px;}
    .icon_text {font-size: 14px;}
    #subfooter {
        flex-direction: column;
        height: 100px;
        gap: 5px;
    }
}

/* Medium devices (tablets, laptops) */
@media (min-width: 910px) { 
    /* intro section */
    #intro_section {height: 100vh;}
    #title {margin-top: 140px;}
    #logo {
        padding: 7vh 1vw 7vh 2vw;
        max-height: 50vw;
    } 
    h1 {font-size: 4.5vw;} /* title */
    h3 {font-size: 1.8vw;} /* slogan */

    /* set nav type */
    nav {display: block;}
    #menu_toggle {display: none;}

    /* carousel */
    .ss_content{height: 200px;} /* change container height to fix vertical perspective */
    .carousel {display: flex;}
	.slideshow {display: none;}

    /* quote section*/
    #quote_section h1 {font-size: 80px;}
    #quote_section h4 {font-size: 16px;}
    #quote_section {padding: 30px 10vw;}

    /* stories section */
    #stories_mobile {display: none;}
    .text_wide {display: none;}
    .text_side {display: block;}
    #flex_container {display: flex;}
    #stories_heading {height: 80px;}
    #stories_heading h2 {font-size: 30px;}

    @keyframes post_animation {
        0% {transform: rotateX(0deg) rotateY(0deg);}
        100% {transform: rotateX(0deg) rotateY(90deg);}
    }
    @keyframes post_animation_reverse {
        0% {transform: rotateX(0deg) rotateY(90deg);}
        100% {transform: rotateX(0deg) rotateY(0deg);}
    }
    /* footer section */
    #footer_lower {
        flex-direction: row;
        gap: 8vw;
    }
    .footer_group {gap: 20px;}
    #logos_group {
        padding: 20px 10px 20px 10px;
        gap: 10px;
    }
    #f_group_nav a {font-size: 16px;}
    .icon_text {font-size: 16px;}
    #subfooter {
        flex-direction: row;
        height: 60px;
        gap: 60px;
    }
}
 
/* Large devices (desktops) */
@media (min-width: 1400px) { 
    /* intro section */
    #intro_section {
        height: 100vh;
        background-color: #1E1C1C;
    }
    #title {margin-top: 80px;}
    #logo {
        padding: 10vh 1vw 10vh 2vw;
        max-height: 50vw;
    } 
    h1 {font-size: 4.5vw;} /* title */
    h3 {font-size: 1.5vw;} /* slogan */

    /* set nav type */
	nav {display: block;}
	#menu_toggle {display: none;}

    /* carousel */
    .ss_content{height: 250px;} /* change container height to fix vertical perspective */
    .carousel {display: flex;}
	.slideshow {display: none;}

    /* quote section*/
    #quote_section h1 {font-size: 80px;}
    #quote_section h4 {font-size: 20px;}
    #quote_section {padding: 30px 16vw;}

    /* stories section */
    #stories_mobile {display: none;}
    .text_wide {display: block;}
    .text_side {display: none;}
    #flex_container {display: flex;}
    #stories_heading {height: 80px;}
    #stories_heading h2 {font-size: 40px;}
    
    .flex_slide:hover .post_container {width: 40%;} /* reduce width of post_container
    /* reducing slides post to the left when rotated */

    @keyframes post_animation {
        0% {
            transform: rotateX(0deg) rotateY(0deg);
            margin-right: 0;
        }
        100% {
            transform: rotateX(0deg) rotateY(30deg);
            margin-right: 40px;
        }
    }
    @keyframes post_animation_reverse {
        0% {
            transform: rotateX(0deg) rotateY(30deg);
            margin-right: 40px;}
        100% {
            transform: rotateX(0deg) rotateY(0deg);
            margin-right: 0;}
    }
    
    /* footer section */
    #footer_lower {
        flex-direction: row;
        gap: 8vw;
    }
    .footer_group {gap: 20px;}
    #logos_group {
        padding: 20px 10px 20px 10px;
        gap: 10px;
    }
    #f_group_nav a {font-size: 16px;}
    .icon_text {font-size: 16px;}
    #subfooter {
        flex-direction: row;
        height: 60px;
        gap: 60px;
    }
}
