/* Colours */
:root {
    --stridentblue: #0097C4;
    --stridentdarkblue: #606D80;
    --stridentorange: #EA9713;
    --stridentgreen: #93BC16;
}

/* Fonts */
body {
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Titillium Web', sans-serif;
}

.h2-blue {
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.5;
    color: #0097C4;
}

p {
    font-size: 1rem;
    line-height: 1.75;
}

p>a {
    color: #EA9713;
}

li {
    padding-bottom: 10px;
}

.navbar-toggler-icon {
    fill: #EA9713;
}

.max-h-600 {
    max-height: 600px;
}

/* Contact header bar */
.contactheaderbar {
    background-color: #0097C4;
    padding: 15px 5px;
    margin-bottom: 30px;
}

.contactheaderbar p,
.contactheaderbar a {
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

/* Nav */
.nav-item {
    margin-right: 40px;
}

.nav-item:last-child {
    margin-right: 10px;
}

.nav-link,
.nav-link:hover {
    color: #EA9713;
    font-size: 1.1rem;
}

.navbar-toggler-icon {}

.collapse .navbar-collapse {
    background-color: var(--stridentdarkblue);
}

.dropdown-menu {
    background-color: #f7f7f7;
}

.dropdown-item:hover {
    background-color: #EA9713 !important;
    color: #ffffff !important;
}


/* Header */
.headerpayoff {
    background-color: #606D80;
    padding: 1rem 1rem 2.5rem 1rem;
    text-align: center;
    color: #ffffff;
}

.headerpayoffpage {
    background-color: #0097C4;
    padding: 1rem 1rem 1rem 1rem;
    text-align: center;
    color: #ffffff;
}

/* Carousel */

.carousel-item > h3 {
    color: #93BC16;
    font-size: 1.4rem;
    line-height: 1.5;
    max-width: 80%;
    margin: auto;
 }

/* 6S Homepage */
.homepage h1 {
    font-size: 2rem;
    line-height: 3rem;
}

.homepage h2 {
    font-size: 1.75rem;
    line-height: 2.5rem;
}

.homepage h3 {
    font-size: 1.2rem;
    line-height: 1.5;
}

a.btn-strident {
    background-color: #EA9713;
    color: #ffffff;
}

a.btn-strident-reverse {
    border: solid 1px #ffffff;
    background-color: none;
    color: #ffffff;
}

button.btn-strident {
    background-color: #EA9713;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 5px;
}

.homepagecard {
    padding: 0px 30px 20px 30px;
    text-align: center;
    border: 1px solid #f7f7f7;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
}

.homepagecard img {
    max-width: 250px;
    margin-bottom: 10px;
}

.homepageicon {
    display: inline-block;
    margin-right: 0.75rem;
    height: 50px;
}

.homepagecard h3 {
    font-size: 1.8rem;
    color: #0097C4;
}

.compliancecard {
    padding: 30px 40px;
    border: 1px solid #f7f7f7;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
}

.compliancecard h3 {
    font-size: 1.8rem;
    color: #0097C4;
}

/* Supplier Logos Container */
.container-supplierlogos {
    display: flex;
    flex-flow: row wrap; 
    justify-content: center; 
    /* Aligns items vertically if rows have different heights */
    align-items: flex-end; 
    column-gap: 3rem;
    row-gap: 2rem;
}

/* Individual Logo Wrapper */
.supplierlogos {
    display: flex;
    flex-direction: column;
    align-items: center; 
    /* Optional: prevents the logo item from getting too narrow */
    min-width: 100px; 
}

.supplierlogos img {
    height: 30px;
    /* Maintains aspect ratio (crucial for logos) */
    width: auto; 
    margin-bottom: 1rem;
}


/* Page Content */
.herosection {
    border-bottom: solid 1px #606D80;
}

.rowspacing {
    margin-bottom: 4rem;
}

.pagecontent h1 {
    color: #606D80;
}

.pagecontent h2 {
    color: #0097C4;
}

.pagecontent h3,
.pagecontent h4, {
    color: #606D80;
}

.six-icons-pages {
    max-height: 80px;
    margin-bottom: 20px;
}

.popover-header {
    background-color: #0097C4;
    color: #ffffff;
}

.popover-body {
    background-color: #f7f7f7;
}

.contact-menu h4,
.contact-menu h5 {
    margin-top: 1rem;
}

.contact-menu p {
    margin-bottom: 0;
}

.contact-menu a {
    color: #EA9713;
}

.imagecaption {
    color: #93BC16;
    font-style: italic;
    font-size: 0.9rem;
    padding: 5px;
}

.stridentcard {
    height: 100%;
    padding: 30px;
    text-align: center;
    border: 1px solid #f7f7f7;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
}

.stridentcard img {
    max-height: 150px;
    margin-bottom: 30px;
}

.teammember {
    display: inline-block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border: solid 3px var(--stridentblue);
}

.feedbackcard {
    text-align: left;
}
.feedbackcard .quote {
    padding-bottom: 1rem;
    line-height: 1.5;
}
.feedbackcard .company {
    border-top: solid 1px #e5e5e5;
    padding-top: 1rem;
    font-weight: 700;
    color: var(--stridentblue);
}

/* News */

div.news-item > h1 {
    margin-bottom: 1rem;
    color: #0097C4;
}
div.news-item > h2 {
    font-size: 1.75rem;
    color: #606D80;
    margin-top: 2rem;
}

div.news-item > h3 {
    font-size: 1.5rem;
    color: #0097C4;
}

.news-menu h4 {
    color: #606D80;
}

.news-item>img {
    margin-bottom: 0.7rem;
    border-top: solid 2px #0097C4;
}

.news-item {
    margin-bottom: 1.25rem;
}

.news-menu a,
.news-item a {
    text-decoration: none;
    color: #EA9713;
}

.news-links p {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.news-menu {
    border-left: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
    margin: 1rem 0;
    padding-left: 1rem;
}

.news-menu ul {
    margin-left: 0;
    padding-left: 1rem;
}

.news-img {
    float: left;
    margin: 0 1rem 1rem 0;
    max-width: 50%;
}

.news-button {
    background-color: #EA9713;
    padding: 10px 20px;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none;
}

p.news-button {
    text-align: center;
}

p.news-button a {
    color: #ffffff;
    text-decoration: none;
}

.news-caption {
    color: #434343;
    font-style: italic;
    font-size: 0.9rem;
}

blockquote {
    border-left: solid 4px var(--stridentblue);
    padding-left: 1rem;
    line-height: 1.75;
}

/* 6Sbar */
#sixsbar img {
    max-height: 65px;
}

#sixsbar,
#sixsbar h4 {
    color: #606D80;
}

#sixsbar a {
    text-decoration: none;
    color: #606D80;
}

.sixsbarrh {
    border-right: dotted 1px #A8AfB3;
}

#sixsbar p {
    font-size: 0.7em;
    font-style: italic;
    color: #a7aeba;
    margin: 0;
    padding: 0
}

#sixsbar h4 {
    font-weight: 600
}

/* Support button */
.supportbutton {
    margin-right: 0.5rem;
}

.supportbutton a {
    background-color: #EA9713;
    padding: 5px 15px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8rem;
}

.supportbutton a:hover {
    text-decoration: none;
    color: #000000;
}

/* Portal Form */
#form1 {
    padding: 1rem;
    background-color: #f7f7f7;
}

/* Formspark contact form */
.formspark div {
    margin-bottom: 1rem;
}
.formspark input, .formspark textarea {
    width: 100%;
    padding: 0.5rem;
    border: solid 1px orange;
    border-radius: 5px;
}
.formspark label {
    display: block;
    margin-left: 0.5rem;
    font-weight: bold;   
}
.formspark button {
    width:100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #606D80;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 400;
}

footer a,
footer a:hover {
    text-decoration: none;
    color: #ffffff;
}

.footercontact ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.footercontact ul li {
    margin-bottom: 0.5rem;
}

.footersocial {
    padding-left: 2rem;
}

.social-icon {
    height: 40px;
}


/* Media Queries */

/* Extra small devices (portrait phones, less than 576px) */
@media only screen and (max-width: 575.98px) {}

/* Small devices (landscape phones, less than 768px) */
@media only screen and (max-width: 767.98px) {
    .contactheaderbar a {
        font-size: 1.0rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media only screen and (max-width: 991.98px) {
    .footersocial {
        padding-left: 0rem;
    }

}

/* Large devices (desktops, less than 1200px) */
@media only screen and (max-width: 1199.98px) {}