/* Header */

.downAlign {
   padding-top: 4%;
}

.imgHeight {
   max-height: 100px;
}

.redBackground {
   background-color: #cb010a;
}

.greenBackground {
   background-color: #004c40;
}

/* For no Red Line*/

.col-md-12.redBackground {
   min-height: 0px !important;
}

.mura-item-meta__title {
   color: #ffffff;
}

.redBackground .mura-item-meta__title a {
   color: #ffffff;
   text-decoration: underline;
   font-weight: bold;
}
/* For no Green Line*/

.col-md-12.greenBackground {
   min-height: 0px !important;
}

/* .mura-item-meta__title {
   color: #ffffff;
} */

.greenBackground .mura-item-meta__title a {
   color: #ffffff;
   text-decoration: underline;
   font-weight: bold;
}

/* Slideshow on Mobile */

.d-none {
  display: revert !important;
}

/* Commission Pages */

.toResize {
 height: 350px;
 width: 100%;
 background-repeat: round;
 position: relative;
}
.backTransparency {
  /* position: relative;
  bottom: -81%; */
  background-color: rgba(0,0,0,.5);
  position: absolute;
  bottom: 0;
  width: 100%
}
.tofff {
  color: #ffffff;
}
.roundedButtons a {
  border-radius: 25rem;
}
/* Body */

.home-box i.home {
   border: 1px solid #009688 !important;
   color: #009688 !important;

   font-size: 44px;
   display: inline-block;
   width: 90px;
   height: 90px;
   line-height: 90px;
   text-align: center;
   border-radius: 50%;
   transition: all .3s ease-in;
}

.home-box:hover i.home {
   background-color: #009688 !important;
   color: #fff !important;
}

#homepage .carousel .carousel-caption h3 a {
   color: #ffffff !important; 
   text-shado
}

/* Footer */

footer a {
    color: #eee;
    text-decoration: none;
}

footer a:hover {
    color: #eee;
    text-decoration: underline;
}

/* Loader */
/* #loading_wrapper {
    visibility: hidden;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    height: 150%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

#loading_wrapper h1 {
    position: absolute;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    left: 50%;
    top: 58%;
    margin-left: -20px;
    color: black;
}

.body {
    position: absolute;
    top: 50%;
    margin-left: -50px;
    left: 50%;
    animation: speeder .4s linear infinite;
}

.body>span {
    height: 5px;
    width: 35px;
    background: #000;
    position: absolute;
    top: -19px;
    left: 60px;
    border-radius: 2px 10px 1px 0;
}

.base span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 100px solid #000;
    border-bottom: 6px solid transparent;
}

.base span:before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    right: -110px;
    top: -16px;
}

.base span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #000;
    border-bottom: 16px solid transparent;
    top: -16px;
    right: -98px;
}

.face {
    position: absolute;
    height: 12px;
    width: 20px;
    background: #000;
    border-radius: 20px 20px 0 0;
    transform: rotate(-40deg);
    right: 43.4%;
    top: 49%;
}

.face:after {
    content: "";
    height: 12px;
    width: 12px;
    background: #000;
    right: 4px;
    top: 7px;
    position: absolute;
    transform: rotate(40deg);
    transform-origin: 50% 50%;
    border-radius: 0 0 0 2px;
}

.body>span>span:nth-child(1),
.body>span>span:nth-child(2),
.body>span>span:nth-child(3),
.body>span>span:nth-child(4) {
    width: 30px;
    height: 1px;
    background: #000;
    position: absolute;
    animation: fazer1 .2s linear infinite;
}

.body>span>span:nth-child(2) {
    top: 3px;
    animation: fazer2 .4s linear infinite;
}

.body>span>span:nth-child(3) {
    top: 1px;
    animation: fazer3 .4s linear infinite;
    animation-delay: -1s;
}

.body>span>span:nth-child(4) {
    top: 4px;
    animation: fazer4 1s linear infinite;
    animation-delay: -1s;
}

@keyframes fazer1 {
    0% {
        left: 0;
    }

    100% {
        left: -80px;
        opacity: 0;
    }
}

@keyframes fazer2 {
    0% {
        left: 0;
    }

    100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes fazer3 {
    0% {
        left: 0;
    }

    100% {
        left: -50px;
        opacity: 0;
    }
}

@keyframes fazer4 {
    0% {
        left: 0;
    }

    100% {
        left: -150px;
        opacity: 0;
    }
}

@keyframes speeder {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -3px) rotate(-1deg);
    }

    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 3px) rotate(-1deg);
    }

    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-2px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.longfazers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: #000;
}

.longfazers span:nth-child(1) {
    top: 20%;
    animation: lf .6s linear infinite;
    animation-delay: -5s;
}

.longfazers span:nth-child(2) {
    top: 40%;
    animation: lf2 .8s linear infinite;
    animation-delay: -1s;
}

.longfazers span:nth-child(3) {
    top: 60%;
    animation: lf3 .6s linear infinite;
}

.longfazers span:nth-child(4) {
    top: 80%;
    animation: lf4 .5s linear infinite;
    animation-delay: -3s;
}

@keyframes lf {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf2 {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf3 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf4 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
} */

/* PrimeGov */

.container-primegov {
   width: 80vw;
   margin: auto;
   padding-right: 0px !important;
   padding-left: 0px !important;
}

.border-radius-dropshadow {
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
    background-color: #f8f8f8;
}
.grey-background {
    background-color: #e8e8e8;
}

/* Natural Resources */

.river-background {
   background-image: url("../images/riverrunning.jpg");
}

.green-title {
   color: #009688;
   transition: .6s;
   background-color: #ffffff;
}

nav .green-title {
   color: #009688;
   transition: .6s;
}

nav .green-title:hover {
   color: #ffffff;
   background-color: #009688;
}

#water-tab a {
   color: #009688;
}

.resource-card-1 h2 {
   color: #009688;
}

.resource-card-2 {
   background-color: #00778E;
   color: #ffffff;
}

.resource-card-3 {
   background-color: #af4448;
   color: #ffffff;
}

.resource-card-4 {
   background-color: #8d6e63;
   color: #ffffff;
}

.add-arrow::after {
   content: "\2192";
}

.no-underline {
   border-bottom: 0px !important;
}

.explore-btn {
   text-decoration: underline 2px;
   text-underline-offset: 9px; 
   font-weight: bold;
   color: #098688;
   transition-delay: .06s;
   top: -5%;
}
.explore-btn:hover {
   text-decoration: underline 2px;
   text-underline-offset: 9px; 
   color: #098688;
   transition-delay: .06s;
}
.arrow-green {
   border-radius: 50%;
   background-color: #098688;
   color: #ffffff;
   margin-left: 0.5em;
}
.nav-link.green-title.active {
   background-color: #f8f9fa;
}

/* Accordion Toggles */
.accordion .card-header a {
    /* padding: 3rem; */
    position: relative;
    font-style: normal
}

.accordion .card-header a:hover {
    color: #fff;
}

.accordion .card-header a[data-toggle=collapse]:before {
    content: "^";
    /* font-family: Font Awesome\ 4 Free; */
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    font-size: 110%
}

.accordion .card-header a[data-toggle=collapse].collapsed:before {
    content: "+";
}

.accordion .card-header a:hover {
    text-decoration: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.accordion.left-indicator .card-header a {
    padding-left: calc(3rem + 30px)
}

.accordion.left-indicator .card-header a[data-toggle=collapse]:before {
    right: auto;
    left: 30px
}

.accordion.left-indicator.tight-spacing .card-header a {
    padding-left: calc(1rem + 50px)
}

.accordion.left-indicator.tight-spacing .card-header a[data-toggle=collapse]:before {
    left: 20px
}

.accordion.left-indicator.normal-spacing .card-header a {
    padding-left: calc(2rem + 50px)
}

.accordion.left-indicator.loose-spacing .card-header a {
    padding-left: calc(3rem + 50px)
}

.accordion.tight-spacing .card-header a {
    padding: 1rem
}


.accordion.left-indicator.tight-spacing .card-header a {
    padding-left: calc(1rem + 50px)
}

.accordion.left-indicator.tight-spacing .card-header a[data-toggle=collapse]:before {
    left: 20px
}

.accordion.left-indicator.normal-spacing .card-header a {
    padding-left: calc(2rem + 50px)
}

.accordion.left-indicator.loose-spacing .card-header a {
    padding-left: calc(3rem + 50px)
}

.accordion.tight-spacing .card-header a {
    padding: 1rem
}

.accordion.normal-spacing .card-header a {
    padding: 2rem
}

.accordion.loose-spacing .card-header a {
    padding: 3rem
}

.accordion.plus-min .card-header a[data-toggle=collapse]:before {
    content: "\f068"
}

.accordion.plus-min .card-header a[data-toggle=collapse].collapsed:before {
    content: "\f067"
}
