/* Minification failed. Returning unminified contents.
(370,1): run-time error CSS1019: Unexpected token, found '}'
 */
@import url(https://fonts.google.com/specimen/Economica?safe=active&query=econ#standard-styles);

/* menu control */
#menuToggle {
    display: none;
}

/* Main container layout */
.ui.menu .item img.logo {
    margin-right: 1.5em;
    width: 1em;
}

/* fixed top menu - push content below the fixed header */
.main.container {
    margin-top: 5em;
    margin-bottom: 1em;
}

/* Index page's lower content is already below the hero, no extra margin needed */
.home-hero + .main.container {
    margin-top: 1em;
}

.ui.segment {
    background-color: #fff !important;
}

.homepage.h2 {
    font-size: 1.2rem;
    color: #101726;
    margin-top: 10px;
    margin-bottom: 10px;
}

.homepage.h3 {
    font-size: 1.0rem;
    color: #101726;
    margin-top: 0px;
}

/* Home hero with responsive background image */
.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.home-hero-picture,
.home-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 3rem;
    margin: 0 auto 0 0;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    max-width: 500px;
    text-align: left;
}

.home-hero-content .ui.header {
    color: #101726;
}

@media (orientation: portrait) and (max-width: 480px) {
    .home-hero-content {
        max-width: 280px;
        padding: 1.25rem 1.5rem;
    }

    .home-hero-content .ui.header {
        font-size: 1.3rem;
    }

    .homepage.h2 {
        font-size: 1rem;
    }
}

@media (orientation: landscape) and (max-height: 480px) {
    .home-hero-content {
        max-width: 350px;
        padding: 1.25rem 1.5rem;
    }

    .home-hero-content .ui.header {
        font-size: 1.3rem;
    }

    .homepage.h2 {
        font-size: 1rem;
    }
}

/* Company Logos */
.img-header {
    padding: 1em;
}

.mainimage {
    width: 100%;
}

/* Center gauge vertically within its grid column */
.ui.grid > .column.gaugeColumn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaugeContainer {
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gaugeContainerSmall {
    width: 220px;
    max-width: 220px;
}

/* Homepage small gauges */
.home-service-gauge {
    max-width: 180px;
}

.home-service-row {
    display: block;
    padding: 1.5rem 0;
    text-align: center;
    color: inherit !important;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.home-service-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.home-service-btn {
    margin-top: 1rem;
}

.learn-more-link {
    display: inline-block;
    color: #F2A81D;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.home-service-row:hover .learn-more-link {
    border-bottom-color: #F2A81D;
}

.gaugeValue {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #000;
    display: none;
}

.gaugeValue::after {
    content: '%';
}

.gaugeCaption {
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    font-size: 1.0rem;
    font-weight: 700;
    color: #101726;
    pointer-events: none;
    z-index: 2;
}

.gaugeCanvas {
    width: 100%;
    height: auto;
    display: block;
}

.gaugeCaptionSmall {
    top: 70%;
    font-size: 1.3rem;
    bottom: 0%;
}

/* Mobile Context Navigation - Hidden on desktop */
.mobile-context-nav {
    display: none;
}

.ui.positive.button, .ui.positive.button:hover, .ui.positive.button:focus {
    background-color: #F2A81D;
    opacity: 1;
}

.ui.positive.button:hover {
    background-color: #F2A81D;
    opacity: 0.8;
}
.ui.black.button, .ui.black.button:hover, .ui.black.button:focus {
    background-color: #325A73;
    opacity: 1;
}

.ui.black.button:hover {
    background-color: #325A73;
    opacity: 0.8;
}

body, html {
    /*height: 100%;*/
    font-family: 'Economica' !important;
    font-size: 1.2rem;
}

/* wide screen, spread the main text area more than the default */
@media only screen and (min-width: 1152px) {

    .ui.text.container {
        max-width: 1000px !important;
    }
}

@media only screen and (max-width: 1024px) {
    #menu {
        display: none !important;
    }

    #menuToggle {
        display: block;
    }
}

@media only screen and (max-width: 768px) {

    body, html {
        font-size: 1.1rem;
    }

    .eight .wide .column {
        margin-top: 0px;
    }

    .mainimage {
        width: 50%;
    }

    /* Mobile Context Navigation */
    .mobile-context-nav {
        display: block;
        background: #f8f9fa;
        padding: 1.5rem 1rem;
        margin-top: 2rem;
        border-top: 2px solid #F2A81D;
    }

    .mobile-nav-title {
        text-align: center;
        color: #101726;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 350px;
        margin: 0 auto;
        align-items: center;
    }

    .mobile-nav-button {
        background: transparent !important;
        color: #325A73 !important;
        border: none !important;
        /*border-left: 3px solid #F2A81D !important;*/
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem !important;
        transition: all 0.2s ease !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        text-align: center !important;
        font-weight: 600 !important;
        width: 100%;
    }

    .mobile-nav-button:hover,
    .mobile-nav-button:active {
        background: rgba(242,168,29,0.1) !important;
        color: #101726 !important;
        border-left-width: 5px !important;
    }

    .mobile-nav-button i.icon {
        margin-right: 0.5rem;
        color: #F2A81D;
    }
}

@media only screen and (max-width: 500px) {

    body, html {
        font-size: 1rem;
    }

    .eight .wide .column {
        margin-top: 0px;
    }
}


.dots-loader {
    display: inline-flex;
    gap: 4px;
    margin-left: 0.25em;
}

.dots-loader span {
    width: 6px;
    height: 6px;
    background-color: #555;
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

.dots-loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.dots-loader span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}
}

/* Experience cards accordion */
.experience-card-header {
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.experience-card-header .header {
    margin-bottom: 0.25rem;
}

.experience-card-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.experience-card-body.open {
    max-height: 1000px;
    opacity: 1;
}

.experience-card-body .description {
    margin-top: 1rem;
}

.experience-toggle {
    position: absolute;
    right: 0;
    top: 0;
    color: #F2A81D;
}

.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#fff;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:alpha(Opacity=80);filter:alpha(opacity=80)}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:alpha(Opacity=40);filter:alpha(opacity=40)}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.8;-ms-filter:alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin:auto}.toast{background-color:#030303}.toast-success {background-color: #F2A81D}.toast-error{background-color:#bd362f}.toast-info{background-color:#2f96b4}.toast-warning{background-color:#f89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container .toast-close-button{right:-.2em;top:-.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container .toast-close-button{right:-.2em;top:-.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}}
