/* ============================================================================ *
        Structural Styles
    ---------------------------------------------------------------------------
        These are the styles which build the main site layout
        (headers, footers, body, etc.).

        If you are attempting to add styling for any elements placed inside of a 
        Wordpress Editor, use 'editor-content.css' stylesheet.
*/

/* ================ CSS Starts =====================

-----------------------------------------------------------
Base CSS
-----------------------------------------------------------*/

body {
    background-color: #ffffff;
    color: #6d6d6d;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 24px;
}
a {
    color: #1db158;
    text-decoration:none;
}
a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    color: #6d6d6d;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.4em;
}



/*-----------------------------------------------------------
Heading 1 CSS
-----------------------------------------------------------*/
h1,
h1#page-title,
.editor-content h1 {
    color: #0079c2;
    font-size: 30px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 15px;
}

/*-----------------------------------------------------------
Heading 2 CSS
-----------------------------------------------------------*/
h2,
.brg-post > h2{
    color: #0079c2;
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
    padding: 0;
}

h2 a,
.brg-post > h2 a {
    color: #0079c2;
    text-decoration: none;
}

h2 a:hover,
.brg-post > h2 a:hover {
    text-decoration: underline;
}

/*-----------------------------------------------------------
Heading 3 CSS
-----------------------------------------------------------*/
h3,
.brg-post > h3,
h3.brg-element-title {
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

h3 a,
.brg-post > h3 a,
h3.brg-element-title a{
    color: #000000;
}

h3 a:hover,
.brg-post > h3 a:hover,
h3.brg-element-title a:hover{}

/*-----------------------------------------------------------
Heading 4 CSS
-----------------------------------------------------------*/
h4, 
.brg-post > h4 {
    color: #0079c2;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

h4 a, 
.brg-post > h4 a {
    color: #243b77;
}

/*-----------------------------------------------------------
Top Alert Message Section CSS
-----------------------------------------------------------*/
#top-alert-message-wrapper {
    background: #fff1d0;
    color: #000;
    padding: 15px 0;
    font-size: 18px;
}

#top-alert-message .alert-content{
    color: #000;
    font-size: 18px;
}

/*-----------------------------------------------------------
Header Top Section CSS
-----------------------------------------------------------*/
#header-top-wrapper{
    background: #11a54c;
}

#header-top{}

#header-top ul{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

#header-top ul li {
    display: inline-block;
    padding: 5px 10px;
}

#header-top ul em{
    font-family: 'Droid Serif', serif;
    font-style: italic;
}

#header-top ul li a{
    color: #fff;
}
#header-top ul li a:hover{}

@media only screen and (max-width : 500px) {
    #header-top ul{
        text-align: center;
    }
}

/*-----------------------------------------------------------
Header CSS
-----------------------------------------------------------*/
#header-wrapper{}

#header{
    padding: 5px 0;
}

#header-cell-1 .logo{
    padding: 8px 0 5px;
}

#header-cell-1,
#header-cell-2,
#header-cell-3 {
    vertical-align: middle;
}


@media only screen and (max-width : 1220px) {
    #header-cell-2 {
        width: 100%;
        padding: 15px 0;
    }
}

@media only screen and (max-width : 850px) {
    #header-wrapper #header-cell-1 {
        text-align: center;
    }
}



/* ======================================== *
        Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {
    background-color: #0079c2;
    /*padding-top: 10px;*/
    /*z-index: 10;*/
}

#primary-nav-container {
    text-align: center;
}

#primary-nav {
    padding: 5px 0;
}

#primary-nav .menu {}

#primary-nav .menu > li {
    border-right: 1px solid #fff;
    display: inline-block;
    float: none;
    padding: 0 30px;
}

#primary-nav .menu > li.last {
    /*margin-left: 40px;*/
    border: none;
}

#primary-nav .menu > .menu-item > a {

    font-size: 15px;
    font-weight: 700;
    padding: 5px 0;
    color: #ffffff;
    text-decoration: none;
}

#primary-nav .menu > li.menu-item-has-children > a:after {
    content: " ";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

#primary-nav .menu > li.last a {
    border: 0;
}

#primary-nav .menu > .menu-item a:hover {}

#primary-nav .menu > .menu-item:hover > a {
    color: #ffffff;
}

#primary-nav .menu > li.menu-item-has-children:hover > a:after {
    content: " ";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ade8fc;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

/*#primary-nav .menu > li.menu-item-has-children:hover > a:after {
    border-top: 4px solid #fff;
}*/

#primary-nav .menu > .menu-item:hover > a {}

#primary-nav .menu .sub-menu {
    background-color: #fff;
    min-width: 280px;
    max-width: 100%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#primary-nav .menu .sub-menu .menu-item > a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 30px;
}

#primary-nav .menu .sub-menu .menu-item:hover > a {
    background-color: #ffffff;
    text-decoration: none;
    color: #0079C2;
}

#primary-nav .menu-bar {
    color: #fff;
    font-size: 15px;
    padding: 0;
    /*background-color: #fff;*/
}

#primary-nav .menu-bar:before {
    background: none;
    content: "\f0c9";
    display: inline-block;
    font-family: fontawesome;
}

#primary-nav .menu li > div > ul > li {
    border-bottom: 1px solid #ade8fc;
}
#primary-nav .menu li > div > ul > li.last {
    border-bottom: medium none;
}

@media screen and (max-width: 1200px) {
    #primary-nav-container {
        border-left: none;
        border-right: none;
    }
}

@media screen and (max-width: 1000px) {
    #primary-nav-container {
        border-left: none;
        border-right: none;
    }

    #primary-nav .menu > .menu-item > a {
        padding: 10px;
    }

    #primary-nav .menu > .menu-item {
        /*border-top: 1px solid #ade8fc;*/
        border-bottom: 1px solid #ade8fc;
    }

    #primary-nav .menu > .menu-item.first {
        border-top: none;
    }

    #primary-nav .menu > .menu-item.last {
        border-bottom: none;
    }

    #primary-nav .menu-bar {
        display: block;
    }

    #primary-nav .menu {
        display: none;
    }

    #primary-nav .menu li {
        display: block;
        /*width: 100%;*/
        text-align: center;
    }

    #primary-nav .menu > .menu-item a:hover {
        text-decoration: none;
    }

    #primary-nav .menu .sub-menu {
        position: relative;
        background: #ffffff;
    }

    #footer #primary-nav {
        display: none;
    }

    #primary-nav .menu > .menu-item {
        border-left: none;
        border-right: none;
    }

    #footer #primary-nav .menu > .menu-item {
        border-left: none;
        border-right: none;
    }
}

/*Header Top Right Section*/
.header-right-top {
    text-align: right;
    padding-top: 8px;
}

.resource-search-button, .search-form {
    display: inline-block;
}

.resource-search-button .brg-button {
    background: #0079c2 none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #0079c2 0%, #036dad 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0079c2), color-stop(100%,#036dad));
    background: -webkit-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: -o-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: -ms-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: linear-gradient(to bottom,  #0079c2 0%,#036dad 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0079c2', endColorstr='#036dad',GradientType=0 );
    font-size: 15px;
}

.resource-search-button .brg-button:hover {
    background: #036dad none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #036dad 0%, #0079c2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#036dad), color-stop(100%,#0079c2));
    background: -webkit-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -o-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -ms-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: linear-gradient(to bottom,  #036dad 0%,#0079c2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036dad', endColorstr='#0079c2',GradientType=0 );
}

.header-right-top > h4 {
    color: #5d7483;
    display: inline-block;
    font-size: 16px;
    padding: 0 5px;
}

.search-form {
    float: none;
    padding-bottom: 15px;
    position: relative;
    width: 250px;
}
.search-form span {
    color: #1db158;
    font-size: 16px;
}
.search-form input[type="search"] {
    border: 1px solid #d6d6d6;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 40px 4px 35px;
    width: 225px;
}
.search-form button[type="submit"] {
    background: none;
    border: medium none;
    color: #ff0;
    cursor: pointer;
    /*left: 3px;*/
    position: absolute;
    right: 190px;
    top: 4px;
}
.search-form i {
    font-size: 15px;
}

@media only screen and (max-width : 1200px) {

}

@media only screen and (max-width : 850px) {
    .header-right-top {
        text-align: center;
        margin-bottom: 25px;
    }
    .search-form {
        float: none;
        padding-bottom: 10px;
        margin: 0 auto
    }
    .search-form button[type="submit"] {
        left: 15px;
        position: absolute;
        right: inherit;
        top: 4px;
    }

    #header .row.collapse-850 > #header-cell-2 {
        padding-top: 10px;
    }
}

@media only screen and (max-width : 570px) {
    .header-right-top {
        margin-bottom: 10px;
    }
    .resource-search-button, .search-form {
        display: block;
    }

    .header-right-top > h4 {
        display: block;
        padding-bottom: 10px;
    }
}


/*-----------------------------------------------------------
Mega Menu Menu CSS
-----------------------------------------------------------*/
#mega-menu-wrapper {
    background: #0079c2 none repeat scroll 0 0;
}

#mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    border-bottom: 2px solid #0d99f6;
}

#mega-menu #mega-menu-wrap-primary #mega-menu-primary {
    padding: 0;
}

#mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0 45px;
}

#mega-menu #mega-menu-wrap-primary{
    background: none;
}

#mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
}

#mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.green-bold-menu-text > a.mega-menu-link {
    color: #1db158 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

#mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    border-bottom: 1px dotted #ccc;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-menu-item-5562 > ul.mega-sub-menu {
    width: 600px;
}

@media only screen and (max-width : 1200px) {
    #mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
        padding: 0 36px;
    }
}

@media only screen and (max-width : 1100px) {
    #mega-menu #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
        padding: 0 31px;
    }
}

/*-----------------------------------------------------------
Seccondary Menu CSS
-----------------------------------------------------------*/
#secondary-nav {
    /*padding: 35px 0;*/
}
#secondary-nav .menu {
    display: block;
    /*float: right;*/
}

/*#secondary-nav .menu > li {
    display: block;
    float: left;
    padding: 10px 10px;
}*/

#secondary-nav .menu > li {
    display: inline-block;
    float: none;
    padding: 10px 10px;
}

#secondary-nav .menu > li.last {
    margin-left: 10px;
}
#secondary-nav .menu > .menu-item > a {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    margin: 10px 0;
    padding: 0;
    text-decoration: none;
}

#secondary-nav .menu > li.menu-item-has-children > a:after {
    content: "";
    font-family: fontawesome;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

#secondary-nav .menu > .menu-item.brg-download-button > a {
    color: #ffffff;
}

#secondary-nav .menu > .menu-item.brg-download-button:hover > a {
    color: #fff;
}

#secondary-nav .menu > li.last a {
    border: 0;
}

#secondary-nav .menu > .menu-item a:hover {}

#secondary-nav .menu > .menu-item:hover > a {
    color: #000;
}

#secondary-nav .menu > li.menu-item-has-children:hover > a:after {
    color: #ade8fc;
}

#secondary-nav .menu .sub-menu {
    background-color: #ffffff;
    list-style: outside none none;
    max-width: 100%;
    min-width: 200px;
    position: absolute;
    z-index: 99;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#secondary-nav .menu .sub-menu .menu-item > a {
    display: block;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    /*text-transform: uppercase;*/
    padding: 10px 30px;
}

#secondary-nav .menu .sub-menu .menu-item:hover > a {
    background-color: #ffffff;
    color: #0079C2;
    text-decoration: none;
}

#secondary-nav .menu-bar {
    color: #fff;
    font-size: 18px;
    padding: 0;
    background-color: #fff;
}

#secondary-nav .menu li > div > ul > li.last {
    border-bottom: 1px solid #ade8fc;
}
#secondary-nav .menu li > div > ul > li.last {
    border-bottom: medium none;
}

html.no-touch #secondary-nav .menu > li:hover > div > ul,
html.no-touch #secondary-nav .menu > div > ul:hover {
    display: block;
}

.brg-download-button {
    background: #0079C2;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 20px !important;
    position: relative;
    text-decoration: none !important;
}

.brg-download-button:hover {
    background: #2D699D;
}
/*.brg-download-button:after {
    color: #ffffff;
    content: "";
    font-family: fontawesome;
    font-size: 14px;
    position: absolute;
    right: 16px;
    top: 10px;
}*/

@media only screen and (max-width : 1220px) {
    #secondary-nav{
        text-align: center;
    }

    #secondary-nav .menu > li {
        padding: 10px;
    }
    #secondary-nav .menu > li.last {
        margin-left: 27px;
    }
}

@media only screen and (max-width : 950px) {
    #secondary-nav .menu > li.last {
        margin-left: 0px;
    }
}

@media only screen and (max-width : 850px) {
    #secondary-nav {
        padding: 0 0 10px;
        text-align: center;
    }
    #secondary-nav .menu {
        display: inline-block;
        float: none;
    }

    #secondary-nav .menu > li {
        display: inline-block;
        float: none;
        padding: 10px 18px;
    }
    #secondary-nav .menu .sub-menu .menu-item > a {
        font-size: 14px;
        text-align: left;
    }
}

@media only screen and (max-width : 750px) {
    #secondary-nav {
        padding: 0 0 30px;
        text-align: center;
    }
    #secondary-nav .menu > li {
        padding: 10px;
    }
    #secondary-nav .menu > li.last {
        margin-left: 0;
    }
    #secondary-nav .menu > .menu-item > a {
        font-size: 14px;
    }
    #secondary-nav .menu .sub-menu {
        min-width: 160px;
    }
    #secondary-nav .menu .sub-menu .menu-item > a {
        font-size: 14px;
        padding: 5px 15px;
        text-align: left;
    }
}

@media only screen and (max-width : 465px) {
    #header-cell-2 {
        display: none;
    }
}

/*-----------------------------------------------------------
Billboard CSS
-----------------------------------------------------------*/
#billboard-wrapper{
    background: rgba(0, 0, 0, 0) url('../images/banner-bg.png') no-repeat center center / cover ;
    height:500px; 
    width: 100%;
    text-align: center;
}
#billboard{}
#billboard h1 {
    color: #0079c2;
    font-size: 66px !important;
    font-weight: 900;
    line-height: 72px;
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 0;
}

.billboard-buttons-wrapper {
    max-width:  900px;
    margin: 0 auto;
}

#billboard h2 {
    color: #343434;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
    padding: 0;
    text-shadow: 2px 2px #fff;
    text-transform: uppercase;
}

#billboard a {
    background: #1fb25a;
    background: -moz-linear-gradient(top,  #1fb25a 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1fb25a), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -o-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -ms-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: linear-gradient(to bottom,  #1fb25a 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1fb25a', endColorstr='#079b42',GradientType=0 );
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    margin: 0 12px 15px;
    max-width: 260px;
    padding: 10px 30px;
    width: 100%;
}
#billboard a:hover {
    background: #079b42;
    background: -moz-linear-gradient(top,  #079b42 0%, #1fb25a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#1fb25a));
    background: -webkit-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -o-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -ms-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: linear-gradient(to bottom,  #079b42 0%,#1fb25a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#1fb25a',GradientType=0 );
    text-decoration: none !important;
}

#billboard .elementor-button-wrapper a {
    padding: 15px 30px;
}

@media only screen and (max-width : 1050px) {
    #billboard-wrapper{
        height:600px;
    }
}
@media only screen and (max-width : 780px) {
    #billboard h1 {
        font-size: 60px !important;
        line-height: 60px !important;
    }
}

@media only screen and (max-width : 750px) {
    #billboard h1 {
        font-size: 36px !important;
        line-height: 36px !important;
    }
    #billboard h2 {
        font-size: 25px;
        line-height: normal;
    }
    #billboard a {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width : 450px) {
    #billboard-wrapper{
        height:650px;
    }
    #billboard h1 {
        font-size: 30px !important;
        line-height: 30px !important;
    }

   #billboard a {
        max-width: 180px;
    }
}

@media only screen and (max-width : 350px) {
    #billboard-wrapper{
        height:700px;
    }
        #billboard h1 {
        font-size: 25px !important;
        line-height: 26px !important;
    }
   #billboard a {
        max-width: 170px;
    }
}


/* ======================================== *
        Home Page Elementor CSS
 * ======================================== */
#homepage-wrapper{
    /*background: url('https://ateec.org/wp-content/themes/ateec/assets/images/bahher-bg.png') no-repeat top center / cover;*/
}
#homepage-container{
    max-width: 100%;
}
#homepage{}


/* ======================================== *
        Body Section
 * ======================================== */
#body-wrapper{
    background: #ffffff;
}

#body,
#left-menu-page,
#centered-page,
#full-width-page{
    padding: 45px 0;
}

#body-cell-2,
#left-menu-page-cell-2,
#centered-page-cell-2{
    box-shadow: -10px 0 8px -10px #ccc;
}

#body-cell-2 .brg-element, 
#body-cell-3 .brg-element {
    margin-bottom: 35px;
}

#body-cell-2 .brg-element:last-child, 
#body-cell-3 .brg-element:last-child {
    margin-bottom: 0;
}

#body-cell-1 img.sidebar-image {
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    margin-right: 15px;
    margin-top: 7px;
    padding: 5px;
}


/*-----------------------------------------------------------
Home Title CSS
-----------------------------------------------------------*/
#home-services-area h3,
#home-features-area h3,
#home-interactive-area h3,
#home-news-area h3 {
    color: #0079c2;
    font-size: 50px;
    font-weight: 900;
    line-height: normal;
    margin: 0;
    padding: 0 0 70px;
    text-align: center;
    text-transform: uppercase;
/*     margin-top: -85px; */
    margin-top: -15px;
}

#home-services-area h3:before,
#home-features-area h3:before,
#home-interactive-area h3:before,
#home-news-area h3:before  {
    background-color: #0079c2;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 80px;
    width: 90px;
}

@media screen and (max-width: 750px) {
    #home-services-area h3,
    #home-features-area h3,
    #home-interactive-area h3,
    #home-news-area h3 {
        font-size: 28px;
    }
}




/*-----------------------------------------------------------
Home Service CSS
-----------------------------------------------------------*/
#home-services-area {
    padding: 100px 0 70px !important;
    text-align: center;
}

#home-services-area h4 {
    color: #8ea3b0;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

#home-services-area h2 {
    color: #0079c2;
    font-size: 30px;
    font-weight: 900;
    line-height: normal;
    margin: 0;
    padding: 0 0 15px;
    text-transform: uppercase;
}

.home-services-box{}
.home-single-services{
    display: inline-block;
    margin: 0 15px;
    max-width: 350px;
    position: relative;
    vertical-align: top;
}

#home-services-area img {
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    /*margin-right: 15px;*/
    margin-top: 7px;
    padding: 5px;
}

#home-services-area img:hover {
    box-shadow: 0 0 10px rgba(65, 121, 195, 0.9);
}

#home-services-area p {
    color: #5d7483;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    padding: 0 0 15px;
}
#home-services-area ul{
    margin: 0;
    padding: 0;
}
#home-services-area ul li {
    list-style: outside none none;
    padding: 10px 0;
}
#home-services-area ul li a {
    color: #1db158;
    font-size: 16px;
    text-decoration: underline;
}
#home-services-area ul li a:hover{
    list-style: none;
}

@media screen and (max-width: 450px) {
    .home-single-services img {
        padding: 1px;
    }
}


/*-----------------------------------------------------------
Home Featured CSS
-----------------------------------------------------------*/
#home-features-area {
    padding: 30px 0 100px;
    text-align: center;
}

.home-features-box{}
.home-single-features{
    display: inline-block;
    margin: 0 15px;
    max-width: 525px;
    vertical-align: top;
}

#home-features-area img {
    border: 1px solid #ccc;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    /*margin-right: 15px;*/
    margin-top: 7px;
    padding: 5px;
}

#home-features-area img:hover {
    box-shadow: 0 0 10px rgba(65, 121, 195, 0.9);
}

#home-features-area h2 {
    color: #0079c2;
    font-size: 30px;
    font-weight: 900;
    line-height: normal;
    margin: 0;
    padding: 36px 0 15px;
    text-transform: uppercase;
}
#home-features-area p {
    color: #5d7483;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    padding: 0 35px 15px;
}

@media screen and (max-width: 450px) {
    #home-features-area-cell-1 img,
    #home-features-area-cell-2 img {
        padding: 1px;
    }
}

@media screen and (max-width: 400px) {
    #home-features-area h2 {
        font-size: 25px;
    }
}


/*-----------------------------------------------------------
Home Interactive CSS
-----------------------------------------------------------*/
#home-interactive-area{
    padding: 30px 0 100px;
    text-align: center;
}

#home-interactive-area img {
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 5px 14px;
    max-width: 340px;
    padding: 5px;
    vertical-align: middle;
}

#home-interactive-area img:hover {
    box-shadow: 0 0 10px rgba(65, 121, 195, 0.9);
}

#home-interactive-area .interactive-button{
    border: 3px solid #0079c2;
    color: #0079c2;
    display: inline-block;
    font-size: 25px;
    font-weight: 900;
    margin: 50px 0 0;
    padding: 15px 30px;
    text-transform: uppercase;
}
#home-interactive-area .interactive-button:hover{
    border: 3px solid #0079c2;
    background-color: #0079c2;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 450px) {
    #home-interactive-area img {
        max-width: none;
        width: 100%;
        height: auto;
        margin: 10px 0;
        padding: 1px;
    }
}


/*-----------------------------------------------------------
Home News CSS
-----------------------------------------------------------*/
#home-news-area{
    padding: 30px 0 100px;
}
#home-news-area-cell-1 .inner{
    padding: 0;
}
#home-news-area .brg-post-list.small{
    text-align: center;
}

.home-new-button a{
    border: 3px solid #0079c2;
    color: #0079c2;
    display: inline-block;
    font-size: 25px;
    font-weight: 900;
    margin: 50px 0 0;
    padding: 15px 30px;
    text-transform: uppercase;
}
.home-new-button a:hover{
    border: 3px solid #0079c2;
    background-color: #0079c2;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 750px) {
    #home-news-area-cell-1 .brg-post-list.small {
        text-align: left;
    }
}


/*-----------------------------------------------------------
Left Menu Page CSS
-----------------------------------------------------------*/

/*#left-menu-page-container{
    max-width: 1000px;
}*/

#left-menu-page-cell-2 .editor-content{
    padding-right: 110px;
}

#left-menu-page h1 {
    color: #0079c2;
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
}

#left-menu-page p {
    color: #6d6d6d;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

#left-menu-page ol, 
#left-menu-page .editor-content ul, 
#left-menu-page .editor-content ol {
    color: #6d6d6d;
    font-size: 14px;
    margin: 15px 0;
    padding-left: 40px;
}

#left-menu-page hr {
    background-color: #e6e6e6;
    border: 0 none;
    height: 1px;
    margin-bottom: 20px;
}

.left-menu-sidebar {
    margin: 50px 0 0;
}

.left-menu-sidebar .sub-page-heading {
    font-size: 14px;
    font-weight: 900;
}

.left-menu-sidebar .sub-page-heading a{
    color: #0079c2;
}

.left-menu-sidebar ul {
    list-style: outside none none;
    padding: 0;
}

/*.left-menu-sidebar ul li {
    display: block;
    height: 46px;
    line-height: 21px;
    padding-left: 12px;
    width: 300px;
}*/

.left-menu-sidebar ul li {
    display: block;
    line-height: 20px;
    margin: 10px 0;
    padding: 10px;
    max-width: 250px;
}

.left-menu-sidebar ul li a {
    color: #1db158;
    display: block;
    font-size: 13px;
    font-weight: 400;
    max-width: 240px;
}

/*.left-menu-sidebar ul li.left-menu-active {
    background: #f0f0f0;
    background: -moz-linear-gradient(top,  #f0f0f0 0%, #d8d8d8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#d8d8d8));
    background: -webkit-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
    background: -o-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
    background: -ms-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
    background: linear-gradient(to bottom,  #f0f0f0 0%,#d8d8d8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#d8d8d8',GradientType=0 );
    border-radius: 5px;
    border-bottom: 1px solid #bcbcbc;
}*/

.left-menu-active {
    position: relative;
    background: #f0f0f0;
    /*    background: -moz-linear-gradient(top,  #f0f0f0 0%, #d8d8d8 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#d8d8d8));
        background: -webkit-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
        background: -o-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
        background: -ms-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
        background: linear-gradient(to bottom,  #f0f0f0 0%,#d8d8d8 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#d8d8d8',GradientType=0 );*/
    border-radius: 5px 0 0 5px;
    border-bottom: 1px solid #d8d8d8;
}
.left-menu-active:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #f0f0f0;
    border-width: 21px;
    margin-top: -20px;
}


.left-menu-sidebar ul li a:hover{}


@media screen and (max-width: 1200px) {
    #left-menu-page-cell-2 .editor-content{
        padding-right: 20px;
    }
}


@media screen and (max-width: 850px) {
    #left-menu-page-cell-2 .editor-content{
        padding-right: 0px;
    }
}


@media screen and (max-width: 750px) {   
    #left-menu-page-cell-1{
        display: none;
    }
}


/* ======================================== *
        Inputs & Buttons
 * ======================================== */
.brg-form input[type=text],
.brg-form textarea {
    padding: 12px !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #9c9c9c;
    font-size: 16px;
    max-width: 100%;
    border: 1px solid #ececec;
    background: #fff;
}

.brg-form input[type=text]:focus,
.brg-form textarea:focus {
    border: 1px solid #09acdf;
    background: #fff;
}

.brg-button, 
.page-numbers {
    background: #1fb25a;
    background: -moz-linear-gradient(top,  #1fb25a 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1fb25a), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -o-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -ms-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: linear-gradient(to bottom,  #1fb25a 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1fb25a', endColorstr='#079b42',GradientType=0 );
    border-radius: 5px;
    /*border: 2px solid #ffffff;*/
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);*/
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 30px;
    position: relative;
    text-align: center;
    text-decoration: none !important;
}
.page-numbers {
    border-radius: 5px;
}

.brg-form input[type="submit"] {
    background: #1fb25a;
    background: -moz-linear-gradient(top,  #1fb25a 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1fb25a), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -o-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -ms-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: linear-gradient(to bottom,  #1fb25a 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1fb25a', endColorstr='#079b42',GradientType=0 );
    border-radius: 5px;
    /*border: 2px solid #ffffff;*/
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);*/
    padding: 10px 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
}

.brg-form input[type="submit"]:hover {
    background: #079b42;
    background: -moz-linear-gradient(top,  #079b42 0%, #1fb25a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#1fb25a));
    background: -webkit-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -o-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -ms-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: linear-gradient(to bottom,  #079b42 0%,#1fb25a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#1fb25a',GradientType=0 );
}

.brg-button:hover,
.page-numbers:hover {
    background: #079b42;
    background: -moz-linear-gradient(top,  #079b42 0%, #1fb25a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#1fb25a));
    background: -webkit-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -o-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -ms-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: linear-gradient(to bottom,  #079b42 0%,#1fb25a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#1fb25a',GradientType=0 );
    text-decoration: none !important;
}

.brg-button:active,
.page-numbers:active {
    text-decoration: none;
}

.brg-button.large {
    font-size: 1.1em;
    padding: 7px 25px;
}

.brg-button.medium {
    font-size: .95em;
    padding: 5px 25px;
}

.brg-button.small {
    font-size: .85em;
    padding: 3px 15px;
}

.brg-button.tiny {
    font-size: .75em;
    padding: 2px 7px;
}

.page-numbers.current {
    background: #f0f0f0;
    background: -moz-linear-gradient(top,  #f0f0f0 0%, #d8d8d8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#d8d8d8));
    background: -webkit-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
    background: -o-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
    background: -ms-linear-gradient(top,  #f0f0f0 0%,#d8d8d8 100%);
    background: linear-gradient(to bottom,  #f0f0f0 0%,#d8d8d8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#d8d8d8',GradientType=0 );
    border: 1px solid #ddd;
    color: #1db158;

}

.gform_wrapper ul.gform_fields {
    padding-left: 0 !important;
}

.gform_wrapper ul#input_1_4{
    padding-left: 0 !important;
}

/*-----------------------------------------------------------
Breadcrumbs CSS
-----------------------------------------------------------*/
#breadcrumbs {
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    margin: 0 0 25px;
    text-transform: uppercase;
}

#breadcrumbs a {
    color: #00991a;
    text-decoration: none;
}
#breadcrumbs a:hover {
    text-decoration: none;
}
#breadcrumbs > span.delimiter {
    color: #00991a;
    font-weight: 700;
    margin: 0 5px;
}

/*-----------------------------------------------------------
Search Page CSS
-----------------------------------------------------------*/
.search-page-search-form {
    float: none;
    padding-bottom: 15px;
    position: relative;
    width: 300px;
    margin: 0 auto;
}
.search-page-search-form span {
    color: #1db158;
    font-size: 18px;
}
.search-page-search-form input[type="search"] {
    border: 1px solid #d6d6d6;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 40px 10px 35px;
    width: 100%;
}
.search-page-search-form button[type="submit"] {
    background: none;
    border: medium none;
    color: #ff0;
    cursor: pointer;
    /*left: 3px;*/
    position: absolute;
    right: 265px;
    top: 11px;
}
.search-page-search-form i {
    font-size: 15px;
}

.resource-search-link {
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;

}
.resource-search-link example {
    margin-top: 40px;
    font-size: 200px;
    font-weight: bold;

}.resource-search-link-example {
    margin-top: 40px;
    font-size: 200px;
    font-weight: bold;

}


/*-----------------------------------------------------------
Ateec Newsletter CSS
-----------------------------------------------------------*/
.ateec-download-newsletter {
    border: 2px dashed #a9a9a9;
    margin-top: 25px;
    padding: 25px 0;
    text-align: center;
}

.ateec-download-newsletter h2 {
    color: #000;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 30px;
}

.ateec-download-newsletter .brg-button{
    background: #ff0000;
    background: -moz-linear-gradient(top,  #ff0000 0%, #d90000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#d90000));
    background: -webkit-linear-gradient(top,  #ff0000 0%,#d90000 100%);
    background: -o-linear-gradient(top,  #ff0000 0%,#d90000 100%);
    background: -ms-linear-gradient(top,  #ff0000 0%,#d90000 100%);
    background: linear-gradient(to bottom,  #ff0000 0%,#d90000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#d90000',GradientType=0 );
    padding: 0px 30px;
    margin-top: 25px;
}

.ateec-download-newsletter .brg-button:hover{
    background: #d90000;
    background: -moz-linear-gradient(top,  #d90000 0%, #ff0000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d90000), color-stop(100%,#ff0000));
    background: -webkit-linear-gradient(top,  #d90000 0%,#ff0000 100%);
    background: -o-linear-gradient(top,  #d90000 0%,#ff0000 100%);
    background: -ms-linear-gradient(top,  #d90000 0%,#ff0000 100%);
    background: linear-gradient(to bottom,  #d90000 0%,#ff0000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d90000', endColorstr='#ff0000',GradientType=0 );
}

.ateec-download-newsletter h3 {
    color: #000;
    font-weight: 600;
    font-size: 1.8em;
    line-height: 2em;
    margin: -20px;
}

.ateec-download-newsletter h4 a {
    color: #1db158;
    display: block;
    font-size: 24px;
    margin-top: 10px;
}


/*-----------------------------------------------------------
Toolkit Page CSS
-----------------------------------------------------------*/
#toolkit-page-wrapper{}

#toolkit-page{
    padding: 45px 0;
}

.brg-post.page.toolkit-large{}

.brg-post.page.toolkit-large img.primary {
    float: right;
    margin-left: 25px;
    margin-top: -40px;
    max-width: 250px;
}

.brg-post.page.toolkit-large #page-content {
    max-width: 650px;
}

#toolkit-page-bottom-wrapper{}
#toolkit-page-bottom{
    text-align: center;
    padding: 45px 0;
}

.toolkit-bottom-single-box {
    display: inline-block;
    margin: 0 25px 50px;
    max-width: 330px;
    text-align: center;
    vertical-align: top;
}

.toolkit-bottom-single-box img {
    max-width: 200px !important;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    padding: 5px;
    margin-top: 0;
}

.toolkit-bottom-single-box img:hover {
    box-shadow: 0 0 10px rgba(65, 121, 195, 0.9);
}

.toolkit-bottom-single-box > h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.toolkit-bottom-single-box > h4 a{
    color: #0079c2;
}

@media screen and (max-width: 850px) {   
    .brg-post.page.toolkit-large img.primary {
        float: none;
        margin-left: 0;
        max-width: 100%;
        margin-top: 0;
    }

    .brg-post.page.toolkit-large #page-content {
        max-width: 100%;
    }
}


/*-----------------------------------------------------------
Impact Page CSS
-----------------------------------------------------------*/
#impact-page-wrapper{}

#impact-page{
    padding: 45px 0;
}

.brg-post.page.impact-large{}

.brg-post.page.impact-large img.primary {
    float: right;
    margin-left: 25px;
    margin-top: -40px;
    max-width: 250px;
}

.brg-post.page.impact-large #page-content {
    max-width: 650px;
}

#impact-page-bottom-wrapper{}
#impact-page-bottom{
    text-align: center;
    padding: 45px 0;
}

.impact-bottom-single-box {
    display: inline-block;
    margin: 0 25px 50px;
    max-width: 330px;
    text-align: center;
    vertical-align: top;
}

.impact-bottom-single-box > img {
    max-width: 200px !important;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    padding: 5px;
    margin-top: 0;
}

.impact-bottom-single-box img:hover {
    box-shadow: 0 0 10px rgba(65, 121, 195, 0.9);
}

.impact-bottom-single-box > h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.impact-bottom-single-box > h4 a{
    color: #0079c2;
}

@media screen and (max-width: 850px) {   
    .brg-post.page.impact-large img.primary {
        float: none;
        margin-left: 0;
        max-width: 100%;
        margin-top: 0;
    }

    .brg-post.page.impact-large #page-content {
        max-width: 100%;
    }
}


/*-----------------------------------------------------------
Webinar Page CSS
-----------------------------------------------------------*/
#webinar-page-wrapper{}

#webinar-page{
    padding: 45px 0;
}

.brg-post.page.webinar-large{}

.brg-post.page.webinar-large img.primary {
    float: right;
    margin-left: 25px;
    margin-top: -40px;
    max-width: 250px;
}

.brg-post.page.webinar-large #page-content {
    max-width: 650px;
}

#webinar-page-bottom-wrapper{}
#webinar-page-bottom{
    text-align: center;
    padding: 45px 0;
}

.webinar-bottom-single-box {
    display: inline-block;
    margin: 0 25px 50px;
    max-width: 330px;
    text-align: center;
    vertical-align: top;
}

.webinar-bottom-single-box > img {
    max-width: 200px !important;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    padding: 5px;
    margin-top: 0;
}

.webinar-bottom-single-box img:hover {
    box-shadow: 0 0 10px rgba(65, 121, 195, 0.9);
}

.webinar-bottom-single-box > h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.webinar-bottom-single-box > h4 a{
    color: #0079c2;
}

@media screen and (max-width: 850px) {   
    .brg-post.page.webinar-large img.primary {
        float: none;
        margin-left: 0;
        max-width: 100%;
        margin-top: 0;
    }

    .brg-post.page.webinar-large #page-content {
        max-width: 100%;
    }
}

/*-----------------------------------------------------------
Archive Pages CSS
-----------------------------------------------------------*/
.post-type-archive-news #body {
    padding: 45px 0;
}

.post-type-archive-news #body .inner{
    padding: 0;
}

.post-type-archive-news #breadcrumbs {
    padding: 0 25px;
}


.post-type-archive-post #body {
    padding: 45px 175px;
}

.category #body {
    padding: 45px 175px;
}

.page-id-669 #full-width-page {
    padding: 45px 175px;
}

@media screen and (max-width: 1050px) {   
    .post-type-archive-news #body {
        padding: 45px 0;
    }    

    .post-type-archive-post #body {
        padding: 45px 25px;
    }    

    .category #body {
        padding: 45px 25px;
    }

    .page-id-669 #full-width-page {
        padding: 45px 25px;
    }
}

@media screen and (max-width: 750px) {   
    .post-type-archive-news #body {
        padding: 45px 0px;
    } 

    .post-type-archive-post #body {
        padding: 45px 0px;
    }   

    .category #body {
        padding: 45px 0px;
    }

    .page-id-669 #full-width-page {
        padding: 45px 0px;
    }
}

@media screen and (max-width: 450px) {   
    .post-type-archive-news #breadcrumbs {
        padding: 0 12px;
    }
}


/*-----------------------------------------------------------
Ateec Download Page CSS
-----------------------------------------------------------*/
.page-id-5418 #body {
    padding: 45px 0;
}

.page-id-5418 #body .inner{
    padding: 0;
}

.page-id-5418 h1#page-title {
    padding: 0 25px;
    margin-bottom: 25px;
}

.page-id-5418 #breadcrumbs {
    padding: 0 25px;
}

@media screen and (max-width: 450px) {   
    .page-id-5418 h1#page-title {
        padding: 0 12px;
    }
    
    .page-id-5418 #breadcrumbs {
        padding: 0 12px;
    }
}


/*-----------------------------------------------------------
Job Page Footer Top Section CSS
-----------------------------------------------------------*/
#job-footer-top-wrapper {
    padding: 10px 0 30px;
}

#job-footer-top h3.brg-element-title {
    color: #333333;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

#job-footer-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#job-footer-top ul li{}

#job-footer-top ul li a{
    color: #0066cc;
}


/*-----------------------------------------------------------
Footer CSS
-----------------------------------------------------------*/
#footer-wrapper {
    background: #0079c2 none repeat scroll 0 0;
    padding: 40px 0 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;

}
#footer-wrapper h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 0 0 15px;
    text-transform: uppercase;
}
#footer-wrapper h6 {
    border-top: 2px solid #ffffff;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}
#footer-wrapper h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}
#footer-wrapper a {
    color: #fff;
}
#footer-wrapper a:hover {
    text-decoration: underline;
}

#footer-wrapper ul {
    margin-left: 10px;
    padding: 0;
}

#footer-wrapper ul li {
    color: #1db158;
    line-height: 24px;
    list-style: outside none disc;
}

#footer-wrapper ul li a {
    color: #fff;
    font-size: 14px;
}

#footer-wrapper  ul li a:hover{
    text-decoration: underline;
}

.footer-copyright {
    background: #02446c;
    height: 30px;
}


/*-----------------------------------------------------------
Resourse Search and Dowload area CSS
-----------------------------------------------------------*/
#resource-search-page-container {
    background: #f4f4f4;
}

#resource-search-page {
    padding: 50px 50px 100px;
}

#resource-search-page-cell-2 {
    vertical-align: middle;
    text-align: center;
}

#resource-search-page h1#page-title {
    color: #53534a;
    font-size: 35px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#resource-search-page h1#page-title::before {
    background: #1db158;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50px;
    width: 90px;
}

#resource-search-page .editor-content h1 {
    color: #0079c2;
    font-size: 35px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}

#resource-search-page .editor-content p {
    color: #53534a;
    font-size: 16px;
}

@media screen and (max-width: 850px) {   
    #resource-search-page {
        padding: 50px 0px 100px;
    }

    #resource-search-page-cell-2 {
        text-align: left;
    }

}

@media screen and (max-width: 750px) {   
    #resource-search-page h1#page-title::before {
        background-color: transparent;
        height: 0px;
        top: 00px;
        width: 00px;
    }
}

/*-----------------------------------------------------------
Resourse Search Field CSS
-----------------------------------------------------------*/
#resource-search-area-cell-1 {
    /*background: #1db158 none repeat scroll 0 0;*/
    background: #6A6A6A none repeat scroll 0 0;
    padding: 35px 0 !important;
    vertical-align: middle;
}

.resourse-search-form {
    /*margin: 0 auto;*/
    max-width: 260px;
    position: relative;
}

#resource-search-area h4.resource-search-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

#resource-search-area h4.resource-search-title::before {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 35px;
    width: 60px;
}

.resourse-search-form input[type="search"] {
    border: 1px solid #d6d6d6;
    color: #000;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    height: 30px;
    padding: 5px 25px 5px 10px;
    width: 260px;
    margin-bottom: 15px;
    /*width: 220px;*/
    text-align: left;
}

.resourse-search-form span {
    color: #ccc;
    font-size: 15px;
    margin-top: 7px;
    position: absolute;
    right: 6px;
    /*right: 45px;*/
    z-index: 999;
}

.resourse-search-form input[type="submit"]{
    background: #0079c2 none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #0079c2 0%, #036dad 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0079c2), color-stop(100%,#036dad));
    background: -webkit-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: -o-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: -ms-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: linear-gradient(to bottom,  #0079c2 0%,#036dad 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0079c2', endColorstr='#036dad',GradientType=0 );
    border: 1px solid #0079c2;
    cursor: pointer;
    margin-left: 5px;
    /* padding: 5px 4px 4px; */
    height: 30px;
    position: absolute;
    color: #fff;
}

.resourse-search-form input[type="submit"]:hover {
    background: #036dad none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #036dad 0%, #0079c2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#036dad), color-stop(100%,#0079c2));
    background: -webkit-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -o-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -ms-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: linear-gradient(to bottom,  #036dad 0%,#0079c2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036dad', endColorstr='#0079c2',GradientType=0 );
}

/*Resourse Advance Search CSS*/
#resource-search-area-cell-2 {
    background: #6a6a6a none repeat scroll 0 0;
    padding: 10px 0 !important;
}

.resource-advance-search {
    margin: 0 auto;
    /*max-width: 465px;*/
}

#resource-search-area h4.resource-ad-search-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

#resource-search-area h4.resource-ad-search-title::before {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    left: 25px;
    position: absolute;
    top: 35px;
    width: 60px;
}

.resourse-advancesearch-form .search-box {
    display: inline-block;
    max-width: 300px;
    vertical-align: top;
}

.resourse-advancesearch-form .search-field {
    padding-bottom: 5px;
}

.search-field-select {
    border: 1px solid #ccc;
    width: 260px;
    font-size: 16px;
    border-radius: 3px;
    overflow: hidden;
    /*background: #fafafa url("https://ateec.org/wp-content/themes/ateec/assets/images/ad_search_arrow.png") no-repeat 90% 50%;*/
    background: #ffffff;
    margin-bottom: 15px;
}

.search-field-select select {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    box-shadow: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 8px;
    width: 100%;
}

.search-field-select select:focus {
    outline: none;
}

.resourse-advancesearch-form input[type="submit"],
.resourse-advancesearch-form input[type="reset"]{
    background: #0079c2 none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #0079c2 0%, #036dad 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0079c2), color-stop(100%,#036dad));
    background: -webkit-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: -o-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: -ms-linear-gradient(top,  #0079c2 0%,#036dad 100%);
    background: linear-gradient(to bottom,  #0079c2 0%,#036dad 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0079c2', endColorstr='#036dad',GradientType=0 );
    border: medium none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
}

.resourse-advancesearch-form input[type="submit"]:hover,
.resourse-advancesearch-form input[type="reset"]:hover {
    background: #036dad none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #036dad 0%, #0079c2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#036dad), color-stop(100%,#0079c2));
    background: -webkit-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -o-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -ms-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: linear-gradient(to bottom,  #036dad 0%,#0079c2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036dad', endColorstr='#0079c2',GradientType=0 );
}

.resourse-advancesearch-form input[type="reset"],
.resourse-advancesearch-form input[type="reset"]:hover {
    background: #D81313;
}

.resourse-advancesearch-form input[type="submit"] {
    margin-left: 15px;
}

.search-field-sub-ad{
    margin-left: 100px;
}


@media screen and (max-width: 630px) {
    .resourse-advancesearch-form .search-box {
        display: block;
        max-width: none;
        vertical-align: top;
    }
    .search-field-sub-ad{
        margin-top: 15px;
        margin-left: 0px;
    }
}





/*-----------------------------------------------------------
Resourse Search Content area CSS
-----------------------------------------------------------*/
#resource-search-content-area-wrapper{
    margin-top: 25px;
    margin-bottom: 50px;
}
#resource-search-content-area-cell-1 {}

#resource-search-content-area-cell-1 .inner{
    padding: 0;
}

.resource-search-content-area-head {
    border: 1px solid #ccc;
    text-align: center;
    padding: 20px 0;
}

.resource-search-content-area-head h2{
    font-weight: 800;
}

.resource-search-content-area-head p {
    font-size: 20px;
}

.resource-search-content-area-mid {
    padding: 25px 0;
    text-align: center;
}

/*.resource-search-content-area-mid p {
    font-size: 20px;
    line-height: 34px;
}*/

.resource-search-content-area-mid table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}

.resource-search-content-area-mid th {
    background: #0079c2 none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}
.resource-search-content-area-mid td {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 15px;
    vertical-align: middle;
}

.resource-search-content-area-mid td:first-child {
    text-align: left;
}

/*.page-template-supplemental-search tr:nth-child(even){background-color: #f2f2f2}*/

.resource-search-content-area-mid .resource-search-content h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.resource-search-content-area-mid .resource-search-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.resource-search-content-area-mid .resource-search-content h4 {
    color: #6d6d6d;
    font-size: 16px;
    font-style: italic;
}

.resource-search-content-area-mid .resource-search-content a {
    color: #0079c2;
    font-size: 16px;
}

.resource-search-content-area-mid .focus-area{
    font-weight: 600;
}

.resource-search-content-area-mid .formate{
    font-weight: 600;
}

.resource-search-content-area-mid .age-group{
    font-weight: 600;
}

.resource-search-content-area-mid .last-updated {
    background: #808080 none repeat scroll 0 0;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    margin: auto;
    padding: 0 0 1px;
    width: 55px;
}

.resource-search-content-area-mid .supporting-focus-area a{
    color: #0079c2;
    font-weight: 600;
}

/* ======================================== *
        Page Navigation
 * ======================================== */
.resource-search-content-area-mid-pagi {
    border: 1px solid #ccc;
    margin: 25px 0 0;
    padding: 20px;
}
.resource-search-content-area-mid .page-navigation {
    background: #f5f5f5 none repeat scroll 0 0;
    border: 1px solid #ccc;
    margin: 0;
    text-align: left;
}

.resource-search-content-area-mid .page-navigation .last {
    display: none;
}

.resource-search-content-area-mid .page-navigation a, 
.resource-search-content-area-mid .page-navigation span {
    display: inline-block;
    font-size: 0.95em;
    height: 35px;
    line-height: 36px;
    margin-bottom: 0;
    padding: 0 15px;
    text-align: center;
    vertical-align: middle;
}

.resource-search-content-area-mid .page-navigation .page-numbers {
    width: 35px;
    padding: 0;
}


.resource-search-content-area-mid .page-navigation .page-numbers.next,
.resource-search-content-area-mid .page-navigation .page-numbers.prev {
    width: auto;
    padding: 0 15px;
}

.resource-search-content-area-mid .page-navigation .label {
    margin-right: 35px;
}

.resource-search-content-area-mid .page-navigation .container {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    line-height: 0;
    margin-right: 0;
    padding: 10px;
}

.resource-search-content-area-mid .page-numbers {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    color: #434343;
    padding: 5px 12px;
}

.resource-search-content-area-mid .page-numbers:hover {
    background: #0079c2 none repeat scroll 0 0;
    border: 1px solid #0079c2;
    color: #fff;
}

.resource-search-content-area-mid .page-numbers.current {
    background: #0079c2 none repeat scroll 0 0;
    border: 1px solid #0079c2;
    color: #fff;
}

@media screen and (max-width: 950px) {   
    .resource-search-content-area-mid .search-result-table{
        overflow-x: auto;
    }
}

/*-----------------------------------------------------------
Resourse Search Result CSS
-----------------------------------------------------------*/
#resource-search-result .inner{
    padding: 0;
}

#resource-search-result-cell-1 {
    padding-bottom: 50px;
}

.search-result-heading {
    border: 1px solid #cccccc;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 25px;
    text-align: center;
}

.search-result-heading h2{
    font-weight: 800;
}
.search-result-heading span{
    color: #ccc;
}

#resource-search-result table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}

#resource-search-result th {
    background: #0079c2 none repeat scroll 0 0;
    border: 1px solid #e5e5e5;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}
#resource-search-result td {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 15px;
    vertical-align: middle;
}

#resource-search-result td:first-child {
    text-align: left;
}

/*.page-template-supplemental-search tr:nth-child(even){background-color: #f2f2f2}*/

#resource-search-result .resource-search-content h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

#resource-search-result .resource-search-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

#resource-search-result .resource-search-content h4 {
    color: #6d6d6d;
    font-size: 16px;
    font-style: italic;
}

#resource-search-result .resource-search-content a {
    color: #0079c2;
    font-size: 16px;
}

#resource-search-result .focus-area{
    font-weight: 600;
}

#resource-search-result .formate{
    font-weight: 600;
}

#resource-search-result .age-group{
    font-weight: 600;
}

#resource-search-result .last-updated {
    background: #808080 none repeat scroll 0 0;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    margin: auto;
    padding: 0 0 1px;
    width: 55px;
}

#resource-search-result .supporting-focus-area a{
    color: #0079c2;
    font-weight: 600;
}


/*-----------------------------------------------------------
Resourse Search Pagination CSS
-----------------------------------------------------------*/
#resource-search-result .navigation.pagination {
    border: 1px solid #ccc;
    margin: 25px 0 0;
    padding: 20px;
}

#resource-search-result .nav-links {
    background: #f5f5f5 none repeat scroll 0 0;
    border: 1px solid #ccc;
    padding: 10px;
}

#resource-search-result .page-numbers {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    color: #434343;
    padding: 5px 12px;
}

#resource-search-result .page-numbers:hover {
    background: #0079C2 none repeat scroll 0 0;
    color: #fff;
    border: 1px solid #0079C2;
}

#resource-search-result .page-numbers.current {
    background: #0079C2 none repeat scroll 0 0;
    color: #fff;
    border: 1px solid #0079C2;
}

@media screen and (max-width: 950px) {   
    #resource-search-result .search-result-table{
        overflow-x: auto;
    }
}


/*#divfix {
  background: blue none repeat scroll 0 0;
  padding: 10px;
  position: fixed;
  right: -50px;
  top: 300px;
  -ms-transform: rotate(-90deg); 
    -webkit-transform: rotate(-90deg); 
  transform: rotate(-90deg);
  z-index: 3000;
}*/



/* ======================================== *
    Pop Up Layouts
 * ======================================== */
.side-form {
    background: #0079C2 none repeat scroll 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    color: #fff;
    border: 2px solid #fff;
    font-size: 18px;
    padding: 10px 20px;
    position: fixed;
    right: -77px;
    top: 237px;
    -ms-transform: rotate(-90deg); 
    -webkit-transform: rotate(-90deg); 
    transform: rotate(-90deg);
    /*z-index: 3000;*/
    z-index: 99;
    border-bottom: none;
}

.side-form a{
    color: #fff;
    text-decoration: none;
}

#popup-form {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.9);*/
    background-color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);    
    opacity: 0;
    visibility: hidden;
}

#popup-form{
    overflow-y: auto;
}

#popup-form.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
    z-index: 106;
    display: block;
    visibility: visible;
}

.brg-element-area.brg-single-element-area.brg-element-area-popup-form {
    margin: 0 auto;
    max-width: 380px;
    padding-top: 70px;
}

.brg-element-area.brg-single-element-area.brg-element-area-popup-form h3{
    text-align: left;
    color: #000;
}

#popup-form .brg-element {
    border: 1px solid #c3c3c3;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#popup-form .gform_wrapper {
    margin: 0;
}

#popup-form .gform_wrapper.brg-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
#popup-form .gform_wrapper.brg-form_wrapper input[type=text],
#popup-form .gform_wrapper.brg-form_wrapper textarea {
    margin: 0;
}

#popup-form .gform_wrapper.brg-form_wrapper ul li.gfield {
    margin-bottom: 15px;
}

#popup-form .gform_wrapper.brg-form_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}

#popup-form .gform_wrapper.brg-form_wrapper .top_label .gfield_label {
    /*margin-bottom: 15px;*/
    color: #000;
}

#popup-form .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
#popup-form .gform_wrapper.brg-form_wrapper ul.gform_fields textarea {
    font-size: 14px;
    color: #45484d;
    padding: 8px 10px !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    max-width: 100%;
    border: 1px solid #c3c3c3;
    position: relative;
    top: 50%;
    max-width: 320px;
    margin: 0 auto;

}

#popup-form .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
    height: 120px;
}

#popup-form .gform_wrapper.brg-form_wrapper .gform_footer{
    text-align: right;
}

#popup-form .gform_wrapper.brg-form_wrapper .gform_footer input.button,
#popup-form .gform_wrapper.brg-form_wrapper input[type=submit] {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #3584bc;
    background-image: url(https://ateec.org/wp-content/themes/ateec/assets/ie-gradient.php?from=3584bc&to=3077a9);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3584bc), to(#3077a9));
    background-image: -webkit-linear-gradient(#3584bc, #3077a9);
    background-image: -moz-linear-gradient(#3584bc, #3077a9);
    background-image: -ms-linear-gradient(#3584bc, #3077a9);
    background-image: -o-linear-gradient(#3584bc, #3077a9);
    background-image: linear-gradient(#3584bc, #3077a9);
    font-size: 18px;
    font-family: "Lato",sans-serif;
    font-weight: 400;
    border: none;
    padding: 10px 15px;
    width: 150px;
    color: #fff;
    margin: 0;
}

#popup-form .gform_wrapper.brg-form_wrapper .gform_footer input.button:hover,
#popup-form .gform_wrapper.brg-form_wrapper input[type=submit]:hover {
    background-color: #3077a9;
    background-image: url(https://ateec.org/wp-content/themes/ateec/assets/ie-gradient.php?from=3077a9&to=3584bc);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3584bc), to(#3584bc));
    background-image: -webkit-linear-gradient(#3077a9, #3584bc);
    background-image: -moz-linear-gradient(#3077a9, #3584bc);
    background-image: -ms-linear-gradient(#3077a9, #3584bc);
    background-image: -o-linear-gradient(#3077a9, #3584bc);
    background-image: linear-gradient(#3077a9, #3584bc);
}
#popup-form .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #000;
}

#popup-form .close:hover{
    color: #000;
    cursor: pointer;
}


@media screen and (max-width: 400px) {
    .brg-element-area.brg-single-element-area.brg-element-area-popup-form {
        max-width: 280px;
    }
}


/* ======================================== *
    Teachers Page
 * ======================================== */
#teachers-page-wrapper{}
#teachers-page{}

.teachers-hero-area{
    background: rgba(0, 0, 0, 0) url("../images/for-hero-img.png") no-repeat scroll center center / cover ;
    height: 440px;
    text-align: center;
    margin-top: 10px;
}

.teachers-hero-area-caption{
    padding: 170px 0;
}

.teachers-hero-area h1{
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    text-shadow: -1px 1px 2px #222;
}

.teachers-hero-area h6{
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-shadow: -1px 1px 2px #222;
}

@media screen and (max-width: 750px) {
    .teachers-hero-area-caption{
        padding: 130px 25px;
    }
    .teachers-hero-area h1{
        line-height: normal;
    }
}

@media screen and (max-width: 450px) {
    .teachers-hero-area h1{
        font-size: 30px;
    }
}

/* ======================================== *
    Students Page
 * ======================================== */
#students-page-wrapper{}
#students-page{}

.students-hero-area{
    background: rgba(0, 0, 0, 0) url("../images/for-hero-img.png") no-repeat scroll center center / cover ;
    height: 440px;
    text-align: center;
    margin-top: 10px;
}

.students-hero-area-caption{
    padding: 170px 0;
}

.students-hero-area h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    text-shadow: -1px 1px 2px #222;
}

.students-hero-area h6 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-shadow: -1px 1px 2px #222;
}

@media screen and (max-width: 750px) {
    .students-hero-area-caption{
        padding: 130px 25px;
    }
    .students-hero-area h1{
        line-height: normal;
    }
}

@media screen and (max-width: 450px) {
    .students-hero-area h1{
        font-size: 30px;
    }
}

/* ======================================== *
    Business & Industry Page
 * ======================================== */
#business-page-wrapper{}
#business-page{}

.business-hero-area{
    background: rgba(0, 0, 0, 0) url("../images/for-hero-img.png") no-repeat scroll center center / cover ;
    height: 440px;
    text-align: center;
    margin-top: 10px;
}

.business-hero-area-caption {
    padding: 170px 0;
}

.business-hero-area h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    text-shadow: -1px 1px 2px #222;
}

.business-hero-area h6 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-shadow: -1px 1px 2px #222;
}

@media screen and (max-width: 750px) {
    .business-hero-area-caption {
        padding: 130px 25px;
    }
    .business-hero-area h1 {
        line-height: normal;
    }
}

@media screen and (max-width: 450px) {
    .business-hero-area h1 {
        font-size: 30px;
    }
}

/* ======================================== *
    Tab & Tab Content CSS
 * ======================================== */
ul.tabs {
    background: #f4f4f4;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
}
ul.tabs li {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
}

ul.tabs li.current{
    color: #0079C2;
}

ul.tabs li.current::before {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 18px;
    margin-left: 35px;
    margin-top: 4px;
}

@media screen and (max-width: 400px) {
    ul.tabs li {
        font-size: 14px;
    }
    /*    ul.tabs {
            text-align: left;
        }
        ul.tabs li {
            display: block;
        }
        ul.tabs li.current::before {
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255, 255, 255, 0);
            border-left-color: #fff;
            border-width: 18px;
            margin-top: -5px;
            margin-left: -20px;
        }*/
}

.tab-content{
    display: none;
    background: #fff;
    padding: 15px;
}

.tab-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.tab-content p {
    font-size: 18px;
    line-height: 32px;
}

.tab-content.current{
    display: inherit;
}

.tab-content-title{
    padding: 50px 0;
    text-align: center;
}
.tab-content-title h2 {
    color: #000;
    font-size: 36px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 15px;
}
.tab-content-title h6 {
    color: #999;
    font-size: 18px;
}

#tab-content-section-1-cell-1,
#tab-content-section-1-cell-2 {
    vertical-align: middle;
}

#tab-content-section-2-row {
    padding: 100px 0 0;
}

#tab-content-section-3-row {
    padding: 100px 0 0;
}

#tab-content-section-4-row {
    padding: 100px 0 0;
}

.tab-content-testimonial {
    background: #e7f1f2 none repeat scroll 0 0;
    border-radius: 6px;
    font-size: 1.1em;
    font-style: italic;
    line-height: 1.75;
    padding: 1.5em 2.5em;
    margin: 2em;
}

.tab-content-testimonial-desc {
    float: right;
    padding-right: 1em;
    padding-top: 0;
    position: relative;
    font-size: 16px;
}

.tab-content-testimonial-desc::after {
    border-color: #e7f1f2 transparent;
    border-style: solid;
    border-width: 1em 1em 0;
    content: "";
    left: 2em;
    position: absolute;
    top: -32px;
}

.tab-content-testimonial-person-name{
    font-weight: 700;
}

@media screen and (max-width: 500px) {
    .tab-content-testimonial {
        margin: 0;
    }
    .tab-content-testimonial-desc {
        padding-top: 20px;
    }
    .tab-content-testimonial-desc::after {
        top: 0;
    }
}

#tab-content-section-5-row {
    padding: 100px 0 0;
}

.tab-content ul {
    list-style: outside none none;
    margin-top: 1em;
    padding: 0;
}

.tab-content li {
    line-height: 1.5em;
    margin-bottom: 1em;
    padding-left: 1.625em;
    position: relative;
    font-size: 18px;
}

.tab-content li::before {
    color: #8cc63e;
    content: "";
    font-family: fontawesome;
    left: 0;
    position: absolute;
    top: -5px;
}

/* ======================================== *
    Tab & Tab Content Gravity Form CSS
 * ======================================== */

/*#tab-content-form-row div.ginput_container_name span {
    display: block !important;
    vertical-align: top;
}
#tab-content-form-row div.ginput_complex.ginput_container.gf_name_has_2 span {
    width: 100%;
}*/
#tab-content-form-row{
    padding: 100px 0;
}
#tab-content-form-cell-1 {
    background: #f5f5f5 none repeat scroll 0 0;
    display: block;
    margin: 0 auto;
    max-width: 900px;
    padding: 80px 50px 50px !important;
}

#tab-content-form-cell-1 h2{
    color: #000;
    font-size: 36px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 15px;
    text-align: center;
}
#tab-content-form-cell-1 h6 {
    color: #0096b2;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    text-align: center;
}

#tab-content-form-row .gform_wrapper {
    margin: 50px 0 0;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
#tab-content-form-row .gform_wrapper.brg-form_wrapper input[type=text],
#tab-content-form-row .gform_wrapper.brg-form_wrapper textarea {
    margin: 0;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper ul li.gfield {
    margin-bottom: 15px;
}

/*#tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}*/

#tab-content-form-row div.ginput_container_name span{
    padding-right: 0 !important;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper .top_label .gfield_label {
    /*margin-bottom: 15px;*/
    color: #000;
    font-size: 16px;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
#tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
    font-size: 14px;
    color: #45484d;
    padding: 8px 10px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 100%;
    border: 1px solid #c3c3c3;
    position: relative;
    top: 50%;
    width: 430px;
    margin: 0 auto;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields select {
    font-size: 14px;
    color: #45484d;
    padding: 5px 10px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 100%;
    border: 1px solid #c3c3c3;
    position: relative;
    top: 50%;
    width: 430px;
    margin: 0 auto;

}

#tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
    height: 80px;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper .gform_footer{
    text-align: right;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper .gform_footer input.button,
#tab-content-form-row .gform_wrapper.brg-form_wrapper input[type=submit] {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #3584bc;
    background-image: url(https://ateec.org/wp-content/themes/ateec/assets/ie-gradient.php?from=3584bc&to=3077a9);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3584bc), to(#3077a9));
    background-image: -webkit-linear-gradient(#3584bc, #3077a9);
    background-image: -moz-linear-gradient(#3584bc, #3077a9);
    background-image: -ms-linear-gradient(#3584bc, #3077a9);
    background-image: -o-linear-gradient(#3584bc, #3077a9);
    background-image: linear-gradient(#3584bc, #3077a9);
    font-size: 18px;
    font-family: "Lato",sans-serif;
    font-weight: 400;
    border: none;
    padding: 10px 15px;
    width: 150px;
    color: #fff;
    margin: 0;
}

#tab-content-form-row .gform_wrapper.brg-form_wrapper .gform_footer input.button:hover,
#tab-content-form-row .gform_wrapper.brg-form_wrapper input[type=submit]:hover {
    background-color: #3077a9;
    background-image: url(https://ateec.org/wp-content/themes/ateec/assets/ie-gradient.php?from=3077a9&to=3584bc);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3584bc), to(#3584bc));
    background-image: -webkit-linear-gradient(#3077a9, #3584bc);
    background-image: -moz-linear-gradient(#3077a9, #3584bc);
    background-image: -ms-linear-gradient(#3077a9, #3584bc);
    background-image: -o-linear-gradient(#3077a9, #3584bc);
    background-image: linear-gradient(#3077a9, #3584bc);
}

@media screen and (max-width: 1050px) {
    #tab-content-form-cell-1 {
        max-width: 700px;
    }

    #tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
    #tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
        width: 330px;
    }

    #tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields select {
        width: 330px;

    }
}

@media screen and (max-width: 850px) {
    #tab-content-form-cell-1 {
        max-width: none;
        width: 70%;
        padding: 50px 25px !important;
    }

    #tab-content-form-row div.ginput_container_name span{
        padding-right: 16px !important;
    }

    #tab-content-form-row .gform_wrapper .top_label li.gfield.gf_inline {
        display: block;
        padding-right: 0px;
    }
    #tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
    #tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
        width: 100%;
    }

    #tab-content-form-row .gform_wrapper.brg-form_wrapper ul.gform_fields select {
        width: 100%;

    }
}

/* ======================================== *
    Water Chart page and slider
 * ======================================== */
#water-chart-wrapper{}
#water-chart-container {
    max-width: none;
}
#water-chart-wrapper {
    background: #b4d7f2 url("../images/waterbg_f3.png") no-repeat scroll 0 0;
    background-size: 100%;
    /*min-height: 990px;*/
    /*overflow: hidden;*/
    text-align: center;
}

#water-chart-container {
    width: 1200px;
    max-width: none;
}

.fcustom_container23 {
    background:transparent url(../images/waterbg_f_captions.png) no-repeat 75% 89%;
    padding:0 0 300px 0;
    height:300px;
}

.fcustom_container24 {
    background: transparent url(../images/waterbg_f_captions_2.png) no-repeat 44% 89%;
    padding: 0 0 165px 0;
    height: 600px;
    background-size: 520px;
}
/*images/waterbg_f.png - http://ateec.org/wp-content/uploads/2014/02/waterbg_f2.png Old background image url - Maybe change the one out.Bigger font and not as dark*/
#water-chart h2 {
    color:#2E6FBD;
    margin:20px 0 30px 0;
}

#water-chart h3 {
    color:#4FC681;
    margin:-5px 0 1px 0;
    text-align: left;
}

#water-chart div.wcol1, #water-chart div.wcol2, #water-chart div.wcol3, #water-chart div.wcol4 {
    display: inline-block;
    vertical-align: top;
    /*float: left;*/
    margin: 0 10px 0 20px;
    /*width: 290px;*/
    width: 250px;
}


#water-chart div.wcol1 img, #water-chart div.wcol2 img, #water-chart div.wcol3 img, #water-chart div.wcol4 img {
    border-left:1px solid black;
    padding:0 0 0 10px;

}

#water-chart div.wcol1 {
    padding:7em 0 0 0;
}

#water-chart div.wcol2 {
    padding:3em 0 0 0;
}


#water-chart div.wcol3 {
    padding:1em 0 0 0;
}


#water-chart div.wcol4 {
    padding: 0px 0 0 0;
}

#water-chart .wlink {
    bottom: 1em;
    color: #4FC681;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    position: absolute;
    right: 0;
    width: auto;

}
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

#water-chart .the-col { 
    /*width: 222px;*/ 
    /*float: left;*/ 
    margin: 0 10px !important; 
} 

#water-chart .the-col .the-col-inner { 
    border-left: solid 1px #000; 
} 

#water-chart .the-col ul { 
    margin: 0; 
    padding-left: 20px; 
    list-style: none; 
    text-align: left;
    /*list-style-image: url('../../../../uploads/2013/11/a-block-item.png');*/
} 
#water-chart .the-col ul li { 
    background: url('../images/a-block-item.png') no-repeat 0 8px;
    margin-bottom: 15px; 
    padding-left: 15px; 
    font-size: 16px;
} 

#water-chart .the-col-inner ul li,
#water-chart .the-col-inner ul li a { 
    font-family: 'Myriad Pro', arial; 
    font-weight: 2px; 
    color: #000 !important; 
    text-decoration: none; 
} 

#water-chart .the-col-inner ul li a:visited, 
#water-chart .the-col-inner ul li a:link { 
    color: #000 !important; 
} 

#water-chart .the-col-inner ul li a:hover { 
    color: #4FC681 !important;
} 

/*h2 { 
    color: #4FC681; 
    font-weight: normal; 
}*/

#water-chart .pagesn {
    background: none;
    float: right;
    height: 30px;
    position: relative;
    top: 60px;
    width: 50px;
}

/*Slider CSS*/
#water-chart .flexslider {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    border-radius: 4px;
    margin: 180px 0 60px;
    position: relative;
}

#water-chart .flex-direction-nav {}

#water-chart .flex-direction-nav a {
    top: 0;
    opacity: 1;
}

#water-chart .flex-direction-nav a::before {
    /*border: 1px solid;*/
    /*border-radius: 100%;*/
    color: #222 !important;
    content: "" !important;
    display: inline-block;
    font-family: fontawesome !important;
    font-size: 60px;
    line-height: 34px;
    text-align: center;
    height: 35px;
    width: 35px;
}

#water-chart .flex-direction-nav a.flex-next::before {
    content: "" !important;
}

#water-chart .flex-direction-nav .flex-next {
    right: 0 !important;
    text-align: right;
}

#water-chart .flex-direction-nav .flex-prev {
    left: 0 !important;
}

#water-chart .flex-control-nav {
    bottom: 0;
    position: static;
    text-align: center;
    width: 100%;
    /*margin: 135px 0 25px;*/
}

@media screen and (max-width: 1250px) {
    #water-chart{
        /*min-height: 0;*/

    }
    #water-chart .fcustom_container23 {
        background:transparent;
        height: auto;
    }

    #water-chart .fcustom_container24 {
        background: transparent;
        height: auto;
    }
}

@media screen and (max-width: 850px) {
    #water-chart{
        min-height: 0;
        height: auto;
        text-align: left;

    }
    /*    #water-chart div.wcol1, #water-chart div.wcol2, #water-chart div.wcol3, #water-chart div.wcol4 {
            display: block;
            float: left;
            height: auto;
            margin: 0 10px 0 20px;
            vertical-align: top;
            width: 290px;
        }*/
}

/* ======================================== *
    Environment Chart and Slider CSS
 * ======================================== */
#environment-chart-wrapper{}
#environment-chart-container{
    width: 1200px;
    max-width: none;
}
#environment-chart{
    background: #fff url("../images/Top-background.png") no-repeat scroll 0 0;
    /*height: 1500px;*/
    /*overflow: hidden;*/
    text-align: center;
}

.fcustom_header_container{ 
    margin-top:10px; 
    /*height:150px;*/ 
    text-align: left;
} 
.fglobe { 
    float: left; 
    width: 35%; 
    height:198px; 
} 
.fenv_bio {
    left: 400px;
    position: relative;
    width: 70%;
    z-index: 1;
}
.bio1,
.bio2 { 
    /*float: left;*/ 
    display: inline-block;
    /*width: 45%;*/
    width: 350px;
    vertical-align: top;
} 
.bio1 { 
    margin-right: 25px; 
} 
.bio1 h6, .bio2 h6 { font-size: 18px; } 
.bio1 p, .bio2 p { font-size: 16px; } 
.pagesn { 
    background: none repeat scroll 0 0 white; 
    float: right; 
    height: 30px; 
    position: relative; 
    top: 70px; 
    width: 100px;
}

#environment-chart .the-col {
    text-align: left;
    /*width: 222px;*/
    /*float: left;*/
    margin: 0 10px !important;
}
#environment-chart .the-col .the-col-inner {
    border-left: solid 1px #000;
}
#environment-chart .the-col ul {
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    /*list-style-image: url('../../../../uploads/2013/11/a-block-item.png');*/
}
#environment-chart .the-col ul li {
    background: url('../images/a-block-item.png') no-repeat 0 8px;
    margin-bottom: 8px;
    margin-left: 20px;
    padding-left: 15px;
    font-size: 16px;
}
#environment-chart .the-col-inner ul li,.the-col-inner ul li a {
    font-family: 'Myriad Pro', arial;
    font-weight: 2px;
    color: #000 !important;
    text-decoration: none;
}
#environment-chart .the-col-inner ul li a:visited, .the-col-inner ul li a:link {
    color: #000 !important;
}
#environment-chart .the-col-inner ul li a:hover {
    color: #4FC681 !important;
}
#environment-chart h2 {
    color: #4FC681;
    font-weight: normal;
}

#environment-chart div.wcol1, #environment-chart div.wcol2, #environment-chart div.wcol3, #environment-chart div.wcol4 {
    display: inline-block;
    vertical-align: top;
    /*float: left;*/
    margin: 0 10px 0 20px;
    /*width: 290px;*/
    width: 250px;
}


#environment-chart div.wcol1 img, #environment-chart div.wcol2 img, #environment-chart div.wcol3 img, #environment-chart div.wcol4 img {
    border-left:1px solid black;
    padding:0 0 0 10px;

}

#environment-chart div.wcol1 {
    padding:7em 0 0 0;
}

#environment-chart div.wcol2 {
    padding:3em 0 0 0;
}


#environment-chart div.wcol3 {
    padding:1em 0 0 0;
}


#environment-chart div.wcol4 {
    padding: 0px 0 0 0;
}

#environment-chart .pagesn {
    background: none;
    /*float: right;*/
    text-align: right;
    height: 30px;
    position: relative;
    top: 60px;
    width: 50px;
}

#environment-chart .the-col {
    position: relative;
    z-index: 100;
}

#environment-chart .img1{
    display: inline-block !important;
    height:175px !important; 
    width:200px !important; 
    transform:rotate(10deg);    
    -webkit-transform: rotate(10deg); 
    -moz-transform: rotate(10deg); 
    -ms-transform: rotate(10deg); 
    -o-transform: rotate(10deg); 
    box-shadow:-5px 9px 10px #888888
}

#environment-chart .img2{
    display: block !important;
    height:175px !important; 
    width:200px !important; 
    transform:rotate(10deg);    
    -webkit-transform: rotate(10deg); 
    -moz-transform: rotate(10deg); 
    -ms-transform: rotate(10deg); 
    -o-transform: rotate(10deg); 
    box-shadow:-5px 9px 10px #888888;
    margin: 0 auto;
}

#environment-chart .img3{
    display: block !important;
    height:175px !important; 
    width:200px !important; 
    transform:rotate(10deg);    
    -webkit-transform: rotate(10deg); 
    -moz-transform: rotate(10deg); 
    -ms-transform: rotate(10deg); 
    -o-transform: rotate(10deg); 
    box-shadow:-5px 9px 10px #888888;
    margin: 0 auto;
}

/*Environment Slider CSS*/
#environment-chart .flexslider {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    border-radius: 4px;
    margin: 0 0 60px;
    position: relative;
}

#environment-chart .flex-direction-nav {}

#environment-chart .flex-direction-nav a {
    top: -50px;
    opacity: 1;
}

#environment-chart .flex-direction-nav a::before {
    /*border: 1px solid;*/
    /*border-radius: 100%;*/
    background: #fff;
    color: #222 !important;
    content: "" !important;
    display: inline-block;
    font-family: fontawesome !important;
    font-size: 60px;
    line-height: 34px;
    text-align: center;
    height: 50px;
    width: 35px;
}

#environment-chart .flex-direction-nav a.flex-next::before {
    content: "" !important;
}

#environment-chart .flex-direction-nav .flex-next {
    right: 0 !important;
    text-align: right;
}

#environment-chart .flex-direction-nav .flex-prev {
    left: 0 !important;
}

#environment-chart .flex-control-nav {
    bottom: 0;
    position: static;
    text-align: center;
    width: 100%;
    /*margin: 135px 0 25px;*/
}


@media screen and (max-width: 1350px) {
    .epic_area{
        display: none;
    }
}

@media screen and (max-width: 850px) {
    .fcustom_header_container{
        display: none;
    }
    #environment-chart{
        text-align: left;
    }
}

.mfp-iframe-holder .mfp-content {
    max-width: 1200px;
}


/* ======================================== *
    Blank Page CSS
 * ======================================== */
.page-template-blank-page{
    background: #F2F2F2;
}

#blank-page{
    padding: 40px 0;
}

.blank-page-title h1{
    text-align: center;
    color: #0079c2;
    font-size: 50px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

/* ======================================== *
    Tabs CSS
 * ======================================== */
.tab-container#outer-container ul { 
    margin: 0; 
    padding: 0; 
}

.tab-container#outer-container ul li { 
    display: inline-block; 
    background: #6E98E4; 
    /*border: solid 1px; */
    border-bottom: none; 
}

.tab-container#outer-container ul li a {
    display: block;
    padding: 8px 35px;
    outline: none;
    font-size: 18px;
    color: #fff;
}

.tab-container#outer-container ul li a:hover {
    text-decoration: none;
}

.tab-container#outer-container ul li.active { 
    background: #21A551; 
    padding-top: 6px; 
    position: relative; 
    top: 1px; 
    border-radius: 5px 5px 0 0
}

.tab-container#outer-container ul li a.active { 
    font-weight: normal; 
}

.tab-container .panel-container {
    /* border: solid 1px; */
    padding: 25px;
    background: #fff;
}


/*Inner Container*/
.sub-tab-container#inner-container { 
    padding: 25px;
    background: #fff; 
}

.sub-tab-container#inner-container ul { 
    margin: 0; 
    padding: 0; 
}

.sub-tab-container ul li { 
    display: inline-block; 
    background: none !important; 
    /*border: solid 1px; */
    border-bottom: none; 
}

.sub-tab-container#inner-container ul li a {
    display: block;
    padding: 0 30px;
    outline: none;
    font-size: 18px;
    color: #000;
}

.sub-tab-container#inner-container ul li a:hover,
.sub-tab-container#inner-container ul li a:focus {
    text-decoration: none;
}

.sub-tab-container#inner-container ul li.active {  
    position: relative; 
    background: none;
    padding-top: 0;
    top: 0;
    text-decoration: none;
}

.sub-tab-container#inner-container ul li a.active { 
    font-weight: none; 
    color: #21A551;
}

.sub-tab-container#inner-container .panel-container { 
    /*border: solid 1px; */
    padding: 25px;
    /*background: #fff;*/
}

.sub-tab-container#inner-container .panel-container ul,
.sub-tab-container#inner-container .panel-container ol{ 
    padding-left: 40px !important;
}

.sub-tab-container#inner-container .panel-container ul li {
    list-style: disc !important;
    display: list-item;
    background: none !important;
    padding: 5px 0;
}

.sub-tab-container#inner-container .panel-container ul li a,
.sub-tab-container#inner-container .panel-container ol li a{
    font-size: 14px;
    color: #6E98E4;
    display: inline-block;
    padding: 0;
}

.sub-tab-container#inner-container .panel-container ol li {
    list-style: decimal; !important;
    display: list-item;
    background: none !important;
    padding: 5px 0;
}

#blank-page .elementor-widget-tabs .elementor-tabs .elementor-tab-title,
#blank-page .elementor-widget-tabs .elementor-tabs .elementor-tabs-content-wrapper{
    border: none;
}

#blank-page .elementor-widget-tabs .elementor-tabs .elementor-tab-content{
    border: none;
    padding: 0;
}


/*Image Map Tooltip*/
.town-sitesmap-image {
    display: inline-block;
}

.town-sitesmap-image img{
   /* max-width: 678px !important;
    width: 678px !important;
    height: 385px !important;*/
}

.tooltip {
    position: absolute;
    display: inline-block;
    cursor: pointer;
}

.tooltip p{
    color: #fff !important;
}

.tooltip .tooltiptext {
    visibility: hidden;
    /* width: 200px; */
    background-color: grey;
    color: #fff !important;
    text-align: left;
    border-radius: 0;
    padding: 5px 15px;
    border: none;
    position: relative;
    z-index: 1;
    margin-left: 10px;
    /* margin-top: 21px; */
    display: inline-block;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

@media screen and (max-width: 920px) {
    .tooltip {
        display: none;
    }
}


/* ======================================== *
    Choose Landing Page CSS
 * ======================================== */
.page-template-choose-page a{
    color: #ac6a66;
}
/* ======================================== *
    Choose Header Section
 * ======================================== */
#choose-header-wrapper {
    background: #760801;
    padding: 25px 0 20px;
}

#choose-header{}

#choose-header a{
    text-decoration: none;
}

#choose-header .eicc-white-logo{
    display: inline-block;
}

#choose-header .eicc-white-logo img{
    max-width: 300px;
    width: 100%;
}

#choose-header-cell-1,
#choose-header-cell-2{
    vertical-align: middle;
}

#choose-header-cell-1 .header-title {
    vertical-align: top;
    display: inline-block;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 0 0 25px;
    line-height: normal;
}

#choose-header-cell-2 h1 {
    color: #fff;
    margin-bottom: 0;
    line-height: normal;
    font-size: 20px;
    text-align: right;
    font-weight: 700;
}

@media screen and (max-width: 850px) {
    #choose-header-cell-1,
    #choose-header-cell-2 h1 {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    #choose-header-cell-1 .header-title{
        display: block;
        padding: 0;
    }

    #choose-header-cell-2{
        padding-top: 10px !important;
    }
}


/* ======================================== *
    Choose Billboard Section
 * ======================================== */
#choose-billboard-wrapper{
    background: url('../images/choose_billboard_01.jpg') no-repeat center center / cover;
    -webkit-box-shadow: inset 0px -1px 46px 9px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px -1px 46px 9px rgba(0,0,0,0.75);
    box-shadow: inset 0px -1px 46px 9px rgba(0,0,0,0.75);
    padding: 50px 0;
}

#choose-billboard{
    color: #fff;
    font-size: 19px;
}

#choose-billboard .title {
    font-size: 20px;
    color: #760801;
    background: rgba(255, 255, 255, 0.6);
    max-width: 555px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 15px;
    margin-bottom: 15px;
}

#choose-billboard h1 {
    color: #fff;
    font-weight: 800;
    font-size: 34px;
    line-height: normal;
}

#choose-billboard p {
    color: #fff;
    font-size: 19px;
    text-shadow:0 2px 2px #000;
}

#choose-billboard-cell-1 ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-shadow:0 2px 2px #000;
}

#choose-billboard-cell-1 ul li {
    background: url(../images/bullet_checkmark_circle_white.png) no-repeat 0 1px;
    list-style-type: none;
    margin: 15px 0 15px 20px;
    padding-left: 35px;
}

#choose-billboard-cell-2 .choose-billboard-form-wrapper{
    background: #f1f0ed;
    text-align: center;
}

#choose-billboard-cell-2 .choose-billboard-form-title {
    background: #760801;
    padding: 15px;
    border-bottom: 15px solid #A5ACAF;
}

#choose-billboard-cell-2 .choose-billboard-form-title h1 {
    font-size: 26px;
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
}

#choose-billboard-cell-2 .choose-billboard-form-title h4 {
    color: #fff;
    font-size: 20px;
}

#choose-billboard-cell-2 .choose-billboard-form{
    padding: 15px;
}

/*Gravity Form*/

#choose-billboard .gform_wrapper.brg-form_wrapper {
    margin: 0;
}

#choose-billboard .gforms_confirmation_message {
    color: #ac6a66 !important;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
#choose-billboard .gform_wrapper.brg-form_wrapper input[type=text],
#choose-billboard .gform_wrapper.brg-form_wrapper textarea,
#choose-billboard .gform_wrapper.brg-form_wrapper select {
    margin: 0;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .gf_page_steps {
    text-align: center;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .gf_step {
    width: 32px;
    max-width: none;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    background: #ac6a66;
    border-radius: 50%;
    text-align: center;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .gf_step span.gf_step_number {
    margin-right: 0;
    line-height: 32px;
    margin-left: 4px;
}

#choose-billboard .gform_wrapper.brg-form_wrapper ul li.gfield {
    margin-bottom: 15px;
}

#choose-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .top_label .gfield_label {
    color: #000;
}

#choose-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
#choose-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields textarea,
#choose-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields select {
    font-size: 14px;
    color: #45484d;
    padding: 7px 10px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 100%;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset, 0 -1px 0 0 rgba(0,0,0,.05) inset;
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset,0 -1px 0 0 rgba(0,0,0,.05) inset;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset, 0 -1px 0 0 rgba(0,0,0,.05) inset;
    background: #f0f0f0;
    background: -moz-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f0f0f0),color-stop(100%,#f7f7f8));
    background: -webkit-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -o-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -ms-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: linear-gradient(to bottom,#f0f0f0 0,#f7f7f8 100%);
    border: none;
    width: 100%;

}

#choose-billboard .gform_wrapper.brg-form_wrapper .ginput_complex .ginput_left,
#choose-billboard .gform_wrapper.brg-form_wrapper .ginput_complex .ginput_right {
    width: 100%;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .field_sublabel_below .ginput_complex.ginput_container label{
    color: #ac6a66;
}

#choose-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
    height: 120px;
}

#choose-billboard .gform_wrapper.brg-form_wrapper .gform_footer,
#choose-billboard .gform_wrapper.brg-form_wrapper .gform_page_footer{
    text-align: center;
}

#choose-billboard .gform_wrapper.brg-form_wrapper input[type=submit],
#choose-billboard .gform_wrapper.brg-form_wrapper .button.gform_next_button,
#choose-billboard .gform_wrapper.brg-form_wrapper .button.gform_previous_button {
    background: #760801;
    border-radius: 5px;
    border: none; 
    padding: 10px 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
}

#choose-billboard .gform_wrapper.brg-form_wrapper input[type=submit]:hover,
#choose-billboard .gform_wrapper.brg-form_wrapper .button.gform_next_button:hover,
#choose-billboard .gform_wrapper.brg-form_wrapper .button.gform_previous_button:hover {
    background: #079b42;
    background: -moz-linear-gradient(top, #079b42 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -o-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -ms-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: linear-gradient(to bottom, #079b42 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#079b42',GradientType=0 );
}


/* ======================================== *
    Choose Tab Content Section
 * ======================================== */
#choose-tab-content-wrapper{
    padding: 50px 0;
}

#choose-tab-content{}
.choose-tab-area#inner-container ul { 
    margin: 0; 
    padding: 0; 
}

#choose-tab-content .choose-tab-area ul li {
    display: inline-block;
    background: #a5acaf;
    padding: 10px;
    border: none;
    top: 1px;
    position: relative;
}

#choose-tab-content .choose-tab-area ul li:hover {
    background: #760801;
}

#choose-tab-content .choose-tab-area#inner-container ul li a {
    display: block;
    padding: 0 10px;
    outline: none;
    font-size: 16px;
    color: #fff;
}

#choose-tab-content .choose-tab-area#inner-container ul li a:hover,
#choose-tab-content .choose-tab-area#inner-container ul li a:focus {
    text-decoration: none;
}

#choose-tab-content .choose-tab-area#inner-container ul li.active {
    position: relative;
    background: #fff;
    top: 1px;
    text-decoration: none;
    border: 1px solid #a5acaf;
    border-bottom: none;
}

#choose-tab-content .choose-tab-area#inner-container ul li a.active { 
    font-weight: none; 
    color: #770801;
}

#choose-tab-content .choose-tab-area .panel-container {
    border: 1px solid #a5acaf;
    padding: 25px;
}

#choose-tab-content .choose-tab-area .panel-container h1 {
    color: #770801 !important;
}

#choose-tab-content .choose-tab-area .panel-container p {
    margin-bottom: 15px;
}

#choose-tab-content .choose-tab-area .panel-container p:last-child {
    margin-bottom: 0;
}

#choose-tab-content .choose-tab-area .panel-container ul {
    margin: 0;
    padding-left: 40px;
}

#choose-tab-content .choose-tab-area .panel-container ul li {
    display: list-item;
    background: none;
    padding: 0;
    position: inherit;
    list-style: disc !important;
}

@media screen and (max-width: 950px) {
    #choose-tab-content .choose-tab-area ul li {
        display: block;
        background: #a5acaf;
        top: 0;
    }

    #choose-tab-content .choose-tab-area#inner-container ul li.active {
        background: #760801;
        top: 0;
    }

    #choose-tab-content .choose-tab-area#inner-container ul li a.active {
        color: #fff;
    }
}


/* ======================================== *
    Choose Bottom Section
 * ======================================== */
#choose-bottom-wrapper{
    padding: 50px 0;
    text-align: center;
}

#choose-bottom{}

#choose-bottom p{
    color: #000;
}

#choose-bottom .eicc-bottom-logo{
    max-width: 400px;
    width: 100%;
    padding-top: 30px;
}


/* ======================================== *
    Choose Copyright Section
 * ======================================== */
#choose-copyright-wrapper{
    background: #a5acaf;
}

#choose-copyright{
    color: #292929;
    font-size: 18px;
    text-align: center;
    padding: 25px 0;
}

#choose-copyright a{
    color: #292929;
}


/* ======================================== *
    Choose 2 Landing Page CSS
 * ======================================== */
.page-template-choose-2-page a{
    color: #ac6a66;
}

 /* ======================================== *
    Choose 2 Header Section
 * ======================================== */
#choose-2-header-wrapper {
    background: #760801;
    padding: 25px 0 20px;
}

#choose-2-header{}

#choose-2-header a{
    text-decoration: none;
}

#choose-2-header .eicc-white-logo{
    display: inline-block;
}

#choose-2-header .eicc-white-logo img{
    max-width: 300px;
    width: 100%;
}

#choose-2-header-cell-1,
#choose-2-header-cell-2{
    vertical-align: middle;
}

#choose-2-header-cell-1 .header-title {
    vertical-align: top;
    display: inline-block;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 0 0 25px;
    line-height: normal;
}

#choose-2-header-cell-2 h1 {
    color: #fff;
    margin-bottom: 0;
    line-height: normal;
    font-size: 20px;
    text-align: right;
    font-weight: 700;
}

@media screen and (max-width: 850px) {
    #choose-2-header-cell-1,
    #choose-2-header-cell-2 h1 {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    #choose-2-header-cell-1 .header-title{
        display: block;
        padding: 0;
    }

    #choose-2-header-cell-2{
        padding-top: 10px !important;
    }
}


/* ======================================== *
    Choose 2 Billboard Section
 * ======================================== */
#choose-2-billboard-wrapper {
    background: url(../images/choose_2_billboard.jpg) no-repeat center center / cover;
    padding: 70px 0;
    height: 12.5rem;
}

#choose-2-billboard-container {
    max-width: 1100px;
}

#choose-2-billboard {
    color: #fff;
    max-width: 340px;
}

#choose-2-billboard h1 {
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    line-height: normal;
    text-transform: uppercase;
}

#choose-2-billboard p {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

@media screen and (max-width: 550px) {
    #choose-2-billboard-wrapper {
        padding: 70px 0;
        height: 12.5rem;
    }

    #choose-2-billboard {
        max-width: 340px;
    }
}


/* ======================================== *
    Choose 2 Content Section
 * ======================================== */
#choose-2-content-wrapper{
    padding: 50px 0;
}

#choose-2-content .editor-content h1,
#choose-2-content .editor-content h2{
    color: #760801;
}

#choose-2-content .editor-content h2{
    margin-bottom: 15px;
}

#choose-2-content .sidebar-image{
    max-width: 350px;
    width: 100%;
}

#choose-2-content-cell-2 .choose-billboard-form-wrapper {
    background: #EBEBEB;
    text-align: center;
    margin-top: -350px;
    margin-bottom: 35px;
}

#choose-2-content-cell-2 .choose-billboard-form-title {
    background: #ac6a66;
    padding: 15px;
    border-bottom: 15px solid #A5ACAF;
}

#choose-2-content-cell-2 .choose-billboard-form-title h1 {
    font-size: 26px;
    line-height: normal;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#choose-2-content-cell-2 .choose-billboard-form-title h4 {
    color: #fff;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
}

#choose-2-content-cell-2 .choose-billboard-form{
    padding: 15px;
}

/*Gravity Form*/

#choose-2-content .gform_wrapper.brg-form_wrapper {
    margin: 0;
}

#choose-2-content .gform_wrapper.brg-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
#choose-2-content .gform_wrapper.brg-form_wrapper input[type=text],
#choose-2-content .gform_wrapper.brg-form_wrapper textarea,
#choose-2-content .gform_wrapper.brg-form_wrapper select {
    margin: 0;
}

#choose-2-content .gform_wrapper.brg-form_wrapper .gf_page_steps {
    text-align: center;
    color: #fff;
}

#choose-2-content .gform_wrapper.brg-form_wrapper .gf_step {
    width: 32px;
    max-width: none;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    background: #ac6a66;
    border-radius: 50%;
    text-align: center;
}

#choose-2-content .gform_wrapper.brg-form_wrapper .gf_step span.gf_step_number {
    margin-right: 0;
    line-height: 32px;
    margin-left: 4px;
}

#choose-2-content .gform_wrapper.brg-form_wrapper ul li.gfield {
    margin-bottom: 15px;
}

#choose-2-content .gform_wrapper.brg-form_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}

#choose-2-content .gform_wrapper.brg-form_wrapper .top_label .gfield_label {
    color: #000;
}

#choose-2-content .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
#choose-2-content .gform_wrapper.brg-form_wrapper ul.gform_fields textarea,
#choose-2-content .gform_wrapper.brg-form_wrapper ul.gform_fields select {
    font-size: 14px;
    color: #45484d;
    padding: 7px 10px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 100%;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset, 0 -1px 0 0 rgba(0,0,0,.05) inset;
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset,0 -1px 0 0 rgba(0,0,0,.05) inset;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset, 0 -1px 0 0 rgba(0,0,0,.05) inset;
    background: #f0f0f0;
    background: -moz-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f0f0f0),color-stop(100%,#f7f7f8));
    background: -webkit-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -o-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -ms-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: linear-gradient(to bottom,#f0f0f0 0,#f7f7f8 100%);
    border: none;
    width: 100%;

}

#choose-2-content .gform_wrapper.brg-form_wrapper .ginput_complex .ginput_right {
    width: 100%;
}

#choose-2-content .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
    height: 120px;
}

#choose-2-content .gform_wrapper.brg-form_wrapper .gform_footer,
#choose-2-content .gform_wrapper.brg-form_wrapper .gform_page_footer{
    text-align: center;
}

#choose-2-content .gform_wrapper.brg-form_wrapper input[type=submit],
#choose-2-content .gform_wrapper.brg-form_wrapper .button.gform_next_button,
#choose-2-content .gform_wrapper.brg-form_wrapper .button.gform_previous_button {
    background: #760801;
    border-radius: 5px;
    border: none; 
    padding: 10px 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
}

#choose-2-content .gform_wrapper.brg-form_wrapper input[type=submit]:hover,
#choose-2-content .gform_wrapper.brg-form_wrapper .button.gform_next_button:hover,
#choose-2-content .gform_wrapper.brg-form_wrapper .button.gform_previous_button:hover {
    background: #079b42;
    background: -moz-linear-gradient(top, #079b42 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -o-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -ms-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: linear-gradient(to bottom, #079b42 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#079b42',GradientType=0 );
}

#choose-2-content .form-privacy img {
    vertical-align: top;
    display: inline-block;
    margin-right: 5px;
}

#choose-2-content a{
    color: #ac6a66 !important;
}

#choose-2-content .sidebar-link{
    font-size: 15px;
    padding: 15px 0;
}


@media screen and (max-width: 1050px) {
    #choose-2-content-cell-2 .choose-billboard-form-wrapper {
        margin-top: 0;
    }
}

/* ======================================== *
    Choose 2 Copyright Section
 * ======================================== */
#choose-2-copyright-wrapper{
    background: #a2a2a2;
}

#choose-2-copyright{
    color: #292929;
    font-size: 18px;
    text-align: center;
    padding: 25px 0;
}

#choose-2-copyright a{
    color: #292929;
}


/* ======================================== *
    Choose 3 Landing Page CSS
 * ======================================== */
.page-template-choose-3-page h1{
    color: #760801;
}

.page-template-choose-3-page a{
    color: #ac6a66;
}

/* ======================================== *
    Choose 3 Header Section
 * ======================================== */
#choose-3-header-wrapper {
    background: #760801;
    padding: 25px 0 20px;
}

#choose-3-header{}

#choose-3-header a{
    text-decoration: none;
}

#choose-3-header .eicc-white-logo{
    display: inline-block;
}

#choose-3-header .eicc-white-logo img{
    max-width: 300px;
    width: 100%;
}

#choose-3-header-cell-1,
#choose-3-header-cell-2{
    vertical-align: middle;
}

#choose-3-header-cell-1 .header-title {
    vertical-align: top;
    display: inline-block;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 0 0 25px;
    line-height: normal;
}

#choose-3-header-cell-2 h1 {
    color: #fff;
    margin-bottom: 0;
    line-height: normal;
    font-size: 20px;
    text-align: right;
    font-weight: 700;
}

@media screen and (max-width: 850px) {
    #choose-3-header-cell-1,
    #choose-3-header-cell-2 h1 {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    #choose-3-header-cell-1 .header-title{
        display: block;
        padding: 0;
    }

    #choose-3-header-cell-2{
        padding-top: 10px !important;
    }
}

/* ======================================== *
    Choose 3 Billboard Section
 * ======================================== */
#choose-3-billboard-wrapper {
    background: url(../images/choose_3_billboard.jpg) no-repeat center center / cover;
    padding: 10px 0 140px;
}

#choose-3-billboard-container {}

#choose-3-billboard {
    color: #fff;
}

#choose-3-billboard-cell-1 {
    vertical-align: bottom;
}

#choose-3-billboard-cell-1 .billboard-content {
    background: rgba(1,1,1,.3);
    padding: 25px 30px 35px;
}

#choose-3-billboard h1 {
    color: #fff;
    font-weight: 700;
    font-size: 45px;
    line-height: normal;
    text-transform: uppercase;
}

#choose-3-billboard h4 {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}

#choose-3-billboard-cell-2 .choose-billboard-form-wrapper {
    background: #f1f0ed;
    text-align: center;
}

#choose-3-billboard-cell-2 .choose-billboard-form-title {
    background: #ac6a66;
    padding: 15px;
    border-bottom: 15px solid #A5ACAF;
}

#choose-3-billboard-cell-2 .choose-billboard-form-title h1 {
    font-size: 26px;
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
}

#choose-3-billboard-cell-2 .choose-billboard-form{
    padding: 15px;
}

/*Gravity Form*/
#choose-3-billboard .gform_wrapper.brg-form_wrapper {
    margin: 0;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
#choose-3-billboard .gform_wrapper.brg-form_wrapper input[type=text],
#choose-3-billboard .gform_wrapper.brg-form_wrapper textarea,
#choose-3-billboard .gform_wrapper.brg-form_wrapper select {
    margin: 0;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .gf_page_steps {
    text-align: center;
    color: #fff;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .gf_step {
    width: 32px;
    max-width: none;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    background: #ac6a66;
    border-radius: 50%;
    text-align: center;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .gf_step span.gf_step_number {
    margin-right: 0;
    line-height: 32px;
    margin-left: 4px;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper ul li.gfield {
    margin-bottom: 15px;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .top_label .gfield_label {
    color: #000;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields input[type=text],
#choose-3-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields textarea,
#choose-3-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields select {
    font-size: 14px;
    color: #45484d;
    padding: 7px 10px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    max-width: 100%;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset, 0 -1px 0 0 rgba(0,0,0,.05) inset;
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset,0 -1px 0 0 rgba(0,0,0,.05) inset;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.2) inset, 0 -1px 0 0 rgba(0,0,0,.05) inset;
    background: #f0f0f0;
    background: -moz-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f0f0f0),color-stop(100%,#f7f7f8));
    background: -webkit-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -o-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: -ms-linear-gradient(top,#f0f0f0 0,#f7f7f8 100%);
    background: linear-gradient(to bottom,#f0f0f0 0,#f7f7f8 100%);
    border: none;
    width: 100%;

}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .ginput_complex .ginput_right {
    width: 100%;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper ul.gform_fields textarea{
    height: 120px;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper .gform_footer,
#choose-3-billboard .gform_wrapper.brg-form_wrapper .gform_page_footer{
    text-align: center;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper input[type=submit],
#choose-3-billboard .gform_wrapper.brg-form_wrapper .button.gform_next_button,
#choose-3-billboard .gform_wrapper.brg-form_wrapper .button.gform_previous_button {
    background: #760801;
    border-radius: 5px;
    border: none; 
    padding: 10px 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
}

#choose-3-billboard .gform_wrapper.brg-form_wrapper input[type=submit]:hover,
#choose-3-billboard .gform_wrapper.brg-form_wrapper .button.gform_next_button:hover,
#choose-3-billboard .gform_wrapper.brg-form_wrapper .button.gform_previous_button:hover {
    background: #079b42;
    background: -moz-linear-gradient(top, #079b42 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -o-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -ms-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: linear-gradient(to bottom, #079b42 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#079b42',GradientType=0 );
}


@media screen and (max-width: 850px) {
    #choose-3-billboard-wrapper {
        padding: 25px 0;
    }
}


/* ======================================== *
    Choose 3 Content Section 1
 * ======================================== */
#choose-3-content-1-wrapper{
    padding: 50px 0;
}

#choose-3-content-1 {
    margin-top: -140px;
}

#choose-3-content-1-cell-1 .inner, 
#choose-3-content-1-cell-2 .inner, 
#choose-3-content-1-cell-3 .inner {
    background: #a5acaf;
    padding: 25px;
    margin: 0 5px;
    height: 10rem;
}

#choose-3-content-1 .icon-holder {
    width: 20%;
    float: left;
    margin: 0 4px 0 0;
}

#choose-3-content-1 .icon-content {
    width: 77%;
    float: right;
}

#choose-3-content-1 .icon-content h3 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#choose-3-content-1 .icon-content p {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

@media screen and (max-width: 1100px) {
    #choose-3-content-1-cell-1 .inner, 
    #choose-3-content-1-cell-2 .inner, 
    #choose-3-content-1-cell-3 .inner {
        height: 9rem;
    }

    #choose-3-content-1 .icon-content h3 {
        font-size: 24px;
    }

    #choose-3-content-1 .icon-content p {
        font-size: 20px;
    } 
}

@media screen and (max-width: 950px) {
    #choose-3-content-1 .icon-content h3 {
        font-size: 22px;
    }

    #choose-3-content-1 .icon-content p {
        font-size: 18px;
    } 
}

@media screen and (max-width: 850px) {
    #choose-3-content-1-wrapper{
        padding: 25px 0;
    }

    #choose-3-content-1-container{
        max-width: 320px;
    }

    #choose-3-content-1 {
        margin-top: 0px;
    }

    #choose-3-content-1-cell-1 .inner, 
    #choose-3-content-1-cell-2 .inner, 
    #choose-3-content-1-cell-3 .inner {
        margin: 0;
    }
}

/* ======================================== *
    Choose 3 Content Section 2
 * ======================================== */
#choose-3-content-2-wrapper{
    background: #f3f3f3;
    padding: 50px 0;
}

#choose-3-content-2 {}

#choose-3-content-top-2-row {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

#choose-3-content-bottom-2-row {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

#choose-3-content-bottom-2-row {
    max-width: 960px;
    margin: 50px auto 0;
}

#choose-3-content-bottom-2-row .about-content-box {
    width: 33.3333%;
    display: table-cell;
    vertical-align: top;
    border-right: 1px solid #ccc;
}

#choose-3-content-bottom-2-row .about-content-box.last {
    border-right: none;
}

#choose-3-content-bottom-2-row .about-content-box h3 {
    color: #ac6a66;
    font-size: 40px;
    font-weight: 700;
    padding: 15px 0 25px;
    line-height: normal;
}

#choose-3-content-bottom-2-row .about-content-box p{}

#choose-3-content-bottom-2-row .about-content-box h6 {
    font-size: 12px;
    padding-top: 10px;
}

#choose-3-content-bottom-2-row .about-content-box:last-child {
    border-right: none;
}

#choose-3-content-bottom-2-row .about-content-box .inner{
    padding: 0 25px;
}

.about-content-button .brg-button{
    display: inline-block;
    background: #760801;
    color: #fff !important;
    margin-top: 35px;
}

.about-content-button .brg-button:hover{
    background: #079b42;
    background: -moz-linear-gradient(top, #079b42 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -o-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -ms-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: linear-gradient(to bottom, #079b42 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#079b42',GradientType=0 );
}

@media screen and (max-width: 770px) {
    #choose-3-content-bottom-2-row .about-content-box {
        width: 100%;
        display: block;
        border-right: none;
        border-bottom: 1px solid #ccc;
        padding-bottom: 25px;
    }

    #choose-3-content-bottom-2-row .about-content-box.last {
        border-right: none;
        border-bottom: none;
    }
}

/* ======================================== *
    Choose 3 Content Section 3
 * ======================================== */
#choose-3-content-3-wrapper{
    padding: 50px 0;
}

#choose-3-content-3 #choose-3-content-3-top-row{
    text-align: center;
}

#choose-3-content-3 #choose-3-content-3-top-row h1{
    margin-bottom: 45px;
}

#choose-3-content-3 #choose-3-content-3-middle-row {
    padding: 25px 0;
    border-bottom: 1px solid #ccc;
}

#choose-3-content-3 #choose-3-content-3-middle-row .editor-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

#choose-3-content-3 #choose-3-content-3-middle-row .editor-content ul li {
    padding: 8px 0;
    line-height: 30px;
}

#choose-3-content-3 .heading {
    font-weight: 700;
    color: #ac6a66;
}

#choose-3-content-3 #choose-3-content-3-bottom-row{
    padding: 25px 0;
}

#choose-3-content-3 #choose-3-content-3-bottom-row .editor-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

#choose-3-content-3 #choose-3-content-3-bottom-row .editor-content ul li {
    padding: 8px 0;
    line-height: 30px;
}

#choose-3-content-3 .about-content-button {
    text-align: center;
}

/* ======================================== *
    Choose 3 Content Section 4
 * ======================================== */
#choose-3-content-4-wrapper{
    padding: 50px 0;
    background: #f3f3f3;
}

#choose-3-content-4 fieldset {
    padding: 0 30px 30px 30px;
    margin: 0 2px;
    border: 1px solid #d2d3d5;
    border-radius: 10px;
    background: transparent;
}

#choose-3-content-4 .img-circle{
    border-radius: 50% !important;
}

#choose-3-content-4 h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

#choose-3-content-4 p {
    font-size: 18px;
    margin-top: 10px;
}

/* ======================================== *
    Choose 3 Content Section 5
 * ======================================== */
#choose-3-content-5-wrapper{
    padding: 50px 0;
}

#choose-3-content-5{}

#choose-3-content-5-cell-1{
    vertical-align: middle;
}

#choose-3-content-5 h4{
    color: #6d6d6d;
}

#choose-3-content-5 .bottom-content{
    padding: 0 25px;
}

@media screen and (max-width: 850px) {
    #choose-3-content-5 .bottom-content{
        text-align: center;
    }
}

/* ======================================== *
    Choose 3 Content Section 6
 * ======================================== */
#choose-3-content-6-wrapper{
    padding: 65px 0;
    background: #a5acaf;
    text-align: center;
}

#choose-3-content-6 .brg-button{
    display: inline-block;
    background: #760801;
    color: #fff !important;
    margin-bottom: 30px;
}

#choose-3-content-6 .brg-button:hover{
    background: #079b42;
    background: -moz-linear-gradient(top, #079b42 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -o-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: -ms-linear-gradient(top, #079b42 0%,#079b42 100%);
    background: linear-gradient(to bottom, #079b42 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#079b42',GradientType=0 );
}

#choose-3-content-6 h4{
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

#choose-3-content-6 h5{
    color: #fff;
    font-size: 20px;
}

/* ======================================== *
    Choose 3 Content Section 7
 * ======================================== */
#choose-3-content-7-wrapper{
    padding: 50px 0;
    text-align: center;
}

#choose-3-content-7{}

#choose-3-content-7 p{
    color: #000;
}

#choose-3-content-7 .eicc-bottom-logo{
    max-width: 400px;
    width: 100%;
    padding-top: 30px;
}

/* ======================================== *
    Choose 3 Copyright Section
 * ======================================== */
#choose-3-copyright-wrapper{
    background: #a5acaf;
}

#choose-3-copyright{
    color: #292929;
    font-size: 18px;
    text-align: center;
    padding: 25px 0;
}

#choose-3-copyright a{
    color: #292929;
}


/* ======================================== *
    Home Page New Section
 * ======================================== */
.featured-resources-box{
    color: #fff;
    cursor: pointer;
}

.featured-resources-box p{
    color: #fff;
}

.featured-resources-box a{
    color: #fff;
    text-decoration: none;
}

.featured-resources-box a:hover{
    text-decoration: underline;
}

.featured-resources-box ul{
    list-style: none;
}

.featured-resources-box ul li {
    padding: 5px 0;
}

.home-contact-form-container{
    max-width: 850px;
    margin: 0 auto;
}


.brg-button-transp { 
    background: transparent;
    border: 1px solid white;
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 30px;
    position: relative;
    text-align: center;
    text-decoration: none !important;
    }
    
.brg-button-transp:hover {
    background: #036dad none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #036dad 0%, #0079c2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#036dad), color-stop(100%,#0079c2));
    background: -webkit-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -o-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -ms-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: linear-gradient(to bottom,  #036dad 0%,#0079c2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036dad', endColorstr='#0079c2',GradientType=0 );
}

.brg-button-transp-blue { 
    background: transparent;
    border: 1px solid #002e50;
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 30px;
    position: relative;
    text-align: center;
    text-decoration: none !important;
    }
    
.brg-button-transp-blue:hover {
    background: #036dad none repeat scroll 0 0;
    background: -moz-linear-gradient(top,  #036dad 0%, #0079c2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#036dad), color-stop(100%,#0079c2));
    background: -webkit-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -o-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: -ms-linear-gradient(top,  #036dad 0%,#0079c2 100%);
    background: linear-gradient(to bottom,  #036dad 0%,#0079c2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036dad', endColorstr='#0079c2',GradientType=0 );
}

.best-practices-guide a:hover{
    color: #002e50 !important;
}


/* ======================================== *
    Quiz Form CSS
 * ======================================== */
.gform_wrapper.brg-form-quiz_wrapper {}

.gform_wrapper.brg-form-quiz_wrapper .top_label li ul.gfield_radio{
    padding-left: 0 !important;
}

.gform_wrapper.brg-form-quiz_wrapper ul.gfield_radio li {
    padding: 0!important;
    display: inline-block;
    width: 25%;
}

.gform_wrapper.brg-form-quiz_wrapper label.gfield_label, 
.gform_wrapper.brg-form-quiz_wrapper legend.gfield_label{
    color: #000;
    background: none;
    font-size: 18px !important;
    text-align: left;
    height: auto;
    line-height: 1.3em !important;
    display: block !important;
    border: none !important;
    max-width: 100% !important;
}

.gform_wrapper.brg-form-quiz_wrapper input[type=radio]{
	display: none !important;
}

.gform_wrapper .gfield_radio li label {
    margin: 2px 0 0 4px;
}

.gform_wrapper.brg-form-quiz_wrapper label {
    position: relative;
    color: #a4a4a4;
    border: 1px solid #a4a4a4 !important;
    font-size: 16px !important;
    text-align: center;
    height: 90px;
    line-height: normal !important;
    display: inline-flex !important;
    cursor: pointer !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box !important;
    max-width: 160px !important;
    width: 100% !important;
    /* float: left; */
    align-items: center;
    justify-content: center;
    padding: 10px !important;
}

.gform_wrapper.brg-form-quiz_wrapper label.gquiz-correct-choice {
    border: 1px solid rgb(79, 161, 65) !important;
    background: transparent;
    color: rgb(79, 161, 65);
    font-weight: 400 !important;
}

.gform_wrapper.brg-form-quiz_wrapper label.gquiz-correct-choice:after {
    content: "";
    color: rgb(79, 161, 65);
    width: 16px;
    height: 16px;
    font-size: 16px;
    font-family: fontawesome;
    margin-left: 15px;
}

.gform_wrapper.brg-form-quiz_wrapper label.gquiz-incorrect-choice {
    border: 1px solid #ff0000 !important;
    background: transparent;
    color: #ff0000;
    font-weight: 400 !important;
}

.gform_wrapper.brg-form-quiz_wrapper label.gquiz-incorrect-choice:after {
    content: "";
    color: #ff0000;
    width: 16px;
    height: 16px;
    font-size: 16px;
    font-family: fontawesome;
    margin-left: 15px;
}

.gform_wrapper.brg-form-quiz_wrapper .gquiz-indicator, 
.gform_wrapper.brg-form-quiz_wrapper .gquiz-incorrect-response img, 
.gform_wrapper.brg-form-quiz_wrapper .gquiz-correct-response img {
    display: none;
}

.gform_wrapper.brg-form-quiz_wrapper .gform_page_footer {
    border-top: none;
    text-align: right;
}

.gform_wrapper.brg-form-quiz_wrapper input[type=submit], 
.gform_wrapper.brg-form-quiz_wrapper .button.gform_next_button {
    background: #1fb25a;
    background: -moz-linear-gradient(top, #1fb25a 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1fb25a), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top, #1fb25a 0%,#079b42 100%);
    background: -o-linear-gradient(top, #1fb25a 0%,#079b42 100%);
    background: -ms-linear-gradient(top, #1fb25a 0%,#079b42 100%);
    background: linear-gradient(to bottom, #1fb25a 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1fb25a', endColorstr='#079b42',GradientType=0 );
    border-radius: 5px;
    border: none;
    padding: 15px 30px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    max-width: 160px;
    width: 100%;
}

.gform_wrapper.brg-form-quiz_wrapper .button.gform_previous_button{
    display: none;
}

.gform_wrapper.brg-form-quiz_wrapper input[type=submit]:hover,
.gform_wrapper.brg-form-quiz_wrapper .button.gform_next_button:hover {
    background: #079b42;
    background: -moz-linear-gradient(top,  #079b42 0%, #1fb25a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#1fb25a));
    background: -webkit-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -o-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -ms-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: linear-gradient(to bottom,  #079b42 0%,#1fb25a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#1fb25a',GradientType=0 );
}

@media screen and (max-width: 1050px) {
    .gform_wrapper.brg-form-quiz_wrapper ul.gfield_radio li {
        width: 50%;
    }
    
    .gform_wrapper.brg-form-quiz_wrapper label {
        max-width: 220px !important;
    }
}

@media screen and (max-width: 550px) {
    .gform_wrapper.brg-form-quiz_wrapper ul.gfield_radio li {
        width: 50%;
    }
    
    .gform_wrapper.brg-form-quiz_wrapper label {
        max-width: 160px !important;
    }
}

@media screen and (max-width: 550px) {
    
    .gform_wrapper.brg-form-quiz_wrapper ul.gfield_radio li {
        display: block;
        width: 100%;
    }
    
    .gform_wrapper.brg-form-quiz_wrapper label {
        max-width: 100% !important;
    }
    
    .gform_wrapper.brg-form-quiz_wrapper .gfield_radio li label {
        margin: 0;
    }
}



/*.gform_wrapper.brg-form-quiz_wrapper input:checked + label {*/
/*    border: 1px solid #ff0000 !important;*/
/*    background: transparent;*/
/*    color: #ff0000;*/
/*    font-weight: 400 !important;*/
/*}*/

/*.gform_wrapper.brg-form-quiz_wrapper:after{*/
/*	content: "\2713";*/
/*	width: 40px;*/
/*	height: 40px;*/
/*	line-height: 40px;*/
/*	border-radius: 100%;*/
/*	border: 2px solid #333;*/
/*	background-color: #2fcc71;*/
/*	z-index: 999;*/
/*	position: absolute;*/
/*	top: -10px;*/
/*	right: -10px;*/
/*}*/




/* ======================================== *
    Job Page CSS
 * ======================================== */

#job-panels .job-panel {
    background: #f5f5f5;
    margin-bottom: 10px;
}

#job-panels .job-panel .control:before {
    display: none;
}

#job-panels .job-panel .control {
    display: block;
    background: #eaeaea;
    color: #231f20;
    padding: 15px 25px;
    font-size: 22px;
    position: relative;
    margin-bottom: 0;
    text-transform: uppercase;
}

#job-panels .job-panel .control:after {
    content: '\f067';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 22px;
    position: absolute;
    right: 25px;
    top: 20px;
    color: #818181;
}

#job-panels .job-panel.open .control:after {
    content: '\f068';
}

#job-panels .job-panel .content {
    color: #333333;
    padding: 30px 40px;
}

#job-panels .job-panel .content p {
    color: #333333;
}

#job-panels .job-panel .content .title {
    color: #0066cc;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

#small-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    text-align: center;
}

#small-badges, #stats {
    align-content: flex-start;
}

#small-badges .badge {
    background: 0 0;
    max-width: 290px;
    margin: 0 1rem 1rem 0;
    display: block;
    width: 25rem;
    border-radius: 1rem;
    -moz-border-radius: 1rem;
    -webkit-border-radius: 1rem;
    cursor: pointer;
    user-select: none;
}

#small-badges .badge h3 {
    color: #0079c2;
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: .89rem;
    font-weight: 400;
    text-transform: uppercase;
}

#small-badges .badge h4 {
    background: #1db058;
    border-radius: 1rem;
    font-size: 2rem;
    padding: 18px;
    color: #fff;
    font-weight: 900;
    line-height: 125%;
}

#job-panels .job-panel .content #small-badges p.extra {
    margin-bottom: 1rem;
    font-size: .78rem;
    font-weight: 300;
    margin: .19rem 0 3.42rem;
    color: #0079c2;
}

.submit-stats-box {
    background: #f2f8ff;
    padding: 20px 15px;
    margin-top: 20px;
}

.submit-stats-box p {
    color: #3c3f44;
    margin-bottom: 30px;
}

.submit-stats-box strong,
.submit-stats-box span {
    color: #0066cc;
}


/* ======================================== *
    AWI CSS
 * ======================================== */

.single-awi #contact-info-container {
    max-width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 30px;
    color: #000000;
}

.single-awi #contact-info .inner {
    padding: 0;
}

.single-awi .contact-title {
    background: #0071bc;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1;
    padding: 10px;
    margin-bottom: 30px;
}

.single-awi #contact-info h6 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.single-awi #contact-info .email {
    margin: 15px 0 5px;
}

.single-awi #body a,
.single-awi #contact-info a {
    color: #176db6;
}

.single-awi .awi-items .awi-item {
    text-align: center;
    margin-bottom: 25px;
    color: #000000;
}

.single-awi .awi-items .awi-item p {
    color: #000000;
}

.single-awi .blue {
    color: #0071bc;
}

.single-awi .awi-items .awi-item .heading {
    text-decoration: underline;
    font-weight: 700;
    font-size: 18px;
}




/* ======================================== *
        Billboard With Slider Custom CSS
 * ======================================= = */

/* ======================================== *
        Slider Custom CSS
 * ======================================= = */
.main-slider-area {
    position: relative;
    overflow: hidden;
}

.main-slider-area .custom-slider {
    width: 100%;
    margin: 0;
}

.main-slider-area .slick-slide {}

.main-slider-area .slick-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.main-slider-area .custom-slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.main-slider-area .single-item {
    height: 100%;
    position: relative;
    z-index: 1;
}

.main-slider-area .single-item .slider-bg {
    height: 664px;
    width: 100%;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.1);
}

.main-slider-area .single-item.slick-active .slider-bg {
    transform: scale(1.1);
    animation: animate 6s 1 ease-in-out;
}

@keyframes animate {
    from {
        /*-webkit-transform: scale3d(1.1, 1.1, 1.1);*/
        transform: scale(1) translate(0px);
    }
    to {
        /*-webkit-transform: scale3d(1.1, 1.1, 1.1);*/
        transform: scale(1.1) translate(0px);
    }
}

.content-area {
    position: absolute;
    top: 15%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 9;
    margin-top: 25px;
    /* transform: translateY(-50%); */
}

.content-area .content-area-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.content-area .content-area-box h1.slider-heading {
    color: #0079c2;
    font-size: 66px !important;
    font-weight: 900;
    line-height: 72px;
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 0;
}

.content-area .content-area-box p.slider-sub-heading {
    color: #343434;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
    padding: 0;
    text-shadow: 2px 2px #fff;
    text-transform: uppercase;
}

.content-area .content-area-box p.slider-link a {
    background: #1fb25a;
    background: -moz-linear-gradient(top,  #1fb25a 0%, #079b42 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1fb25a), color-stop(100%,#079b42));
    background: -webkit-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -o-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: -ms-linear-gradient(top,  #1fb25a 0%,#079b42 100%);
    background: linear-gradient(to bottom,  #1fb25a 0%,#079b42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1fb25a', endColorstr='#079b42',GradientType=0 );
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    margin: 0 12px 15px;
    max-width: 260px;
    padding: 10px 30px;
    width: 100%;
}

.content-area .content-area-box p.slider-link a:hover {
    background: #079b42;
    background: -moz-linear-gradient(top,  #079b42 0%, #1fb25a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#079b42), color-stop(100%,#1fb25a));
    background: -webkit-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -o-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: -ms-linear-gradient(top,  #079b42 0%,#1fb25a 100%);
    background: linear-gradient(to bottom,  #079b42 0%,#1fb25a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#079b42', endColorstr='#1fb25a',GradientType=0 );
    text-decoration: none !important;
}

@media screen and (max-width: 950px) {
    .slide-1 .billboard-left {
        display: block;
        width: 100%;
        padding-right: 0px;
        border-right: none;
        border-bottom: : 2px solid #2f2b27;
    }

    .slide-1 .billboard-right {
        display: block;
        width: 100%;
        padding-top: 25px;
        padding-left: 0px;
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    .slide-1 h1 {
        font-size: 35px;
    }

    .slide-1 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}


/* ======================================== *
        Slick Slider Arrow and pagination
 * ======================================= = */
.main-slider-area .slick-prev:before,
.main-slider-area .slick-next:before {
  color: black;
}

.main-slider-area .slick-dots {
  bottom: -30px;
}


/* ======================================== *
        Slick Slider Progress Bar CSS
 * ======================================= = */
.main-slider-area .progress-bar-wrapper {
    position: relative;
    max-width: 1200px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    margin-top: -100px;
    z-index: 9;
    height: 100%;
    display: flex;
    box-shadow: 0 20px 30px 0 rgba(0,0,0,.3);
    margin-bottom: 100px;
}

.main-slider-area .progress-bar-wrapper .progress-bar-box {
    color: #ffffff;
    background: #0079c2;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 33.33%;
    cursor: pointer;
    transition: all .3s ease-in;
    padding: 25px;
    border-right: 1px solid #0079c2;
}

.main-slider-area .progress-bar-wrapper .progress-bar-box.progress-active {
    color: #000;
    background: #fff;
    transition: all .3s ease-in;
    border-right: 1px solid #ccc;
}

.main-slider-area .progress-bar-wrapper .progress-bar-box:last-child {
    margin-right: 0;
}

/*.main-slider-area .progress-bar-wrapper .progress-bar-box span.progressBar {
    width: 100%;
    height: 5px;
    display: block;
}*/

.main-slider-area .progress-bar-wrapper .progress-bar-box span.progressBar .inProgress {
    background-color: #1db158;
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    left: 0;
    box-shadow: 0 20px 30px 0 #1db158;
}

.main-slider-area .progress-bar-wrapper .progress-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.main-slider-area .progress-bar-wrapper .progress-sub-heading {
    font-size: 16px;
    margin-top: auto;
}

.main-slider-area .progress-bar-wrapper .progress-link {
    padding-top: 25px;
}

.main-slider-area .progress-bar-wrapper .progress-link i {
    font-size: 20px;
    vertical-align: middle;
    padding-left: 15px;
}

.main-slider-area .progress-bar-wrapper .progress-bar-box.progress-active .progress-link a {
    color: #b6bdc9;
}

.main-slider-area .progress-bar-wrapper .progress-bar-box .progress-link a {
    color: #fff;
}


.main-slider-area .progress-bar-wrapper .progress-link a:hover {
    text-decoration: none;
}


/*Animation*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.main-slider-area .single-item.slick-active .content-area .slider-heading,
.main-slider-area .single-item.slick-active .content-area .slider-sub-heading  {
  animation-name: slideInDown;
  animation-duration: 1s;
}

.main-slider-area .single-item.slick-active .content-area .slider-link{
  animation-name: slideInUp;
  animation-duration: 1.5s;
}