/*--------------------------------------------------------
    Colours & Fonts
----------------------------------------------------------
Headings and body text:  Nunito Sans Regular
Script: Halimun Font – needs to be purchased for commercial use
Green - #8DC540 (? 93C845 ?)
    
    
--------------------------------------------------------
    Colours & Text
--------------------------------------------------------*/
.white_text {
    color: #FFF;
}

.blue_text {
    color: #4DB4D8;
    margin-bottom: 30px;
}

.green_text {
    color: #8DC540;
}

.darkgreen_text {
    color: #8DC540;
}

.dark_grey {
    color: #545454;
}

.litegrey_text {
    color: #E4E4E4;
}


/*--------------------------------------------------------
    Clear Defaults
--------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 16px;
}

/*--------------------------------------------------------
    Global Styles Elements
--------------------------------------------------------*/
header {
    width: 100%;
    background-color: #4DB4D8;
    color: #FFF;
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 70px;
}

body {
    font: normal 14px Nunito, "helvetica_neue", "Helvetica Neue", Arial, Helvetica, "Lucida Grande", sans-serif;
    font-style: normal;
    line-height: 1.4;
    color: #656565;
}


h2 {
    font-weight: 600;
    color: #656565;
    font-size: 22px;
    margin: 15px 5px;
}

.my_content.full_hgt {
    height: 100vh;
    margin: 0px;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

p {
    padding: 10px 0px;
}

.pge_content {
    margin: auto;
    max-width: 900px; /* the width of the main content on the page*/
}

    .pge_content p.just {
        text-align: justify
    }

/*--------------------------------------------------------
    Fonts
--------------------------------------------------------*/
@font-face {
    font-family: 'Halimun';
    src: url('fonts/Halimun.ttf') format('truetype'), url('fonts/helveticaneueltstd-md-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica_neue';
    src: url('fonts/helveticaneueltstd-th.eot');
    src: url('fonts/helveticaneueltstd-th.eot?#iefix') format('embedded-opentype'), url('fonts/helveticaneueltstd-th.woff') format('woff'), url('fonts/helveticaneueltstd-th.ttf') format('truetype'), url('fonts/helveticaneueltstd-th.svg#helvetica_neue') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica_neue';
    src: url('fonts/helveticaneueltstd-lt-webfont.eot');
    src: url('fonts/helveticaneueltstd-lt-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/helveticaneueltstd-lt-webfont.woff') format('woff'), url('fonts/helveticaneueltstd-lt-webfont.ttf') format('truetype'), url('fonts/helveticaneueltstd-lt-webfont.svg#helvetica_neue') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica_neue';
    src: url('fonts/helveticaneueltstd-roman-webfont.eot');
    src: url('fonts/helveticaneueltstd-roman-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/helveticaneueltstd-roman-webfont.woff') format('woff'), url('fonts/helveticaneueltstd-roman-webfont.ttf') format('truetype'), url('fonts/helveticaneueltstd-roman-webfont.svg#helvetica_neue_lt_std55_roman') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica_neue';
    src: url('fonts/helveticaneueltstd-md-webfont.eot');
    src: url('fonts/helveticaneueltstd-md-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/helveticaneueltstd-md-webfont.woff') format('woff'), url('fonts/helveticaneueltstd-md-webfont.ttf') format('truetype'), url('fonts/helveticaneueltstd-md-webfont.svg#helvetica_neue_lt_std65Md') format('svg');
    font-weight: bold;
    font-style: normal;
}
/*--------------------------------------------------------
    Navigation
--------------------------------------------------------*/
nav {
    font-size: 16px;
    width: 900px;
    margin: auto;
    text-align: center;
    line-height: 70px;
}

    nav ol, header ul {
        list-style: none;
    }


    nav li {
        display: inline;
        font-weight: 600;
        color: #4DB4D8;
    }

        nav li:hover {
            visibility: visible;
        }

        nav li > a, nav li > a:visited {
            display: inline;
            padding: 35px 30px 24px;
            text-decoration: none;
            color: #FFF;
        }

        nav li:hover > a {
            background: #FFF;
            color: #4DB4D8;
        }

            nav li > a.nav-active, nav li:hover > a.nav-active {
                background: #f4f4f4;
                color: #4DB4D8;
                margin-right: -5px;
                margin-left: -5px;
            }

#home_logo {
    background-image: url('../img/e21logo.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: unset;
    padding-left: 130px;
    height: 60px;
}

nav #mobile_button {
    background-image: url('../img/public_res/Banner.png');
    background-position: 95% 5px;
    background-repeat: no-repeat;
    background-size: 85px 40px;
    height: 450px;
    cursor: pointer;
    display: none;
    padding: 10px;
}

    nav #mobile_button .mobile_bar {
        background: #FFFFFF;
        height: 5px;
        margin-bottom: 5px;
        width: 35px;
    }

/*--------------------------------------------------------
    Headers
--------------------------------------------------------*/

.image_strip {
    width: 100%;
    height: 400px;
}

    .image_strip::before {
        position: absolute;
        content: '';
        z-index: -1;
        max-width: 100%;
        height: 400px;
    }

.img_text {
    font: bold 48px Halimun;
    color: #FFF;
    padding-top: 300px;
}

.ban_home {
    background: url("../img/public_res/hom_pge/banner_home.png");
    background-position: 50% 50%;
    background-size: cover;
}

.blue_iPad {
    align-content: flex-end;
    margin-left: auto;
    width: 500px;
    margin-top: -160px;
    margin-right: -120px;
    background: url("../img/public_res/hom_pge/ipad_withss.png") no-repeat;
    background-size: contain;
    /*z-index: 1;
    opacity: 1;
    transform: scale(1, 1);*/ /*translate(0, 0);*/
    /*transition: all 1s;
}

    .blue_iPad.hide {
        opacity: 0;
        transform: scale(0, 0);*/ /*translate(0, -10vh);*/
    /*transition: all 1s;*/
}

.ban_why {
    background: url("../img/public_res/why_us/whyus_banner.png") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.ban_about {
    background: url("../img/public_res/about_us/banner_about.png") no-repeat;
    background-position: 50% 40%;
    background-size: cover;
}

.ban_login {
    background: url("../img/public_res/ban_login.png?v=2") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.ban_contact {
    background: url("../img/public_res/contact_us/office_front.png") no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.contact_map {
    background: url("../img/public_res/contact_us/office_map.png") no-repeat;
    width: 700px;
    height: 350px;
    background-size: contain;
    margin-top: 30px;
}

.contact_txt p {
    padding: 4px 0px;
    margin: 0px
}

.ban_res {
    overflow: hidden;
    display: block;
    height: 400px;
}

.ban_cvs {
    background-color: #C8C7C7;
    margin-bottom: 40px;
}

    .ban_cvs img {
        padding: 40px 0px;
    }

    .ban_cvs .words {
        padding: 30px 20px 40px 40px;
        text-align: left;
    }

    .ban_cvs .name {
        color: #FFF;
        font: bold 30px Halimun;
        text-align: left;
        padding: 20px 0px 40px 0px;
    }

    .ban_cvs .cv {
        color: #636363;
        text-align: justify
    }

.cv b {
    font-weight: 600;
}

.cv i {
    display: block;
    font-style: italic;
    font-weight: 500;
    padding: 4px 0px 2px;
}
/*--------------------------------------------------------
    Specific Elements
--------------------------------------------------------*/

.flex_container {
    display: flex;
    justify-content: space-between;
}

.flex_vertical {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

    .flex_vertical p {
        padding: 0px;
    }

        .flex_vertical p:nth-of-type(3) {
            margin-top: 25px;
            padding: 4px;
        }


.flex_strips_nar {
    width: 25%;
    margin: auto;
}

.flex_strips_wid {
    width: 600px;
}


.spotlight {
    float: right;
    margin-top: -1081px;
}



.green_arrow {
    background: url("../img/public_res/hom_pge/arrow.png") no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    background-size: contain;
    margin: 40px auto;
}

.blue_band {
    background-color: #4DB4D8;
    margin-bottom: 40px;
    top: 0px;
    /*position: sticky;*/
    z-index: 1;
}

.blue_band_text {
    font-size: 28px;
    padding: 20px 0px;
    color: #FFF;
    /*  opacity: 1;
    transform: scale(1, 1);
    transition: all 1s;
}

    .blue_band_text.hide {
        opacity: 0;
        transform: scale(1, .70);
        transition: all 1s;*/
}

#dvSpotlight {
    background-color: #4DB4D8;
    margin-bottom: 0px;
    padding-bottom: 20px;
}

    #dvSpotlight > .pge_content {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #dvSpotlight .side_fancy {
        margin-top: 30px;
        margin-bottom: 30px;
    }


.grey_band {
    background-color: #E4E4E4;
    padding-top: 50px;
}

.grey_boxes {
    background-color: #c8c7c7;
}

.side_std {
    font-size: 28px;
    font-weight: 700;
    text-align: center
}

.side_fancy {
    font: bold 36px Halimun;
    text-align: center;
    line-height: 30px;
    padding-bottom: 10px;
}

.head_fancy {
    font: bold 30px Halimun;
    text-align: left;
    padding: 10px 0px 20px 4px;
}

.green_focus {
    margin: 20px 0px 30px;
    ;
}

    .green_focus p {
        padding: 4px 0px;
        line-height: 1.2;
    }

.lists li {
    background: url("../img/public_res/hom_pge/leaf_sm.png") no-repeat transparent;
    padding: 5px 0px 0px 50px;
}


/*--------------------------------------------------------
    Home Page
--------------------------------------------------------*/

#side_bar {
    margin-top: 130px;
}

#top_overview {
    margin-top: 40px;
}

.leaves {
    padding: 5px 0px 0px 50px;
    margin: 10px 20px;
    height: 20px;
    width: 20px;
    background: url("../img/public_res/hom_pge/leaf_sm.png") no-repeat transparent;
    background-size: contain;
}

#dvfit {
    background-color: #E4E4E4;
    padding: 80px 0px;
}

    #dvfit p {
        padding: 0px;
    }


.fit {
    background: url("../img/public_res/hom_pge/where_we_fit.png") no-repeat transparent;
    height: 400px;
    margin: 80px 0 0 40px;
    background-size: contain;
}

/*--------------------------------------------------------
    CIRCLES
--------------------------------------------------------*/

.circles, .circles_last {
    display: inline-flex;
    align-content: center;
    align-items: center;
    text-align: center;
    background-color: #8DC540;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    margin-top: 60px;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    margin-right: 20px;
    transition: ease-in-out 1s;
    cursor: zoom-in;
    padding: 4px;
    transform: scale(0, 0);
    opacity: 0;
}

    .circles:hover, .circles_last:hover {
        height: 212px;
        width: 212px;
        transition: ease-in-out 1s;
    }

    .circles.reveal, .circles_last.reveal {
        transform: scale(1, 1);
        opacity: 1;
        transition: all 3s;
    }

.circles_last {
    margin-right: 0px;
}

/*--------------------------------------------------------
    Why Us Page
--------------------------------------------------------*/
.whyusIntro {
    font-weight: 500;
}

.whyusGrid {
    margin: 20px auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.whyusBox {
    width: 205px;
    height: 180px;
    border-radius: 8px;
    background-color: #a7a7a7;
    margin: 10px;
    color: white;
    opacity: 0;
    transform: scale(0,0);
    transition: all 2s;
}

    .whyusBox.visible {
        opacity: 1;
        transform: scale(1, 1);
        transition: all 2s;
    }

    .whyusBox ul {
        padding-left: 35px;
        padding-right: 10px;
    }

        .whyusBox ul li {
            list-style-type: disc;
            color: white;
            font-size: 14px;
            font-weight: 400;
            padding: 3px 4px;
            line-height: 16px;
        }

.whyusHeading {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 16px 4px;
}

/*--------------------------------------------------------
    Resources Page
--------------------------------------------------------*/
video {
    object-fit: contain;
    display: inline;
    vertical-align: baseline;
}


@media screen and (max-width: 1250px ) {
}

.res_vid {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.res_pge {
    background-color: #E4E4E4;
    margin-top: -40px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-bottom: 100px;
}

.res_grey_left {
    background-color: #545454;
    width: 800px;
    height: 260px;
    color: #FFF;
    margin-top: 100px;
    margin-left: 0px;
}

.res_grey_pad_left {
    background-color: #545454;
    width: 120%;
    margin-left: -100%;
    margin-top: -260px;
    height: 260px;
}

.res_grey_band {
    background-color: #545454;
    width: 100%;
    height: 260px;
    color: #FFF;
    margin: 100px 0px 60px 0px;
}

.res_back_pad_right {
    background-color: #E4E4E4;
    width: 150%;
    margin-left: -100%;
    margin-top: -321px;
    height: 262px;
}

.res_grey_right {
    width: 800px;
    height: 260px;
    color: #FFF;
    /* margin: 0px;
    Added for narrower*/
    background-color: #545454;
    margin-top: 100px;
    margin-left: 100px;
}

.res_grey_pad_right {
    background-color: #545454;
    width: 800px;
    height: 260px;
    margin-top: -260px;
    margin-left: 100px;
}

.res_heading {
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.res_body {
    text-align: center
}

    .res_body p {
        margin: 0px;
        padding: 0px;
    }

.res_text_left {
    width: 30%;
    padding: 0px 10px;
    margin-right: 30px;
}

.res_text_right {
    width: 30%;
    padding: 0px 10px;
    margin-left: 30px
}

/*---------------------------------------------
    SLIDESHOW
---------------------------------------------*/

.res_images_left, .res_images_right {
    position: relative;
    margin-top: -20px;
}

    .res_images_left img, .res_images_right img {
        position: absolute;
        top: 0;
        height: 300px !important;
        max-width: 450px !important;
    }

    .res_images_right img {
        right: 40px; /* was 0*/
    }

.res_images_left {
    margin-left: 40px;
}



@-webkit-keyframes fade {
    0%, 17% {
        opacity: 1;
    }


    25%, 92% {
        opacity: 0;
    }


    100% {
        opacity: 1;
    }
}

@keyframes fade {
    0%, 17% {
        opacity: 1;
    }


    25%, 92% {
        opacity: 0;
    }


    100% {
        opacity: 1;
    }
}

@keyframes fade4 {
    0% {
        opacity: 0;
    }

    8%, 25% {
        opacity: 1;
    }

    33%, 100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade4 {
    0% {
        opacity: 0;
    }

    8%, 25% {
        opacity: 1;
    }

    33%, 100% {
        opacity: 0;
    }
}

.res_show4 img {
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
    -webkit-animation-name: fade4;
    -webkit-animation-iteration-count: infinite;
    animation-name: fade4;
    animation-iteration-count: infinite;
}

.res_show6 img {
    -webkit-animation-duration: 24s;
    animation-duration: 24s;
    -webkit-animation-name: fade;
    -webkit-animation-iteration-count: infinite;
    animation-name: fade;
    animation-iteration-count: infinite;
}


    .res_show6 img:nth-of-type(5), .res_show4 img:nth-of-type(3) {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
    }

    .res_show6 img:nth-of-type(4), .res_show4 img:nth-of-type(2) {
        -webkit-animation-delay: 8s;
        animation-delay: 8s;
    }

    .res_show6 img:nth-of-type(3), .res_show4 img:nth-of-type(1) {
        -webkit-animation-delay: 12s;
        animation-delay: 12s;
    }

    .res_show6 img:nth-of-type(2) {
        -webkit-animation-delay: 16s;
        animation-delay: 16s;
    }

    .res_show6 img:nth-of-type(1) {
        -webkit-animation-delay: 20s;
        animation-delay: 20s;
    }


/*--------------------------------------------------------
    FADING TEXT
--------------------------------------------------------*/


.tag {
    opacity: 0;
    transform: translate(0, 10vh);
    transition: all 2s;
}

    .tag.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

.fade_in_text {
    animation: fadeIn 2s;
    -webkit-animation: fadeIn linear 2s;
    -moz-animation: fadeIn linear 2s;
    -o-animation: fadeIn linear 2s;
    -ms-animation: fadeIn linear 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------
    Log In Form
--------------------------------------------------------*/
#dvLogin > * > a, a, #dvRecoverPassword > * > a {
    color: #A3CC4E;
    text-decoration: none;
}

#login_form {
    margin: auto;
    margin-top: -200px;
    margin-bottom: 40px;
    width: 500px;
    background-color: #e3e3e3;
    border-radius: 10px;
    z-index: 2;
    text-align: center
}

.loginHeader {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    padding: 10px 0px 20px 4px;
}

#login_form .frm_field {
    height: 40px;
    margin: 10px 00px;
}

.frm_field > .dxeTextBoxSys {
    border-radius: 5px;
}


#login_form label,
#login_form input[type="text"].data-entered,
#login_form input[type="text"]:focus,
#login_form input[type="password"].data-entered,
#login_form input[type="password"]:focus {
    color: #333333;
}

#login_form input[type="text"],
#login_form input[type="password"],
#dvVerifyCode input[type="text"] {
    border-color: #E7E7E7;
    border-radius: 5px;
    font-size: 18px;
    height: 100%;
    line-height: 38px;
    max-width: none;
    padding: 0;
    text-align: center;
    width: 400px;
}

#login_form input[type='submit'] {
    display: block;
    margin: 0 auto 30px;
    padding: 5px 30px;
}

#login_form label {
    border: none;
    border-left: 1px solid #E7E7E7;
    border-right: 1px solid #E7E7E7;
    color: #B1B1B1;
    height: 100%;
    line-height: 38px;
    padding: 0;
    width: 400px;
    ;
}

#login_form .frm_checkbox {
    clear: both;
    display: block;
    margin: 20px 0;
}

    #login_form .frm_checkbox label {
        background: none;
        border: none;
        height: auto;
        position: relative;
        width: auto;
    }

.loginButton {
    width: 100%;
    margin: auto;
}

.login_retrieve {
    margin-bottom: 40px;
}

@media screen and (max-width: 500px) {
    #login_form {
        width: 90%;
    }
}
/*---------------------------------------------
            BUTTONS
---------------------------------------------*/

.button {
    background: #A3CC4E;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 6px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 27px;
    /* margin: 20px auto; */
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-color: #A3CC4E;
}

    .button:hover {
        background: #FFFFFF;
        color: #A3CC4E;
        border-color: #FFF;
    }

/*--------------------------------------------------------
    FOOTER
--------------------------------------------------------*/

footer {
    background: #545454;
    color: #FFF;
    margin: auto auto 0px auto;
    padding: 20px 0px 20px 0px;
    font-size: 11pt;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 22px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

    .footer-links a {
        color: #FFF;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }


/*--------------------------------------------------------
    Pop Up Controls
--------------------------------------------------------*/


.dxpcLite .dxpc-header, .dxdpLite .dxpc-header,
.dxpc-header, dxpc-withBtn {
    background: #FFFFFF;
    border-top: 5px Solid #00AFD8 !important;
    border-bottom: 2px Solid #000 !important;
    margin-bottom: 4px;
    padding: 5px 2px 8px 15px;
}

.dxpc-headerText {
    font-size: 24px;
    font-weight: 600;
    color: #9DC44D;
}

.dxWeb_pcCloseButton {
    background: none !important;
}

.dxpc-closeBtn {
    float: right;
    background-image: url('../img/Dark/close.png');
    height: 29px;
    width: 44px;
}

    .dxpc-closeBtn:hover {
        background-image: url('../img/Dark/close_hover.png');
    }

.dxpc-contentWrapper {
    border-width: 0px !important;
}

    .dxpc-contentWrapper .button {
        margin: 0px;
    }

.dxpc-content {
    background-color: #FFF;
    font-size: 14px;
    line-height: 16px;
}

    .dxpc-content p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 20px;
    }

    .dxpc-content h1, .dxpc-content h2, .dxpc-content h3, .dxpc-content h4 {
        color: #00AFD8;
    }


    .dxpc-content ul {
        list-style: disc outside;
        margin: 15px;
        padding-left: 20px;
    }

    .dxpc-content li {
        padding-bottom: 5px;
        font-size: 12px;
    }

    .dxpc-content b {
        font-weight: bold
    }

.ReadOnly {
    border-style: none;
    color: #FF9933;
}
