@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(/website/webfonts/fa-brands-400.eot);src:url(/website/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/website/webfonts/fa-brands-400.woff2) format("woff2"),url(/website/webfonts/fa-brands-400.woff) format("woff"),url(/website/webfonts/fa-brands-400.ttf) format("truetype"),url(/website/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;src:url(/website/webfonts/fa-light-300.eot);src:url(/website/webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(/website/webfonts/fa-light-300.woff2) format("woff2"),url(/website/webfonts/fa-light-300.woff) format("woff"),url(/website/webfonts/fa-light-300.ttf) format("truetype"),url(/website/webfonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-family:"Font Awesome 5 Pro";font-weight:300}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;src:url(/website/webfonts/fa-regular-400.eot);src:url(/website/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/website/webfonts/fa-regular-400.woff2) format("woff2"),url(/website/webfonts/fa-regular-400.woff) format("woff"),url(/website/webfonts/fa-regular-400.ttf) format("truetype"),url(/website/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Pro";font-weight:400}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;src:url(/website/webfonts/fa-solid-900.eot);src:url(/website/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/website/webfonts/fa-solid-900.woff2) format("woff2"),url(/website/webfonts/fa-solid-900.woff) format("woff"),url(/website/webfonts/fa-solid-900.ttf) format("truetype"),url(/website/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900}
/*
Table Of Contents

1.)  Default Styles
2.)  Header - Main
3.)  Content - Main
4.)  Footer - Main
5.)  Index - History

===============================================*/

/*
font-family: "Montserrat", sans-serif;
font-family: "Inter", sans-serif;
*/


/*
 1.) Default Styles
----------------------------------------*/

/* Variables */
:root {
    --desktop-font-size: 1rem/1.5;
    --mobile-font-size: 1rem/1.5;
    --gray-900: #101828;
    --gray-700: #344054;
    --gray-600: #475467;
    --gray-500: #667085;
    --gray-300: #d0d5dd;
    --black: #42535e;
    --white: #ffffff;
    --error: #b42318;
    --red: #f04438;
    --red-light: #D92D20;
    --primary: #008743;
    --green: #00994f;
    --green-light: #2bb371;
    --green-medium: #039855;
    --orange: #dc6803;
}


* {
    margin: 0;
    padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-family: inherit;
    font-weight: inherit;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    margin: 0;
    padding: 0;

}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
    font-size: 20px;
}

sub {
    bottom: -0.25em;
}

img {
    max-width: 100%;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    line-height: .5em;
    border: 0;
}

/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes
reveal {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 0;
        -webkit-transform: scale(0.98) translateY(-15px);
    }
    80% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes
reveal {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 0;
        -moz-transform: scale(0.98) translateY(-15px);
    }
    80% {
        -moz-transform: scale(1);
    }
    100% {
        -moz-transform: translateY(0);
    }
}


/* #Basic Styles
================================================== */

body {
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--gray-600);
    line-height: 24px;
    background: #ffffff;
}


/* #Links
================================================== */

a {
    color: var(--green);
    text-decoration: none;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    cursor: pointer;
}

a:hover,
a:focus,
a:active {
    color: var(--primary);
    text-decoration: none;
}

a:visited {
    outline: 0;
}

a[href^="tel:"],
a[href^="fax:"] {
    color: var(--green);
    text-decoration: none;
}

a:hover[href^="tel:"],
a:focus[href^="tel:"],
a:hover[href^="fax:"],
a:focus[href^="fax:"] {
    color: var(--primary);
    text-decoration: none;
}


/*= Headings: P, H1, H2, H3, H4, H5, H6
================================================== */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--gray-900);
    padding-bottom: 24px;
}

h1,
.h1,
h2,
.h2 {
    font-size: 30px;
    line-height: 38px;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 29px;
}

h4,
.h4 {
    font-size: 18px;
    line-height: 24px;
}

h5,
.h5,
h6,
.h6{
    font-size: 16px;
    line-height: 28px;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
    color: var(--primary);
    text-decoration: none;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
    padding-bottom: 0;
}

p {
    padding-bottom: 20px;
}

p:last-child {
    padding-bottom: 0;
}

strong,
time,
b {
    font-weight: 700;
}

em,
dfn,
i {
    font-style: italic;
}

em.fal,
em.far,
em.fas,
em.fab {
    font-style: normal;
}

small {
    font-size: 14px;
    line-height: 20px;
}

.underline {
    text-decoration: underline;
}

.strikethrough {
    text-decoration: line-through;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}


/*= Unorder List
================================================== */

ul,
ol {
    list-style: none;
    padding:  0;
    margin: 0;
}

li {
    position: relative;
    padding-left: 32px;
    padding-bottom: 16px;
}

li:last-child {
    padding-bottom: 20px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
    padding-bottom: 0;
}

ul li ul,
ol li ol {
    padding: 12px 0 0 0;
}

ul li:before {
    content: "\f00c";
    width: 20px;
    height: 20px;
    float: left;
    font-family:"Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 12px;
    color: var(--white);
    line-height: 20px;
    text-align: center;
    background: #00994f;
    border-radius: 360px;
    position: absolute;
    top: 2px;
    left: 0;
}


/*= Order List
================================================== */

ol {
    counter-reset: item;
}

ol > li {
    counter-increment: item;
    padding-left: 24px;
}

ol > li:before {
    content: counter(item) ".";
    font-weight: 700;
    color: var(--green);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}


/* #Input Styles
================================================== */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

select,
textarea,
input {
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
    width: 100%;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 6px;
}

textarea,
select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    width: 100%;
    float: left;
    height: 44px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--gray-900);
    line-height: 24px;
    letter-spacing: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: none;
    border: 1px solid #d0d5dd;
    box-shadow: none;
    border-radius: 8px;
    outline: none;
    overflow: hidden;
    position: relative;
    padding: 10px 14px;
    margin: 0;
}

textarea[rows],
textarea {
    height: 168px;
    white-space: normal;
    resize: none;
}

select {
    color: var(--gray-500);
    background-image: url(img/chevron-down.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: top 14px right 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-top: 0;
    padding-right: 40px;
    padding-bottom: 0;
}

select::-ms-expand {
    display:none;
}

select option:not([disabled]) {
    color: var(--gray-500);
}

select option.def:not([disabled]),
select.gf_placeholder:not([disabled]) {
    color: var(--gray-500);
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
    color: var(--gray-500);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--gray-500);
}

::-moz-placeholder {
    color: var(--gray-500);
}

::-ms-input-placeholder {
    color: var(--gray-500);
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    outline: none;
    border-color: #00994f;;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* #Buttons
================================================== */

/* Custom - Select */
button {
    background: none;
    border: none;
    box-shadow: none;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
    outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
    width: auto;
    height: auto;
    float: none;
    display: inline-block;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    line-height: 20px;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    background: #00994f;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    outline: 0;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    padding: 10px 16px;
    margin: 0;
}

.btn::before {
    content: "";
    width: 0;
    height: 100%;
    float: left;
    background: #008743;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.btn em {
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    position: relative;
    top: 0;
    margin: 0 0 0 8px;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active {
    color: var(--white);
    text-decoration: none;
    outline: 0;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus {
    background: #008743;
}

.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.btn:active:focus:before,
.btn.active:before,
.btn.active:focus:before {
    width: 100%;
}

.btn:hover em,
.btn:focus em,
.btn:active em,
.btn:active:focus em,
.btn.active em,
.btn.active:focus em {
    animation: arrowright 0.5s linear 1;
    -webkit-animation-name: arrowright 0.5s linear 1;
}

.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: 2px;
}

.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-out {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px -8px -8px;
}

.btn-wrap .btn {
    margin: 0 8px 8px 8px;
}


/*= Container - Main
================================================== */

.container-main {
    width: 100%;
    min-height: 100vh;
    float: left;
    display: flex;
    flex-direction: column;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .container {
        max-width: 600px;
        padding: 0 16px;
    }
}


/* Hidden Scroll */
.hiddenscroll {
    overflow: hidden;
}


/*
 2.) Header
----------------------------------------*/

.header-main {
    width: 100%;
    height: 80px;
    float: left;
    background: #273740;
    position: relative;
    z-index: 10;
}

.header-main .logo {
    height: 32px;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 5;
    margin: 24px 0 0 0;
}

.header-main .logo img {
    max-height: 32px;
}

.header-main .nav-bar {
    float: right;
    margin: 20px 0 0 0;
}

.header-main .nav-bar .nav-inn {
    float: left;
}

.header-main .nav-bar nav {
    float: left;
}

.header-main .nav-bar nav ul {
    float: left;
    padding: 0;
    margin: 0 -16px;
}

.header-main .nav-bar nav ul li {
    float: left;
    padding: 0;
    margin: 0 16px;
}

.header-main .nav-bar nav ul li:before {
    display: none;
}

.header-main .nav-bar nav ul li a {
    height: 40px;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--white);
    line-height: 40px;
    letter-spacing: 1.71px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.header-main .nav-bar nav ul li a:after {
    content: "";
    width: 0;
    height: 1px;
    float: left;
    background: #008743;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    position: absolute;
    bottom: 8px;
    left: 50%;
}

.header-main .nav-bar nav ul li a:hover,
.header-main .nav-bar nav ul li a:focus,
.header-main .nav-bar nav ul li.active a {
    color: var(--white);
}

.header-main .nav-bar nav ul li a:hover:after,
.header-main .nav-bar nav ul li a:focus:after,
.header-main .nav-bar nav ul li.active a:after {
    width: 100%;
    left: 0;
}

.header-main .nav-bar .btn-out {
    padding: 0 0 0 32px;
}

.header-main .nav-bar .btn {
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
}

.header-main .nav-bar .menu-close {
    float: left;
    display: none;
    position: absolute;
    top: 19px;
    right: 24px;
}

.header-main .nav-bar .menu-close button {
    float: left;
    font-weight: 300;
    font-size: 30px;
    color: var(--primary);
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.header-main .menu-btn {
    width: 28px;
    height: 35px;
    float: left;
    display: none;
    cursor: pointer;
    z-index: 5;
    position: absolute;
    top: 31px;
    right: 16px;
}

.header-main .menu-btn .icon-bar {
    width: 100%;
    float: right;
    text-decoration: none;
    position: relative;
}

.header-main .menu-btn .icon-bar span {
    width: 100%;
    height: 2px;
    float: right;
    background: #ffffff;
    position: relative;
    margin: 8px 0 0 0;
}

.header-main .menu-btn .icon-bar span:before {
    content: "";
    width: 100%;
    height: 2px;
    float: left;
    background: #ffffff;
    position: absolute;
    top: -8px;
    right: 0;
}

.header-main .menu-btn .icon-bar span:after {
    content: "";
    width: 100%;
    height: 2px;
    float: left;
    background: #ffffff;
    position: absolute;
    top: 8px;
    right: 0;
}

@media (min-width: 768px) {
    .header-main .main-nav .main-menu .nav-bar {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .hidden-body {
        overflow: hidden;
    }

    .overlay {
        width: 100%;
        height: 100%;
        float: left;
        background: rgba(16, 24, 40, 0.5);
        -webkit-transition: top .15s ease-out;
        -moz-transition: top .15s ease-out;
        transition: top .15s ease-out;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }

    .overlay.show {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity .2s ease-out;
        -moz-transition: opacity .2s ease-out;
        transition: opacity .2s ease-out;
    }

    .header-main .container {
        max-width: 100%;
    }

    .header-main .nav-bar {
        width: 90%;
        max-width: 300px;
        height: 100%;
        float: left;
        display: none;
        background: #ffffff;
        overflow: auto;
        overflow-x: hidden;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        padding: 0;
        margin: 0;
    }

    .header-main .nav-inn {
        width: 100%;
        padding: 52px 24px 32px 24px;
    }

    .header-main .nav-bar nav {
        width: 100%;
        padding: 0 0 24px 0;
    }

    .header-main .nav-bar nav:last-child {
        padding-bottom: 0;
    }

    .header-main .nav-bar nav ul {
        width: 100%;
        margin: 0;
    }

    .header-main .nav-bar nav ul li {
        width: 100%;
        margin: 0;
    }

    .header-main .nav-bar nav ul li a {
        width: 100%;
        height: auto;
        color: var(--gray-900);
        line-height: 19px;
        padding: 11px 0;
    }

    .header-main .nav-bar nav ul li a:hover,
    .header-main .nav-bar nav ul li a:focus,
    .header-main .nav-bar nav ul li.active a {
        color: var(--primary);
    }

    .header-main .nav-bar nav ul li a:after {
        display: none;
    }

    .header-main .nav-bar .btn-out {
        width: 100%;
        padding: 0;
    }

    .header-main .nav-bar .menu-close {
        display: block;
    }

    .header-main .menu-btn {
        display: block;
    }
}


/*
 3.) Content - Main
----------------------------------------*/

.content-main {
    width: 100%;
    float: left;
    flex: 1 0 auto;
}


/* Upcoming - Events */
.upcoming-events {
    width: 100%;
    overflow: hidden;
    padding: 44px 0 32px 0;
}

.upcoming-events .container {
    max-width: 1072px;
}

@media (max-width: 767px) {
    .upcoming-events .container {
        max-width: 600px;
    }
}


/* Main - Heading */
.main-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    overflow: hidden;
    padding: 0 0 32px 0;
}

.main-heading:last-child {
    padding-bottom: 0;
}

.main-heading h1,
.main-heading .h1 {
    padding-bottom: 12px;
}

.main-heading h1:last-child,
.main-heading .h1:last-child {
    padding-bottom: 0;
}

.main-heading .icon {
    width: 66px;
    height: 66px;
    float: left;
    line-height: 46px;
    text-align: center;
    margin-bottom: 20px;
}

.main-heading .aside {
    width: 100%;
    text-align: center;
}


/* System - Status */
.system-status {
    width: 100%;
    padding: 0 0 32px 0;
}

.system-status .article {
    width: 100%;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
    border-radius: 12px;
    margin: 0 0 24px 0;
    position: relative;
}

.system-status .article .aside {
    width: 100%;
    float: left;
    padding: 24px 24px;
}

.system-status .article .aside .top-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 26px;
}

.system-status .article .aside .top-heading:last-child {
    margin-bottom: 0;
}

.system-status .article .aside .top-heading h4,
.system-status .article .aside .top-heading .h4 {
    width: 60%;
    position: relative;
    padding: 0 16px 0 14px;
}

.system-status .article .aside .top-heading h4:before,
.system-status .article .aside .top-heading .h4:before {
    content: "";
    width: 6px;
    height: 24px;
    float: left;
    background: #2bb371;
    border-radius: 360px;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.system-status .article .aside .top-heading.maintenance h4:before,
.system-status .article .aside .top-heading.maintenance .h4:before {
    background: #5b62aa;
}

.system-status .article .aside .top-heading h4 em,
.system-status .article .aside .top-heading .h4 em {
    font-size: 13px;
    color: var(--green-light);
    position: relative;
    top: -1px;
    margin-left: 12px;
}

.system-status .article .aside .top-heading h4 a,
.system-status .article .aside .top-heading .h4 a {
    color: var(--gray-900);
    text-decoration: underline;
}

.system-status .article .aside .top-heading h4 a:hover,
.system-status .article .aside .top-heading h4 a:focus,
.system-status .article .aside .top-heading h4 a:active {
    color: var(--green-light);
}

.system-status .article .aside .top-heading .btn-out {
    width: 40%;
    justify-content: flex-end;
}

.system-status .article .aside .top-heading .btn-out .btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background: #2bb371;
    border-radius: 360px;
    padding: 2px 10px;
}

.system-status .article .aside .top-heading .btn-out .progress {
    background: #f79841;
}

.system-status .article .aside .top-heading .btn-out .progress:before {
    background: #dc6803;
}

.system-status .article .aside .top-heading .btn-out .error {
    background: #f04438;
}

.system-status .article .aside .top-heading .btn-out .error:before {
    background: #b42318;
}

.system-status .article .aside .top-heading .btn-out .maintenance {
    background: #5b62aa;
}

.system-status .article .aside .top-heading .btn-out .maintenance:before {
    background: #9296BF;
}

.system-status .article .aside .track-wrap {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-bottom: 12px;
    height: 40px;
}

.system-status .article .aside .track-wrap .bar {
    width: 100%;
    text-align: center;
    overflow: hidden;
    height: 40px;
    max-height: 40px;
}

.system-status .article .aside .track-wrap .track-element {
    width: 9.1px;
    height: 40px;
    border-radius: 12px;
    display: block;
    float: left;
    margin-right: 1.55px;
}

.system-status .article .aside .track-wrap .track-element.small {
    width: 8.55px;
}

.system-status .article .aside .track-wrap .track-element:last-child {
    margin-right: 0px;
}

.system-status .article .aside .track-wrap .track-element.green {
    background: #12B76A;
}

.system-status .article .aside .track-wrap .track-element.green:hover {
    background: #009953;
    cursor: pointer;
}

.system-status .article .aside .track-wrap .track-element.red {
    background: #F04438;
}

.system-status .article .aside .track-wrap .track-element.red:hover {
    background: #D32012;
    cursor: pointer;
}

.system-status .article .aside .track-wrap .track-element.orange {
    background: #F79841;
}

.system-status .article .aside .track-wrap .track-element.orange:hover {
    background: #E87912;
    cursor: pointer;
}

.tooltip {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(16, 24, 40, 0.1);
    border-radius: 8px;
    position: absolute;
    z-index: 10;
    padding: 12px 12px;
    display: none;
}

.tooltip-left {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(16, 24, 40, 0.1);
    border-radius: 8px;
    position: absolute;
    z-index: 10;
    padding: 12px 12px;
    display: none;
}

.tooltip-right {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(16, 24, 40, 0.1);
    border-radius: 8px;
    position: absolute;
    z-index: 10;
    padding: 12px 12px;
    display: none;
}

.tooltip:before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    text-indent: -9999999px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: absolute;
    top: -6px;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.tooltip-left:before {
    right: 10px;
    content: "";
    width: 0;
    height: 0;
    display: block;
    text-indent: -9999999px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: absolute;
    top: -6px;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.tooltip-right:before {
    left: 20px;
    content: "";
    width: 0;
    height: 0;
    display: block;
    text-indent: -9999999px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    position: absolute;
    top: -6px;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.tooltip h4,
.tooltip .h4,
.tooltip-left h4,
.tooltip-left .h4,
.tooltip-right .h4,
.tooltip-right h4 {
    font-weight: 600;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 18px;
    padding-bottom: 4px;
}

.tooltip h4:last-child,
.tooltip .h4:last-child,
.tooltip-left h4:last-child,
.tooltip-left .h4:last-child,
.tooltip-right .h4:last-child,
.tooltip-right h4:last-child {
    padding-bottom: 0;
}

.tooltip p,
.tooltip-left p,
.tooltip-right p {
    padding-bottom: 4px;
}

.tooltip p:last-child,
.tooltip-left p:last-child,
.tooltip-right p:last-child {
    padding-bottom: 0;
}

.tooltip .txt,
.tooltip-left .txt,
.tooltip-right .txt {
    width: 100%;
    min-width: 140px;
    border-bottom: 1px solid #eaecf0;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.tooltip .txt:last-child,
.tooltip-left .txt:last-child,
.tooltip-right .txt:last-child {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.system-status .article .tooltip.alt,
.system-status .article .tooltip-left.alt,
.system-status .article .tooltip-right.alt {
    min-width: 110px;
}

.system-status .article .aside .updates {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.system-status .article .aside .updates .left-l {
    width: 50%;
    padding: 0 12px 0 0;
}

.system-status .article .aside .updates .right-r {
    width: 50%;
    color: var(--orange);
    text-align: right;
    padding: 0 0 0 12px;
}

.system-status .article .aside .updates .right-r.green {
    color: var(--primary);
}

.system-status .article .aside .updates .complete {
    color: var(--green-medium);
}

.system-status .article .item {
    width: 100%;
    float: left;
    padding: 0 24px 24px 24px;
}

.system-status .article .item ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -12px -24px -12px;
}

.system-status .article .item ul li {
    width: 100%;
    padding: 0 12px 16px 12px;
}

.system-status .article .item ul li:before {
    display: none;
}

.system-status .article .item .txt {
    width: 100%;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--error);
    line-height: 20px;
    position: relative;
    padding: 0 0 0 32px;
    margin: -2px 0 0 0;
}

.system-status .article .item .txt:before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_10869_17687)'%3E%3Cpath d='M10 6.66602V9.99935M10 13.3327H10.0084M18.3334 9.99935C18.3334 14.6017 14.6024 18.3327 10 18.3327C5.39765 18.3327 1.66669 14.6017 1.66669 9.99935C1.66669 5.39698 5.39765 1.66602 10 1.66602C14.6024 1.66602 18.3334 5.39698 18.3334 9.99935Z' stroke='%23D92D20' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10869_17687'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 1em;
    position: absolute;
    top: 2px;
    left: 0;
}

.system-status .article .item .txt.maintenance {
    color: var(--gray-600);
}

.system-status .article .item .txt.maintenance:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_10869_17687)'%3E%3Cpath d='M10 6.66602V9.99935M10 13.3327H10.0084M18.3334 9.99935C18.3334 14.6017 14.6024 18.3327 10 18.3327C5.39765 18.3327 1.66669 14.6017 1.66669 9.99935C1.66669 5.39698 5.39765 1.66602 10 1.66602C14.6024 1.66602 18.3334 5.39698 18.3334 9.99935Z' stroke='%23475467' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_10869_17687'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.system-status .article .item .txt h4,
.system-status .article .item .txt .h4 {
    font-weight: 600;
    font-size: 14px;
    color: var(--error);
    line-height: 20px;
    padding-bottom: 4px;
}

.system-status .article .item .txt.maintenance h4,
.system-status .article .item .txt.maintenance .h4 {
    color: var(--gray-600);
}

.system-status .article .item .txt h4:last-child,
.system-status .article .item .txt .h4:last-child {
    padding-bottom: 0;
}

.system-status .article .item .txt p {
    padding-bottom: 12px;
}

.system-status .article .item .txt p:last-child {
    padding-bottom: 0;
}

.system-status .article .item .box {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 12px;
    border: 1px solid #FDA29B;
    padding: 16px 16px;
}

.system-status .article .item .box.maintenance {
    border: 1px solid #5b62aa;
}

.system-status .article .accord-item {
    width: 100%;
    border-top: 1px solid #eaecf0;
    padding: 0 24px;
}

.system-status .article .accord-item .accord-link {
    width: 100%;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    line-height: 20px;
    text-align: right;
    cursor: pointer;
    position: relative;
    padding: 16px 0;
}

.arrow-down {
    position: relative;
    width: 20px;
    height: 15px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2342535E' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.arrow-up {
    position: relative;
    width: 20px;
    height: 15px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 12.5L10 7.5L5 12.5' stroke='%2342535E' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}


.system-status .article .accord-item .accord-cont {
    width: 100%;
    display: none;
    float: left;
    padding: 0 0 24px 0;
}

.system-status .article .accord-item .accord-cont.active {
    display: inline-block
}

.system-status .article .accord-item .accord-cont ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 -16px 0;
}

.system-status .article .accord-item .accord-cont ul li {
    width: 100%;
    float: left;
    background: #f2f4f7;
    border-radius: 12px;
    padding: 0;
    margin: 0 0 16px 0;
}

.system-status .article .accord-item .accord-cont ul li:before {
    display: none;
}

.system-status .article .progress .top-heading h4:before,
.system-status .article .progress .top-heading .h4:before {
    background: #F79841;
}

.system-status .article .progress .top-heading h4 em,
.system-status .article .progress .top-heading .h4 em {
    color: var(--orange);
}

.system-status .article.error-alt {
    border-color: #f37862;
}

.system-status .article.maintenance-alt {
    border-color: #9296BF;
}

.system-status .article .error .top-heading h4:before,
.system-status .article .error .top-heading .h4:before {
    background: #f04438;
}

.system-status .article .error .top-heading h4 em,
.system-status .article .error .top-heading .h4 em {
    color: var(--red-light);
}

.system-status .article-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 -24px 0;
}

@media (max-width: 767px) {
    .system-status .article .aside {
        padding: 24px 16px;
    }

    .system-status .article .item {
        padding: 0 16px 24px 16px;
    }

    .system-status .article .item ul {
        margin: 0 -12px -16px -12px;
    }

    .system-status .article .item ul li {
        width: 100%;
        padding: 0 12px 16px 12px;
    }

    .system-status .article .accord-item {
        padding: 0 16px;
    }

}


/* Status */
.status {
    width: 100%;

    padding: 0 0 32px 0;
}

.status:last-child {
    padding-bottom: 0;
}

.status h2,
.status .h2 {
    padding-bottom: 32px;
}

.status h2:last-child,
.status .h2:last-child {
    padding-bottom: 0;
}

.status h4,
.status .h4 {
    padding-bottom: 2px;
}

.status h4:last-child,
.status .h4:last-child {
    padding-bottom: 0;
}

.status p {
    padding-bottom: 12px;
}

.status p:last-child {
    padding-bottom: 0;
}

.status ul {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 0 32px 0;
    margin: 0 0 32px 0;
}

.status ul:last-child {
    margin-bottom: 0;
}

.status ul:before {
    content: "";
    width: 2px;
    height: 100%;
    float: left;
    border: 1px dotted #eaecf0;
    position: absolute;
    top: 0;
    left: 18px;
}

.status ul li {
    width: 100%;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 0 0 0 52px;
    margin: 0 0 32px 0;
}

.status ul li:last-child {
    margin-bottom: 0;
}

.status ul li:before {
    display: none;
}

.status ul li:after {
    content: "";
    width: 36px;
    height: 36px;
    float: left;
    background: #eaecf0;
    border: 12px solid #ffffff;
    box-shadow: #eaecf0 0 0 0 2px;
    border-radius: 360px;
    position: absolute;
    top: 0;
    left: 2px;
}

.status .btn-out {
    width: 100%;
}


/*
 4.) Footer - Main
----------------------------------------*/

.footer-main {
    width: 100%;
    min-height: 116px;
    float: left;
    flex-shrink: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 0 32px 0;
}

.footer-main a {
    color: var(--gray-600);
    text-decoration: none;
}

.footer-main a:hover,
.footer-main a:focus,
.footer-main a:active {
    color: var(--green);
}


/*
 5.) Index - History
----------------------------------------*/

/* Content - Home */
.content-home {
    width: 100%;
    overflow: hidden;
    padding: 48px 0 32px 0;
}

.content-home h1,
.content-home .h1 {
    padding-bottom: 32px;
}

.content-home h1:last-child,
.content-home .h1:last-child {
    padding-bottom: 0;
}


/* Breadcrumb */
.breadcrumb {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--green);
    line-height: 20px;
    background: none;
    border: none;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    margin: 0 0 32px 0;
}

.breadcrumb ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0 -9px -12px -9px;
}

.breadcrumb:last-child {
    margin-bottom: 0;
}

.breadcrumb ul li {
    position: relative;
    padding: 0 32px 0 0;
    margin: 0 7px 12px 9px;
}

.breadcrumb ul li:before {
    display: none;
}

.breadcrumb ul li:after {
    content: ""; /* Add this line */
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23D0D5DD' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
}

.breadcrumb ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb ul li:last-child:after {
    display: none;
}

.breadcrumb ul li a {
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    position: relative;
}

.breadcrumb ul li a:hover,
.breadcrumb ul li a:focus,
.breadcrumb ul li a.active {
    color: var(--green);
}


/* News - List */
.news-list {
    width: 100%;
    float: left;
    padding: 0 0 24px 0;
}

.news-list:last-child {
    padding-bottom: 0;
}

.news-list .date {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    line-height: 28px;
    padding-bottom: 32px;
}

.news-list .date:last-child {
    padding-bottom: 0;
}

.news-list .sub-heading {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    position: relative;
    margin-bottom: 24px;
    padding: 0 64px;
}

.news-list .sub-heading span {
    float: none;
    display: inline-block;
    vertical-align: top;
    background: #ffffff;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.news-list .sub-heading:before {
    content: "";
    width: 100%;
    height: 1px;
    float: left;
    background: #eaecf0;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.news-list .article {
    width: 100%;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10);
    border-radius: 12px;
    position: relative;
    padding: 24px 160px 24px 24px;
    margin: 0 0 32px 0;
}

.news-list .article .aside {
    width: 100%;
    max-width: 760px;
    float: left;
}

.news-list .article .aside h4,
.news-list .article .aside .h4 {
    position: relative;
    padding: 0 0 0 14px;
    margin-bottom: 20px;
}

.news-list .article .aside h4:before,
.news-list .article .aside .h4:before {
    content: "";
    width: 6px;
    height: 24px;
    float: left;
    background: #f04438;
    border-radius: 360px;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.news-list .article .aside h4.maintenance:before {
    background: #5b62aa !important;
}

.news-list .article .aside h4.incident:before {
    background: #f04438 !important;
}

.news-list .article .aside .color-alt {
    font-weight: 500;
    color: var(--red);
    padding-right: 4px;
}

.news-list .article .aside .p-bottom-none {
    padding-right: 10px;
    padding-bottom: 0;
}

.news-list .article .aside .p-with-bottom {
    padding-right: 10px;
    padding-bottom: 32px;
}

.news-list .article .aside .readmore {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
}

.news-list .article .aside .readmore a {
    color: var(--primary);
}

.news-list .article .aside .readmore a:hover,
.news-list .article .aside .readmore a:focus,
.news-list .article .aside .readmore a:active {
    color: var(--green);
}

.news-list .article .status {
    max-width: 760px;
    padding: 32px 0 0 0;
}

.news-list .article .bottom-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: absolute;
    top: 24px;
    right: 24px;
}

.news-list .article .bottom-btn .btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background: #2bb371;
    border-radius: 360px;
    padding: 2px 10px;
}

.news-list .article .bottom-btn .progress {
    background: #f79841;
}

.news-list .article .bottom-btn .progress:before {
    background: #dc6803;
}

.news-list .article .aside h4:before,
.news-list .article .aside .h4:before {
    background: #dc6803;
}

.news-list .article .aside .color-alt {
    color: var(--orange);
}

.news-list .article .aside .color-maintenance {
    color: #5b62aa;
}

.news-list .article .aside .color-incident {
    color: #f04438;
}

.news-list .article .aside .color-status-update {
    color: var(--orange);
}

.news-list .article-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 -32px 0;
}

@media (max-width: 767px) {
    .news-list .article {
        padding: 64px 16px 24px 16px;
    }

    .news-list .article .bottom-btn {
        right: 16px;
    }
}


/* Background - Color */
.gray-bg {
    background: linear-gradient(45deg, #273740 0%, #475467 100%);
}

@media (max-width: 767px) {
    .gray-bg {
        background: #ffffff;
    }
}

i.status-icon-healthy {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://static.uptimia.com/img/status-page-icon-healthy.svg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 1px;
    background-position-y: 1px;
    margin-left: 5px;
}

i.status-icon-error {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://static.uptimia.com/img/status-page-icon-warning.svg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 1px;
    background-position-y: 1px;
    margin-left: 5px;
}

i.status-icon-maintenance {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://static.uptimia.com/img/status-page-icon-maintenance.svg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 1px;
    background-position-y: 1px;
    margin-left: 5px;
}

i.status-icon-warning {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://static.uptimia.com/img/status-page-icon-warning-orange.svg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 1px;
    background-position-y: 1px;
    margin-left: 5px;
}

.btn-normal {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background: #2bb371;
    border-radius: 360px;
    padding: 2px 10px;
    color: #FFFFFF;
}


.btn-normal.progress {
    background: #f79841;
}

.btn-normal.error {
    background: #f04438;
}

.btn-normal.maintenance {
    background: #5b62aa;
}


@media (max-width: 1072px) {
    .tooltip-order-1 {
        display: none !important;
    }
}

@media (max-width: 1061.4px) {
    .tooltip-order-2 {
        display: none !important;
    }
}

@media (max-width: 1050.8px) {
    .tooltip-order-3 {
        display: none !important;
    }
}

@media (max-width: 1040.2px) {
    .tooltip-order-4 {
        display: none !important;
    }
}

@media (max-width: 1029.6px) {
    .tooltip-order-5 {
        display: none !important;
    }
}

@media (max-width: 1019px) {
    .tooltip-order-6 {
        display: none !important;
    }
}

@media (max-width: 1008.4px) {
    .tooltip-order-7 {
        display: none !important;
    }
}

@media (max-width: 997.8px) {
    .tooltip-order-8 {
        display: none !important;
    }
}

@media (max-width: 987.2px) {
    .tooltip-order-9 {
        display: none !important;
    }
}

@media (max-width: 976.6px) {
    .tooltip-order-10 {
        display: none !important;
    }
}

@media (max-width: 966px) {
    .tooltip-order-11 {
        display: none !important;
    }
}

@media (max-width: 955.4px) {
    .tooltip-order-12 {
        display: none !important;
    }
}

@media (max-width: 944.8px) {
    .tooltip-order-13 {
        display: none !important;
    }
}

@media (max-width: 934.2px) {
    .tooltip-order-14 {
        display: none !important;
    }
}

@media (max-width: 923.6px) {
    .tooltip-order-15 {
        display: none !important;
    }
}

@media (max-width: 913px) {
    .tooltip-order-16 {
        display: none !important;
    }
}

@media (max-width: 902.4px) {
    .tooltip-order-17 {
        display: none !important;
    }
}

@media (max-width: 891.8px) {
    .tooltip-order-18 {
        display: none !important;
    }
}

@media (max-width: 881.2px) {
    .tooltip-order-19 {
        display: none !important;
    }
}

@media (max-width: 870.6px) {
    .tooltip-order-20 {
        display: none !important;
    }
}

@media (max-width: 860px) {
    .tooltip-order-21 {
        display: none !important;
    }
}

@media (max-width: 849.4px) {
    .tooltip-order-22 {
        display: none !important;
    }
}

@media (max-width: 838.8px) {
    .tooltip-order-23 {
        display: none !important;
    }
}

@media (max-width: 828.2px) {
    .tooltip-order-24 {
        display: none !important;
    }
}

@media (max-width: 817.6px) {
    .tooltip-order-25 {
        display: none !important;
    }
}

@media (max-width: 807px) {
    .tooltip-order-26 {
        display: none !important;
    }
}

@media (max-width: 796.4px) {
    .tooltip-order-27 {
        display: none !important;
    }
}

@media (max-width: 785.8px) {
    .tooltip-order-28 {
        display: none !important;
    }
}

@media (max-width: 775.2px) {
    .tooltip-order-29 {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .tooltip-order-40,
    .tooltip-order-39,
    .tooltip-order-38,
    .tooltip-order-37,
    .tooltip-order-36,
    .tooltip-order-35,
    .tooltip-order-34,
    .tooltip-order-33,
    .tooltip-order-32,
    .tooltip-order-31,
    .tooltip-order-30,
    .tooltip-order-29,
    .tooltip-order-28 {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .tooltip-order-41 {
        display: none !important;
    }
}

@media (max-width: 589.4px) {
    .tooltip-order-42 {
        display: none !important;
    }
}

@media (max-width: 578.8px) {
    .tooltip-order-43 {
        display: none !important;
    }
}

@media (max-width: 568.2px) {
    .tooltip-order-44 {
        display: none !important;
    }
}

@media (max-width: 557.6px) {
    .tooltip-order-45 {
        display: none !important;
    }
}

@media (max-width: 547px) {
    .tooltip-order-46 {
        display: none !important;
    }
}

@media (max-width: 536.4px) {
    .tooltip-order-47 {
        display: none !important;
    }
}

@media (max-width: 525.8px) {
    .tooltip-order-48 {
        display: none !important;
    }
}

@media (max-width: 515.2px) {
    .tooltip-order-49 {
        display: none !important;
    }
}

@media (max-width: 504.6px) {
    .tooltip-order-50 {
        display: none !important;
    }
}

@media (max-width: 494px) {
    .tooltip-order-51 {
        display: none !important;
    }
}

@media (max-width: 483.4px) {
    .tooltip-order-52 {
        display: none !important;
    }
}

@media (max-width: 472.8px) {
    .tooltip-order-53 {
        display: none !important;
    }
}

@media (max-width: 462.2px) {
    .tooltip-order-54 {
        display: none !important;
    }
}

@media (max-width: 451.6px) {
    .tooltip-order-55 {
        display: none !important;
    }
}

@media (max-width: 441px) {
    .tooltip-order-56 {
        display: none !important;
    }
}

@media (max-width: 430.4px) {
    .tooltip-order-57 {
        display: none !important;
    }
}

@media (max-width: 419.8px) {
    .tooltip-order-58 {
        display: none !important;
    }
}

@media (max-width: 409.2px) {
    .tooltip-order-59 {
        display: none !important;
    }
}