/* Header File */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;

    position: relative;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #F0F0F0 0%, #D8D8D8 100%);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    display: contents;
    font-size: 20px;
    line-height: 1.5em;
}

p {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    margin: 0 0 1rem 0;

    text-rendering: optimizeLegibility;
    color: #333;
}

.container ul {
    margin: 0 0 1em 0;
}

.container li {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    margin: 0 0 1em 0;
    /*font-size: 1.2em;*/
    /*line-height: 1.5em;*/
    text-rendering: optimizeLegibility;
    color: #333;
    text-align: justify;
}

.container li > ul > li, .container li > li > li, .container li > li > li {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    margin: 0 0 0.5em 0;
    /*font-size: 1.0em;*/
    /*line-height: 1.2em;*/
    text-rendering: optimizeLegibility;
}

a {
    color: blue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: blue;
}


ul.nav {
    width: 100%;
    display: block;
    /*background: #000000;*/
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
    position: absolute;
    top: 69px;

    font-size: 16px;
    line-height: 1em;
}

ul.nav > li {
    display: inline-block;
    position: relative;
    color: white;
    margin: 0;
    padding: 0;
}


ul.nav > li > ul {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease-in;
    pointer-events: none;
    list-style: none;
    z-index: 1000;
}

ul.nav > li:hover > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

ul.nav > li > ul > li {
    background: #000000;
    padding: 0;
    margin: 0;

}

/* Hover Color */
ul.nav > li:hover, ul.nav > li > ul > li:hover {
    background: #111111;
}

ul.nav > li > a, ul.nav > li > ul > li > a {
    color: white;

    text-transform: uppercase;
    padding: 1em;
    margin: 0;
    display: inline-block;
    min-width: 140px;
}

ul.nav > li > a, ul.nav > li > ul > li > a {
    text-decoration: none;
}

.no-select {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header {
    width: 100%;
    background: linear-gradient(to bottom, #424242 0, #111 100%);
    display: block;
    height: 120px;
    position: relative;
}

div.logo_header {
    position: absolute;
    overflow: hidden;
    height: 70px;
    width: 100%;
    padding: 12px 0 0 1em;
}

h1.header-text {
    margin-top: 0;
    font-size: 48px;
    line-height: 50px;
    font-family: 'DejaVu Sans Book', 'Verdana', 'Open Sans', sans-serif;

    background: linear-gradient(0deg, #f7a313 0%, #db4b33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    z-index: 100;
}

h1.header-text + h1.header-text {
    text-shadow: 0 2px 4px #000000;
    position: absolute;
    z-index: 99;
}

.logo {
    display: block;
    background: url(/static/img/logo.png) no-repeat right 0;
    background-size: contain;
    position: absolute;
    width: 7em;
    height: 6em;
    right: 1em;
}

.container {
    padding-bottom: 320px;
}

.container-column {
    max-width: 900px;
    /*padding: 20px;*/
    padding-top: 20px;
    margin: 0 auto;
}

.container-column, body.cke_editable p {
    text-align: justify;
}

div.container img {
    margin-bottom: 1rem;
}

body.cke_editable {
    padding: 0 1em;
    display: block;
    height: calc(100% - 40px);
}

h1, h2, h3 {
    font-weight: 100;
    margin: 1em 0 0 0;
}

h1 {
    font-size: 1.8em;
}

h2 {
    font-size: 1.35em;
}

h3 {
}

h1 + p, h2 + p, h3 + p {

}

div h1:first-child {
    margin-top: 0;
    margin-bottom: 0.3em;
}


#burger-menu {
    display: none;
}

@media (max-width: 768px) {
    .container-column {
        margin: 0 20px 0 20px;
    }

    h1 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.2em;
    }

    h3 {
    }
}

/* Side bar Menu */
@media (max-width: 991px) {
    .logo {
        display: none;
    }

    header {
        height: 80px;
    }

    /* Hover Color */
    ul.nav > li:hover, ul.nav > li > ul > li:hover {
        background: transparent;
    }

    #burger-menu {
        display: block;
        position: absolute;
        right: 2em;
        width: 24px;
        height: 24px;
        color: white;
        background: transparent;
        top: 20px;
        padding: 0;
        border: 0;
        cursor: pointer;
        z-index: 1000;
    }

    span.icon-bar {
        color: white;
        display: block;
        height: 2px;
        margin-bottom: 5px;
        width: 100%;
        background: #fff;
    }

    ul.nav {
        display: none;
        position: absolute;
        width: 0;
        right: 0;

        background: linear-gradient(to bottom, #535353 0%, #040a0e 100%);
        padding: 0;
        margin: 0;
        top: 80px;
    }

    body[nav-opened] ul.nav > li {
        width: 200px;
        border-bottom: 1px solid white;

    }

    body[nav-opened] ul.nav {
        display: block;
        position: absolute;
        width: 200px;
        height: calc(100% - 80px);
        transition: all 0.3s ease-in;
        z-index: 10000;
    }

    body[nav-opened] ul.nav > li > ul {
        width: 200px;
        padding-left: 40px;
        display: block;
        opacity: 1;
        top: 00px;
        position: relative;
        pointer-events: all;
    }

    body[nav-opened] ul.nav > li > ul > li {
        width: 160px;
        background: transparent;
    }

    body[nav-opened] ul.nav > li > ul > li:hover {
        width: 160px;
        background: #111111;
    }

    body[nav-opened] ul.nav > li > a {
        width: 200px;
        background: transparent;
        outline: none;
    }

    body[nav-opened] ul.nav > li > a:hover {
        background: #111111;
    }

    body[nav-opened] ul.nav > li > ul > li > a {
        width: 160px;
        background: transparent;
        outline: none;
    }


}


.form-control {
    width: 100%;
    margin: 0;
    padding: 0.5em;
    border: 1px solid grey;
}

movement.green {
    background: linear-gradient(to bottom, #45c93c 0%, #3f9f29 100%)
}

movement.orange {
    background: linear-gradient(to bottom, #ff8438 0%, #cb4e24 100%);
}

movement.blue {
    background: linear-gradient(to bottom, #92badd 0%, #75a6d1 41%, #4a89bf 100%);
}

/* Movement */
movement {
    display: block;
    color: white;
    margin: 0 auto 1.3rem auto;
    background: linear-gradient(to bottom, #ffeded 0%, #c0c0c0 100%);
    border-radius: 10px;
    padding: 20px 30px 30px 30px;
    text-shadow: 1px 1px 8px #444;
    position: relative;

    width: 100%;
}

movement h1 {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    padding: 0;
    text-transform: uppercase;
    font-size: 1.3em;
    color: white;
    text-align: center;
    margin: 0 0 10px;
}

movement hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0 20px;
}

movement p {
    font-size: 1em;
    line-height: 1.35em;
    color: white !important;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

movement .btnJoinUs {
    width: 100%;
    display: inline-block;
    cursor: pointer;
    padding: 0.5em;
    border: 1px solid gray;
    background: #ffd580;
}

movement .btnJoinUs:disabled {
    color: grey;
}

movement .col-20 {
    width: 20%;
    display: inline-block;
    margin: 0;
    padding: 0;
}

movement .col-30 {
    width: 30%;
    display: inline-block;
    margin: 0;
    padding: 0;
}

movement .col-40 {
    width: 40%;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 0;
}

movement .col-80 {
    width: 75%;
    display: inline-block;
    margin: 0 0px 0 0;
    padding: 0;
}

movement .col-gap {
    margin-right: 3%;
}

/* Side bar Menu */
@media (max-width: 600px) {
    movement .col-gap {
        margin: 0 0 10px 0;
    }

    movement .col-20 {
        width: 100%;
        display: block;
    }

    movement .col-30 {
        width: 100%;
        display: block;
    }

    movement .col-40 {
        width: 100%;
        display: block;
    }

    movement .col-80 {
        width: 100%;
        display: block;
    }
}


.read_more_area {
    display: none;

}

.read_more_link {
    color: blue;
    text-decoration: none;
    display: inline-flex;
}

.read_more_link:hover {
    text-decoration: underline;
}

.read_more_link:visited {
    color: blue;
}

.read_more_link_fillabustsa {
    visibility: hidden
}


button.btnPolicyBack {
    float: right;
    padding: 0.5em;
    margin: 40px 0;
    border: 1px solid black;
    cursor: pointer;
    width: 100px;
    border-radius: 11px;
    background: linear-gradient(to bottom, #ECEDFB 0%, #C6C7FD 100%);
}


.cms-toolbar-item.cms-toolbar-item-buttons .cms-btn[data-rel="modal"] {
    display: none;
}

html.cms-structure-mode-structure .container {
    width: calc(100% - 400px);
}

.hidden {
    display: none;
}

/* Used for img tags */
.align-center {
    margin: 0 auto;
    display: inherit;
}

.about_angle_border {
    position: relative;
    left: calc(50% - 50vw + 8px);
    width: 99vw;
    margin: 0;
    top: -10%;
}

.about_angle_border .about_angle_border0 {
    overflow: hidden;
    padding: 130px 0;
    margin: -90px 0 -110px;
}

.about_angle_border .about_angle_border1 {
    /*background: #68c068;*/
    position: relative;
}

.about_angle_border .about_angle_border2 {
    /*background: #68c068;*/
    position: relative;
}

.about_angle_border1:before {
    content: "";
    position: absolute;
    background: #e1d7b2;
    width: 100%;
    height: 100%;
    top: -50%;
    transform: translateX(5vw) translateX(-50%) rotate(160deg) translateY(-50%) translateX(50%);
}

.about_angle_border2:before {
    content: "";
    position: absolute;
    background: #e1d7b2;
    width: 100%;
    height: 100%;
    top: -50%;
    transform: translateX(-5vw) translateX(50%) translateY(100%) rotate(-30deg) translateY(-50%) translateX(50%);
}

.about_angle_border .about_angle_border3 {
    background: #e1d7b2;
    width: 90%;
    margin: auto;
    position: relative;
}

.about_angle_border .about_angle_border3 * {
    /*margin: 0;*/
}


page {
    display: inline-block;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: #f0f0f0;
    box-shadow: 0 0 10px 1px black;
    border-radius: 20px;
}

page.paper * {
    color: black;
}

page.window * {
    color: white;
}

page textarea, page select, page option {
    color: black !important;
}

page select, page option {
    padding: 0.5em;
    background: #ffffff;
    font-size: 18px;
    margin: 0.4em 0;
}

page option {
    padding: 0.5em;
    background: #ffffff;
    font-size: 18px;
    line-height: 18px;

}

page.window a {
    color: #aaf;
}

page.paper input, page.window input, page.paper button, page.window button {
    color: #333;
    margin: 0.4em 0;
    padding: 0.3em;
}

page.error {
    background: #2b0101 !important;
    margin: 1em 0 1em !important;
    display: none;
}

html.cms-structure-mode-content page.error, html.cms-structure-mode-structure page.error {
    display: block;
    content: 'Placeholder';
}

page.error h1 {
    color: #ff6e00;
    text-align: center;
    margin: 0 !important;
    line-height: 1em;
    text-shadow: 0 0 5px black;
    font-size: 1.5em;
}

.tblLogin {
    width: 100%;
}

.tblLogin tr td:first-child {
    /*width: 200px;*/
    padding-top: 10px;
}

.tblLogin input {
    width: 100%;
}

.tblLogin button {
    float: right;
}

/* Side bar Menu */
@media (max-width: 991px) {
    .tblLogin tbody > tr > td {
        display: block;
    }

    button {
        width: 100%;
    }
}

.divMovement {
    max-width: 600px;
}


footer {
    background: #000;
    height: 200px;
    flex-direction: row;
    flex-wrap: nowrap;
    border-top: 4px solid red;
    position: absolute;
    width: 100%;
    bottom: 0;
}

footer icons {
    justify-content: center;
    display: flex;
}

footer icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 20px;
    color: white;
    font-size: 0.8em;
    text-align: center;
    padding-top: 60px;
}

footer a {
    outline: none;
}

footer a:hover {
    text-decoration: none;

}

footer div {
    color: white;
    text-align: center;
    font-size: 0.8em;
    padding-top: 0.8em;
}

footer small {
    display: block;
}

footer .copyright_symbol_footer {
    font-size: 1.0em;
}

#icon_facebook {
    background: url(/static/img/facebook.png) no-repeat;
    background-size: contain;
}

#icon_twitter {
    background: url(/static/img/Twitter_Logo_Blue.png) no-repeat;
    background-size: contain;
}

#icon_youtube {
    background: url(/static/img/youtube.png) no-repeat;
    background-size: contain;
}


div.fancy_member_icon {
    margin: 40px auto 0;
    width: 240px;
    display: inline-flex;
    background: #080808;
    border-radius: 30px;
    border: 1px solid #444;
    box-shadow: 1px 1px #333;
    padding: 2em;

}

div.fancy_member_icon:hover {

    box-shadow: 0 0 5px 0 white;
    cursor: pointer;
}

div.fancy_member_icon_inner {
    width: 200px;
}

div.fancy_member_icon {
    width: 200px
}

div.fancy_member_icon img {
    margin: auto;
    display: block;
}

div.fancy_member_icon p {
    text-align: center
}


popup {
    display: inline;
    color: #006;
    padding: 0;
    margin: 0;
    cursor: help;
    position: relative;
}

.cms-plugin popup {
    border: 1px solid red;
}

.cke_editable popup_description {
    display: none;
}

popup_description {
    display: none;
    position: absolute;
    left: 0px;
    top: 30px;
    color: white;

    max-width: 400px;
    padding: 1em;
    background: #333;
    background: #333333E0;
    border: 1px solid black;
    width: 400px;
    z-index: 100;
    border-radius: 30px;
}

popup:hover popup_description {
    display: block;
}

.readmore_container {

}

html.cms-structure-mode-structure .read_more_container {
    border: 1px solid red;
    min-height: 2em;
}

html.cms-structure-mode-structure .read_more_container::before {
    position: absolute;
    content: "Read More";
    color: red;
    font-size: 0.6rem;
}

.read_more_split {

}

html.cms-structure-mode-structure .read_more_split {
    border: 1px solid blue;
    height: 1px;
}

html.cms-structure-mode-structure .read_more_split::before {
    position: absolute;
    content: "Read More Split";
    color: blue;
    font-size: 0.6rem;
}

html.cms-structure-mode-structure .read_more_split_visible {
    background: #efe;
    min-height: 10px;
}

html.cms-structure-mode-structure .read_more_split_visible::before {
    position: absolute;
    content: "Read More Split Visible";
    color: blue;
    font-size: 0.6rem;
    z-index: 100;
    background: #fff;
    margin-top: 2em;
}