 /* general */
 @font-face {
    font-family: "share";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/web/share.woff2") format("woff2"), url("../fonts/web/share.woff") format("woff");
}

body {
    font-family: share, sans-serif;
}

 /* alerts */
.alert {
    color: white;
    font-weight: bold;
    text-align: center;
}

.alert-danger {
    background-color: #804d47;
}

.alert-info {
    background-color: #275d90;
}

.alert-success {
    background-color: #4da354;
}

.alert-warning {
    background-color: #d3b866;
}

/* buttons */
button:focus {
    outline: none;
}

button:hover {
    cursor: pointer;
}

.button {
    background-color: rgba(47, 67, 52, 1.0);
    border: 1px solid rgba(47, 67, 52, 1.0);
    border-radius: 4px;
    box-shadow: none;
    color: white;
    height: 35px;
    padding-left: 12px;
    padding-right: 12px;
    transition-duration: 0.4s;
}

.button:focus,
.button:hover {
    background-color: rgba(47, 67, 52, 0.9);
    border: 1px solid rgba(47, 67, 52, 0.9);
    color: #dee2e6;
}

.button:active {
    background-color: rgba(47, 67, 52, 0.7);
    border: 1px solid rgba(47, 67, 52, 0.7);
    color: white;
}

/* colors */
.main-background-color {
    background-color: rgba(77, 163, 84, 1.0);
}

.main-color {
    color: rgba(47, 67, 52, 1.0);
}

/* cookie */
.cc-window {
    background-color: #2f4334;
    position: fixed;
}

.cc-link,
.cc-message {
    color: white !important;
    font-family: share, sans-serif;
}

.cc-dismiss {
    background-color: white;
    border: 1px solid white;
}

.cc-dismiss:hover {
    color: rgba(47, 67, 52, 0.7) !important;
    text-decoration: none;
}

/* container */
.container {
    padding-top: 50px;
}

/* font styles */
.normal {
    font-weight: normal;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

/* header */
header .carousel .carousel-item {
    transition-duration: 1.5s;
}

header .carousel-caption {
    bottom: 0;
    color: #1d1d18;
    left: 0;
    right: 0;
    top: 30%;
    width: 100%;
}

header img {
    height: 100vh !important;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    opacity: 0.6;
    width: 100vw;
}

header a {
    bottom: 15px;
    font-size: 24px;
    height: 51px;
    left: 50%;
    margin-left: -26px;
    opacity: 1.0;
    padding: 8px 0 0 0;
    position: absolute;
    text-align: center;
    width: 51px;
    z-index: 10;
}

.bounce {
    animation: bounce 2.25s 2 ease-in-out;
}

/* links */
a:focus {
    outline: none;
}

a.button {
    outline: none;
    padding-bottom: 7px;
    padding-top: 7px;
    text-decoration: none;
}

.link,
.link:link,
.link:visited {
    color: rgba(47, 67, 52, 1.0) !important;
    outline: none;
    text-decoration: none;
}

.link:hover {
    color: rgba(47, 67, 52, 0.7) !important;
    cursor: pointer;
    text-decoration: none;
}

.link:active {
    color: rgba(47, 67, 52, 0.9) !important;
    text-decoration: none;
}

/* lists */
ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

ol ul {
    list-style-type: square;
}

ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 10px;
}

ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 10px;
}

li ol > li {
    margin: 0;
}

li ol > li:before {
    content: counters(item, ".") " ";
}

li.no-style {
    list-style: none;
}

/* navigation */
.navbar {
    background-color: rgba(47, 67, 52, 1.0);
    border-bottom: 1px solid #dee2e6;
    height: 75px;
    width: 100%;
}

.navbar-brand {
    margin-top: -1px;
    opacity: 1.0;
}

.navbar-brand img {
    height: 50px;
    margin-left: 20px;
    width: 58px;
}

.navbar-collapse ul li a {
    border-bottom: 4px solid transparent;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-left: 7px;
    margin-right: 7px;
    transition: border-bottom-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.navbar-collapse.collapse.show ul li a {
    color: rgba(47, 67, 52, 1.0);
}

.navbar-collapse.collapse.show {
    background-color: white;
    height: 100vh;
    margin: 8px -40px 0;
    opacity: 0.95;
    padding-top: 25px;
}

.navbar-collapse ul li a:focus,
.navbar-collapse ul li a:hover,
.navbar-collapse ul li a:active {
    color: rgba(77, 163, 84, 0.7) !important;
    text-decoration: none;
}

.navbar-collapse ul li a.active {
    border-bottom-color: rgba(77, 163, 84, 1.0) !important;
    color: rgba(77, 163, 84, 1.0) !important;
}

.navbar-toggler {
    width: 50px;
}

.top-bar,
.middle-bar,
.bottom-bar {
    background-color: white;
    float: left;
    height: 2px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.navbar-toggler:hover .top-bar,
.navbar-toggler:hover .middle-bar,
.navbar-toggler:hover .bottom-bar {
    background-color: rgba(77, 163, 84, 1.0);
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0.0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1.0;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

.collapsing {
    transition-duration: 0.00s;
}

.navbar-badge {
    background-color: rgba(77, 163, 84, 1.0);
    border-radius: 4px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-left: 3px;
    padding: 1px 3px;
    position: absolute;
    top: 15px;
}

#to-top {
    background-color: white;
    border-radius: 50%;
    bottom: -60px;
    box-shadow: 0 4px 8px 0 #1d1d18;
    font-size: 24px;
    height: 51px;
    padding: 9px 0 0 0;
    position: fixed;
    right: 15px;
    text-align: center;
    transition: all 1s ease;
    width: 51px;
    z-index: 10;
}

#to-top.show {
    bottom: 15px;
}

/* noscript */
.noscript {
    margin-top: 18px !important;
}

/* positions */
.center {
    margin: auto;
    text-align: center;
}

.left {
    margin: auto;
    text-align: left;
}

/* pre-loader */
.pre-loader-div {
    background-color: white;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    z-index: 99999;
}

.pre-loader {
    height: 70px;
    margin: 50px auto;
    position: relative;
    width: 100px;
}

.pre-loader span {
    animation: pre-loading 2.25s infinite ease-in-out;
    background: rgba(47, 67, 52, 1.0);
    bottom: 0;
    display: block;
    height: 10px;
    position: absolute;
    width: 5px;
}

.pre-loader span:nth-child(2) {
    animation-delay: 0.2s;
    left: 11px;
}

.pre-loader span:nth-child(3) {
    animation-delay: 0.4s;
    left: 22px;
}

.pre-loader span:nth-child(4) {
    animation-delay: 0.6s;
    left: 33px;
}

.pre-loader span:nth-child(5) {
    animation-delay: 0.8s;
    left: 44px;
}

.pre-loader span:nth-child(6) {
    animation-delay: 1.00s;
    left: 55px;
}

.pre-loader span:nth-child(7) {
    animation-delay: 1.2s;
    left: 66px;
}

.pre-loader span:nth-child(8) {
    animation-delay: 1.4s;
    left: 77px;
}

.pre-loader span:nth-child(9) {
    animation-delay: 1.6s;
    left: 88px;
}

@keyframes pre-loading {
    0.00% {
        height: 10px;
        opacity: 1.0;
        transform: translateY(0);
    }
    25% {
        height: 60px;
        opacity: 0.75;
        transform: translateY(15px);
    }
    50% {
        height: 10px;
        opacity: 0.5;
        transform: translateY(-10px);
    }
    100% {
        height: 10px;
        opacity: 0.25;
        transform: translateY(0);
    }
}

/* sections */
section {
    padding: 60px 18px;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 26px;
    margin-bottom: 54px !important;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

p {
    font-size: 18px;
}

.group-image img {
    width: 80%;
}

.news-entry {
    border: 1px solid rgba(47, 67, 52, 1.0);
    margin-bottom: 75px;
    max-width: 90%;
    padding: 25px;
}

.news-entry div img {
    margin-bottom: 40px;
    width: 100%;
}
