@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
div,
body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.db {
    display: block
}

.dn {
    display: none
}

.ca_ml_30 {
    margin-left: 30px;
}

.ca_w_70 {
    width: 70% !important;
}

.ca_br_20 {
    border-radius: 20px !important;
}

.ca_mt_30 {
    margin-top: 30px !important;
}

.ca_pt_40 {
    padding-top: 40px !important;
}


.blog_link {
    text-decoration: none !important;
    outline: 0;
}


#ca_menu_hamburguer {
    display: none;
}

.ca_menu_label {
    display: none;
    background: transparent;
    margin: 0;
}

.ca_menu {
    display: none;
    background: transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    cursor: pointer;
}

.ca_hamburguer {
    display: block;
    background: #ecdc39;
    width: 28px;
    height: 3px;
    position: relative;
    top: 18px;
    transition: .5s ease-in-out;
    border-radius: 2px;

}

.ca_hamburguer:before,
.ca_hamburguer:after {
    display: block;
    background: #ecdc39;
    content: '';
    height: 100%;
    position: absolute;
    transition: .5s ease-in-out;
    border-radius: 2px;
}

.ca_hamburguer:before {
    top: -10px;
    width: 28px;
}

.ca_hamburguer:after {
    bottom: -10px;
    width: 34px;
    margin-left: -6px;
}

#ca_menu_hamburguer:checked~.ca_menu_label .ca_hamburguer {
    transform: rotate(45deg);
    width: 32px;
    /* left: 10px; */
}

#ca_menu_hamburguer:checked~.ca_menu_label .ca_hamburguer:before {
    transform: rotate(90deg);
    width: 32px;
    top: 0;
}

#ca_menu_hamburguer:checked~.ca_menu_label .ca_hamburguer:after {
    transform: rotate(90deg);
    bottom: 0;
    margin-left: -1px;
}

#ca_menu_items {
    position: fixed;
    overflow: hidden;
    top: 54px;
    left: 0;
    width: 100%;
    transition: .1s ease-in-out;
}

.ca_menu_container {
    background: #fff;
    padding: 30px 5px 30px 20px;
}

.ca_menu_sub,
.ca_menu_actions {
    width: 100%;
}

.ca_menu_title {
    font-size: 18px;
    width: 180px;
    color: #2d2c2c;
    font-weight: 400;
}

.ca_menu_items {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.ca_menu_items::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    border: .5px solid rgba(45, 44, 44, .20);
}

.ca_menu_actions {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ca_menu_item {
    margin-bottom: 20px;
}

.ca_menu_item:last-child {
    margin-bottom: 0;
}

.ca_menu_link {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #2d2c2c;
    padding-left: 20px;
    text-decoration: none;
}

.blog {
    min-height: 100vh;
}

.blog_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

/* START NAVBAR */

.blog_navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.96);
    position: fixed !important;
    width: 100%;
    z-index: 1;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
}

.blog_nav_container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    top: 0;
    height: 75px;
    z-index: 100;
    background: transparent !important;
}

.blog_menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.blog_menu_items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.blog_menu img {
    width: 101px;
    margin-right: 40px;

}

.subnav {
    float: left;
    overflow: hidden;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #20253b;
    background: transparent;
    margin: 0;
    height: 75px;
    padding: 28px 25px;
    cursor: pointer;
    font-weight: 400;
}

.subnavbtn i {
    margin-left: 10px;
}

.subnav:hover .subnavbtn {
    background-color: #ecdc39;
    color: #20253b;
    text-decoration: none;
}

.subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #ecdc39;
    width: 100%;
    z-index: 2;
    height: 100px;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
}

.subnav_item a,
.subnav_item a:hover {
    font-size: 16px;
    color: #20253b;
}

.subnav:hover .subnav-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%
}

.subnav_items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 1200px;
    padding-left: 166px;
}

.subnav_item {
    margin-right: 60px;
}

.subnav_items a {
    color: #20253b;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.25;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-bottom 0.4s;
    transition: border-bottom 0.4s;
}

.subnav_item a:hover {
    font-size: 16px;
    border-bottom: 1px solid #20253b;
}

/* ############################### */

/* START BLOG ARTICLE */
.article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 78px;
}

.article_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
}

.article_image img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.article_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: center;
    margin: -150px 200px 50px 200px;
    width: 100%;
}

.article_content .share_buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 20px;
}
.article_content .share_buttons .share_buttons_title {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  color: #ecdc39;
  padding-bottom: 20px;
}
.article_content .share_buttons .share_buttons_icons {
  display: flex;
  flex-direction: row;
  position: unset;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px !important;
  height: 45px !important;
  margin-right: 20px;
  border-radius: 50%;
  background-color: rgba(35, 147, 208, 0.1);
  background-image: none;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element:hover[type="facebook"] {
  background-color: #3b5998;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element:hover[type="whatsapp"] {
  background-color: #25d366;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element:hover[type="linkedin"] {
  background-color: #0077b5;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element:hover[type="twitter"] {
  background-color: #1da1f2;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element:hover i.fa {
  color: #fff;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element:last-of-type {
  margin-right: 0;
}
.article_content .share_buttons .share_buttons_icons .i-amphtml-element i.fa {
  font-size: 20px;
  color: #3e3e3e;
}

.article_content_text {
    background: #fff;
    padding: 60px 80px;
    width: 800px;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 30px 0px rgba(35, 147, 208, .1);
    box-shadow: 0 10px 30px 0px rgba(35, 147, 208, .1);
}

.article_content_text img {
    width: 100%;
}

.article_title {
    width: 100%;
    margin-top: 60px
}

.article_title h1 {
    font-size: 40px;
    font-weight: 300;
    color: #ecdc39;
    margin-bottom: 0;
}

.article_info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.article_info a {
    font-size: 14px;
    font-weight: 400;
    padding: 5px 8px;
    color: #fff;
    border-radius: 5px;
    background: #ecdc39;
    margin-right: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.article_info a:hover {
    color: #20253b;
}

.article_info p {
    margin: 0;
    color: #ecdc39;
    font-weight: 300;
}

.article_image img {
    width: 100%;
}

.article_text {
    color: #2d2c2c;
    line-height: 1.8;
    margin-top: 60px;
}

.article_text h3 {
    font-size: 22px;
    font-weight: 300;
    color: #ecdc39;
    padding-top: 15px;
}

.article_text h3:first-child {
    padding-top: 0;
}

.article_text p {
    font-size: 18px;
    font-weight: 300;
    color: #2d2c2c;
}

.article_quote {
    width: 20%;
    margin-top: 80px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(45, 44, 44, 0.5);
}

.article_subject_author {
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
}

.article_subject {
    color: #2d2c2c;
    font-weight: 500;
    border-bottom: 1px solid #2d2c2c;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.article_subject:hover {
    color: #ecdc39;
    border-color: #ecdc39;
}

.article_author {
    color: #2d2c2c;
}

.article_author span {
    color: #ecdc39;
    font-weight: 500;
}

/* END BLOG ARTICLE */


/* #################################################### */

.blog_actions {
    margin: 0;
    list-style: none;
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    background: #ecdc39;
    cursor: pointer;
}

.blog_actions .blog_action_reg {
    display: inline-block;
    position: relative;
    line-height: 1.25;
    text-align: left;
    margin: 0 !important;
}

.blog_actions .blog_action_reg a {
    display: block;
    padding: 15px 30px;
    color: #3e3e3e;
}
/*
.blog_actions .blog_action_reg a:hover {
    background: #ecdc39;
} */

.blog_action_reg_link {
    color: #20253b !important;
}

.blog_action_reg_link i {
    margin-left: 10px;
}

.blog_actions .blog_action_reg .blog_action_content {
    min-width: 100%;
    display: none;
    position: absolute;
    z-index: 999;
    padding: 0;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.125);
    box-shadow: 0 0 10px rgba(0,0,0,.125);
}

.blog_action_item {
    background-color: #ffffff;
}

.blog_action_item a {
    color: #3e3e3e;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.blog_action_item a:hover {
    background: #f3f4f5 !important;
}

.blog_actions .blog_action_reg:hover .blog_action_content {
    display: block;
}

.blog_actions .blog_action_reg .blog_action_content .blog_action_item {
    display: block;
    line-height: 1.25
}

/* END NAVBAR */

/* START HEADER */
.blog_header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 135px;
}

.blog_header_title {
    font-size: 40px;
    font-weight: 400;
    color: #2d2c2c;
    margin: 0;
}

.blog_header_desc {
    font-size: 20px;
    font-weight: 300;
    color: #2d2c2c;
}

header span {
    color: #ecdc39;
}

/* END HEADER */

/* ########################################### */

/* START SECTION SPOTLIGHT */
.blog_spotlight {
    margin-top: 65px;
}

.blog_spotlight_link {
    min-height: 420px;
}

.blog_spotlight_link,
.blog_spotlight_link:hover {
    color: #2d2c2c;
}

.teste {
    flex-wrap: wrap;
}

.blog_spotlight_img {
    width: 60%;
    background-size: cover;
    background-position: center;
    height: 100%;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog_spotlight_content {
    width: 40%;
    background: #f7f7f7;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 45px 65px 45px 65px;
}

.blog_spotlight_title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 18px;
}

.blog_spotlight_tag {
    color: #ecdc39;
    font-size: 18px;
    font-weight: 400;
}

.blog_spotlight_text {
    font-size: 18px;
    color: #2d2c2c;
    font-weight: 300;
    line-height: 1.6;
}

.blog_spotlight_date {
    position: absolute;
    margin-top: 310px;
}

/* END SECTION SPOTLIGHT */

/* START SECTION ARTICLES */
.blog_articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.blog_articles_related {
    font-size: 30px;
    font-weight: 300;
    color: #ecdc39;
    padding-bottom: 20px;
}

.blog_articles_list {
    justify-content: space-between;
}

.blog_article_mr {
    margin-right: 25px;
}

.blog_article {
    width: 384px;
    max-height: 480px;
    border-radius: 20px;
    margin-top: 30px;
    color: #2d2c2c;
    text-decoration: none !important;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.blog_article:hover {
    color: #2d2c2c;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(181, 181, 181, 0.80);
    box-shadow: 0px 0px 50px 0px rgba(134, 134, 134, 0.5);
}

.blog_article_img {
    background-size: cover;
    background-position: center;
    height: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.blog_article_content {
    background: #f7f7f7;
    height: 250px;
    padding: 25px 30px;
    position: relative;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.blog_article_tag {
    font-size: 14px;
    margin: 0;
    position: absolute;
}

.blog_article_title {
    margin: 0;
    font-weight: 300;
    line-height: 1.3;
    font-size: 26px;
    margin-top: 32px;
    ;
}

.blog_article_date {
    font-size: 12px;
    bottom: 22px;
    position: absolute;
}

.blog_article_plus {
    width: 100%;
    margin-top: 70px;
}

.article_plus_link {
    display: inline-block;
    font-size: 18px;
    color: #20253b;
    background: #ecdc39;
    padding: 15px 20px;
    border-radius: 8px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.article_plus_link:hover {
    color: #fff;
    background: #20253b;
}

.article_plus_link i {
    display: inline-block;
    padding-left: 5px;
    width: 1em;
    transition: transform .4s ease, -webkit-transform .4s ease;
    will-change: transform;
}

.article_plus_link:hover i {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.apl_left:hover i {
    -webkit-transform: translateX(-6px) !important;
    transform: translateX(-6px) !important;
}

/* END SECTION ARTICLES */


/* START SECTION NEWSLETTER */
.blog_newsletter {
    margin-top: 80px;
}

.blog_newsletter_col {
    background: #ecdc39;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 55px 30px;
    width: 50%
}

.blog_newsletter_w {
    width: 80%;
}

.blog_newsletter_noimg {
    width: 26px;
}

.blog_newsletter_social a {
    width: 20px;
    margin-bottom: 20px;
}

.blog_newsletter_social a:last-child {
    margin-bottom: 0;
}

.blog_newsletter_social a i {
    color: #20253b;
    font-size: 20px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.blog_newsletter_social a i:hover {
    color: #fff
}

.blog_newsletter_social {
    width: 5%;
}

.blog_newsletter_desc {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    min-width: 80%;
    max-width: 80%;
}

.blog_newsletter_content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: right;
    color: #20253b;
}

.blog_newsletter_title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 18px;
}

.blog_newsletter_text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.blog_newsletter_form {
    margin-top: 20px;
}

.input-group-text.fa-envelope-o {
    background-color: #ffffff;
    padding: .375rem 1rem;
    color: #3e3e3e;
    border-color: transparent;
}

.blog_newsletter_email {
    background-color: #ffffff;
    padding: 10px 15px 10px 15px;
    border-radius: 8px;
    outline: 0;
    height: 50px;
    box-shadow: none !important;
}

.blog_newsletter_btn {
    width: 100%;
    padding: 10px 20px;
    margin-top: 15px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    background: #20253b;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    box-shadow: none !important;
}

.blog_newsletter_btn:hover {
    background: #20253b;
    opacity: .9;
}

.blog_newsletter_message.invalid-feedback,
.blog_newsletter_message.valid-feedback {
    display: block;
    color: #ffffff !important;
}

.blog_newsletter_small {
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
}

.blog_newsletter_small a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.blog_newsletter_img {
    background-image: url(../images/newsletter.jpg);
    background-size: cover;
    width: 50%;
    max-width: 50%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.blog_newsletter_title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 18px;
}

.blog_newsletter_text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

/* END SECTION NEWSLETTER */


/* START FOOTER */
.blog_footer {
    width: 100%;
    margin-top: 100px;
    padding-top: 70px;
    background: #ecdc39;
    color: #20253b !important;
}

.blog_footer_c_one {
    width: calc(40%);
}

.blog_footer_c_two,
.blog_footer_c_three {
    width: calc(30%);
}

.blog_footer_line {
    width: 100%;
}

.blog_footer_social {
    margin-top: 20px;
}

.blog_footer_social a {
    margin-left: 15px;
}

.blog_footer_social a:first-child {
    margin-left: 0;
}

.blog_footer_social a svg {
    fill: #20253b;
    width: 25px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.blog_footer_social a svg:hover {
    transform: scale(1.2);
}

.footer_title {
    font-size: 20px;
    font-weight: 500;
    color: #20253b;
}

.footer_text {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    color: #20253b;
}

.footer_action_buttons_link {
    display: block;
    color: #20253b;
    font-size: 18px;
    max-width: 210px;
    padding: 10px 20px 10px 20px;
    border: 1px solid #20253b;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    border-radius: 5px;
}

.footer_action_buttons_link:hover {
    color: #20253b;
    background: #20253b;
    border-color: transparent;
}

.footer_action_buttons_link i {
    display: inline-block;
    width: 1em;
    transition: transform .4s ease, -webkit-transform .4s ease;
    will-change: transform;
}


.footer_action_buttons_link:hover i {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.fi_info_list {
    margin-top: 18px;
    padding-left: 0;
    display: inline-block;
}

.fi_info_item {
    margin-top: 12px;
}

.fi_info_icon {
    width: 25px;
    height: 20px;
    margin-right: 10px;
}

.fi_info_icon img {
    display: block;
    width: 100%;
}

.fi_info_text,
.fi_info_text a {
    font-size: 16px;
    font-weight: 300;
    color: #20253b;
    line-height: 1.25;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.fi_info_item:hover .fi_info_text,
.fi_info_item:hover .fi_info_text a {
    border-bottom-color: #20253b;
}

.ca-footer-divisor {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ca-footer-divisor hr {
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.blog_d_n {
    display: none;
}

.blog_copyright {
    width: 100%;
    background: #ecdc39;
    padding-bottom: 20px;
}

.blog_copyright_content {
    color: #20253b;
    font-size: 16px;
    font-weight: 400;
}

.blog_copyright_menu {
    list-style: none;
}

.copyright_menu_item {
    margin-right: 40px;
}

.copyright_menu_item a {
    color: #20253b;
    line-height: 1.25;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.copyright_menu_item a:hover {
    border-bottom-color: #20253b;
}
/* END FOOTER */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
