/* !//////////////////////// !DISUKO v0.4! ////////////////////////! */

/* 0 - Development & Testing  */

/* 0.1 - Wrapper Testing Borders  */

.dsk1 {
    border: black solid 1px;
}

.dsk2 {
    border: red solid 1px;

}

.dsk3 {
    border: blue solid 1px;

}

.dsk4 {
    border: green solid 1px;

}

.dsk5 {
    border: yellow solid 1px;

}

/* 1 - General  */

/* 1.1 - Section Wrappers */

.section {
    container-type: inline-size;
}

/* 1.2 - Copy & Content */
.copy {
    /* General wrapper class for multiple paragrpahs */
    margin-top: 1rem;
}

/* 1.2.1 - Paragraphs */
p {
    margin-bottom: 0.8rem;
    margin-top: 0;
}

/* 1.2.1 - Headings */
/* Margin Fixes */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}




/* 1.3 - Responsive Hide/Show */

/* 1.3.1 - Desktop Show/Mobile Hide */
.ds_mh {
    display: block;
}

/* 1.3.2 - Mobile Show/Desktop Hide */
.ms_dh {
    display: none;
}

/* 1.3.3 - Padding - Responsive Width Override */
.ph_clear {}

/* 1.3.4 - Margin - Responsive Width Override */
.mh_clear {}

/* 1.4. - Hover States  */
/* 
These hover states are independant of whether the element is an anchor or not
*/

.hover {
    cursor: pointer;
    transition-duration: 0.3s;
}

/* 1.4..1 - Hover Zoom  */
.hover--zoom:hover {
    -ms-transform: scale(.9);
    -moz-transform: scale(.9);
    -webkit-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
}

/* 1.4..2 - Hover Invert  */
.hover--invert:hover {
    -webkit-filter: invert(75%);
    -moz-filter: invert(75%);
    filter: invert(75%);
}

/* 1.4..3 - Hover Dim  */
.hover--dim:hover {
    filter: brightness(50%);
}

/* 1.5 - Animations - TODO */

/* !//////////////////////// !!! ////////////////////////! */

/* 2- Generic Block Layout */
.block {}

/* 2.1.1 - Block Width  */
.block_50 {
    width: 50%;
}

.block_75 {
    width: 75%;
}

.block_80 {
    width: 80%;
}

/* 2.1.2 - Block Alignment  */
.block--center {
    margin: auto;
}



/* 3 - Flex Layout  */


/* 3.1 - Flex Objects  */

.flex {
    /* flex is the Block level flex parent item */
}

.flex__item {
    /* flex_item is the Block level flex child item */
}

/* 3.2 - Flex Direction */
.flex_row {
    display: flex;
    flex-direction: row;
}

/* Maintain row layout on mobile */
.flex_row--mob {
    display: flex;
    flex-direction: row;
}

.flex_col {
    display: flex;
    flex-direction: column;
}

.flex_wrap {
    display: flex;
    flex-wrap: wrap;
}

/* 3.3 - Flex Content Justify (Item's main axis posistion) */
.flex_main--center {
    justify-content: center;
}

.flex_main--start {
    justify-content: flex-start;
}

.flex_main--end {
    justify-content: flex-end;
}

.flex_main--between {
    justify-content: space-between;
}

.flex_main--around {
    justify-content: space-around;
}

.flex_main--even {
    justify-content: space-evenly;
}

/* 3.4 - Flex Content Align (Item's cross axis posistion) */
/* 3.4.1 - Consistant Cross Axis */
.flex_cross--center {
    align-items: center;
}

.flex_cross--right {
    align-items: flex-end;
}

.flex_cross--left {
    align-items: flex-start;
}

/* 3.4.2 - Responsive Cross Axis */
.flex_cross--center_desk_left_mob {
    align-items: center;
}

.flex_cross--left_desk_center_mob {
    align-items: flex-start;
}


/* 3.5 - Flex Item Posistioning TODO - Test */
.flex_item--start {
    align-self: flex-start;
}

.flex_item--end {
    align-self: flex-end;
}

.flex_item--cent {
    align-self: center;
}

/* 3.6 - Flex Item Size */
.flex_item100 {
    flex: 100%;
}

.flex_item90 {
    flex: 90%;
}

.flex_item80 {
    flex: 80%;
}

.flex_item70 {
    flex: 70%;
}

.flex_item60 {
    flex: 60%;
}

.flex_item50 {
    flex: 50%;
}

.flex_item40 {
    flex: 40%;
}

.flex_item30 {
    flex: 30%;
}

.flex_item20 {
    flex: 20%;
}

.flex_item10 {
    flex: 10%;
}

/* 4 - Grid Layout  */

/* !//////////////////////// !!! ////////////////////////! */

/* 5 - Typography */
.font {
    /* 
    .font is the general Block level selector for font items
    Font Size, Weight, & Color are abbreviated with .fs, .fw. & .fc 
    Line Height & Letter Spacing are done with .lh & .ls 
    */
}

/* 5.1 - Font Family */
.font_oswald {
    font-family: 'Oswald', 'Lucida Grande', sans-serif;

}

.font_helvetica {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

/* 5.2 - Font Style */

.font_none {
    /* Remove All Font Styling */
    text-decoration: none;
}

.font_ital {
    font-style: italic;
}

.font_under {
    text-decoration: underline;
}

.font_up {
    text-transform: uppercase;
}

.font_cap {
    text-transform: capitalize;
}

.font_cent {
    text-align: center;
}

.font_left {
    text-align: left;
}

.font_right {
    text-align: right;
}

/* 5.3 - Font Size */
.fs0_5 {
    font-size: .5rem;
}

.fs0_8 {
    font-size: .8rem;
}

.fs0_9 {
    font-size: .9rem;
}

.fs1 {
    font-size: 1rem;
}

.fs1_3 {
    font-size: 1.3rem;
}

.fs1_5 {
    font-size: 1.5rem;
}

.fs1_8 {
    font-size: 1.8rem;
}

.fs2 {
    font-size: 2rem;
}

.fs2_2 {
    font-size: 2.2rem;
}

.fs2_3 {
    font-size: 2.3rem;
}

.fs2_5 {
    font-size: 2.5rem;
}

.fs3 {
    font-size: 3rem;
}

.fs3_5 {
    font-size: 3.5rem;
}

.fs4 {
    font-size: 4rem;
}

.fs4_5 {
    font-size: 4.5rem;
}

.fs5 {
    font-size: 5rem;
}

/* 5.4 - Font Weight */
.fw300 {
    font-weight: 300;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

/* 5.5 - Font Colours */
.fc_blk {
    color: #000;
}

.fc_wht {
    color: #fff;
}

.fc_gry {
    color: #333;
}

/* 5.6 - Line Height */
.lh1 {
    line-height: 1;
}

.lh1_1 {
    line-height: 1.1;
}

.lh1_2 {
    line-height: 1.2;
}

.lh1_3 {
    line-height: 1.3;
}

.lh1_4 {
    line-height: 1.4;
}

.lh1_5 {
    line-height: 1.5;
}

/* 5.7 - Letter Spacing */
.ls01 {
    letter-spacing: 0.01rem;
}

.ls02 {
    letter-spacing: 0.02rem;
}

.ls03 {
    letter-spacing: 0.03rem;
}

.ls04 {
    letter-spacing: 0.04rem;
}

.ls05 {
    letter-spacing: 0.05rem;
}

.ls06 {
    letter-spacing: 0.06rem;
}

.ls07 {
    letter-spacing: 0.07rem;
}

.ls08 {
    letter-spacing: 0.08rem;
}

.ls1 {
    letter-spacing: 0.10rem;
}

.ls1_5 {
    letter-spacing: 0.15rem;
}

.ls2 {
    letter-spacing: 0.20rem;
}

.ls2_5 {
    letter-spacing: 0.25rem;
}




/* !//////////////////////// !!! ////////////////////////! */

/* 6 - Object Margin  */

/* 6.1 - Margin Horizontal */

.ma {
    /* Margin Auto (Left & Right)*/
    margin-left: auto;
    margin-right: auto;
}


.mh0 {
    margin-left: 0;
    margin-right: 0;
}

.mh0_5 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mh1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mh1_5 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mh2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mh3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mh4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mh5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

/* 6.2 - Margin Vertical */
.mv0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mv0_5 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.mv1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mv1_5 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.mv2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mv3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mv4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.mv5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* 6.3 - Margin Top */
.mt0 {
    margin-top: 0;
}

.mt1 {
    margin-top: 1rem;
}

.mt1_5 {
    margin-top: 1.5rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mt4 {
    margin-top: 4rem;
}

.mt5 {
    margin-top: 5rem;
}

/* 6.4 - Margin Bottom */
.mb0 {
    margin-bottom: 0;
}

.mb0_5 {
    margin-bottom: 0.5rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.mb4 {
    margin-bottom: 4rem;
}

.mb5 {
    margin-bottom: 5rem;
}


/* 6.6 - Margin Left */
.ml0 {
    margin-left: 0;
}

.ml1 {
    margin-left: 1rem;
}

.ml2 {
    margin-left: 2rem;
}

.ml3 {
    margin-left: 3rem;
}

.ml4 {
    margin-left: 4rem;
}

.ml5 {
    margin-left: 5rem;
}

/* 6.7 - Margin Right */
.mr0 {
    margin-right: 0;
}

.mr1 {
    margin-right: 1rem;
}

.mr2 {
    margin-right: 2rem;
}

.mr3 {
    margin-right: 3rem;
}

.mr4 {
    margin-right: 4rem;
}

.mr5 {
    margin-right: 5rem;
}

/* 7 - Object Padding  */
/* 7.1 - Padding Horizontal */
.ph0 {
    padding-left: 0;
    padding-right: 0;
}

.ph0_5 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.ph1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.ph1_5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ph2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.ph3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.ph4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.ph5 {
    padding-left: 5rem;
    padding-right: 5rem;
}


/* 7.2 - Padding Vertical */
.pv0 {
    padding-top: 0;
    padding-bottom: 0;
}

.pv1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pv1_5 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.pv2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pv3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pv4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pv5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* 7.3 - Padding Top */
.pt0 {
    padding-top: 0;
}

.pt1 {
    padding-top: 1rem;
}

.pt1_5 {
    padding-top: 1.5rem;
}

.pt2 {
    padding-top: 2rem;
}

.pt3 {
    padding-top: 3rem;
}

.pt4 {
    padding-top: 4rem;
}

.pt5 {
    padding-top: 5rem;
}

/* 7.4 - Padding Bottom */
.pb0 {
    padding-bottom: 0;
}

.pb0_2 {
    padding-bottom: 0.2rem;
}

.pb0_5 {
    padding-bottom: 0.5rem;
}

.pb1 {
    padding-bottom: 1rem;
}

.pb1_5 {
    padding-bottom: 1.5rem;
}

.pb2 {
    padding-bottom: 2rem;
}

.pb3 {
    padding-bottom: 3rem;
}

.pb4 {
    padding-bottom: 4rem;
}

.pb5 {
    padding-bottom: 5rem;
}

/* 7.6 - Padding Left */
.pl0 {
    padding-left: 0;
}

.pl1 {
    padding-left: 1rem;
}

.pl1_5 {
    padding-left: 1.5rem;
}

.pl2 {
    padding-left: 2rem;
}

.pl3 {
    padding-left: 3rem;
}

.pl4 {
    padding-left: 4rem;
}

.pl5 {
    padding-left: 5rem;
}

/* 7.7 - Padding Right */
.pr0 {
    padding-right: 0;
}

.pr1 {
    padding-right: 1rem;
}

.pr2 {
    padding-right: 2rem;
}

.pr3 {
    padding-right: 3rem;
}

.pr4 {
    padding-right: 4rem;
}

.pr5 {
    padding-right: 5rem;
}





/* !//////////////////////// !!! ////////////////////////! */

/* 8 - Object Styling  */

/* 8.1 - Object Width */
.w05 {
    width: 0.5rem;
}

.w07 {
    width: 0.7rem;
}

.w1 {
    width: 1rem;
}

.w1_2 {
    width: 1.2rem;
}

.w1_5 {
    width: 1.5rem;
}

.w2 {
    width: 2rem;
}

/* 8.2 - Object Height */
.h05 {
    height: 0.5rem;
}

.h07 {
    height: 0.7rem;
}

.h1 {
    height: 1rem;
}

.h1_2 {
    height: 1.2rem;
}

.h1_5 {
    height: 1.5rem;
}

.h2 {
    height: 2rem;
}

/* 8.3 - Borders  */
.bdr {}


/* 8.3.1 - Border Style  */
.brd__style--solid {
    border-style: solid;
}

.brd__style--dash {
    border-style: dashed;
}

.brd__style--dotted {
    border-style: dotted;
}

.brd__style--none {
    border-style: hidden;
}

/* 8.3.2 - Border Colors  */
.brd__col--black {
    border-color: #000;
}

.brd__col--white {
    border-color: #fff;
}

.brd__col--grey {
    border-color: #555;

}

.brd__col--lt_grey {
    border-color: #c0c0c0;
}

.brd__col--purple {
    border-color: #4b1e78;
}

/* 8.3.3 - Border Width (in pixels)  */
.brd__wid--1 {
    border-width: 1px;
}

.brd__wid--2 {
    border-width: 2px;
}

.brd__wid--3 {
    border-width: 3px;
}

.brd__wid--4 {
    border-width: 4px;
}

.brd__wid--5 {
    border-width: 5px;
}

/* 8.3.4 - Border Side (to be set last) */
.brd__btm {
    border-top: none;
    border-left: none;
    border-right: none;
}

.brd__top {
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.brd__left {
    border-top: none;
    border-bottom: none;
    border-right: none;
}

.brd__right {
    border-top: none;
    border-bottom: none;
    border-left: none;
}

/* 8.4 - Backgrounds */
.bg {
    /* This is the top level background object */
}

/* 8.4.1 - Background Colour */
.bg_col {}

.bg_light_grey {
    background-color: #e5e5e5;
}

/* 8.4.2 - Background Image */
.bg_img {
    position: relative;
}

.bg_img__content--centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 8.5 - Opacity */
/* 8.6 - Shadow  */


/* !//////////////////////// !!! ////////////////////////! */

/* 9 - Button & Links */
.but {
    a {
        cursor: pointer;
        transition-duration: 0.3s;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
}

/* 9.1 - Buttons */

/* 9.1.1 - Button Layout  */
.but--cent {
    text-align: center;
}

.but--left {
    text-align: left;
}

.but--right {
    text-align: right;
}

/* 9.1.2 - Button Width */
.but--100 {
    a {
        width: 100%;
    }
}

.but--75 {
    a {
        min-width: 75%;
    }
}

.but--50 {
    a {
        min-width: 50%;
    }
}

.but--25 {
    a {
        min-width: 25%;
    }
}

/* 9.1.2  - Button Color & Hover */
.but--blk {

    a {
        /* Default Button Spacing */
        padding: 0.5rem 2rem;
        font-size: 1rem;
        border-radius: 0.3rem;

        /* Default Button Color */
        text-transform: uppercase;
        background-color: #000;
        border: 1px solid #000;
        color: #fff;

        &:hover,
        &:active {
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #000;
            color: #000;
        }
    }
}

.but--wht {
    a {
        background-color: #fff;
        border: 1px solid #000;
        color: #000;

        &:hover,
        &:active {
            text-decoration: none;
            background-color: #000;
            border: 1px solid #000;
            color: #fff;
        }
    }
}

.but--prp {
    a {
        background-color: #504ca0;
        border: 1px solid #504ca0;
        color: #fff;

        &:hover,
        &:active {
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #504ca0;
            color: #504ca0;
        }
    }
}

/* 9.2 - Links */
.link {}

/* 9.2.1 - Inline Links (spans) */
.link--inline {
    text-decoration: none;

    &:hover {
        /* text-decoration: none; */
        transition-duration: 0.3s;
        color: #4b1e78;
    }
}

.link--underline {

    &:hover {
        transition-duration: 0.3s;
        color: #4b1e78;
    }
}

.link--default {
    text-decoration: none;

    &:hover {
        transition-duration: 0.3s;
        color: #4b1e78;
    }
}

/* 9.2.2 - Content Link Wrapper */
.link--content {
    /* TODO */
}

/* 9.2.3 - Image Link Wrapper */

.link--img {
    transition-duration: 0.3s;

    &:hover {
        filter: brightness(50%);
    }
}

/* !//////////////////////// !!! ////////////////////////! */

/* 10 - Components  */

/* 10.1 - Banners */


.banner {
    /* position: relative; */
}


/* 10.1.1 - Banner Height */

.banner--height50 {
    height: 50vh;
}

.banner--height60 {
    height: 60vh;
}

.banner--height70 {
    height: 70vh;
}

.banner--height80 {
    height: 80vh;
}

/* 10.1.2 - Page/Content Wide Image Banner */
.banner--wide {
    img {
        width: 100%;
    }
}


/* 10.1.3 - Full Width Image Banner */

/* Banner Image - requires the following, inline, for G-Web
    #d?????? {
        background-image: url("@@tcm:138-???????");
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
*/

.banner__img {
    position: relative;

    .banner__content {}
}

/* 10.1.4 - Full Width Video Banner */

/* Banner Video - requires the following, inline, for G-Web
     #d??????? {
        padding: 0;

        .l-inner {
            max-width: 100%;
        }
    }
*/

.banner__vid {
    position: relative;
    overflow: hidden;

    video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner__vid--content {
        position: absolute;
    }

}

/* 10.1.5 - Parallax Banner TODO - Include Safari fix*/



/* 10.2 - Tables */
.tab {
    table {
        width: 100%;

        td,
        th {
            padding: .4rem;
            /* padding-top: .3em;
            padding-bottom: .3em; */
        }
    }
}

/* 10.2.1 - Table Styles */

.tab--alt_1n {
    tr:nth-child(1n) {
        background-color: #d6d6d6;
    }
}

.tab--alt_2n {
    tr:nth-child(2n) {
        background-color: #d6d6d6;
    }
}

.tab_heading--bold {
    th {
        font-weight: 700;
    }
}

/* 10.2.2 - Table Borders */
.tab--border_dark {

    td,
    th {
        border: 1px solid #333;
    }
}
.tab--border_grey {

    td,
    th {
        border: 1px solid #8a8a8a;
    }
}
.tab--border_bottom_grey {

    td,
    th {
        border-bottom: 1px solid #8a8a8a;
    }
}
.tab--border_bottom_dark {

    td,
    th {
        border-bottom: 1px solid #333;
    }
}
.tab--border_bottom_dotted {
    tr {
        border-bottom: dotted 2px #333;
    }
}

/* 10.2.3 - Table Column Widths */
.tab--50_50 {
    td:nth-child(1) {
        width: 50%;
    }

    td:nth-child(2n) {
        width: 50%;
    }
}

.tab--30_70 {
    td:nth-child(1) {
        width: 30%;
    }

    td:nth-child(2n) {
        width: 70%;
    }
}

.tab--70_30 {
    td:nth-child(1) {
        width: 70%;
    }

    td:nth-child(2n) {
        width: 30%;
    }
}

/* 10.2.4 - Table Cell Background */
.tab_bg--grey {
    background-color: #8a8a8a;
    color: white;
    border: none;
}

/* 10.3 - Lists */
.list {

    ol,
    ul {
        list-style: revert-layer !important;
    }

    li {
        margin-bottom: 0.5rem;
    }
}

/* 10.3.1 - List Icons */
.list--ul_dot {}

.list--ol_num {}

.list--ol_roman {}

/* 10.3.2 - List Alignment */
.list--left_align {
    ol {
        padding-left: 0;
    }

    li {
        padding-left: 0.5rem;
    }
}

/* 10.3.2 - List Item Styling */
.list--li_bold {
    li::marker {
        font-weight: bold;
    }
}

.list--li_ital {
    li::marker {
        font-style: italic;
    }
}

/* 10.4 - Images  */

/* 10.4.1 - Responsive Image Height */
.img_res--30 {
    max-height: 100vh;
    object-fit: cover;
}



/* !//////////////////////// !!! ////////////////////////! */


/* @media only screen and (max-width: 999px) {} */

/* @container (max-width: 999px) { */
@media only screen and (max-width: 999px) {

    /* 1 - General  */

    /* 1.1 - Section Wrappers */
    /* 1.2 - Paragraphs */
    /* 1.3 - Headings */

    /* 1.3 - Responsive Hide/Show */

    /* 1.3.1 - Desktop Show/Mobile Hide */
    .ds_mh {
        display: none;
    }

    /* 1.3.2 - Mobile Show/Desktop Hide */
    .ms_dh {
        display: block;
    }

    /* 1.3.3 - Padding - Responsive Width Override */
    .ph_clear {
        padding-left: 0;
        padding-right: 0;
    }

    /* 1.3.4 - Margin - Responsive Width Override */
    .mh_clear {
        margin-left: 0;
        margin-right: 0;
    }

    /* !//////////////////////// !!! ////////////////////////! */

    /* 2- Generic Block Layout */
    .block {}

    /* 2.1.1 - Block Width  */
    .block_50,
    .block_75,
    .block_80 {
        width: 100%;
    }

    /* 2.1.2 - Block Alignment  */
    .block--center {
        margin-left: auto;
        margin-right: auto;
    }

    /* !//////////////////////// !!! ////////////////////////! */

    /* 3 - Flex Layout  */
    /* 3.1 - Flex Objects  */
    /* 3.2 - Flex Direction */
    .flex_row {
        flex-direction: column;
    }

    /* 3.3 - Flex Content Justify (Item's main axis posistion) */
    /* 3.4 - Flex Content Align (Item's cross axis posistion) */
    /* 3.4.1 - Consistant Cross Axis */
    /* 3.4.2 - Responsive Cross Axis */
    .flex_cross--center_desk_left_mob {
        align-items: flex-start;
    }

    .flex_cross--left_desk_center_mob {
        align-items: center;
    }


    /* 3.6 - Flex Item Size */
    .flex_item50 {
        width: 100%;
    }

    /* !//////////////////////// !!! ////////////////////////! */

    /* 5 - Typography */

    /* 5.1 - Font Family */
    /* 5.2 - Font Style */
    /* 5.3 - Font Size */
    .fs0_5 {
        font-size: .5rem;
    }

    .fs0_8 {
        font-size: .8rem;
    }

    .fs1 {
        font-size: 1rem;
    }

    .fs1_3 {
        font-size: 1.3rem;
    }

    .fs1_5 {
        font-size: 1.5rem;
    }

    .fs1_8 {
        font-size: 1.8rem;
    }

    .fs2 {
        font-size: 1.4rem;
    }

    .fs2_2 {
        font-size: 2.2rem;
    }

    .fs2_5 {
        font-size: 2.5rem;
    }

    .fs3 {
        font-size: 1.5rem;
    }

    .fs3_5 {
        font-size: 3.5rem;
    }

    .fs4 {
        font-size: 4rem;
    }

    .fs4_5 {
        font-size: 3rem;
    }

    .fs5 {
        font-size: 5rem;
    }

    /* 5.4 - Font Weight */
    /* 5.5 - Font Colours */
    /* 5.6 - Line Height */
    /* 5.7 - Letter Spacing */

    /* !//////////////////////// !!! ////////////////////////! */

    /* 6 - Object Margin  */

    /* 6.1 - Margin Horizontal */

    .mv5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    /* 6.2 - Margin Vertical */

    /* 6.3 - Margin Top */
    .mt3 {
        margin-top: 1.5rem;
    }

    .mt4 {
        margin-top: 2rem;
    }

    .mt5 {
        margin-top: 2rem;
    }

    /* 6.4 - Margin Bottom */



    /* 6.6 - Margin Left */
    /* 6.7 - Margin Right */

    /* !//////////////////////// !!! ////////////////////////! */

    /* 7 - Object Padding  */

    /* 7.1 - Padding Horizontal */
    /* 7.2 - Padding Vertical */



    /* 7.3 - Padding Top */
    /* 7.4 - Padding Bottom */



    /* 7.6 - Padding Left */
    /* 7.7 - Padding Right */

    /* !//////////////////////// !!! ////////////////////////! */

    /* 8 - Object Styling  */

    /* !//////////////////////// !!! ////////////////////////! */

    /* 9 - Button & Links */

    /* 9.1 - Buttons */

    /* 9.1.1 - Button Layout */

    /* 9.1.2 - Button Width */
    .but--75,
    .but--50,
    .but--25 {
        a {
            width: 100%;
        }
    }



    /* 9.2 - Links */

    /* !//////////////////////// !!! ////////////////////////! */

    /* 10 - Components  */

    /* 10.1 - Banners */
    .banner {
        /* position: relative; */
    }

    /* 10.1.1 - Banner Height */
    .banner--height50 {
        height: 30vh;
    }

    .banner--height60 {
        height: 40vh;
    }

    .banner--height70 {
        height: 50vh;
    }

    .banner--height80 {
        height: 60vh;
    }

    /* 10.2 - Tables */

    /* 10.3 - Lists */
    .list {
        ol {
            padding-left: 0;
        }
    }

    /* 10.4 - Images  */

    /* 10.4.1 - Responsive Image Height */
    .img_res--30 {
        max-height: 30vh;
        object-fit: cover;
    }
}



@media only screen and (max-width: 339px) {
    /* !//////////////////////// !!! ////////////////////////! */

    /* 10 - Components  */

    /* 10.1 - Banners */
    /* 10.1.1 - Banner Height */
    .banner--height50 {
        height: 20vh;
    }

    .banner--height60 {
        height: 30vh;
    }

    .banner--height70 {
        height: 35vh;
    }

    .banner--height80 {
        height: 40vh;
    }
}