/* Focused and custom CSS */
:root {
    /* Framing */
    /* --frame: 82.5em; */
    --frame: 1400px;
    /* Define brand colours */
    --brand-primary: rgb(209, 0, 8); /* Dark red */
    --brand-primary-offset: rgb(206, 89, 93);
    --brand-secondary: rgb(3, 47, 113); /* Blue */
    --brand-secondary-offset: rgb(40, 70, 114);
    --brand-black: #000;
    --brand-white: #fff;
    /* Fonts / Brand fonts */
    --font-body-scale: 1.58;
    --font-family: 'Poppins', Arial, Helvetica Neue, sans-serif;
    --font-color: rgba(91, 91, 91, 1);
    --heading-color: #000;
    --grey-darker: #383838; /* Darker grey */
    --grey-dark: #9f9f9f; /* Dark grey */
    --grey: #9f9f9f;
    --grey-light: #d9d9d9; /* Light grey */
    --grey-lighter: rgba(217, 217, 217, 0.2);
    /* Base Colours */
    --color-primary: var(--brand-primary);
    --bg-color: var(--brand-primary);
    --color-secondary: var(--brand-secondary);
    --bg-secondary-color: var(--brand-secondary);
    /* Overides */
    --padding: 1.225rem;
    --border-color: rgba(151, 151, 151, 1);
    --logo-size: 137px;
    --input-radius: 2rem;
    --input-padding: .85rem 1.45rem;
    --input-large-padding: .65rem 1.75rem;
    --placeholder-color: #ccc;
    /* Headings */
    --h1-size: 2.5em;
    --h2-size: 1.95em;
    --h3-size: 1.65em;
    --h4-size: 1.4em;
    --h5-size:: 1.2em;
    --h6-size:: 1em;
    /* Custom */
    --grey-outline: var(--grey-light);
    --base-transition: all 0.3s ease-out;
}

/* Animations */

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

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

    100% {
        opacity: 0;
        transform: translateY(55px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(55px);
    }
}

@keyframes image-transition {
    0% {
        filter: grayscale(0%);
    }

    50% {
        filter: grayscale(50%);
    }

    100% {
        filter: grayscale(100%);
    }
}

@keyframes gradient-bg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes slide-in {
    0% {
        right: -12rem;
    }

    50% {
        right: 0.5rem;
    }

    100% {
        right: 0;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: orange
    }
}

/* Custom Grid overides */
.bgrid-cols-2 {
    grid-template-columns: repeat(auto-fill, minmax(49%, 1fr));
}

/* Body and content */

body {
    line-height: calc(1 + 0.95 inherit/ var(--font-body-scale));
}

header, body, footer {
    animation: fade-in 1s;
}

p {
    font-size: 1rem;
    line-height: calc(1 + 1.205 / var(--font-body-scale));
}


a:visited {
    color: var(--brand-primary);
}

h1.h_light,
.h1.h_light,
h2.h_light,
.h2.h_light, h3.h_light,
.h3.h_light,
h4.h_light,
.h4.h_light,
h5.h_light,
.h5.h_light,
h6.h_light,
.h6.h_light {
    color: var(--font-color);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    --font-body-scale: 1.4;
}

.sub-heading,
p.sub-heading {
    --font-body-scale: 1.8;
}


/* Logo */
.logo {
    width: var(--logo-size);
    margin-top: 0.715em;
    transition: var( --base-transition);
}

.logo-sm {
    width: calc( var(--logo-size) - 50% );
}

.logo-lg {
    width: calc( var(--logo-size) + 50% );
}

/* HEADER */
header {
    padding-bottom: 1.5rem;
    transition: var(--base-transition);
}

.fixed-head > header {
    z-index: 100;
    background-color: var(--brand-white);
    padding-bottom: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    width: 100%;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
}

.fixed-head .logo {
    position: absolute;
}

.header-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: min-content 1fr min-content;
    grid-template-areas: "logo nav utility";
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    position: relative;
}

.grid-nav {
    align-self: end;
    justify-self: center;
}

.grid-utility {
    align-self: end;
    justify-self: end;
}

/* Header Utility */

.utility-one {
    text-align: right;
    padding-right: 1px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.utility-two {
    transition: var( --base-transition);
}

.fixed-head .utility-two {
    opacity: 0;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

.call-number {
    font-size: 1.25em;
    white-space: nowrap;
}

    .call-number:hover {
        outline: none;
        text-decoration: none;
    }

/* NAVIGATION */

/* Hamburger */
.navbar-toggle {
    /*position:absolute;
    right: -29px;
    top: -15px;
    */ padding: 0;
    margin: 0;
    display: inline-block;
    overflow: hidden;
    z-index: 2;
    position: relative;
    right: -22px;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    width: 80px;
    max-width: 80px;
}

.open-nav .navbar-toggle {
    z-index: 210;
    top: -4px;
    left: 10%;
}

.ham {
    width: 100%;
    height: auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #000;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.ham2 .top {
    stroke-dasharray: 40 121;
}

.ham2 .bottom {
    stroke-dasharray: 40 121;
}

.ham2.active .top {
    stroke-dashoffset: -102px;
}

.ham2.active .bottom {
    stroke-dashoffset: -102px;
}

.open-nav .navbar-toggle:hover {
    opacity: 0.9;
}

.open-nav .navbar-toggle svg {
}

    .open-nav .navbar-toggle svg .line {
        stroke: var(--brand-white);
    }

/* Nav - Mobile first */
.navbar {
    width: 100%;
    max-width: 17rem;
    height: 100vh;
    background-color: var(--grey-darker);
    box-shadow: -2px 0px 2px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    position: fixed;
    top: 0;
    right: -17rem;
}

    .navbar > ul {
        margin: 3em 0 0 0;
        width: 100%;
        list-style: none;
    }

        .navbar > ul > li {
            display: block;
            width: 100%;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid #444;
        }

            .navbar > ul > li > a {
                display: block;
                width: 100%;
                padding: 0.8em 1.1em;
                margin: 0;
                color: var(--brand-white);
            }

                .navbar > ul > li > a:visited {
                    color: var(--brand-white);
                    text-decoration: none;
                }

                .navbar > ul > li > a:hover {
                    text-decoration: none;
                    color: var(--grey-lighter);
                }

.open-nav .navbar {
    right: 0;
    animation: slide-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 200;
}

/* SEARCH */
#search-container {
    position: absolute;
    top: -50vh;
    left: 0;
    background: var(--brand-white);
    width: 100%;
    padding: 3em 1em;
    text-align: center;
    z-index: 10;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    transition: var( --base-transition);
}

    #search-container.visible {
        top: 0;
        opacity: 1;
    }

#site-search {
    width: 100%;
    max-width: 500px;
    display: flex;
    margin: 0 auto;
    gap: 10px;
}

.close-search {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    line-height: 1em;
    font-size: 2rem;
    z-index: 11;
}

    .close-search:hover {
        cursor: pointer;
        color: var(--brand-secondary);
    }

.search-trigger:hover {
    cursor: pointer;
    color: var(--brand-primary);
}

/* Search listing */

.search-heading {
    margin-top: 2em;
}

.search-results-grid {
    list-style: none;
    margin: 1em 0 0 0;
}

.search-result-item {
    padding: var(--padding);
    margin: 0;
    border-radius: 5px;
}

.search-results-grid li:nth-child(odd) {
    background-color: #f9f9f9;
}

.search-result-item h3 {
    margin-bottom: 10px;
}

    .search-result-item h3 a {
        color: var(--grey-darker);
    }

        .search-result-item h3 a:hover {
            color: va(var(--brand-primary));
        }

        .search-result-item h3 a .highlight {
            color: var(--brand-secondary);
        }

.result-type {
    color: var(--grey-dark);
    display: inline-block;
    background-color: #fff;
    line-height: 1em;
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 14px;
}

.result-desc {
    margin: 18px 0;
}

    .result-desc .highlight {
        color: var(--brand-secondary);
        font-weight: bold;
    }

/* Brand buttons */
button, input[type="submit"], .btn {
    font-weight: 700;
}

.btn {
    color: var(--brand-black);
}

p .btn {
    line-height: calc(1 + 0.95 inherit/ var(--font-body-scale));
}

.btn.btn-primary,
button.btn-primary {
    --bg-color: var(--brand-black);
}

    .btn.btn-primary:focus,
    .btn.btn-primary:hover {
        background-color: var(--bg-secondary-color);
        border-color: var( --bg-secondary-color);
    }

    .btn.btn-primary:active,
    .btn.btn-primary.active {
        background-color: var(--bg-color);
        border-color: var(--bg-color);
    }

.btn.btn-alt,
button.btn-alt {
    --bg-color: var(--bg-color);
}

    .btn.btn-alt:focus,
    .btn.btn-alt:hover {
        background-color: var(--bg-secondary-color);
        border-color: var( --bg-secondary-color);
    }

    .btn.btn-alt:active,
    .btn.btn-alt.active {
        background-color: var(--brand-black);
        border-color: var(--brand-black);
    }

.btn.btn-outline.grey-outline {
    border-color: var(--grey-dark);
    color: var(--grey);
}

    .btn.btn-outline.grey-outline:hover,
    .btn.btn-outline.grey-outline:active {
        border-color: var(--brand-black);
        color: var(--brand-black);
    }

.btn.btn-alt {
    --bg-color: var(--brand-primary);
    background-color: var(--bg-color);
    border-color: var(--bg-color);
    color: var(--brand-white);
}

    .btn.btn-alt:hover {
        background-color: var(--brand-primary-offset);
        border-color: var(--brand-primary-offset);
    }

.btn-submit {
    position: relative;
}

    .btn-submit i {
        opacity: 0;
        visibility: hidden;
        transition: all .35s;
        position: absolute;
        left: -9999;
        top: -9999;
    }

    .btn-submit.is_active {
        pointer-events: none;
    }

.btn-success i {
}

.btn-submit.is_active i {
    opacity: 1;
    visibility: visible;
    left: 44%;
    top: 36%;
}

.btn-submit.is_active .btn-success svg {
    margin-top: 50%;
    transform: translateY(-50%) rotate(720deg) scale(1);
}

.btn-submit.is_active span {
    opacity: 0;
    visibility: hidden;
}

/* Forms */
.form-group {
    position: relative;
    padding-top: 8px;
}

    .form-group > label {
        position: absolute;
        opacity: 0;
        transform: translateY(12px) translateX(22px);
        transition: opacity 0.3s ease-in, transform 0.3s ease-in;
    }

textarea.form-input {
    min-height: 220px;
}

.form-group.input-focus > label,
.form-group.input-complete > label {
    opacity: 1;
    transform: translateY(-24px) translateX(22px);
}

.form-group.group-error > input,
.form-group.group-error > textarea,
.form-group.group-error > email {
    --placeholder-color: var(--grey-darker);
    background-color: var(--bg-error);
    border-color: var(--color-error);
}

.form-group.group-error > label {
    color: var(--color-error);
}

.quote_form .form-group {
    margin-bottom: 1.5em;
}

/* Grid Content */
.umb-block-grid_item .umbblockgriddemoheadlineblock > *:first-child {
    margin-top: 0;
}

.umbblockgriddemoimageblock img {
    border-radius: 8px;
}

/* Cards */
.card {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.08);
}

    .card .card-header, .card .card-body, .card .card-footer {
        padding: 1rem 2.5rem 2.5rem 2.5rem
    }

    .card .card-header {
        padding-bottom: 0;
    }

        .card .card-header:last-child, .card .card-body:last-child, .card .card-footer:last-child {
            padding-bottom: 2.5rem;
        }

/* Breadcrummbs */
.breadcrumb .breadcrumb-item:not(:first-child)::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
}

.breadcrumb .breadcrumb-item:last-child a {
    color: var(--brand-black);
    font-weight: var(--font-medium);
}

/* Icon info grid */
.infoicongrid {
    margin-bottom: 3rem;
}

    .infoicongrid .frame {
        border-bottom: 1px solid var(--grey-outline);
    }

.igicon_block {
}

    .igicon_block h2 {
        margin-bottom: 1px;
        margin-top: 0;
    }

    .igicon_block p {
        font-size: 1.12em;
        line-height: 1.35em;
        color: var(--grey);
        font-weight: var(--font-light);
    }

    .igicon_block img {
        max-width: 72px;
    }

.subline {
    display: block;
    font-size: 1.2em;
    font-weight: var(--font-bold);
    margin-bottom: 3px;
    margin-top: 0;
    padding: 0;
    color: var(--grey-dark);
}

.stacked-icons .igicon_block img {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.stacked-icons h2,
.stacked-icons .subline {
    max-width: 68%;
    margin-left: auto;
    margin-right: auto;
}


/* Step text area */

.stepsblock {
    margin-bottom: 3rem;
}

    .stepsblock .frame {
        border-bottom: 1px solid var(--grey-outline);
    }

.text-step_grid {
}

.text-step {
    position: relative;
    display: block;
}

    .text-step::before {
        display: block;
        float: left;
        font-size: 30px;
        font-size: clamp(24px, 2.3vw, 37px);
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f178";
        margin-right: 1.8em;
        min-height: 93px;
    }

    .text-step > span {
        display: block;
        font-weight: 400;
        color: #757575;
    }

        .text-step > span:first-child {
            margin-bottom: 0.1em;
            font-size: 1.31em;
        }

        .text-step > span:last-child {
            color: var(--grey);
            font-size: 1.2254em;
        }

/* Big Text Blocks */
.bigtextblock {
    margin-top: 4em;
}

.big-text-region {
    position: relative;
}

    .big-text-region::after {
        display: block;
        content: "";
        height: 1px;
        background-color: var(--grey-light);
        width: 70%;
        margin: 4em auto;
    }

    .big-text-region h1,
    .big-text-region h2,
    .big-text-region h3,
    .big-text-region h4,
    .big-text-region h5,
    .big-text-region h6,
    .big-text-region .h1,
    .big-text-region .h2,
    .big-text-region .h3,
    .big-text-region .h4,
    .big-text-region .h5,
    .big-text-region .h6 {
        font-weight: var(--font-light);
        margin-top: 0;
        margin-bottom: 2px;
        letter-spacing: 0.01em;
    }

    .big-text-region .big-sub-text {
        display: block;
    }

    .big-text-region h1 + .big-sub-text,
    .big-text-region .h1 + .big-sub-text {
        font-size: calc( var(--h1-size) - 30% );
        font-weight: var(--font-light);
        letter-spacing: 0.01em;
        color: var(--grey);
    }

    .big-text-region h2 .big-sub-text,
    .big-text-region .h2 + .big-sub-text {
        font-size: calc( var(--h2-size) - 30% );
        font-weight: var(--font-light);
        letter-spacing: 0.01em;
        color: var(--grey);
    }

    .big-text-region h3 .big-sub-text,
    .big-text-region .h3 + .big-sub-text {
        font-size: calc( var(--h3-size) - 30% );
        font-weight: var(--font-light);
        letter-spacing: 0.01em;
        color: var(--grey);
    }

    .big-text-region h4 .big-sub-text,
    .big-text-region .h4 + .big-sub-text {
        font-size: calc( var(--h4-size) - 30% );
        font-weight: var(--font-light);
        letter-spacing: 0.01em;
        color: var(--grey);
    }

    .big-text-region h5 .big-sub-text,
    .big-text-region .h5 + .big-sub-text {
        font-size: calc( var(--h5-size) - 30% );
        font-weight: var(--font-light);
        letter-spacing: 0.01em;
        color: var(--grey);
    }

    .big-text-region h6 .big-sub-text,
    .big-text-region .h6 + .big-sub-text {
        font-size: calc( var(--h6-size) - 30% );
        font-weight: var(--font-light);
        letter-spacing: 0.01em;
        color: var(--grey);
    }

/* Tabs */
.tab.tab-block {
    display: inline-flex;
    flex-basis: fit-content;
    gap: 20px;
    border-bottom: 0;
}


    .tab.tab-block .tab-item {
        flex: fit-content;
        font-weight: 400;
    }

        .tab.tab-block .tab-item a {
        }

            .tab.tab-block .tab-item a:hover {
                color: var(--color-primary);
            }

        .tab.tab-block .tab-item.active a {
            color: var(--brand-black);
            font-weight: 500;
            border-bottom: 0;
        }

/* Article Cards */

.article-grid {
    padding-bottom: 4rem;
    grid-template-columns: repeat(3, fit-content(410px));
}

.article-card {
    overflow: hidden;
}

    .article-card, .article-card * {
        transition: all .4s ease-out;
    }

        .article-card > a {
            display: block;
            width: 100%;
            min-height: 410px;
            overflow: hidden;
            background: transparent url(images/article-placeholder.png) no-repeat center center;
        }

        .article-card img {
            object-fit: cover;
            display: block;
        }

        .article-card:hover img {
            opacity: 0.8;
            background-size: 110%;
        }

.article-grid:hover .article-card:not(:hover) {
    filter: grayscale(1);
}

.article-card .article-card-content {
    padding: 1.9rem 2.5rem;
}

    .article-card .article-card-content h4 a {
        color: var(--brand-black);
    }

.a-placeholder {
    max-width: 410px;
    height: auto;
}

/* Articles */

.article-catalogues {
    margin-top: 4em;
    margin-bottom: 4em;
}

.cat_item,
.cat_item:visited {
    text-align: center;
    color: var(--brand-black);
}

.cart_item * {
    transition: var( --base-transition);
}

.cat_item svg {
    max-width: 71px;
    margin: 0 auto;
}

    .cat_item svg path {
        fill: var(--brand-black);
    }

.cat_item span {
    display: block;
}

    .cat_item span:first-child {
        display: flex;
        min-height: 110px;
        align-items: center;
        justify-content: center;
    }

    .cat_item span:last-child {
        text-transform: uppercase;
        font-weight: var(--font-medium);
    }

.cat_item:hover,
.cat_item.active-cat {
    color: var(--brand-primary);
    text-decoration: none;
}

    .cat_item:hover span:first-child,
    .cat_item.active-cat span:first-child {
        transform: translatey(0px);
        -webkit-animation: float 3s ease-in-out infinite;
        animation: float 3s ease-in-out infinite;
    }

    .cat_item:hover svg path,
    .cat_item.active-cat svg path {
        fill: var(--bg-color) !important;
        stroke: var(--bg-color) !important;
    }

/* Pagination */
.pagination {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

    .pagination .page-item > a,
    .pagination .page-item > span {
        min-width: 28px;
        text-align: center;
        padding: 0.4rem 0.6rem;
        line-height: 1em;
        border-radius: 50%;
        color: var(--brand-black);
    }

    .pagination .page-item.active span {
        background-color: var(--color-secondary);
        color: var(--brand-white);
    }

    .pagination .page-item.page-prev > span b,
    .pagination .page-item.page-prev > a b {
        display: none;
    }

    .pagination .page-item.page-prev > span::before,
    .pagination .page-item.page-prev > a::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f053";
    }

    .pagination .page-item.page-next > span b,
    .pagination .page-item.page-next > a b {
        display: none;
    }

    .pagination .page-item.page-next > span::after,
    .pagination .page-item.page-next > a::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f054";
    }

/* Article detail */
#article-detail {
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    grid-gap: 30px;
}

.article-left {
    max-width: 300px;
}

.article-img {
    padding: 0.4em;
    border: 1px solid var(--grey-light);
    border-radius: 10px;
}

    .article-img img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.a-date,
.a-category {
    display: block;
    font-size: 14px;
    color: var(--brand-black);
}

    .a-category a {
        color: var(--brand-black);
    }

.a-author {
    display: block;
    line-height: 1.1em;
    margin-bottom: 10px;
    color: var(--grey-dark);
    font-weight: var(--font-medium);
}

    .a-author span {
        color: var(--grey-dark);
    }

.article-right h1 {
    margin-top: 0;
}

.article-left .sharethis-inline-share-buttons {
    margin-top: 1em;
}

/* Samples */

/* List block */
.list-section {
}

.sample-section > h1,
.sample-section > h2,
.sample-section > h3,
.sample-section > h4,
.sample-section > h5,
.sample-section > h6,
.sample-section > .h1,
.sample-section > .h2,
.sample-section > .h3,
.sample-section > .h4,
.sample-section > .h5,
.sample-section > .h6 {
    margin-bottom: 0.225em;
}

.sample-grid .view-more-link {
    font-size: calc(var(--font-body-scale) * 58.5%)
}

.sample {
    transition: var(--base-transition);
}

    .sample * {
        transition: var(--base-transition);
    }

    .sample > figcaption {
        font-style: normal;
        font-weight: 400;
        white-space: nowrap;
        text-align: center;
        margin-top: 1em;
    }

        .sample > figcaption a {
            color: var(--grey);
        }

.sample-linkimg {
    display: block;
    border-radius: 50%;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: auto;
}

    .sample-linkimg img {
        object-fit: cover;
        object-position: center;
    }

.sample:hover .sample-linkimg {
}

    .sample:hover .sample-linkimg img {
    }

.sample:hover > figcaption a {
    color: var(--brand-primary);
}

.sample-grid:hover .hover-links-active:not(:hover) {
    filter: grayscale(1);
}

/* Category */

/* List */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}

.team-member {
    max-width: 400px;
    position: relative;
    background-clip: border-box;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
}

    .team-member .background-block {
        float: left;
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
        clip-path: polygon(0px 0px, 100% 0px, 100.25% 65.00%, 0px 100%);
    }

        .team-member .background-block:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgb(54, 54, 54), rgba(181,181,181, 0.1));
        }

        .team-member .background-block .background {
            width: 100%;
            opacity: 1;
            transform: scale(4);
            object-fit: cover;
            object-position: center;
        }

    .team-member .profile {
        border-radius: 50%;
        position: absolute;
        top: 98px;
        right: 4%;
        max-width: 100px;
        opacity: 1;
        box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 1);
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        z-index: 99999;
        overflow: hidden;
    }

        .team-member .profile.default img {
            filter: blur(4px);
        }

    .team-member .card-content {
        width: 100%;
        padding: 1em;
        height: 50%;
        position: relative;
    }

    .team-member h2 {
        margin: 0 0 8px;
        font-weight: 600;
        font-size: 23px;
        line-height: 1.3em;
    }

        .team-member h2 small {
            display: block;
            font-size: 0.72em;
            color: var(--grey);
            font-weight: var(--font-light);
        }

    .team-member .qualification {
        display: block;
        font-size: 0.5em;
        line-height: 1.35em;
        color: var(--grey-darker);
        font-weight: var(--font-light);
    }

    .team-member .card-content,
    .team-member .card-content p {
        line-height: 1.65em;
    }

    .team-member .profile-info {
        padding-top: 1em;
    }

/* Bolt spacer */
.bolt-spacer {
    text-align: center;
}

    .bolt-spacer > img {
        display: inline-block;
        margin: 0 auto;
    }

/* Mouse Icon */
.mouse-icon {
    border-radius: 25px;
    width: 40px;
    height: 70px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    border: 2px solid var(--brand-black);
}


    .mouse-icon i {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: scroll;
        animation-name: scroll;
        position: relative;
        z-index: 3;
        font-size: 21px;
        margin-top: 20px;
        color: var(--brand-black);
    }

    .mouse-icon::after {
        display: block;
        width: 40px;
        height: 35px;
        content: "";
        position: absolute;
        z-index: 2;
        bottom: -15px;
        left: -2px;
        background: #fff;
        border: 1px solid #fff;
    }

/* Category Tabs */
.category-tabs {
}

/* Modals */
.modal_dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

    .modal_dialog:target {
        opacity: 1;
        pointer-events: auto;
    }

    .modal_dialog > div {
        width: 100%;
        max-width: 600px;
        position: relative;
        margin: 10% auto;
        padding: 5px 20px 13px 20px;
        border-radius: 10px;
        background: #fff;
    }

    .modal_dialog .close {
        background: #000;
        color: #fff;
        line-height: 25px;
        width: 27px;
        position: absolute;
        right: 14px;
        top: -10px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        border-radius: 50%;
        border: 1px solid #fff;
    }

        .modal_dialog .close:hover {
            background: #00d9ff;
        }

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(357px, 1fr));
    /* grid-template-columns: repeat(auto-fit, minmax(357px, 400px)); */
    grid-gap: 20px;
}

    .product-grid.plong-grid,
    .product-grid.clong-grid {
        grid-template-columns: repeat(auto-fit, minmax(323px, 1fr));
    }

    .product-grid > :only-child {
        max-width: 357px;
    }

.prod-item {
    position: relative;
    background-color: var(--brand-black);
    transition: var(--base-transition);
}

    .prod-item img {
        object-fit: cover;
        max-width: 100%;
        width: 100%;
        backface-visibility: hidden;
        vertical-align: top;
        position: relative;
        z-index: 1;
        transition: var(--base-transition);
    }

    .prod-item figcaption {
        width: 100%;
        color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 10px 20px;
        z-index: 2;
        font-size: 1.3em;
        font-weight: 300;
        font-size: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        transition: var(--base-transition);
    }

    .prod-item a {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }

    .prod-item::before,
    .prod-item::after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        position: absolute;
        top: 20px;
        right: 20px;
        content: '';
        background-color: #fff;
        z-index: 3;
        opacity: 0;
    }

    .prod-item:before {
        width: 0;
        height: 1px;
    }

    .prod-item:after {
        height: 0;
        width: 1px;
    }

.product-grid:hover .prod-item:not(:hover) {
    filter: grayscale(1);
}

.prod-item:hover figcaption {
    background-color: rgba(209, 0, 8,0.4);
}

.prod-item:hover img {
    opacity: 0.8;
}

.prod-item:hover::before,
.prod-item:hover::after {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.prod-item:hover::before {
    width: 40px;
}

.prod-item:hover::after {
    height: 40px;
}

/* Product detail */
#product-detail {
    padding-top: 4em;
    padding-bottom: 4em;
}

.prod-img {
    padding: 1.4em;
}

    .prod-img > img {
        border-radius: 12px;
        overflow: hidden;
    }

    .prod-img figcaption {
        color: var(--grey-dark);
        padding-top: 8px;
        text-align: center;
    }

.prod-enquire {
}

.prod_enq_info {
}

    .prod_enq_info *:first-child {
        margin-top: 0;
    }

    .prod_enq_info p {
        font-size: 0.97rem;
    }

.prod-content.content-bottom {
}

.prod-content.content-bottom {
    margin-top: 5em;
    border-top: 1px solid var(--grey-light);
}

/* video Preview */

.video-preview {
    position: relative;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card {
    background: transparent url(images/spin-loader.gif) center center no-repeat;
    background-size: 256px;
    transition: all 0.8s ease-in-out;
    clip-path: circle(18% at 50% 40%);
    position: relative;
    overflow: hidden;
}

    .video-card img {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 /9;
        position: relative;
        z-index: 1;
        object-fit: cover;
        object-position: center center;
        border-radius: 20px;
    }

    .video-card > span {
        font-size: 50px;
        width: 50px;
        height: auto;
        text-align: center;
        position: absolute;
        top: 41%;
        left: 50.5%;
        margin-left: -25px;
        margin-top: -25px;
        color: #fff;
        z-index: 10;
        line-height: 50px;
        opacity: 0.5;
        transition: all 0.8s ease-in-out;
    }

    .video-card:hover,
    .video-preview.playing .video-card {
        clip-path: circle(80% at 50% 50%);
        cursor: pointer;
    }

.video-preview.playing .video-card {
}

.video-card:hover img {
    object-fit: none;
}

.video-card:hover > span {
    opacity: 1;
    font-size: 100px;
    line-height: 100px;
    top: 46%;
}

.video-preview.playing .video-card > span {
    display: none;
}



/*Video Popup Start*/
.contact-close-button {
    position: absolute;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9;
    top: -22px;
    right: 70px;
    background: #000000c9;
    border-radius: 25px;
    padding: 5px;
    border: 0px solid lightgrey;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.x-button {
    display: block!important;
    position: relative;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    transition: transform .25s ease-in-out;
    font-weight:bold;
  }
  .x-button:hover {
    transform: rotate(180deg);
  }
  .x-button:before {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 28px;
    height: 0;
    border-top: 2px solid rgba(255,255,255,1);
    transform: rotate(45deg);
    transform-origin: center;
    font-weight:bold;
  }
  .x-button:after {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 28px;
    height: 0;
    border-top: 2px solid rgba(255,255,255,1);
    transform: rotate(-45deg);
    transform-origin: center;
    font-weight:bold;
  }

.video-section{
    position: relative;
}
.video-popup.active{
    display: flex!important;
}
.video-popup {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000d9;
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.media-wrap iframe{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.media-wrap{
    max-width: 64rem;
    width: 100%;
    position: relative;
}

.media-wrap .video-wrapper{
    max-width: 64rem;
    position: relative;
    height: 100%;
    max-height: 100%;
}

.video-v2-card {
	background: transparent url(images/spin-loader.gif) center center no-repeat;
	background-size: 256px;
	transition: all 0.8s ease-in-out;
	position: relative;
	overflow: hidden;
}

.video-v2-preview {
	position: relative;
	padding: 4rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-gallery .video-v2-preview {
	padding: 0!important;
}
.page-gallery .video-v2-card img {
	aspect-ratio: 13 /9!important;
}



.video-v2-card:hover > span {
    opacity: 1;
    line-height: 100px;
    top: 46%;
}

.video-v2-preview.playing .video-v2-card > span {
    display: none;
}

.video-v2-card img {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 /9;
	position: relative;
	z-index: 1;
	object-fit: cover;
	object-position: center center;
	border-radius: 20px;
}

.video-v2-card > span {
	font-size: 50px;
	width: 50px;
	height: auto;
	text-align: center;
	position: absolute;
	left: 50.5%;
	margin-left: -25px;
	margin-top: -25px;
	color: #fff;
	z-index: 10;
	opacity: 0.5;
	transition: all 0.8s ease-in-out;
    opacity: 1;
    line-height: 100px;
    top: 46%;
    cursor: pointer;
}
.video-v2-card > span i{
    position: relative;
    z-index: 9;
}
.video-v2-card > span::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    background-color: hsla(230,13%,9%,0.8);
    border-radius: 50%;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    -webkit-transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -moz-transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -ms-transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-v2-card:hover > span::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: calc(100% - 110px);
    left: calc(100% - 86px);
    background-color: hsla(230,13%,9%,0.8);
    border-radius: 50%;
    cursor: pointer;
}

@media (min-width: 769.99px){
    .contact-close-button{
        top: 29px;
        right: 31px;
    }
}
@media (max-width: 769.98px){
    .contact-close-button{
        top: 7px;
        right: 11px;
    }
}


/*Video Popup End*/


/* HERO BANNERS */
.hero {
    width: auto;
    height: 38vw;
    max-height: 762px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

    .hero.hslim {
        height: 14vw;
    }

.hero-inner {
    width: 100%;
    text-align: center;
    padding: 0 var(--page-padding);
}

.hero .h1 {
    color: var(--brand-white);
    display: block;
    max-width: 540px;
    margin: 0 auto 0.5em auto;
    font-size: 3.7rem;
    line-height: 1.1em;
    position: relative;
}

.hero-byline {
    display: block;
    max-width: 740px;
    color: var(--brand-white);
    margin: 0 auto 0.5em auto;
    font-size: 1.225rem;
    line-height: 1.45em;
}

.hero-card .hero-byline {
    margin: 0 auto 0.5em 0;
    color: var(--font-color);
    font-size: calc(var(--font-body-scale) * 62.5%);
    text-align: left;
}

.hero .btn {
    margin-left: auto;
    margin-right: auto;
}

.hero-product-float {
    margin: -7em auto 1em auto;
    width: 100%;
    height: auto;
    max-width: 290px;
    display: block;
}

.hero-card {
    position: relative;
    z-index: 10;
    margin-top: -7%;
    margin-bottom: 7%;
}

    .hero-card.cathero {
        margin-bottom: 15px;
    }

/* Rich text content handling */
.umbblockgriddemorichtextblock p img {
    margin: 0.925em;
    border-radius: 5px;
}

    .umbblockgriddemorichtextblock p img.cimg-left {
        margin-left: 0;
    }

    .umbblockgriddemorichtextblock p img.cimg-right {
        margin-right: 0;
    }


/* FOOTER */
.footer-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.5rem;
}

    .menu-header,
    .nav-header h4,
    .footer-block h4 {
        color: var(--brand-white);
    }

.nav-header h4 {
    margin: 0;
    padding: 0;
}

.footer-nav {
    list-style: none;
    margin: 0 0 1em 0;
    padding: 0;
}

    .footer-nav > li {
    }

        .footer-nav > li > a,
        .footer-nav > li > a:visited {
            color: var(--grey);
        }

            .footer-nav > li > a:hover {
            }

        .footer-nav > li.nav-header {
        }


.fsocial {
    list-style: none;
    margin: 0;
}

    .fsocial li {
        display: inline-block;
        margin-right: 0.8rem;
        font-size: 2rem;
    }

        .fsocial li:last-child {
            margin-right: 0;
        }

    .fsocial a {
        color: var(--grey);
    }

.footer-logo > a {
    display: block;
    max-width: 350px;
}

.footer-logo > img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* Umbraco grid */
.umb-block-grid_item {
}

    .umb-block-grid_item > div {
        z-index: 1;
    }

.umbblockgriddemorichtextblock ul > li {
    list-style-position: outside;
}

.umb-grid-area {
    padding-top: var(--padding);
    padding-bottom: var(--padding);
}

    .umb-grid-area.bottom-border .frame {
        border-bottom: 1px solid var(--grey-light);
        padding-bottom: 4em;
    }

/* Style utility classes */

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-3 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.py-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.seperator {
    display: inline-block;
    border-right: 1px solid var(--grey);
    margin: -1px 0.5rem;
    height: 100%;
    min-height: 14px;
}

.lightgrey-bg,
.lightgrey-bg_with-imagery {
    background-color: var(--grey-lighter);
}

.darkgrey-bg {
    background-color: var(--grey-darker);
}

.red_colour, .brand-primary {
    color: var(--brand-primary);
}

.blue_colour, .brand-secondary {
    color: var(--brand-secondary);
}

.primary_background {
    background-color: var(--primary-bgcolor);
}

.secondary_background {
    background-color: var(--secondary-bgcolor);
}

.border-outline {
    border: 1px solid var(--grey-outline);
}

.white-bg_with-imagery {
    position: relative;
}

.lightgrey-bg_with-imagery {
    position: relative;
    background-image: url("/css/images/diagram-bg .png");
    background-repeat: no-repeat;
    background-position: center center;
}

.bgbolt {
    position: absolute;
    z-index: 0;
}

    .bgbolt.bolt-horizontal {
        right: 0;
        top: -46.25px;
    }

    .bgbolt.bolt-vertical {
        left: 2em;
        top: 50%;
    }

.lead-text {
    font-size: calc(var(--font-body-scale) * 82.5%);
}

.umb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease-out;
    transition-delay: 0.25s;
}

    .umb-img[data-scroll="in"] {
        filter: grayscale(0%) blur(0);
    }

    .umb-img[data-scroll="out"] {
        filter: grayscale(100%) blur(2.2px);
    }

.grey-box {
    background-color: var(--grey-lighter);
    padding: 2em;
    border-radius: 12px;
}

/* === Breakpoints === */

/* XXL */
@media (max-width: 87.5rem) {
}

/* XL */
@media (max-width: 80.5rem) {
}

/* LG */
@media (max-width: 75.5rem) {

    .umbblockgriddemorichtextblock {
        padding-top: 1rem;
    }

    .header-grid {
        overflow: hidden;
    }

    .open-nav div.header-grid {
        overflow: unset;
    }

    .sample > figcaption {
        font-size: 16px;
        padding-bottom: 1rem;
    }

    .sample-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .sample-linkimg {
        max-width: 100px;
        max-height: 100px;
    }

    .hero-byline {
        max-width: none;
    }

    .hero-product-float {
        margin-top: -6em;
        max-width: 270px;
    }

    .grid-logo {
        width: calc(var(--logo-size) - 20px);
    }

    .grid-utility {
        text-align: end;
        min-width: 430px;
    }

    .utility-two {
        margin-top: 5px;
    }

    .navbar > ul {
        margin: 2em 0 0 0;
    }

    .fixed-head .utility-one {
        /* margin-top: -3em; */
    }

    .call-number {
        margin-right: 28px;
    }

    .hero .h1 {
        font-size: 3.1rem;
        max-width: 65%;
    }

    .hero-product-float {
        margin-top: -5em;
        max-width: 260px;
    }

    .text-step > span:last-child {
        font-size: 1.2em;
    }

    .fixed-head .utility-one {
        /* margin-top: 12px;
        margin-right: 39px; */
    }

    .fixed-head .logo {
        width: 75px;
        top: -8px;
    }

    .fixed-head .call-number {
        font-size: 0.9em;
    }

    .article-card > a {
        min-height: auto;
        max-height: 270px;
    }

    .article-card .article-card-content {
        padding: 1.4rem 2rem;
    }

    .bgbolt {
        opacity: 0.3;
    }
}

@media (min-width: 75.5rem) {

    .header-grid {
        padding-bottom: 5px;
    }

    h1, .h1 {
        font-size: var(--h1-size);
        line-height: 1.24em;
        font-size: var(--h1-size);
    }

    h2, .h2 {
        font-size: var(--h2-size);
    }

    h3, .h3 {
        font-size: var(--h3-size);
    }

    h4, .h4 {
        font-size: var(--h4-size);
    }

    h5, .h5 {
        font-size: var(--h5-size);
    }

    h6, .h6 {
        font-size: var(--h6-size);
    }

    .umb-block-grid_areas div.umb-block-grid_area.fcol-md-6:nth-child(odd) {
        padding-right: calc(var(--flex-gutter-x)* 2);
    }

    .umb-block-grid_areas div.umb-block-grid_area.fcol-md-6:nth-child(even) {
        padding-left: calc(var(--flex-gutter-x)* 2) !;
    }


    .sample > figcaption {
        font-size: 20px;
    }

    .sample {
        max-width: 150px;
    }

    .sample-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        max-width: 70%;
    }

    .sample-linkimg {
        max-width: 150px;
        max-height: 150px;
    }

    .utility-one {
        font-size: calc(var(--font-body-scale) * 62.5%);
        padding-bottom: 1rem;
    }

    .grid-logo {
        grid-area: logo;
        width: var(--logo-size);
    }

    .grid-nav {
        grid-area: nav;
    }

    .grid-utility {
        grid-area: utility;
        min-width: 250px;
        text-align: end;
    }

    .navbar-toggle {
        display: none;
    }

    .navbar {
        position: relative;
        height: auto;
        width: auto;
        max-width: none;
        animation: none;
        top: auto;
        right: auto;
        background: none;
        box-shadow: none;
        margin-bottom: 0.5em;
    }

    .open-nav .navbar {
        right: auto;
        animation: none;
        z-index: 200;
    }

    .navbar > ul {
        display: flex;
    }

        .navbar > ul > li {
            display: flex;
            border: 0 none;
        }

            .navbar > ul > li > a {
                display: inline-block;
                border: 0 none;
                padding-top: 0;
                padding-bottom: 0;
            }

                .navbar > ul > li > a,
                .navbar > ul > li > a:visited {
                    color: var(--brand-black);
                }

                    .navbar > ul > li > a:hover,
                    .navbar > ul > li.active > a {
                        color: var(--brand-primary);
                        text-decoration: none;
                    }

            .navbar > ul > li.mobile_nav_only {
                display: none;
            }

    .call-number .fa-phone-flip {
        display: none;
    }
}

@media (max-width: 780px) {
    .text-step_grid,
    .article-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .article-grid {
        justify-items: center;
    }

    .article-card > a {
        max-height: fit-content;
        background: none;
    }

    .article-grid > div {
        max-width: 62%;
    }
}

@media (max-width: 60rem) {

    .navbar-toggle {
        transform: scale(0.6);
        -webkit-transform: scale(0.6);
        -moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
        -o-transform: scale(0.6);
    }



    h1, .h1 {
        --h1-size: 2em;
    }

    h2, .h2 {
        --h1-size: 1.3em;
    }

    h3, .h3 {
        --h1-size: 1.15em;
    }

    .big-text-region h1 + .big-sub-text,
    .big-text-region .h1 + .big-sub-text {
        font-size: calc( var(--h1-size) - 80% );
    }

    .big-text-region h2 .big-sub-text,
    .big-text-region .h2 + .big-sub-text {
        font-size: calc( var(--h2-size) - 80% );
    }

    .big-text-region h3 .big-sub-text,
    .big-text-region .h3 + .big-sub-text {
        font-size: calc( var(--h3-size) - 80% );
    }

    .hero {
        height: 56vw;
    }

    .hero-byline {
        max-width: 95%;
    }

    .card-body .border-right {
        border-right: 0 none !important;
    }

    .hero-product-float {
        margin-top: -6em;
        max-width: 255px;
    }

    .video-card {
        width: 90vw;
        clip-path: circle(30% at 50% 44%);
    }

        .video-card iframe {
            aspect-ratio: 16 / 9;
            height: 100%;
            width: 100%;
        }

    .lightgrey-bg_with-imagery {
        background-size: contain;
    }

    .bgbolt {
        display: none;
    }

    .text-step {
        margin-bottom: 1em;
    }

        .text-step:before,
        .text-step:not(:first-child)::before {
            display: inline-block;
            font-size: 30px;
            font-size: clamp(24px, 2.3vw, 37px);
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\e47a";
            margin-right: 13px;
        }

    .article-grid > div {
        max-width: 76%;
    }

    .call-number {
        font-size: 0.925em;
    }

    .utility-one {
        /* padding-top:10px; */
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .grid-utility {
        min-width: 400px;
    }

    .utility-two {
        padding-top: 15px;
        text-align: right;
    }
}

/* MD */
@media (max-width: 48rem) {

    h1, .h1 {
        --h1-size: 1.4em
    }

    h2, .h2 {
        --h2-size: 1.3em;
    }

    h3, .h3 {
        --h3-size: 1.2em;
    }

    h4, .h4 {
        --h4-size: 1.1em;
    }

    h1, .h1 {
        font-size: var(--h1-size);
    }

    h2, .h2 {
        font-size: var(--h2-size);
    }

    h3, .h3 {
        font-size: var(--h3-size);
    }

    h4, .h4 {
        font-size: var(--h4-size);
    }

    h5, .h5 {
        font-size: var(--h5-size);
    }

    h6, .h6 {
        font-size: var(--h6-size);
    }

    header {
        padding-bottom: 1.05em;
    }

    .header-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .big-text-region h1 + .big-sub-text,
    .big-text-region .h1 + .big-sub-text {
        font-size: calc( var(--h1-size) - 90% );
    }

    .big-text-region h2 .big-sub-text,
    .big-text-region .h2 + .big-sub-text {
        font-size: calc( var(--h2-size) - 90% );
    }

    .big-text-region h3 .big-sub-text,
    .big-text-region .h3 + .big-sub-text {
        font-size: calc( var(--h3-size) - 90% );
    }

    .big-text-region::after {
        margin: 3.5em auto;
    }

    .grid-logo {
        min-width: 100px;
    }

    .logo {
        width: 75px;
    }

    .grid-utility {
        min-width: 0;
        justify-self: end;
        top: -17px;
        position: relative;
        right: 18px;
    }

    .fixed-head div.grid-utility {
        top: 0;
        position: relative;
    }

    .utility-one {
        margin-right: -30px;
    }

    .utility-one {
        /* margin:-25px; */
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .fixed-head .utility-one {
        /* margin:0!important; */
    }

    .navbar-toggle {
        right: 0;
    }

    /* 
    .navbar-toggle{
        top:15px;
    } */

    .footer-block {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }

    .hero .h1 {
        font-size: 1.2rem;
        max-width: 90%;
    }

    .hero {
        height: 40vh;
    }

    .video-card {
        clip-path: none;
    }

        .video-card > span {
            top: 46%;
            line-height: normal;
        }

        .video-card:hover > span {
            opacity: 0.8;
            font-size: 60px;
            line-height: normal;
            top: 46%;
        }

        .video-card:hover img {
            object-fit: cover;
        }

    .igicon_block img {
        margin-bottom: 0.45em;
        max-width: 48px;
    }

    .iconinfo-grid {
        grid-column-gap: 0;
        grid-row-gap: 0.5%;
    }

    .text-step {
        text-align: center;
        margin-bottom: 2.5em;
    }

        .text-step::before {
            display: none;
        }

        .text-step:not(:first-child)::before {
            display: block;
            font-weight: 900;
            content: "\f175";
            text-align: center;
            width: 100%;
            margin-bottom: 1em;
            min-height: 0;
        }

    .article-grid > div {
        max-width: 94%;
    }

    .team-member {
        max-width: none;
    }
}

/* SM */
@media (max-width: 36rem) {
    .footer-block {
        grid-template-columns: repeat(1, 1fr);
    }

        .footer-nav,
        .menu-header,
        .footer-block h4,
        .finfo {
            text-align: center;
        }

    .footer-logo > a {
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }

    .hero .h1 {
        font-size: 1.4rem;
    }

    .hero-byline {
        font-size: 1rem;
    }

    .hero-product-float {
        max-width: 190px;
        margin-top: -5em;
    }

    .infoicongrid {
        margin-bottom: 1.8rem;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .article-grid > div {
        max-width: 100%;
    }
}

footer *:not(h4) {
    color: var(--grey);
}

.sample-grid {
    display: grid;
    grid-gap: 10px;
    margin-left: auto;
    margin-right: auto;
}

.reviews_footer {
    position: fixed;
    left: 8px;
    bottom: 14px;
    z-index: 999;
}

.external-logo{
    margin-top: 0.8rem;
}

.external-logo img{
    width: 100px;
    margin: auto;
}