﻿@font-face {
    font-family: 'Gagalin';
    src: url('/fonts/Gagalin-Regular.eot');
    src: url('/fonts/Gagalin-Regular.eot?#iefix') format('embedded-opentype'), url('/fonts/Gagalin-Regular.woff2') format('woff2'), url('/fonts/Gagalin-Regular.woff') format('woff'), url('/fonts/Gagalin-Regular.ttf') format('truetype'), url('/fonts/Gagalin-Regular.svg#Gagalin-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight:bold;
}

    a:hover {
        color: #00b5af;
        text-decoration: none;
        background-color: transparent;
        transition: all 0.3s ease;
    }

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 16px;
}

.cookie-consent, .user-policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
}

    .user-policy-modal {
        display: none;
        background: unset;
    }

        .cookie-consent .cookie-modal, .user-policy-modal .inner-modal  {
            background: white;
            padding: 20px;
            width: 95%;
            max-width: 800px;
        }

    .user-policy-modal .inner-modal{
        border: 1px solid #dedede;
    }

.footer-links a {
    color: #72c7cf
}

.footer-links p {
    margin-bottom: 0;
}

/* NAV //*/

@media (max-width: 1330px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 300px; /* Customize width as needed */
        background-color: #3c115b;
        transition: left 0.3s ease;
        z-index: 9999;
        border-right: 1px solid white;
        padding-top: 20px;
    }

        .navbar-collapse.show {
            left: 0;
        }

    .navbar-nav {
        flex-direction: column; /* Stack the nav links vertically */
    }

    body.nav-open {
        overflow: hidden; /* Prevent scrolling when nav is open */
    }
}


@media (min-width: 1330px) {
    .navbar-expand-custom {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-custom .navbar-nav {
            flex-direction: row;
        }

        .navbar-expand-custom .dropdown-menu {
            position: absolute;
        }

        .navbar-expand-custom .nav-link {
            padding-right: .5rem;
            padding-left: .5rem;
        }

        .navbar-expand-custom > .container {
            flex-wrap: nowrap;
        }

        .navbar-expand-custom .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-custom .navbar-toggler {
            display: none;
        }
}

.navbar {
     padding: 0rem;
     padding-right:0.75rem;
}

.bg-purple {
    background: #3c115b;
    font-size: 16px;
    color:white;
}

.navbar-brand {
    height: 90px;
    padding: 0px;
}

.navbar-brand img {
    height: 100%;
    width:auto;
    
}

.navbar-light .navbar-nav .nav-link {
    display: block;
    padding: 10px 10px;
    color: white;
    line-height: 1.2;
}

    .navbar-light .navbar-nav .nav-link:hover {
        display: block;
        padding: 10px 10px;
        color: #b493c9;
    }

.navbar-light .navbar-nav .show > .nav-link {
    color: #b493c9;
}

.top-nav {
    background: #72c7cf;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: .3rem .75rem;
    position: fixed;
    width: 100%;
    z-index: 200;
    top: 0px;
}

    .top-nav ul {
        display: flex;
        list-style:none;
        margin:0px;
        padding:0px;
        align-items: center;
    }

        .top-nav ul li a.nav-link {
            font-weight: 700;
            display: block;
            padding: .5rem 1rem;
            color: #3c115b;
            padding-left: 4px;
        }

        .top-nav ul li a.nav-link:hover {
            font-weight: 700;
            display: block;
            padding: .5rem 1rem;
            color: white;
            padding-left: 4px;
            color: #3c115b;
        }

        .desktop {
            display:none;
        }

@media (max-width: 1330px) {
    .mobile {
        display:none;
    }

    .desktop {
        display:block;
    }

    .mobile-nav {
        background: #00b5af;
        width: 320px;
        position: fixed;
        top: 0px;
        height: 100%;
        padding: 53px 25px;
        z-index: 200;
        left: -320px;
        transition: all 0.3s ease;
    }

    .mobile-nav-active {
        left: 0px;
    }

        .mobile-nav .mobile-nav-link {
            display: block;
            padding: .2rem 0rem;
            color: white;
            font-weight:700;
        }

        .mobile-nav ul {
            list-style:none;
            margin:0px;
            padding:0px;
        }


    .dropdown-menu.show {
        position: relative !important;
        transform: inherit !important;
        left: 15px !important;
        /* margin-right: inherit; */
        border: 1px solid white;
        border-radius: 5px;
        right: 20px;
        width: calc(100% - 30px);
        margin-bottom: 10px;
    }

        .mobile-social {
            display:flex;
            list-style:none;
            justify-content:space-around;
        }

    .mobile-nav .mobile-social .mobile-nav-link {
        display: block;
        padding: .2rem 0rem;
        color: white;
        font-weight: 700;
        font-size:28px;
    }



}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #3c115b;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

@media (max-width: 623px) {
    .strap {
        display:none;
    }
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #72c7cf;
}

.navbar-nav {
    align-items: center;
}

@media (max-width: 1330px) {
    .navbar-nav {
        align-items: normal;
    }
}

    /* Homepage */

    .image-area {
        padding-right: 100px;
    }

    .join-us-btn {
        position: absolute;
        width: 267px;
        right: 38px;
        top: 160px;
    }

    @media (max-width: 1140px) {
        .image-area {
            padding-right: 0px;
        }

        .join-us-btn {
            position: absolute;
            width: 180px;
            right: 20px;
            top: 109px;
        }
    }

@media (max-width: 1024px) {
    .image-area {
        padding-right: 0px;
    }

    .join-us-btn {
        position: absolute;
        width: 180px;
        right: 20px;
        top: 109px;
    }
}

@media (max-width: 555px) {
    .image-area {
        padding-top:30px;
    }

    .join-us-btn {
        position: absolute;
        width: 137px;
        right: 20px;
        top: 11px;
    }
}

.text-overlay {
    position: relative;
    margin-top: -400px;
}

@media (max-width: 1500px) {
    .text-overlay {
        position: relative;
        margin-top: -300px;
    }
}

@media (max-width: 990px) {
    .text-overlay {
        position: relative;
        margin-top: -90px;
    }
    
}





.welcome-message {
    background: white;
    padding: 20px 40px;
}

    .welcome-message h1 {
        font-size: 50px;
        font-family: 'Gagalin', sans-serif;
        color: #00b5af;
        line-height: 1.1;
    }



.welcome-message-dark {
    background: rgba(0,0,0,0.5);
    padding: 30px 40px;
}

@media (max-width: 768px) {
    .welcome-message-dark {
        background: #3c115b;
        padding: 30px 40px;
    }
}

.welcome-message-dark h1 {
    font-size: 31px;
    font-weight: 700;
    color: #fff;
    
}

.intro {
    color: #00b5af;
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .welcome-message {
        background: white;
        padding: 30px;
    }

        .welcome-message h1 {
            font-size: 28px;
            font-weight: 700;
            color: #00b5af;
        }

    .intro {
        color: #00b5af;
        font-size: 20px;
        margin-bottom: 35px;
        margin-top:20px;
    }
}

@media (max-width: 1200px) {
    .welcome-message-dark h1 {
        font-size: 25px;
        font-weight: 700;
        color: #ffffff;
    }
}

.welcome-message .btn-area {
    margin-top: 30px;
    display: flex;
}

.btn-area-links {
    display: flex;
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
}



    .btn-area-links li {
        width: 25%;
        padding: 10px 13px;
        line-height:1.2;
        margin-bottom:5px;
    }

        .btn-area-links li a {
            text-transform: uppercase;
            font-size: 16px;
            color: white;
            font-weight: 700;
        }

        .btn-area-links li:nth-child(1) {
            background: #3c115b;
            margin-right: 6px;
            transition: all 0.3s ease;
        }

        .btn-area-links li:nth-child(2) {
            background: #692e95;
            margin-right: 6px;
            transition: all 0.3s ease;
        }

        .btn-area-links li:nth-child(3) {
            background: #9a2358;
            margin-right: 6px;
            transition: all 0.3s ease;
        }

        .btn-area-links li:nth-child(4) {
            background: #3c115b;
            margin-right: 6px;
            transition: all 0.3s ease;
        }

        .btn-area-links li:hover {
            background: #00b5af
        }

        .btn-area-links li a:hover {
            text-decoration: none;
        }

@media (max-width: 768px) {
    .btn-area-links {
        flex-flow: wrap;
    }
        .btn-area-links li {
            width: 48%;
            padding: 10px 13px;
            line-height: 1.2;
        }
}

    @media (max-width: 425px) {
        .btn-area-links li a {
            text-transform: uppercase;
            font-size: 14px;
            color: white;
            font-weight: 700;
        }
    }

    span.top-line {
        border-top: 3px solid #00b5af;
        padding-bottom: 20px;
        width: 100%;
        display: flex;
    }

.welcome-message h2 {
    font-size: 40px;
    font-family: 'Gagalin', sans-serif;
    color: #3c115b;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .news {
        border-bottom: 1px solid #00b5af;
    }
}

    /*.news-area {
        margin-top: 150px;
    }*/

.news h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.4;
}

    .news p {
        font-size: 14px;
        margin-bottom: 0px;
    }

.news .day {
    font-size: 30px;
    text-align: center;
    font-weight: 100;
    line-height: 1;
    color: #000;
}

.news-date {
    text-align: center;
    font-size: 0.8rem;
}

.news-date > span {
    display: block;
}

    .read-more-btn {
        font-size: 14px;
        margin-bottom: 0px;
        border: 1px solid #00b5af;
        color: black;
        padding: 7px 10px;
        margin-top: 10px;
        float: left;
        margin-bottom: 10px;
    }

.read-more-btn {
    text-decoration: none;
    color: #000
}

footer .read-more-btn {
    text-decoration: none;
    color: #fff
}


    .charter-outer {
        padding: 90px;
        background: #afb6bc;
        padding-top: 0px;
        height: 100%;
    }

        .charter-outer:after {
            content: "";
            position: absolute;
            height: 0;
            width: 0;
            /* left: 50%; */
            top: 40%;
            border: 40px solid transparent;
            border-left: 40px solid #afb6bc;
            right: -74px;
            z-index: 200;
        }

    .charter-outer-form {
        padding: 40px;
        background: #9a2358;
        padding-top: 0px;
        height: 100%;
    }

    .charter-form-container {
        padding: 00px 50px;
    }

    .charter-outer-form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: white;
        opacity: 1; /* Firefox */
    }

    .charter-outer-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: white;
    }

    .charter-outer-form ::-ms-input-placeholder { /* Microsoft Edge */
        color: white;
    }

    .charter-outer-form input, .charter-outer-form textarea {
        border: 0;
        outline: 0;
        background: transparent;
        border-bottom: 1px solid white;
        font-size: 16px;
        padding: 10px 0px;
        color: white;
        width: 100%;
    }

    .charter-outer-form label {
        color: white;
    }

    input[type=checkbox], input[type=radio] {
        box-sizing: border-box;
        padding: 0;
        width: auto !important;
    }


    .charter-outer-form textarea {
        overflow: auto;
        outline: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        resize: none;
        border-radius: 0px;
        box-shadow: transparent;
        height: 250px;
        background-color: transparent;
        outline: none;
        background: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .charter-outer-form select {
        margin: 0px;
        outline: none;
        width: 100%;
        padding: 0px !important;
        font-size: 16px;
        border: 0px !important;
        border-bottom: 1px solid #fff !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 10px 0px !important;
        border-radius: 0px !important;
        background: transparent;
        background-color: transparent !important;
        height: auto !important;
        background: url(/Images/down-arrow.svg) 100% / 5% no-repeat #eee;
        color: white !important;
        outline: none;
        border: 0;
        outline: 0;
    }

    .charter-outer-form option {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #fff;
        color: #131e3b;
    }

    .charter-outer-form input[type=button], .charter-outer-form input[type=submit], .charter-outer-form input[type=reset] {
        background-color: #3c115b;
        border: none;
        color: white;
        padding: 12px 27px;
        text-decoration: none;
        margin: 4px 2px;
        cursor: pointer;
        width: auto;
        float: right;
        border-radius: 0px;
        margin-top: 20px;
    }

    .hideLabel {
        display: none;
    }

#charter-anchor {
    visibility: hidden;
    position: absolute;
    top: -150px;
}

.charter-outer h2 {
    font-size: 2rem;
    font-size: 36px;
    font-weight: 700;
}

    .charter-block {
        background: white;
        padding: 20px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 17px;
        line-height: 1.3;
        height: 220px;
        margin-bottom: 30px;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .charter-block-overlay {
        background: #9a2358;
        padding: 20px;
        font-weight: 100;
        font-size: 14px;
        line-height: 1.5;
        height: 220px;
        margin-bottom: 30px;
        position: absolute;
        text-transform: none;
        top: 0px;
        z-index: 200;
        /* right: 15px; */
        /* margin-left: 15px; */
        color: white;
        display: none;
        left: 0;
        overflow: auto;
    }

    .charter-active {
        display: block;
    }

    .charter-minus-top {
        position: relative;
        top: -90px;
    }

    .sign-up {
        background: white;
        display: inline-block;
        margin-bottom: 41px;
        font-weight: 600;
        padding: 16px 20px;
        font-size: 22px;
    }

    .modal {
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hide {
        display: none !important;
    }

    #toast {
        position: fixed;
        width: 100%;
        bottom: 5px;
        background: #7cec7c;
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
        z-index: 9999;
        padding: 10px;
    }

    .modal .modal-inner {
        background: white;
        width: 700px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        border-radius: 10px;
    }

    .post-container {
        width: 100%;
        /*border: 1px solid #dedede;*/
        border-radius: 6px;
        margin-bottom: 14px;
        background: white;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
        float: left;
    }

    .prev-next {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .prev-next a {
            margin-right: 10px;
        }

    .forum-title {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 10px;
        justify-content: space-between;
        /* background: #476a8a; */
        color: #00b5af;
        /* border-top-left-radius: 10px; */
        /* border-top-right-radius: 10px; */
        padding-bottom: 5px;
        font-size: 20px;
    }

    .post-container a:hover {
        text-decoration: none;
    }

    .post-container .info {
        padding: 5px 10px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 14px;
    }

    .post-comment {
        width: 100%;
        /* border: 1px solid #dedede; */
        border-radius: 6px;
        margin-bottom: 14px;
        background: white;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
        float: left;
        padding: 10px;
    }

        .post-comment .meta-data {
            display: flex;
            margin-bottom: 8px;
        }

    .comment-body {
        color: #00b5af;
        font-size: 20px;
    }

    .form-container {
        width: 100%;
        max-width: 600px;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .form-container input[type="text"],
        .form-container input[type="email"],
        .form-container input[type="password"] {
            width: 100%;
            margin-bottom: 5px;
            border: 0;
            background: #e6e6e6;
            padding: 5px;
            border-radius: 5px;
        }

        .form-container textarea {
            width: 100%;
            height: 150px;
            margin-bottom: 5px;
            border: 0;
            background: #e6e6e6;
            padding: 5px;
            border-radius: 5px;
        }

    /*.form-container button {
            border-radius: 5px;
            border: 2px solid black;
            padding: 8px 15px;
            background: 0;
        }*/

    .main-image {
        height: 600px;
        margin-left: -30px;
        margin-right: -30px;
        margin-top: 40px;
    }

    @media (max-width: 768px) {
        .main-image {
            height: 400px;
            margin-left: 0px;
            margin-right: 0px;
            margin-top: 40px;
        }

        .charter-form-container {
            padding: 00px 0px;
        }

        .charter-outer:after {
            display: none;
        }

        .charter-outer {
            padding: 50px;
        }
    }

    .news-image {
        height: 356px;
        /* margin-left: -30px; */
        /* margin-right: -30px; */
        /* margin-top: 40px; */
        margin-bottom: 20px;
    }

.gallery-image {
    height: 280px;
    margin-bottom: 31px;
    margin-bottom: 13px;
    font-size: 13px;
}

h6.gallery-image-caption {
    font-size: 13px;
    color: #00b5af;
    margin-bottom: 20px;
}

    .text-area {
        margin-top: -70px;
        margin-bottom: 40px;
    }

    .bg-image {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Login */

.form-outer {
    max-width: 700px;
    padding: 50px;
    margin: auto;
    border: 1px solid #dedede;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 500px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0px 2px 8px -3px rgba(51,51,51,0.5);
    -moz-box-shadow: 0px 2px 8px -3px rgba(51,51,51,0.5);
    box-shadow: 0px 2px 8px -3px rgba(51,51,51,0.5);
    background: rgba(255,255,255,0.75)
}


    .btn-login {
        background-color: #3c115b;
        border: none;
        color: white;
        padding: 12px 27px;
        text-decoration: none;
        margin: 4px 2px;
        cursor: pointer;
        width: auto;
        float: right;
        border-radius: 0px;
        margin-top: 0px;
    }

        .btn-login:hover {
            background-color: #72c7cf;
            color: white;
        }

    .nav-link-logout {
        font-weight: 700;
        display: block;
        padding: .5rem 1rem;
        color: white;
        padding-left: 4px;
        background: none;
        border: none;
    }

    /* Why Not */

    .forum h1 {
        font-size: 30px;
        color: #00b5af;
    }

.forum-area {
    background: #daf0f3;
    padding: 20px;
    /* min-height: 196px; */
    height: auto;
    float: left;
    margin-bottom: 15px;
    width: 100%;
}

        .forum-area h2 {
            font-size: 30px;
            color: #3c115b;
            font-weight: 700;
        }

    .forum-image {
        height: 270px;
    }
@media (max-width: 769px) {
    .forum-image {
        height: 260px;
    }
}

    .forum-link {
        background-color: #3c115b;
        border: none;
        color: white;
        padding: 12px 27px;
        text-decoration: none;
        margin: 4px 2px;
        cursor: pointer;
        width: auto;
        float: right;
        border-radius: 0px;
        margin-top: 20px;
    }

        .forum-link:hover {
            background-color: #72c7cf;
            text-decoration: none;
            color: white;
        }

    .forum h2 {
        font-size: 30px;
        color: #3c115b;
        font-weight: 700;
    }

    .anouncement {
        background: #9a2358;
        padding: 20px;
        color: white;
        margin-top: 30px;
        margin-bottom: 30px;
    }

        .anouncement h2 {
            font-size: 30px;
            color: #ffffff;
            font-weight: 700;
        }


    .btn-back {
        background: #3c115b;
        color: white;
        float: right;
    }

        .btn-back:hover {
            background: #00b5af;
            color: white;
            float: right;
        }

    .btn-create {
        background: #00b5af;
        color: #fff;
        float: left;
        font-weight: 700;
    }



    .btn-create-forum {
        background: #00b5af;
        color: #fff;
        float: right;
        font-weight: 700;
        border-radius: 4px 4px 0px 0px;
        font-size: 14px;
    }

    .btn-create-forum-grey {
        background: #f2f2f2;
        color: #000;
        float: right;
        font-weight: 400;
        border-radius: 4px 4px 0px 0px;
        font-size: 14px;
        margin-right: 5px;
    }

    .forum h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 17px;
        color: #3c115b;
    }

    .click {
        height: 40px;
        position: absolute;
        right: 8px;
        bottom: 8px;
    }

    footer {
        background: #3c115b;
        font-size: 13px;
        color: white;
        padding: 70px 20px;
    }

    .footer-icon {
        width: 200px;
        float: right;
    }

    @media (max-width: 768px) {
        .footer-icon {
            width: 200px;
            float: left;
            margin-top: 20px;
        }
    }

    @media (max-width: 768px) {
        .btn-create {
            width: 100%;
            margin-bottom: 5px;
        }

        .btn-back {
            background: #3c115b;
            color: white;
            float: right;
            width: 100%;
        }

        .btn-create-forum {
            width: 100%;
        }

        .btn-create-forum-grey {
            background: #f2f2f2;
            color: #000;
            float: right;
            font-weight: 400;
            border-radius: 0px 0px 4px 4px;
            font-size: 14px;
            margin-right: 0px;
            width: 100%;
        }

        .forum h1 {
            font-size: 30px;
            color: #00b5af;
            float: left;
            width: 100%;
            margin-top: 20px;
        }
    }


/* Highlights */

.highlight {
    position: absolute;
    text-align: center;
    margin-bottom: 6px;
    width: 320px;
    transform: rotate(0deg);
    left: -98px;
    top: -20px;
}

@media (max-width: 1260px) {
    .highlight {
        left: 0px;
        top: -20px;
    }
}

@media (max-width: 1024px) {
    .highlight {
        width: 300px;
        left: 0px;
        top: -20px;
    }
}

.highlight:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 51%;
    background: #f8b22c;
    transform: skew(0deg, 9deg);
}

.highlight:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: #f8b22c;
    transform: skew(0deg, -9deg);
}

@media (max-width: 768px) {

    .highlight {
        display:none;
    }
}

.highlight-content {
    position: relative;
    z-index: 20;
    color: #fff;
    font-weight: 700;
    padding: 40px 30px;
    float: left;
    font-size: 20px;
    line-height: 1.4;
    padding-bottom: 30px;
}

.simple-highlight {
    background: #9a2358;
    color: white;
    padding: 20px 30px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 3px solid #00b5af;
    display: block;
    margin-bottom:20px;
}

.simple-highlight1 {
    background: #692e95;
    color: white;
    padding: 20px 30px;
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    border-bottom: 3px solid #00b5af;
    display: block;
    margin-bottom: 20px;
}

.team-image {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    margin: auto;
}

@media (max-width: 990px) {

    .team-image {
        height: 200px;
        width: 200px;
        
    }
}

@media (max-width: 768px) {

    .team-image {
        height: 250px;
        width: 250px;
    }
}

span.name {
    font-size: 24px;
    color: #00b5af;
    font-weight: 700;
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}
span.title {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

span.bio {
    font-size: 14px;
    display: block;
    margin-top: 20px;
}

.registration-intro {
    margin-top: 27px;
    font-size: 41px;
    color: #692e95;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 58px;
    padding-right: 64px;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 150;
    margin-top:49px;
}

.page-block {
    float: left;
    height: 130px;
    display: block;
    width: 100%;
}

.page-block-text {
    margin-top: 180px;
}

@media (max-width: 769px) {
    .page-block-text {
        margin-top: 120px;
    }
}

    @media (max-width: 1330px) {

        .page-block {
            float: left;
            height: 70px;
            display: block;
            width: 100%;
        }

        .fixed-top {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 150;
            margin-top: 0px;
        }
    }

    .donate-now {
        background: #3c115b;
        border-radius: 5px;
        padding: 20px 30px;
        display: inline-block;
        color: #00b5af;
        font-weight: 700;
        float: right;
        margin-bottom: 20px;
    }

.video-outer {
    position: relative;
    height: 750px;
}

.video-container {
    height: 750px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    background: #282727;
}

.video-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    z-index: 2;
    padding-top: 90px;
}

.video-size {
    padding: 56.25% 0 0 0;
    position: relative;
    top: 0px;
    left: 50%;
    min-height: 104%;
    min-width: 104%;
    border: 0;
    transform: translate(-50%,-0%);
}

@media (max-width: 1200px) {
    .video-outer {
        position: relative;
        height: auto;
    }
}

@media (max-width: 1200px) {
    .video-container {
        height: 700px;
        overflow: hidden;
        position: relative;
        width: 100%;
        display: flex;
    }
    .video-size {
        min-height: 144%;
        min-width: 144%;
        top: -90px;
    }
}

@media (max-width: 768px) {
    .video-container {
        height: 450px;
        overflow: hidden;
        position: relative;
        width: 100%;
        display: flex;
    }
}

@media (max-width: 990px) {


    .welcome-message-dark h1 {
        font-size: 25px;
        font-weight: 700;
        color: #00b5af;
    }

    .welcome-message-dark {
        background: #3c115b;
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .video-size {
        padding: 56.25% 0 0 0;
        position: relative;
        top: 0px;
        left: 50%;
        min-height: 600px;
        min-width: 1000px;
        border: 0;
        transform: translate(-50%,-0%);
    }
    .welcome-message-dark h1 {
        font-size: 22px;
        font-weight: 700;
        color: #00b5af;
        line-height: 1.3;
    }
}

.mobile-show {
    display:none
}
.mobile-hide {
    display: block
}
@media (max-width: 425px) {
    .mobile-show {
        display: block;
    }
    .mobile-hide {
        display: none;
    }
}

@media (max-width: 1200px) {
    .video-active .text-overlay {
        position: relative;
        margin-top: -400px;
    }
}

@media (max-width: 990px) {
    .video-active .text-overlay {
        position: relative;
        margin-top: -350px;
    }
}
@media (max-width: 786px) {
    .video-active .text-overlay {
        position: relative;
        margin-top: -90px;
    }
}

.text-area-no-image {
    margin-top: 0px;
    margin-bottom: 40px;
}

.news-story-date {
    position: relative;
    top: -69px;
    background: #00b5af;
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
    left: -40px;
}

.text-area-no-image .news-story-date {
    top: -20px;
    left: 0px;
}

.umb-block-grid__layout-item {
    margin-right:20px;
}

.btn-charter {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: #72c7cf;
    font-weight:bold;
    color:white;
}

    .btn-charter:focus {
        outline: 0;
        box-shadow: 0 0 0 0rem rgba(0,123,255,.25);
        background: #3c115b;
        color:white;
    }

.charter-box {
    background:rgba(0,0,0,.03) 
}

.cookie-modal {
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: rgba(00,0,0,0.9);
    border: 0px solid #f2f2f2;
    padding: 30px;
    z-index: 999;
    font-size: 1rem;
    width: 38%;
    color: white;
}

@media (max-width: 786px) {
    .cookie-modal {
        width: calc(100% - 40px);
    }
}

.cookie-accept {
    font-size: .8rem;
    background: #ffffff;
    color: #333333;
    border: 0px solid #f2f2f2;
    font-weight: bold;
}

.cookie-close {
    font-size: .8rem;
    background: #00b5af;
    color: #ffffff;
    font-weight: bold;
    border: 0px solid #00b5af;
}

.caption {
    font-size: 13px;
    color: #00b5af;
    margin-bottom: 20px;
    display: block;
    margin-top: 5px;
}

.news-repo {
    margin-bottom: 15px;
    background: white;
    padding: 20px;
    height:100%;
}

.gallery-image-sm {
    display: flex;
    align-items: center;
    height: 100%;

}

.text-area h3 {
    font-size: 1.4rem;
}

.repo .news-date {
    position: absolute;
    background: white;
    width: 80px;
    padding: 5px;
}

footer a {
    color:white;
}

@media (max-width: 1409px) {
    .strap {
        display:none;
    }
}


.hidden {
    display: none;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: transparent;
    outline: 0;
}

hr.nav-line {
    border-top: 1px solid white;
}

.top-nav-items {
    display: flex;
}

@media (max-width: 1300px) {
    .top-nav-items {
        display: block;
    }
}
.social-icons {
    margin-top:6px;
    margin-bottom: 10px;
    margin-left: 8px;
}
@media (max-width: 1300px) {
    .social-icons {
        margin-top: 6px;
        margin-bottom: 10px;
        margin-left: 8px;
        filter: brightness(0) saturate(100%) invert(63%) sepia(44%) saturate(3428%) hue-rotate(135deg) brightness(87%) contrast(101%);
    }
}

.donate-banner {
    background: #72c7cf;
    display: block;
    padding: 30px 20px;
    text-align: left;
    font-size: 20px;
    color: #3c115b;
}

.donate-banner p {
    margin-bottom: 0px;
    color: #000;
}

.donate-banner-title {
    color: #3c115b;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.3;
}