@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700,900');

body {
    font-family: 'Montserrat', sans-serif;
}

/*DEFAULT PAGINATOR*/
.paginator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.paginator a, .paginator span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #cccccc;
    border-right: 0;
    color: #555555;
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition-duration: 0.2s;
}

.paginator a:first-of-type {
    -webkit-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    -moz-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    border-radius: var(--radius-normal) 0 0 var(--radius-normal);
}

.paginator a:last-of-type {
    border-right: 1px solid #cccccc;
    -webkit-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    -moz-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
}

.paginator a:hover {
    background: var(--gradient-green);
    background-size: 200%;
    color: #FBFBFB;
}

.paginator span {
    background: #cccccc;
}

/*WYSH HTMLCHARS*/
.htmlchars {
    color: var(--color-default);
}

.htmlchars :first-child {
    margin-top: 0;
}

.htmlchars h2,
.htmlchars h3,
.htmlchars h4,
.htmlchars h5 {
    margin: 40px 0 20px 0;
    font-weight: var(--weight-bold);
}

.htmlchars h2 {
    font-size: 1.8em;
}

.htmlchars h3 {
    font-size: 1.6em;
}

.htmlchars h4 {
    font-size: 1.4em;
}

.htmlchars h5 {
    font-size: 1.2em;
}

.htmlchars p {
    margin-top: 25px;
}

.htmlchars ul,
.htmlchars ol {
    margin: 20px 0 20px 40px;
}

.htmlchars ul {
    list-style: circle;
}

.htmlchars ol li,
.htmlchars ul li {
    margin-top: 5px;
}

.htmlchars a {
    color: var(--color-green);
    font-weight: var(--weight-bold);
    text-decoration: none;
}

.htmlchars a:hover {
    text-decoration: underline;
}

.htmlchars img {
    margin-top: 30px;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
}

/*SOCIAL SHARE*/
.social_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding: 30px;
    background: #FBFBFB;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    border-bottom: 3px solid var(--color-green);
}

.social_share_title {
    font-size: var(--font-normal);
    font-weight: var(--weight-normal);
}

.social_share_medias {
    display: flex;
}

.social_share_medias div {
    margin-right: 10px;
}

/*EMPTY CONTENT*/
.empty_content {
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    color: var(--color-default);
}

.empty_content_cover {
    width: 500px;
}

.empty_content_title {
    font-size: 2em;
    font-weight: var(--weight-bold);
    margin: 0 0 20px 0;
}

.title_image {
    width: 300px;
    max-width: 100%;
    margin: 0 auto 30px auto;
}

/* MAIN HEADER */
.main_header {
    padding: 15px 0;
    color: #ffffff;
}

.main_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*logo*/
.main_header_logo h1 a {
    font-weight: var(--weight-normal);
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/*nav*/
.main_header_nav {
    display: flex;
    align-items: center;
}

.main_header_nav_links {
    display: block !important;
}

.main_header_nav_links .link {
    display: inline-block;
    padding: 6px 12px;

    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: var(--weight-bold);
    font-size: var(--font-small);
}

.main_header_nav_links .link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.link{
    display: inline-block;
    font-size: 0.7em;
    font-weight: 300;
    color: #f00;
    text-transform: uppercase;
    text-decoration: none;
}

.main_header_nav_links .login {
    background: var(--hover-color-green);
}

/*mobile*/
.main_header_nav_mobile,
.main_header_nav_mobile_close {
    display: none;
}

/*CONTENT*/

/*home featured*/
.home_featured {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.home_featured:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: var(--index-back);
    background: url("../images/home-featured.jpg") top center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.home_featured_content {
    padding: 80px 0 0 0;
}

.home_featured_header {
    width: 660px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.home_featured_header h1 {
    font-size: 3em;
    font-weight: var(--weight-bold);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.home_featured_header p {
    margin: 30px 0 50px 0;
    font-weight: var(--weight-normal);
    font-size: var(--font-medium);
}

.home_featured_header .features {
    font-size: var(--font-small);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home_featured_btn {
    cursor: pointer;
    display: inline-block;
    padding: 30px;
    text-transform: uppercase;
    font-weight: var(--weight-black);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.home_featured_app {
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: var(--index-fold);
}

.home_featured_app img {
    max-width: 90%;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.home_featured_app:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    z-index: var(--index-back);
}

/*home features*/
.home_features_header {
    text-align: center;
    margin: 20px 0 40px 0;
    color: #555555;
}

.home_features_header p {
    margin-top: 10px;
}

.home_features_content {
    display: flex;
}

.home_features_content article {
    border-top: 3px solid #ffffff;
    flex-basis: calc(33.33% - 20px);
    margin: 10px;
    padding: 30px;
    text-align: center;
}

.home_features_content article.active,
.home_features_content article:hover {
    border-top: 3px solid var(--color-green);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.home_features_content article img {
    width: 60%;
}

.home_features_content article h3 {
    margin: 20px 0 10px 0;
    font-size: var(--font-medium);
    font-weight: var(--weight-normal);
}

.home_features_content article p {
    font-size: var(--font-small);
}

/*optin*/
.home_optin {
    background: #FBFBFB;
}

.home_optin_content {
    display: flex;
    align-items: flex-start;
    color: #555555;
}

.home_optin_content_flex {
    flex-basis: 50%;
    padding: 20px;
}

.home_optin_content_flex .icon {
    display: block;
    text-align: center;
    font-size: 5em;
    color: var(--hover-color-green);
}

.home_optin_content header h2 {
    margin-top: 10px;
    font-size: 2em;
    font-weight: var(--weight-bold);
}

.home_optin_content header p {
    margin-top: 30px;
    font-size: var(--font-medium);
}

.home_optin_content h4 {
    font-size: var(--font-medium);
    text-align: center;
    margin-bottom: 30px;
}

.home_optin_content form input {
    display: block;
    width: 100%;
    font-size: var(--font-small);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

.home_optin_content form button {
    cursor: pointer;
    border: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: var(--font-medium);
    font-weight: var(--weight-black);
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

/*BLOG*/
.blog_content {
    padding-bottom: 0;
}

.blog_header {
    text-align: center;
    margin-bottom: 30px;
    color: #555555;
}

.blog_header h2 {
    font-size: 2em;
    font-weight: var(--weight-light);
}

.blog_header p {
    margin-top: 10px;
}

.blog_articles {
    display: flex;
    flex-wrap: wrap;
}

.blog_article {
    flex-basis: calc(33.33% - 40px);
    margin: 20px;
    color: #555555;
}

.blog_article img {
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    border-bottom: 3px solid #E9E9E9;
}

.blog_article:hover img {
    border-color: var(--color-green);
}

.blog_article h2 {
    font-size: var(--font-medium);
    font-weight: var(--weight-bold);
}

.blog_article .meta {
    font-size: var(--font-small);
    font-weight: var(--weight-light);
}

.blog_article p {
    font-size: var(--font-small);
    margin: 20px 0;
}

.blog_article a {
    text-decoration: none;
    color: #555555;
}

.blog_article a:hover {
    text-decoration: underline;
}

/*video*/
.home_video {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
}

.home_video:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../images/home-featured.jpg") top center;
    background-size: cover;
    background-attachment: fixed;
    z-index: var(--index-back);
}

.home_video_content {
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.home_video_content h2 {
    font-weight: var(--weight-light);
    font-size: 2em;
}

.home_video_content span {
    cursor: pointer;
    font-size: 6em;
    margin-top: 15px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
}

.home_video_content span:hover {
    color: var(--hover-color-green);
}

.home_video_modal {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--index-modal);
}

.home_video_modal_box {
    margin: auto;
    width: 800px;
    max-width: 90%;
}

/*opt out*/
.footer_optout {
    background: url("../images/footer-bg.jpg") top center no-repeat;
    background-size: cover;
    padding-top: 20px;
    margin-top: 40px;
}

.footer_optout_content {
    text-align: center;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.footer_optout .icon {
    font-size: 5em;
    color: #555555;
}

.footer_optout h2 {
    font-size: 2em;
    font-weight: var(--weight-black);
    color: #555555;
}

.footer_optout p {
    margin: 20px 0 40px;
}

.footer_optout_btn {
    display: inline-block;
    cursor: pointer;
    padding: 15px 40px;
    font-size: var(--font-medium);
    color: #ffffff;
    font-weight: var(--weight-black);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

/*MAIN FOOTER*/
.main_footer {
    background: #000;
}

.main_footer_content {
    display: flex;
}

.main_footer_content article {
    flex-basis: 25%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #555555;
}

.main_footer_content article h2 {
    font-size: var(--font-medium);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc;
}

.main_footer_content article p,
.main_footer_content article a {
    font-size: var(--font-small);
    display: block;
    margin-top: 10px;
}

.main_footer_content article a {
    color: var(--color-green);
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition-duration: var(--hover-duration);
}

.main_footer_content article a:hover {
    color: var(--hover-color-green);
}

.main_footer_content article a:before {
    color: #ffffff;
    background-image: var(--gradient-green);
    background-size: 200%;
    padding: 6px;
    -webkit-border-radius: var(--radius-round);
    -moz-border-radius: var(--radius-round);
    border-radius: var(--radius-round);
    transition-duration: var(--hover-duration);
}

.main_footer_content article a:hover:before {
    background-position: right center;
}

.main_footer_content .social a {
    display: block;
    margin-bottom: 20px;
}

/*NOT FOUND PAGE 404*/
.not_found {
    text-align: center;
    color: #555555;
}

.not_found .error {
    font-size: 8em;
    font-weight: var(--weight-light);
    color: #cccccc;
}

.not_found_header {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.not_found_btn {
    display: inline-block;
    margin-top: 30px;
    padding: 20px 40px;
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--weight-bold);
}

/*ABOUT PAGE*/
.about_header {
    text-align: center;
    width: 800px;
    max-width: 100%;
    margin: 0 auto 40px auto;
    color: #555555;
}

.about_header h1 {
    font-size: 2em;
    font-weight: var(--weight-light);
}

.about_page_steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about_page_steps article {
    flex-basis: calc(33.33% - 40px);
    margin: 20px;
    text-align: center;
    padding: 30px;
    color: #555555;
}

.about_page_steps article .icon {
    display: inline-block;
    padding: 15px 20px;
    background: var(--gradient-green);
    font-size: 2em;
    color: #ffffff;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    background-size: 200%;
}

.about_page_steps article h3 {
    margin: 20px 0 0 0;
    font-size: var(--font-medium);
    font-weight: var(--weight-normal);
}

.about_page_steps article p {
    line-height: 1.4;
    margin-top: 15px;
}

/*media*/
.about_page_media {
    position: relative;
}

.about_page_media:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: var(--gradient-green);
    background-size: 200%;
    z-index: var(--index-back);
}

.about_media_video {
    width: 860px;
    max-width: 90%;
    margin: 0 auto;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    overflow: hidden;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

/*cta*/
.about_page_cta {
    background: var(--gradient-green);
    background-size: 200%;
    text-align: center;
}

.about_page_cta_content {
    width: 600px;
    max-width: 100%;
}

.about_page_cta_content p {
    margin: 20px 0;
}

.about_page_cta_btn {
    display: inline-block;
    padding: 20px 40px;
    background: var(--hover-color-green);
    cursor: pointer;
    font-size: var(--font-medium);
    font-weight: var(--weight-black);
    color: #ffffff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    text-decoration: none;
}

.about_page_cta_btn:hover {
    background: var(--color-green);
}

/*faq*/
.faq_header {
    text-align: center;
    margin-bottom: 30px;
}

.faq_header h3 {
    font-size: 2em;
    font-weight: var(--weight-light);
    margin-bottom: 20px;
}

.faq_asks {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
}

.faq_ask {
    flex-basis: calc(50% - 30px);
    cursor: pointer;
    padding: 20px;
    margin: 15px;
    border: 1px solid #cccccc;
    border-bottom: 3px solid var(--color-green);
    color: var(--color-default);
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
}

.faq_ask h4 {
    font-size: var(--font-medium);
    font-weight: var(--weight-bold);
}

.faq_ask p {
    font-size: var(--font-small);
}

.faq_ask_coll {
    display: none;
}

/*BLOG PAGE*/
.blog_page_header {
    text-align: center;
    padding: 40px;
    background: var(--gradient-green);
    background-size: 200%;
}

.blog_page_header h1 {
    font-size: 3em;
    color: rgba(0, 0, 0, 0.4);
}

.blog_page_header p {
    margin: 10px 0 30px 0;
}

.blog_page_header form {
    display: inline-block;
    width: 400px;
    max-width: 100%;
}

.blog_page_header form label {
    display: flex;
    align-items: center;
    background: #ffffff;
    justify-content: center;
    -webkit-border-radius: var(--radius-large);
    -moz-border-radius: var(--radius-large);
    border-radius: var(--radius-large);
    overflow: hidden;
}

.blog_page_header form input {
    flex-basis: 100%;
    padding: 12px 12px 12px 20px;
    font-size: var(--font-normal);
    border: none;
    background: #ffffff;
    outline: none;
    color: #555555;
}

.blog_page_header form button {
    padding: 0 20px 0 0;
    font-size: var(--font-medium);
    border: none;
    cursor: pointer;
    outline: none;
    color: #555555;
}

/*POST PAGE*/
.post_page_hero {
    width: 860px;
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.post_page_header {
    position: relative;
    text-align: center;
}

.post_page_header h1 {
    font-size: 2.4em;
    font-weight: var(--weight-normal);
    margin: 30px 0;
    color: #FBFBFB;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.post_page_header:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    background: var(--gradient-green);
    background-size: 200%;
    z-index: var(--index-back);
}

.post_page_cover {
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    border-bottom: 3px solid var(--color-green);
}

.post_page_content {
    width: 860px;
    max-width: 90%;
    margin: 0 auto;
}

.post_page_meta {
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
    color: #555555;
}

.post_page_meta .author {
    display: flex;
    align-items: center;
}

.post_page_meta .author .name {
    padding-left: 10px;
}

.post_page_meta .author img {
    width: 40px;
    -webkit-border-radius: var(--radius-round);
    -moz-border-radius: var(--radius-round);
    border-radius: var(--radius-round);
}

.post_page_related.content {
    padding-bottom: 0;
}

.post_page_related_header {
    text-align: center;
    color: #555555;
    margin-bottom: 30px;
}

.post_page_related header h4 {
    font-size: 3em;
    font-weight: var(--weight-light);
}

.post_page_related header p {
    margin-top: 10px;
    font-size: var(--font-small);
}

/*AUTH IN*/
.auth_content {
    color: #555555;
}

.auth_content a {
    font-weight: var(--weight-bold);
    color: var(--color-green);
    text-decoration: none;
    transition: var(--hover-duration);
}

.auth_content a:hover {
    color: var(--hover-color-green);
}

.auth_header {
    text-align: center;
    margin-bottom: 50px;
}

.auth_header h1 {
    font-size: 2.4em;
    font-weight: var(--weight-light);
}

.auth_form {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.auth_form label {
    display: block;
    margin-top: 30px;
}

.auth_form label div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
    font-size: var(--font-small);
    font-weight: var(--weight-bold);
}

.auth_form label input {
    color: #555555;
    display: block;
    width: 100%;
    font-size: var(--font-normal);
    padding: 15px 20px;
    outline: none;
    border: 1px solid #cccccc;
    border-radius: var(--radius-medium);
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
}

.auth_form .check {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 20px 0 30px 0;
    font-size: var(--font-small);
    transition: var(--hover-duration);
}

.auth_form .check:hover {
    color: #000000;
}

.auth_form .check input {
    width: auto;
    font-size: var(--font-large);
    margin-right: 10px;
    display: inline-block;
}

.auth_form_btn {
    display: block;
    width: 100%;
    border: none;
    padding: 15px;
    font-size: var(--font-medium);
    color: #ffffff;
    font-weight: var(--weight-black);
    cursor: pointer;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    margin-top: 30px;
}

/*TERMS PAGE*/
.terms_page_header {
    text-align: center;
    padding: 50px 40px;
    background: var(--gradient-green);
    background-size: 200%;
    color: #ffffff;
}

.terms_page_header h1 {
    font-size: 2em;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.terms_page_header p {
    margin-top: 10px;
    font-weight: var(--weight-black);
    color: rgba(0, 0, 0, 0.4);
}

.terms_page_content {
    width: 800px;
    margin: 0 auto;
    padding: 60px 0 0 0;
}

/*OPTIN PAGES*/
.optin_page {

}

.optin_page_content {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    color: var(--color-default);
    text-align: center;
}

.optin_page_content img {
    width: 400px;
    max-width: 100%;
}

.optin_page_content h1 {
    font-size: 2.3em;
    font-weight: var(--weight-bold);
}

.optin_page_content p {
    margin: 20px 0;
    font-size: 1.1em;
}

.optin_page_btn {
    display: inline-block;
    padding: 20px 40px;
    margin-top: 20px;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-decoration: none;
    font-size: 1.4em;
}

@media (max-width: 62em) {
    .main_header_logo {
        font-size: 0.8em;
    }

    .main_header_nav {
        text-align: center;
    }

    .main_header_nav_mobile {
        display: block;
        font-size: var(--font-medium);
        cursor: pointer;
        padding: 4px 8px;
        background: rgba(0, 0, 0, 0.3);
    }

    .main_header_nav_mobile:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .main_header_nav_mobile_close {
        cursor: pointer;
        display: block;
        padding: 10px;
        color: var(--color-red);
        font-size: 2em;
    }

    .main_header_nav_mobile_close:hover {
        color: var(--hover-color-red);
    }

    .main_header_nav_links {
        display: none;
        position: fixed;
        z-index: var(--index-menu);
        left: 100%;
        top: 0;
        background: #ffffff;
        width: 300px;
        height: 100%;
        max-width: 80%;
        padding: 20px;
        border-left: 1px solid #E9E9E9;
    }

    .main_header_nav_links .login,
    .main_header_nav_links .link {
        background: none;
        display: block;
        color: #555555;
        padding: 10px;
        transition-duration: 0s;
    }

    .main_header_nav_links .link:hover {
        color: #ffffff;
        background: #ffffff;
        background-image: var(--gradient-green);
    }

    .main_footer_content {
        flex-wrap: wrap;
        text-align: center;
    }

    .main_footer_content article {
        flex-basis: 50%;
    }

    .blog_article {
        flex-basis: calc(50% - 40px);
    }

    .faq_ask {
        flex-basis: 100%;
        margin: 20px 0 0 0;
    }
}

@media (max-width: 52em) {
    .home_featured_header {
        font-size: 0.8em;
    }

    .home_features_content {
        flex-wrap: wrap;
    }

    .home_features_content article {
        flex-basis: 100%;
    }

    .home_optin_content {
        flex-wrap: wrap;
        text-align: center;
    }

    .home_optin_content_flex {
        flex-basis: 100%;
    }

    .about_page_steps article {
        flex-basis: 100%;
        margin: 20px 0 0 0;
    }

    .post_page_meta {
        display: none;
    }

    .social_share {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social_share_title {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .post_page_header h1 {
        font-size: 1.8em;
    }

    .post_page_hero {
        padding: 10px 0 0 0;
    }
}

@media (max-width: 32em) {
    .main_footer_content article {
        flex-basis: 100%;
    }

    .blog_article {
        text-align: center;
        flex-basis: calc(100% - 40px);
    }

    .optin_page_content h1 {
        font-size: 1.8em;
    }
}


/*RESET*/
* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/*VARIABLES*/
:root {
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;

    --color-default: #555555;
    --color-green: #36BA9B;
    --color-blue: #39AED9;
    --color-yellow: #F5B946;
    --color-red: #D94352;

    --weight-light: 300;
    --weight-normal: 400;
    --weight-bold: 700;
    --weight-black: 900;

    --hover-color-green: #61DDBC;
    --hover-color-blue: #66D4F1;
    --hover-color-yellow: #FCD277;
    --hover-color-red: #F76C82;
    --hover-duration: 0.3s;

    --gradient-green: linear-gradient(to right, #42E695 0%, #3BB2B8 50%, #42E695 100%);
    --gradient-blue: linear-gradient(to right, #17EAD9 0%, #6078EA 50%, #17EAD9 100%);
    --gradient-red: linear-gradient(to right, #622744 0%, #C53364 50%, #622744 100%);
    --gradient-yellow: linear-gradient(to right, #FCE38A 0%, #F38181 50%, #FCE38A 100%);

    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 4;
}

/*ELEMENTS*/
img {
    max-width: 100%;
}

img a {
    border: none;
}

ul {
    list-style: none;
}

p {
    margin: 20px 0 0 0;
}

embed,
video,
iframe,
iframe[style] {
    max-width: 100%;
    height: auto;
}

.embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed iframe, .embed object, .embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.strike {
    text-decoration: line-through;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: #555555 !important;
}

/*ICONS NORMALIZE*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    position: relative !important;
    top: .125em !Important;
    margin-right: .4em !Important;
}

.icon-notext:before {
    top: 0;
    margin-right: 0 !important;;
}

/*CONTAINER*/
.content,
.container {
    display: block;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.content {
    padding: 60px 0;
}

/*EFFECTS*/
.transition {
    transition-duration: var(--hover-duration);
}

.radius {
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

/*GRADIENTS*/
.gradient {
    background-size: 200% auto;
    transition-duration: 0.5s;
}

.gradient-green {
    background-image: var(--gradient-green);
}

.gradient-blue {
    background-image: var(--gradient-blue);
}

.gradient-yellow {
    background-image: var(--gradient-yellow);
}

.gradient-red {
    background-image: var(--gradient-red);
}

.gradient-hover:hover {
    background-position: right center;
}


.container {
    color: #333;
    margin: 0 auto;

  }
  
  h1 {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase;
  }
  
  li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
  }
  
  li span {
    display: block;
    font-size: 4.5rem;
  }
  
  .emoji {
    display: none;
    padding: 1rem;
  }
  
  .emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
  }
  
  @media all and (max-width: 768px) {
    h1 {
      font-size: calc(1.5rem * var(--smaller));
    }
    
    li {
      font-size: calc(1.125rem * var(--smaller));
    }
    
    li span {
      font-size: calc(3.375rem * var(--smaller));
    }
  }
  
table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 87%;
    padding: 0;
    text-align: left;
  }
  
  tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.15);
  }
  tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.025);
  }
  
  th,
  td {
    padding: 1rem;
  }
  
  
  td {
    word-wrap: break-word;
  }
  tr:hover td {
    color: white;
    background: rgba(0, 0, 0, 0.875);
  }
  
  /**/
  @media screen and (max-width: 639px) {
    table {
      border: 0;
    }
  
    thead {
      display: none;
      width: 0;
      height: 0;
      opacity: 0;
    }
  
    tr {
      display: block;
      margin-bottom: 2rem;
    }
    tr:nth-child(even), tr:nth-child(odd) {
      background: rgba(0, 0, 0, 0.15);
    }
  
    td {
      display: block;
      padding: 0.75rem;
      font-size: 13px;
      text-align: right;
      word-wrap: unset;
      border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    }
  
    td:before {
      content: attr(data-th);
      float: left;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
    }
  
    td:last-child {
      border-bottom: 0;
    }
  }
  
  
  /*NOVO css*/
      .cp_home_container{
    width:min(1320px, calc(100% - 40px));
    margin:auto;
}

.cp_home_container{
    width:min(1320px, calc(100% - 40px));
    margin:auto;
}

.cp_home_hero{
    min-height:600px;

    /*background:url(images/topconversionbg.jpg) center center no-repeat;*/
    background:linear-gradient(135deg, #0c7cd5, #11b7a3);
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;

    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
    color:#fff;
}
.cp_home_hero{
    /*background: #000 url(images/isced.jpg) top center no-repeat;*/
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.cp_home_hero img{
    width:120px;
    margin-bottom:20px;
}

.cp_home_hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.cp_home_hero p{
    font-size:1.2rem;
    opacity:.9;
}

.cp_home_buttons{
    margin-top:35px;
}

.cp_home_buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

.cp_btn_primary{
    background:#fff;
    color:#0c7cd5;
}

.cp_btn_secondary{
    border:2px solid #fff;
    color:#fff;
}

.cp_btn_tertiary{
    background:#111827;
    border:2px solid #111827;
    color:#fff;
}
.cp_btn_outline{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.cp_btn_light{
    background:#fff;
    color:#0c7cd5;
}

.cp_btn_dark{
    background:#111827;
    color:#fff;
}

.cp_home_section{
    padding:20px 0;
}

.cp_home_title{
    text-align:center;
    margin-bottom:50px;
}

.cp_home_title h2{
    font-size:2rem;
    margin-bottom:10px;
}

.cp_home_grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.cp_home_card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.cp_home_card:hover{
    transform:translateY(-8px);
}

.cp_home_card i{
    font-size:45px;
    color:#0c7cd5;
    margin-bottom:20px;
    display:block;
}

.cp_home_card h3{
    margin-bottom:15px;
}

.cp_home_card p{
    color:#666;
    line-height:1.6;
}

.cp_home_text{
    width:700px;
    max-width:100%;
    margin:25px auto 0;
    font-size:1.1rem;
    line-height:1.7;
    opacity:.95;
}

.cp_btn_primary,
.cp_btn_secondary{
    transition:.3s;
}

.cp_btn_primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.cp_btn_secondary:hover{
    background:#fff;
    color:#0c7cd5;
}

.cp_download_btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#0c7cd5;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.cp_download_btn:hover{
    background:#11b7a3;
}

.cp_home_cta{
    background:linear-gradient(135deg,#0c7cd5,#11b7a3);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cp_home_cta h2{
    font-size:2.2rem;
    margin-bottom:20px;
}

.cp_home_cta p{
    width:700px;
    max-width:100%;
    margin:0 auto 35px;
    line-height:1.8;
}

.cp_home_cta{
    background:linear-gradient(135deg,#0c7cd5,#11b7a3);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cp_home_cta i{
    font-size:70px;
    margin-bottom:20px;
}

.cp_home_cta h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.cp_home_cta p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:1.1rem;
}
.cp_home_documents{
    padding:90px 0;
    background:linear-gradient(135deg,#0c7cd5,#11b7a3);
}
.cp_home_documents{
    padding:90px 0;
    background:#0f2743;
}
.cp_home_documents .cp_home_title{
    text-align:center;
    margin-bottom:60px;
}

.cp_home_documents .cp_home_title i{
    color:#f4b400;
    font-size:1.4rem;
}

.cp_home_documents .cp_home_title h2{
    color:#FFF;
}
.cp_notice_list{
    margin:25px 0 0;
    padding:0;
    list-style:none;
}

.cp_notice_list li{

    position:relative;

    padding-left:30px;

    margin-bottom:18px;

    font-size:1rem;

    line-height:1.7;

    color:#444;
}

.cp_notice_list li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:0;

    color:#198754;

    font-weight:700;

    font-size:1rem;
}

.cp_period{
    padding:25px 0;
    background:#f8fafc;
}

.cp_period_box{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:30px;

    background:#fff;

    border-radius:10px;

    padding:20px 30px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cp_period_item{

    display:flex;
    align-items:center;
    gap:15px;
}

.cp_period_item i{

    font-size:1rem;
    color:#1789d4;
}

.cp_period_item small{

    display:block;
    color:#777;
    font-size:.85rem;
}

.cp_period_item strong{

    display:block;
    font-size:1.1rem;
    color:#0d2f5b;
}

.cp_period_divider{

    width:1px;
    height:45px;
    background:#ddd;
}

@media(max-width:768px){

    .cp_period_box{

        flex-direction:column;
        gap:20px;
    }

    .cp_period_divider{

        width:100%;
        height:1px;
    }

}

.cp_home_notice{
    padding:40px 0;
    background:#f8fafc;
}

.cp_notice{

    display:flex;
    align-items:center;
    gap:20px;

    padding:20px 25px;

    background:#fffdf5;

    border-left:5px solid #f0b429;

    border-radius:8px;

    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.cp_notice>i{

    font-size:2.5rem;

    color:#f0b429;

    flex-shrink:0;
}

.cp_notice_content h3{

    margin:0 0 8px;

    font-size:1.35rem;

    color:#0d2f5b;
}

.cp_notice_content p{

    margin:0;

    color:#555;

    font-size:.98rem;

    line-height:1.7;
}

.cp_notice_content strong{

    color:#0d2f5b;
}

@media(max-width:768px){

    .cp_notice{

        flex-direction:column;
        align-items:flex-start;
    }

    .cp_notice>i{

        font-size:2rem;
    }

}
  