
/*========================================================
        Here is the CSS from the default.aspx
=========================================================*/

/* -------------------------------
   Font Faces: Local Hosting Setup
--------------------------------- */

/* Avenir Next (Avenir Pro) */
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNextLTPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNextLTPro-It.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* Libre Baskerville */
@font-face {
    font-family: 'Libre Baskerville';
    src: url('../fonts/LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('../fonts/LibreBaskerville-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: url('../fonts/LibreBaskerville-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Nunito Sans */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito-Sans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito-Sans-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito-Sans-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito-Sans-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

/* -------------------------------
   Typography Variables and Base
--------------------------------- */

:root {
    --font-primary: 'Avenir Next', 'Libre Baskerville', 'Nunito Sans', sans-serif;
    /*--font-h1: 72pt;
    --font-h2: 52pt;
    --font-h3: 36pt;
    --font-h4: 24pt;
    --font-body: 18pt;
    --line-height: 1.5;*/
    --text-color: #222;
    --heading-color: #111;
    --background-color: #fff;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-body);
    line-height: var(--line-height);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

/* -------------------------------
   Heading Styles
--------------------------------- */

h1, h2, h3, h4 {
    margin: 0 0 0.5em;
    color: var(--heading-color);
    line-height: 1.2;
}

h1 {
    font-family: var(--font-primary);
    font-size: var(--font-h1);
}

h2 {
    font-family: var(--font-primary);
    font-size: var(--font-h2);
}

h3 {
    font-family: var(--font-primary);
    font-size: var(--font-h3);
}

h4 {
    font-family: var(--font-primary);
    font-size: var(--font-h4);
}

/* -------------------------------
   Additional Text Styles
--------------------------------- */

p {
    font-family: var(--font-primary);
}

strong {
    font-weight: bold;
}

/* Optional: Use secondary font for blockquotes or sections */
blockquote {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.2em;
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid #ccc;
}

/* -------------------------------
   Colour Palette Variables
--------------------------------- */

:root {
    /* Core Brand Colours */
    --color-primary: #00B140; /* Green */
    --color-secondary: #3B3C42; /* Off Black */
    --color-tertiary: #6F6F6F; /* Grey */
    /* Background Colours */
    --bg-primary: #00B140; /* Main Green Background */
    --bg-light: #E5F7EB; /* Light Green Background */
    --bg-white: #FFFFFF; /* Secondary / Standard White */
    /* Text Colours */
    --text-primary: #6F6F6F; /* Grey Body Text */
    --text-secondary: #FFFFFF; /* White Text */
}

/* -------------------------------
   Global Text & Background Colours
--------------------------------- */

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
}

/* Utility Classes for Colours */
.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-tertiary {
    background-color: var(--color-tertiary) !important;
}

.bg-light-green {
    background-color: var(--bg-light) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-white {
    color: #ffffff !important;
}

.page-section-dark-green {
    background-color: #00b13f;
    /*height: 10% !important;*/
}

.page-section-light-green {
    background-color: #e5f8eb;
}

.page-section-white {
    background-color: #fff;
}

.text-color {
    color: #00b13f !important;
}
.experience-heading {
    margin-bottom: 1rem !important;
}

.card-link {
    color: #007e2f;
    font-weight: 600;
    text-decoration: none;
}

    .card-link:hover {
        color: #00b13f;
        text-decoration: underline;
    }

.card-link-on-dark {
    color: #00b13f;    
    font-weight: 600;
    text-decoration: none;
}

    .card-link-on-dark:hover {
        color: #007e2f;
        text-decoration: underline;
    }

.bottom-card {
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .bottom-card .bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
    }

.image-width {
    width: 100%;
}

.education-img-special {
    width: 37% !important;
}

.bottom-card .card-body {
    z-index: 2;
    position: relative;
}

.btn-success {
    background-color: #00b13f;
    border: none;
    color: white;
    font-weight: bold;
}

    .btn-success:hover {
        background-color: #007e2f;
    }

.link-more {
    color: #007e2f;
    text-decoration: none;
    font-weight: 600;
}

    .link-more:hover {
        color: #00b13f;
        text-decoration: underline;
    }

.white-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    display: inline-block;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%; /* Ensure it takes the full width of the wrapper */
    margin: 0 auto;
}
    .carousel-container::-webkit-scrollbar {
        display: none;
    }

.carousel-controls {
    width: 85.25%;
    margin-bottom: 10px;
}

.card-group {
    display: flex;
    flex-wrap: nowrap !important; /* Prevent cards from wrapping */
    gap: 10px;
    align-items: stretch; /* Ensure cards stretch to the same height */
}

    .card-group .card {
        height: auto !important; /* Override previous 50% */
    }

.industry-card {
    flex: 0 0 207px !important; /* Increased by 50% from 300px */
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 400px; /* Fixed height */
    display: flex;
    flex-direction: column;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: left;
    flex: 1; /* Ensure the body takes remaining space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden; /* Prevent content from overflowing */
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    z-index: 2;
}
    .carousel-btn[disabled] {
        opacity: 0.5;
        pointer-events: none;
    }

.card-body h5 {
    margin-bottom: 10px;
}

.card-body p {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-image {
    width: 100% !important;
}

.case-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

#caseDesc {
    font-size: 1rem;
    color: #666;
    height: 155px;
}

.dots .dot {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    color: #000;
    background: transparent;
    cursor: pointer;
    margin-right: 8px;
    transition: all 0.2s ease-in-out;
}

    .dots .dot.active {
        background-color: #00b13f;
        color: white;
    }

.btn-case-study {
    margin-left: 40%;
}

/* Single Page with Grid Section */
.single-page-section {
    background-color: #dcfcca; /*#e5f8eb;*/
}

.single-page-heading {
    margin-bottom: 0rem !important;
    background-color: #fff;
}

/* *****    Acumen custom styling classes START    ***** */
/* *****    Acumen custom styling classes START    ***** */
.custom-section-width {
    max-width: 1000px;
    margin: auto;
}

.fw-100 {
    font-weight: 100;
}

.h2-width {
    width: 95%;
    padding-top: 20px;
    text-align: center;
}

.browser-edge-protect {
    margin-left: 5px;
    margin-right: 5px;
}

.carousel-card-button-font {
    font-size: 14px;
    /*font-weight: 100;*/
}

.newsArticleImageHolder {    
    float: right;
    width: 40%;
    height: auto;
    max-width: 300px;
}

.find-out-more-white {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

    .find-out-more-white:hover {
        color: #dcfcca;
        text-decoration: underline;
    }

.qualification-search-container {
    /*position: relative;*/
    /*margin-left: 10px;*/
    /*font-size: 14px;*/
    
    height: 75px;
    width: 55%;
    border-radius: 10px;
    background-color: #fff;
    margin: auto;
    color: #000;
    
    min-width: 450px;
}

.search-Control {
    /*display: block;*/

    width: 75%;
    padding: .375rem .75rem;
    margin-top: 19px;
    margin-left: 24px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
    
.qualification-search-container.qualification-search-icon svg {
    transform: translateY(-50%);
    color: #6c757d;
}

.qualification-search-icon {
    margin-top: 1%;
    margin-left: -5%;
    transform: translateY(-50%);
    color: #6c757d;
}

.search-btn {
    margin-top: 25px; 
    margin-right: 5%;
}

/* *****    Acumen custom styling classes END    ***** */
/* *****    Acumen custom styling classes END    ***** */

/*  @MEDIA QUERIES  */
@media (max-width: 959px) {
    .search-Control {
        width: 65%;
    }


    /*.search-btn {
        margin-top: -32px;
    }*/
}
@media (max-width: 767.98px) {
    .scroll-container-wrapper {
        display: none;
    }

    #uiHamburgerMenuButton {
        margin-left: 10px;
    }
    .search-Control {
        width: 59%;
    }
    .qualification-search-container {
        min-width: 320px;
    }

    }
/* md breakpoint */
@media (max-width: 767px) {

}
/* sm breakpoint */
@media (max-width: 575px) {
}

