body {
    margin: 0;
    font-family: 'Roboto', 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #595f80;
    font-size: 15px;
    line-height: 150%;
}

:root {
    --highlight_colour: #D09C51;
    --default_colour: #292929;
    --light-grey: #9f9b9b;
    --header_colour: #6e7594;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--default_colour);
    /* color: white; */
    cursor: pointer;
}

a:hover {
    color: var(--highlight_colour);
    text-decoration: none;
}

p {
    /*padding: 0 0 5px 0;*/
    font-weight: normal;
    /* font-size: 10pt; */
    color: var(--default_colour);
    /*line-height: 1.5em;*/
}

li {
    padding: 0 0 8px 0;
    /*line-height: 17px;*/
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td {
    padding: 0 15px 20px 0;
    text-align: left;
    vertical-align: top;
}

input, select {
    vertical-align: middle;
}

.general_bold {
    color: var(--highlight_colour);
    font-weight: bold;

}

.general_bold_centered {
    text-align: center;
}

.wrapper {
    max-width: 1050px; /* was 1440 */
    margin: 0 auto;
    /*border: 2px solid purple;*/
}

.wrapper-inner {
    max-width: 1050px;
    margin: 0 auto;
}

#nav-links {
    display: none;
}

.small-nav-link {
    color: white !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d09c51;
    width: 100vw;
    text-align: center;
}

.small-nav-link:nth-child(1), #journal-mobile-dropdown + .small-nav-link, #shop-mobile-dropdown + .small-nav-link,
#collection-mobile-dropdown + .small-nav-link {
    border-top: 1px solid #d09c51;
}

#searchTerm, #mobileSearchTerm {
    height: 1.7em;
}

/* Watch out for GliderJS also using visible */
#topnav.visible {
    position: absolute;
    top: 9vh;
    background: #171616;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
    text-align: left;
    color: white;
    overflow-y: scroll;
}

.hide {
    display: none;
}

.nav-link:hover {
    --highlight_colour: #D09C51;
}

.nav-link {
    /* redefined for Gladson */
    color: white;
    border: none;
    font-size: 16px;

    cursor: pointer;
    text-shadow: none;
    flex-shrink: 0;
}

.nav-link:hover {
    text-decoration: none;
}

/* Dropdown button on hover & focus */
button.nav-link:hover, button.nav-link:focus {
    background-color: transparent;
}

h2 {
    color: var(--default_colour);
    font-size: 1.2rem;
}

button {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    padding: 0.8rem;
    font-weight: 400;
    font-size: 0.8rem;
    font-family: inherit;
}

button:hover {
    background: var(--highlight_colour);
    text-shadow: none;
}

.navbar-height {
    height: 4.5rem;
    padding: 0.5em 0;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    color: var(--default_colour);
    padding-top: 0.3em;
    padding-bottom: 0.5em;
    background-color: var(--header_colour);
}

#nav-inner {
    max-width: 1050px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header_colour);
}

#logo {
    display: flex;
    justify-content: right;
    z-index: 2;
}

#logo-img {
    width: 169px;
    height: auto;
}

#burger {
    position: relative;
    display: flex;
    justify-content: left;
    z-index: 2;
    float: left;
}

.no_padding {
    padding: 0;
    background-color: transparent;
}

main > section {
    transition-property: opacity, transform;
    transition-duration: 1s;
}

main > section:not(:first-child) {
    opacity: 0;
    transform: translateY(5em);
}

main > section.shown {
    opacity: 1;
    transform: none;
}

#journal {
    --scroll-font-size: 36px;
    position: relative;
    margin-top: 0.5em;
}

#journal #journal-articles {
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

#journal .scroll {
    font-size: var(--scroll-font-size);
    color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: calc(50% - var(--scroll-font-size) / 2);
    width: calc(1.5 * var(--scroll-font-size));
    height: calc(1.5 * var(--scroll-font-size));
    border-radius: calc(0.75 * var(--scroll-font-size));
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#journal .scroll-right {
    right: 0;
}

#journal article {
    width: 33%;
    flex-basis: 33%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
}

#journal #journal-header {
    font-family: 'Roboto', 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin-top: 1.0em;
    margin-bottom: 1.0em;
}


#journal article > a {
    flex-shrink: 0;
    display: flex;
}

#journal article img {
    margin-right: 1rem;
    object-fit: none;
}

.journal-article {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.journal-article p {
    flex-grow: 1; /* aligns the link button to the bottom */
    line-height: 1.35em;
    /*text-align: justify;*/
}

.journal-category {
    font-weight: bold;
    /*padding-bottom: 1rem;*/
    color: #D8AB70;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contact {
    max-width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.contact-columns.three > * {
    width: 30%;
    min-width: max-content;
}

.brands > * {
    align-self: stretch;
}

.bunch_status {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 0.8em;
    margin-bottom: 0.6em;
}

.top-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 0.7rem;
}

.fade-in-image {
    animation: fadeIn 4s;
    -webkit-animation: fadeIn 4s;
    -moz-animation: fadeIn 4s;
    -o-animation: fadeIn 4s;
    -ms-animation: fadeIn 4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.brands article.fabric {
    flex-basis: 10%;
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.brands article.fabric p {
    flex-grow: 1;
    text-align: justify;
}

.heritage-btn {
    position: absolute;
    bottom: 8%;
    text-align: center;
}

.heritage-btn > button {
    cursor: pointer;
}

.heritage-caption {
    position: absolute;
    bottom: 16%;
    text-align: center;
}

.fashion-caption-h {
    position: absolute;
    bottom: 25%;
    text-align: center;
}

.brand-grid {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template: auto / 1fr 1fr 1fr;
    gap: 2rem;
}

.brand-grid > * {
    justify-content: flex-start;
}

.brand-grid > * img {
    padding-bottom: 1rem;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5em; /* was 1.0em */
    margin-bottom: 0.5em;
}

.brand-image {
    padding: 3px 0;
}

.brand-description {
    font-size: 0.85em;
    line-height: 1.7em;
}

.footer {
    display: flex;
    background-color: var(--header_colour);
    color: #ffffff;
    padding-left: 2em;
    padding-right: 2em;
    clear: left;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.footer-inner {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-group {
    display: flex;
    flex-wrap: wrap;
}

.footer-item {
    padding: 5px;
    line-height: 1.5em;
}

.footer-link {
    font-size: 1.15em;
}

.footer a:not(:hover) {
    color: white;
}

.block_of_three {
    flex-wrap: nowrap;
    gap: 0.5em;
}

#sustainability {
    background-image: url("../images/sustainability.jpg");
    background-size: auto 80vh;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    margin: 0.5rem;
}

#focus-collections {
    display: flex;
    flex-direction: column;
    margin: 1rem 0
}

.collection {
    height: 43vh;
    background: #d9d97b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mill, .collection {
    margin: 0.5rem;
}


#focus1 {
    background-image: url("../images/focus1.jpg");
    background-size: auto 80vh;
    background-repeat: no-repeat;
}

#focus2 {
    background-image: url("../images/focus2.jpg");
    background-size: auto 80vh;
    background-repeat: no-repeat;
}


#search-container {
    display: flex;
    align-items: self-end;
    justify-content: center;
    margin-left: 2rem;
    padding-right: 1%;
}

#search-input {
    height: 32px;
    outline: none;
    border: 1px solid #d09c51;
    padding-left: 1rem;
}

#search-icon {
    text-shadow: none;
    background: #d09c51;
    height: 20px;
    width: 20px;
    padding: 4px;
    margin-left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#search-icon svg {
    flex-shrink: 0;
    width: 18px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

#search-dropdown.show {
    display: block;
}

.mobile-toggle-dropdown {
    display: none;
    flex-direction: column;
    align-items: center;
}

.mobile-toggle-dropdown.show {
    display: flex;
}

.mobile-toggle-dropdown > a {
    width: 100vw;
    text-align: center;
}

.mobile-toggle-dropdown .general_bold {
    padding: 0.5rem 0;
}

.mobile-toggle-dropdown .small-nav-link {
    padding: 1rem 0;
    border-bottom: none;
}

.heritageHeader {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--highlight_colour);
    margin-top: 0.5em;
    text-align: center;
}

.heritageText {
    /*margin-top: 1.0em;*/
    margin-bottom: 2.0em;
    line-height: 1.2em;
    margin-right: 15%;
    margin-left: 15%;
}

.heritageText::first-letter {
    font-size: 2.5rem;
    line-height: 34px;
    margin-right: 4px;
    float: left;
}

.bigQuote {
    font-size: 2.5em;
    font-style: italic;
    margin: 5% 12%;
    line-height: 1.1em;
}

.quote {
    font-style: italic;
    color: var(--default_colour);
}

.members-section, .faq-section, .aboutus-section {
    padding: 0 0.5rem;
}

.members {
    padding: 1rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
    gap: 1rem;
}

.member {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.explainers, .library {
    padding: 1rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), calc(50% - 1.5rem)));
    justify-content: space-between;
    gap: 1rem;
}

.explainer, .library-item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.explainer-title, .member-name, .faq-question, .library-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 0.3em;
    text-transform: uppercase;
}


.collection_header {
    color: var(--default_colour);
    text-align: center;
    font-size: 2.1em;
    font-weight: 300;
    line-height: 1.3em;
    padding-top: 1.1em;
    padding-bottom: 1.1em;
}


.collection_body {
    color: var(--default_colour);
    width: 90%;
    font-size: 1.0em;
    font-weight: 300;
    line-height: 1.8em;
    padding-bottom: 1.1em;
}

.btn-space {
    margin-top: 1.0em;
    margin-bottom: 1.0em;
}

.collection-btn {
    font-size: 0.8em;
    text-align: center;
    color: var(--default_colour);
    border: 1px solid var(--default_colour);
    padding: 8px 8px 8px 8px;
}

a.collection-btn:hover {
    color: var(--highlight_colour);
    text-decoration: none;
    background-color: var(--default_colour);
}

.collection-btn-white {
    color: white;
    border: 1px solid white;
}

a.collection-btn-white:hover {
    color: var(--default_colour);
    background-color: white;
}

.collection-img {
    position: relative;
    z-index: -1; /* Go behind the text */
}

.collection-img > img {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.collection-img-overlay {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    color: white;
}

.collection-img-overlay > img {
    /*height: 150px;*/
    object-fit: contain;
}

.collection_name {
    color: var(--highlight_colour);
    font-size: 4em;
    text-transform: capitalize;
}

.lookbook-wrapper > *:not(.lookbook_colour), .lookbook_colour > * {
    max-width: 1000px;
    margin: 0 auto;
}

.lookbook_colour {
    color: white;
    background-color: var(--default_colour);
    width: 100%;
}

.lookbook_clear {
    color: var(--default_colour);
    background-color: white;
}

.lookbook_thumbs ul {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}

.lookbook_thumbs li {
    transition: transform linear .2s 0s;
    list-style-type: none;
    display: inline-block;
    margin: 6px;
    vertical-align: middle;
}

.lookbook_thumbs li img {
    border: 1px solid #FFF;
    height: auto !important;
    width: auto !important;
    max-height: 300px;
    max-width: 300px;
    vertical-align: bottom;
}

.lookbook_thumbs li:hover,
.lookbook_thumbs li:focus {
    transform: scale(1.3);
    position: relative;
    z-index: 2;
}

.lookbook_name {
    color: white;
    font-size: 2em;
    text-transform: capitalize;
    letter-spacing: 0.3em;
}

.lookbook_title {
    font-size: 2.5em;
    line-height: 2.1em;
    text-align: center;
}

.lookbook_text {
    text-align: center;
    font-weight: 400;
    line-height: 1.8em;
    padding-bottom: 2.0em;
}

.lookbook-img {
    position: relative;
    z-index: -1; /* Go behind the text */
}

.lookbook-img > img {
    position: absolute;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.lookbook-img-overlay {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    color: white;
}

.lookbook-img-overlay > img {
    height: 150px;
    object-fit: contain;
}


.lookbook-slider-wrapper {
    display: none;
    padding: 1rem;
    position: fixed;
    overflow: hidden;
    top: 0;
    /*bottom: 0;*/
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 10;
}

.lookbook-slider-wrapper.show {
    display: block;
}

.lookbook-slides-container {
    /*height: calc(100vh - 2rem);*/
    width: 100%;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    list-style: none;
    margin: 0;
    padding: 0;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.lookbook-slides-container::-webkit-scrollbar {
    /* WebKit */
    width: 0;
    height: 0;
}

.lookbook-slide {
    width: 100%;
    /*height: 100%;*/
    flex: 1 0 100%;
}

.lookbook-slide > img {
    max-height: calc(100vh - 2rem);
    margin: 0 auto;
}

.lookbook-slide-arrow {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 4rem;
    background-color: var(--default_colour);
    border: none;
    width: 2rem;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    transition: background-color 100ms;
}

.lookbook-slide-arrow.prev {
    left: 0;
    padding-left: 0.25rem;
    border-radius: 0 2rem 2rem 0;
}

.lookbook-slide-arrow.next {
    right: 0;
    padding-left: 0.75rem;
    border-radius: 2rem 0 0 2rem;
}

.lookbook-slide-arrow.close {
    right: 1rem;
    top: 1rem;
    bottom: unset;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    display: block;
}

#about-history {
    background: #282a38;
    color: white;
    width: 100%;
    margin-bottom: 3rem;
}

#about-history > section {
    max-width: 1000px;
    padding: 3rem 0;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

#about-history-side {
    width: 40%;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about_title {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 7px;
    margin-bottom: 0.5rem;
}

.about_sub_title {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 2px;
    opacity: 0.75;
    font-weight: 400;
    margin-bottom: 1rem;
}

#about-history-story {
    width: 60%;
    margin-right: 12%;
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding-bottom: 5rem;
}

.about-section > * {
    width: 50%;
}

.about_h1 {
    font-size: 1.9em;
    line-height: 2.0em;
}

.about_statement {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.2em;
}

.brand-statement {
    padding-top: 2.0em;
    padding-bottom: 1.8em;
    font-size: 2.1em;
    font-weight: 300;
    line-height: 1.2em;
}

.brand-name {
    color: #666;
    font-weight: bold;
    font-size: 1em;
    line-height: 2em;
}

.brand-info {
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

.testament {
    width: 100%;
}

.testament:nth-child(2n) {
    background-color: var(--default_colour);
    color: white;
}

.testament > * {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.testament > :not(.no-image-testament) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.testament:nth-child(2n) > :not(.no-image-testament) {
    flex-direction: row-reverse;
}

.testament > :not(.no-image-testament) > * {
    width: 50%;
}

.no-image-testament > * {
    width: 75%;
    margin: 0 auto;
}

.testament-quote {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 2.5rem;
}

.testament-text {
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
}

.testament-people {
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.testament-people .bold {
    font-weight: 700;
}

.testament-people .italic {
    font-style: italic;
}

.gallery-box {
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-box > * {
    width: 33%;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-column img {
    transition: transform linear .3s 0s;
}

.gallery-column img:hover {
    transform: scale(1.15);
}

.gallery_name {
    padding-top: 1.5em;
    color: var(--default_colour);
    font-weight: 400;
    font-size: 1.1em;
    text-transform: uppercase;
    text-align: center;
}

.gallery_description {
    font-size: 0.8em;
    line-height: 2.1em;
    text-align: center;
}

.gallery_detail {
    text-align: center;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.8em;
    padding-top: 1rem;
}

.news-wrapper {
    display: flex;
    gap: 2rem;
}

#news-events {
    width: 75%;
}

.news-wrapper hr {
    margin: 1.5rem 0;
}

#news-list {
    width: 25%;
}

.news-header {
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 2rem;
}

.news-header + hr {
    margin-top: 0;
}

.events-box {

}

.events-box img {
    margin-bottom: 1rem;
}

.events-btn {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    background-color: black;
    color: white;
    padding: 0.5em 0.5em 0.5em 0.5em;
    text-transform: uppercase;
}

.events-title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-left: 0.5rem;
}

.events-description {
    font-size: 1.0em;
    line-height: 1.75em;
    padding-top: 1rem;
}

.events-bottom-link {
    font-size: 1.0em;
    font-weight: bold;
    line-height: 1.75em;
    padding-top: 0.5rem;
}

a.events-bottom-link:hover {
    color: var(--default_colour);
}

.news-subheader {
    font-size: 0.75rem;
    line-height: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-subheader + hr {
    margin-top: 0.5rem;
}

.news-box {
    padding-bottom: 2rem;
}

.news-link {
    font-size: 0.75rem;
    line-height: 1.5rem;
    font-weight: bold;
}

.news-link::after {
    content: "\e628"; /* -> */
    font-family: 'themify';
    font-weight: normal;
    line-height: 1;
    font-size: 0.75rem;
    display: inline-block;
    margin-left: 0.5rem;
}

a.news-link:hover {
    color: var(--default_colour);
}

.news-body {
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.video-title {
    font-size: 0.75rem;
    line-height: 1.5rem;
    font-weight: bold;
}

.bunch_group {
    display: block;
    font-weight: bold;
    list-style-image: none;
    padding: 3px 6px 3px 6px;
    border: solid 1px #e0dbc9;
    margin-bottom: 3px;
    color: gray;
    text-decoration: none;
    cursor: pointer;
}

.bunch-group-dropdown.show {
    display: block;
}

.bunch-group-dropdown {
    display: none;
}

#collection-dropdown {
    width: 12rem;
    cursor: pointer;
}

#collection-dropdown > div:not(.show) + hr {
    margin-top: 10px; /* Add some spacing below each group name when not expanded */
}

.stock_table {
    width: 75%;
    font-size: 10px;
}

.stock_table, th, td {
    border: 1px solid darkgray;
    padding: 5px;
}

.stock_table, tr:nth-child(even) {
    background-color: #f2f2f2;
}

.pdf-btn {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    background-color: black;
    color: white;
    padding: 0.2em 0.2em 0.2em 0.2em;
    text-transform: uppercase;
}

.vid_div {
    margin: 20px auto;
    width: 60%;
}

video {
    width: 100%;
}

.fifty_pc_container {
    width: 65%;
    height: 75%;
    align-items: flex-start;
    display: flex;
    margin: 0 auto;
}

.fifty_pc_item {
    flex: 1;
    height: 90%;
    margin: 10px 10px;

}