.bg-color,
.bg-color-2 {
    background: #bd9723 !important;
}
.bg-color i{
    color: #fff !important;
}

.id-color {
    color: #bd9723 !important;
}

.text-light .subtitle.s2 {
    background: rgba(255, 255, 255, .1);
}

.subtitle.s2 span {
    margin-right: 20px;
    padding-left: 20px;
}

.subtitle.s2 i {
    margin-right: 10px;
}

.subtitle.s2 span:first-child {
    padding-left: 0;
}

h2.subtitle {
    margin-top: 0;
}



.subtitle {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    font-family: var(--title-font);
    color: var(--title-font-color);
    background: #bd9723 !important;
    padding: 7px 17px 7px 16px;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.dark-scheme .subtitle,
.text-light .subtitle {
    color: #ffffff;
}

.subtitle.blink {
    padding-left: 35px;
}

.subtitle.blink:before {
    animation: blinkingText 1s infinite;
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    top: 7.5px;
    left: 10px;
    -webkit-box-shadow: 0 0 10px 0px rgba(var(--primary-color-rgb), 1);
    -moz-box-shadow: 0 0 10px 0px rgba(var(--primary-color-rgb), 1);
    box-shadow: 0 0 10px 0px rgba(var(--primary-color-rgb), 1);
}



@keyframes blinkingText {
    0% {
        background: var(--primary-color);
    }

    50% {
        background: rgba(255, 255, 255, 1.0);
    }

    100% {
        background: var(--primary-color);
    }
}


.anim-op-blink-to-light {
    animation: op-blink-to-light 1s infinite;
}

@keyframes op-blink-to-light {
    0% {
        background: var(--primary-color);
        color: #ffffff;
    }

    50% {
        background: var(--bg-grey);
        color: var(--primary-color);
    }

    100% {
        background: var(--primary-color);
        color: #ffffff;
    }
}


.mission_h2 {
    margin-top: 0;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1em;
    letter-spacing: -1.25px;
    padding-bottom: 5px;
}


.relative,
.position-relative {
    position: relative;
    z-index: 1;
}

.rounded-20px {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.w-90 {
    width: 90%;
}

.h-80 {
    height: 80%;
}

.end-10 {
    right: 10%;
}

.p-3 {
    padding: 1rem !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.position-absolute {
    position: absolute !important;
}

.top-20 {
    top: 20%;
}

.w-30 {
    width: 30%;
}

.rounded-10px {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.z-index-2 {
    z-index: 2;
}

.text-light {
    color: #f8f9fa !important;
    margin-left:-12px !important;
}

.text-center {
    text-align: center !important;
}

.fs-48 {
    font-size: 48px;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
    color: #fff;
}

ol.ol-style-1 {
    list-style-type: none;
    counter-reset: ordered;
    margin-left: 50px;
}

ol.ol-style-1 li {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 18px;
}

ol.ol-style-1 li::before {
    background: #bd9723 !important;
    border-radius: 50%;
    color: #ffffff;
    content: counter(ordered);
    counter-increment: ordered;
    display: inline-block;
    font-weight: 400;
    margin-left: -50px;
    margin-top: 5px;
    padding: 5px 5px;
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
}

.fw-bold {
    font-weight: 700 !important;
}