
:root {
    --font-title: "Poppins", sans-serif;
    --font-body: "Poppins", sans-serif
    
}
:root {
    --shadow: 0 15px 40px 5px rgba(132, 132, 133, 0.15);
}

.no-rounded {
    --radius-4: 0;
    --radius-8: 0;
    --radius-12: 0;
    --radius-16: 0;
    --radius-20: 0;
    --radius-full: 0;
    --radius-999: 0
}

:root {
    --theme-color: var(--ghost-accent-color);
    --logo-header-height: 24px;
    --white: #ffffff;
    --black: #000000;
    --success-color: #96EA8C;
    --error-color: #FF9B84;
    --radius-4: 4px;
    --radius-8: 8px;
    --radius-12: 12px;
    --radius-16: 16px;
    --radius-20: 20px;
    --radius-full: 50%;
    --radius-999: 999px;
    --twitter: #1da1f2;
    --facebook: #1877f2;
    --instagram: #c13584;
    --github: #333333;
    --linkedin: #0077b5;
    --pinterest: #e60023;
    --whatsapp: #075e54;
    --behance: #1769ff;
    --dribbble: #ea4c89;
    --medium: #292929;
    --youtube: #ff0000;
    --discord: #5865f2;
    --mail: var(--text-color-main);
    --body-background-color: #F9F9FF;
    --card-background-color: #FFFFFF;
    --text-color-main: #2D3350;
    --text-color-dark: #090C1E;
    --text-color-light: #808495;
    --gray-1: #EFF1F4;
    --gray-2: #E8EAEE;
    --gray-3: #CFD0D4;
    --border-color: #DADCE5;
    --button-text-color: var(--white);
    --shadow: 0 3px 10px -2px rgba(4, 9, 14, 0.1), 0 10px 25px -30px rgba(0, 0, 0, 0.1)
}

.post-card {
    background-color: var(--card-background-color);
    padding: 2rem;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    transition: transform .3s ease;
    will-change: transform
}

.js-post-list-wrap {
    margin-bottom: -3rem
}

.post-img-container {
    width: 272px;
    margin-right: 2rem
}

.post-img-container .post-img-wrap {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-16)
}

.post-img-container .post-img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .3s ease;
    transform-origin: center;
    will-change: transform
}

.post-img-container .post-img-wrap:hover img {
    transform: scale(1.03)
}

.post-info-wrap {
    flex: 1 1 300px
}

.post-info-wrap .post-title {
    margin-top: 0;
    margin-bottom: 1rem;
    height:auto;
}

.post-info-wrap .post-title a {
    color: var(--text-color-dark);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px
}

.post-info-wrap .post-title a:hover {
    text-decoration-color: var(--theme-color)
}

.post-info-wrap .post-excerpt {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    /*height: auto;*/
    /*overflow: hidden;*/
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.tag-list {
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap
}

.tag-list a {
    color: var(--text-color-main);
    font-size: 20px;
    line-height: 1.5;
    margin: 0 8px 12px 0;
    background-color: var(--gray-1);
    display: flex;
    align-items: center;
    height: 46px;
    line-height: 32px;
    padding: 5px 20px;
    border-radius: var(--radius-20);
    position: relative;
}

.tag-list a .tag-accent {
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: var(--radius-full);
    background: var(--theme-color)
}

.tag-list a:hover {
    background-color: var(--gray-2)
}

.post-meta {
    font-size: 15px;
    color: var(--text-color-light);
    display: flex;
    line-height: 1.6
}

.post-meta>:not(:last-child) {
    margin-right: 16px
}

.post-meta svg {
    width: 18px;
    height: 18px;
    color: var(--gray-3);
    margin-right: .25rem;
    display: inline-flex;
    vertical-align: middle;
    margin-top: -2px
}

.post-meta a {
    color: var(--text-color-light);
    text-decoration: underline;
    text-decoration-color: transparent
}

.post-meta a:hover {
    text-decoration-color: var(--theme-color)
}

.post-card-vertical .post-img-container {
    width: 100%;
    margin-bottom: 2rem
}

.post-card-vertical .post-img-container .post-img-wrap {
    aspect-ratio: 5/4
}

.post-card-vertical .post-info-wrap {
    margin-left: 0
}

.post-card-vertical .post-info-wrap .post-excerpt {
    -webkit-line-clamp: 4
}
.post-excerpt a
{
    color:#000;
}

.post-load-button {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    min-width: 160px;
    margin-top: 3rem;
    background: #0c4b84;
    border-radius: 25px;
    font-family: 'concorduploaded_file';
    min-width: 00px;
    text-align: center;
    padding: 9px 25px;
    font-size: 16px;
    display: inline-block;
    color: #fff;

}

@media screen and (max-width:767px) {
    .post-img-container {
        width: 200px
    }

    .post-info-wrap {
        flex: 1 1 200px
    }
}

@media screen and (max-width:575px) {
    .post-card {
        padding: 1.5rem
    }
    
    .elephant-darkbluesection-second{
            background: none;
    position: relative;
    }
    
    .paddt40
    {
        background: #0c4b84;
    }

    .post-img-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem
    }

    .post-info-wrap {
        flex: 1 1 200px
    }
}

.sidebar-wrap {
    background-color: var(--card-background-color);
    padding: 2rem;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow);
    position: sticky
}

.sidebar-wrap .widget:first-child {
    margin-top: 0
}

@media screen and (max-width:991px) {
    .sidebar {
        margin-top: 2.5rem
    }

    .sidebar-wrap {
        padding: 1.5rem
    }
}

.widget {
    margin-top: 3.5rem
}
.flex {
    display: flex;
    flex-wrap: wrap;
}

.widget-tags {
    margin-bottom: 2.75rem
}

.widget-title {
    margin-top: 0;
    margin-bottom: 2rem
}

.social-links a {
    background: var(--gray-1);
    color: var(--text-color-main);
    margin: 0 8px 8px 0;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full)
}

.social-links a svg {
    width: 24px;
    height: 24px
}

.social-links a:hover {
    background: var(--gray-2)
}

.social-links .twitter {
    color: var(--twitter)
}

.social-links .facebook {
    color: var(--facebook)
}

.social-links .linkedin {
    color: var(--linkedin)
}

.social-links .instagram {
    color: var(--instagram)
}

.social-links .github {
    color: var(--github)
}

.post-small {
    margin-bottom: 2rem
}

.post-small .post-img-container {
    width: 80px;
    margin-right: 1rem
}

.post-small .post-img-wrap {
    border-radius: var(--radius-8);
    overflow: hidden
}

.post-small .post-info-wrap {
    flex: 1 1 120px
}

.post-small .post-title {
    /*font-weight: 500;*/
    /*line-height: 1.5;*/
    /*margin-bottom: .5rem*/
}

.container-blog{
    font-family: 'SourceSansProLight';
    line-height: 1.6;
    color: var(--text-color-main);
    --body-background-color: var(--body-custom-background-color, #F9F9FF);
    background-color: var(--body-background-color);
    -webkit-font-smoothing: subpixel-antialiased;
    --shadow: 0 15px 40px 5px rgba(132, 132, 133, 0.15);
}
.container-blog h2  {
    color: #000;
    padding: 20px 0px;
}


/* Blog Details  */

.single-post-card {
    background-color: var(--card-background-color);
    box-shadow: var(--shadow);
    padding: 2rem;
    border-radius: var(--radius-16)
}

.single-post-img-container {
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem
}

.single-post-img-container.ratio-16-9 {
    aspect-ratio: 16/9
}

.single-post-img-container.ratio-16-6 {
    aspect-ratio: 16/6
}

.single-post-img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-16)
}

.single-post-img-container a {
    text-decoration: underline;
    color: var(--text-color-main)
}

.single-post-img-container a:hover {
    color: var(--theme-color)
}

.single-post-header {
    max-width: 700px;
    margin: 0 auto 2rem
}

.single-post-header .post-title {
    margin-top: 0;
    margin-bottom: 1.25rem
}

.full-width .single-post-img-container {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    padding: 1rem;
    margin-bottom: 2.5rem
}

.full-width .single-post-img-container img {
    border-radius: var(--radius-8)
}

.single-post-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8
}

/*.single-post-content>* {*/
/*    margin-bottom: 2.5rem*/
/*}*/

/*.single-post-content p {*/
/*    margin-bottom: 2rem*/
/*}*/

/*.single-post-content h1, .single-post-content h2, .single-post-content h3, .single-post-content h4, .single-post-content h5, .single-post-content h6 {*/
/*    margin-bottom: 1rem*/
/*}*/

.single-post-content a:not(.btn, .kg-btn) {
    text-decoration: underline;
    color: #3598db!important;
    font-weight:600;
}

.single-post-content a:not(.btn, .kg-btn):hover {
    color: var(--theme-color)
}

.single-post-content .kg-button-card a.kg-btn {
    height: 48px;
    line-height: 48px;
    padding: 0 2rem;
    border-radius: var(--radius-999);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    vertical-align: middle
}

.single-post-content li {
    margin-bottom: .25rem
}

.single-post-content blockquote {
    margin: 4rem 0
}

.single-post-content .kg-blockquote-alt {
    border: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 4px solid var(--theme-color);
    padding: 3.5rem 0 2rem;
    font-style: normal;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
    position: relative
}

.single-post-content .kg-blockquote-alt::before {
    content: "â€œ";
    font-size: 400%;
    font-weight: 700;
    font-family: Arial, sans-serif;
    display: block;
    line-height: .1;
    color: var(--theme-color)
}

.single-post-content .kg-image-card img {
    max-width: 100%;
    border-radius: var(--radius-16)
}

.single-post-content .kg-gallery-card, .single-post-content .kg-image-card {
    --gap: 0.25rem
}

.single-post-content .kg-gallery-row:first-of-type .kg-gallery-image:first-of-type img {
    border-top-left-radius: var(--radius-16)
}

.single-post-content .kg-gallery-row:first-of-type .kg-gallery-image:last-of-type img {
    border-top-right-radius: var(--radius-16)
}

.single-post-content .kg-gallery-row:last-of-type .kg-gallery-image:first-of-type img {
    border-bottom-left-radius: var(--radius-16)
}

.single-post-content .kg-gallery-row:last-of-type .kg-gallery-image:last-of-type img {
    border-bottom-right-radius: var(--radius-16)
}

.single-post-content a.kg-bookmark-container {
    display: flex;
    color: var(--text-color-dark);
    text-decoration: none;
    flex-direction: column-reverse;
    border-radius: var(--radius-16) !important;
    border: 1px solid var(--border-color) !important;
    padding: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.single-post-content a.kg-bookmark-container:hover {
    color: var(--text-color-main)
}

.single-post-content a.kg-bookmark-container:hover .kg-bookmark-title {
    text-decoration-color: var(--theme-color)
}

.single-post-content a.kg-bookmark-container:hover .kg-bookmark-description, .single-post-content a.kg-bookmark-container:hover .kg-bookmark-metadata {
    color: var(--text-color-main)
}

.single-post-content .kg-bookmark-content {
    flex-basis: 0;
    flex-grow: 999;
    min-width: 50%;
    padding: 1rem;
    overflow: visible
}

.single-post-content .kg-bookmark-title {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--text-color-dark);
    transition: all .3s;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px
}

.single-post-content .kg-bookmark-description {
    font-size: .875rem;
    line-height: 1.6;
    display: -webkit-box;
    margin-top: 16px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text-color-dark);
    opacity: 1;
    overflow: hidden
}

.single-post-content .kg-bookmark-metadata {
    display: flex;
    align-items: center;
    font-size: .75rem;
    font-weight: 600;
    margin-top: 24px;
    color: var(--text-color-dark)
}

.single-post-content .kg-bookmark-metadata>:not(img) {
    opacity: 1
}

.single-post-content .kg-bookmark-thumbnail {
    flex-basis: 216px;
    flex-grow: 1;
    position: relative;
    border-radius: var(--radius-8);
    overflow: hidden
}

.single-post-content .kg-bookmark-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: bottom;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.single-post-content .kg-bookmark-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: bottom
}

.single-post-content .kg-bookmark-publisher:before {
    content: "â€¢";
    margin: 0 6px
}

.single-post-content .kg-callout-card {
    padding: 1.25rem;
    border-radius: var(--radius-16)
}

.single-post-content .kg-header-card {
    min-height: 40vh;
    border-radius: var(--radius-16)
}

.single-post-content .kg-header-card.kg-style-image::before {
    border-radius: var(--radius-16)
}

.single-post-content .kg-header-card.kg-style-light {
    background-color: var(--body-background-color)
}

.single-post-content .kg-header-card h2.kg-header-card-header {
    font-size: 3.5rem
}

.single-post-content .kg-header-card.kg-size-small h2.kg-header-card-header {
    font-size: 2.5rem
}

.single-post-content .kg-header-card.kg-size-small a.kg-header-card-button {
    height: 40px;
    line-height: 40px;
    padding: 0 1rem
}

.single-post-content .kg-header-card.kg-size-large h2.kg-header-card-header {
    font-size: 4.5rem
}

.single-post-content .kg-header-card.kg-size-large a.kg-header-card-button {
    height: 56px;
    line-height: 56px;
    font-size: 1.125rem
}

.single-post-content .kg-header-card a.kg-header-card-button {
    border-radius: var(--radius-999);
    font-family: var(--font-body);
    font-size: 1rem;
    height: 48px;
    line-height: 48px
}

.single-post-content .kg-product-card h4.kg-product-card-title {
    font-family: var(--font-title)
}

.single-post-content .kg-product-card .kg-product-card-description ol, .single-post-content .kg-product-card .kg-product-card-description p, .single-post-content .kg-product-card .kg-product-card-description ul {
    font-family: var(--font-body)
}

.single-post-content .kg-product-card .kg-product-card-rating-star {
    color: var(--theme-color)
}

.single-post-content .kg-product-card-container {
    border-radius: var(--radius-16);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 1.5rem
}

.single-post-content .kg-product-card-image {
    border-radius: var(--radius-8)
}

.single-post-content .kg-embed-card {
    display: flex;
    flex-direction: column;
    align-items: center
}

.single-post-content .kg-product-card a.kg-product-card-btn-accent {
    color: var(--white);
    font-family: var(--font-body);
    border-radius: var(--radius-999);
    height: 48px;
    line-height: 48px;
    font-size: 1rem;
    font-weight: 500
}

.single-post-content .kg-product-card a.kg-product-card-btn-accent:hover {
    color: var(--white);
    opacity: .8
}

@media screen and (min-width:768px) {
    .single-post-content a.kg-bookmark-container {
        flex-direction: row
    }

    .single-post-content .kg-bookmark-thumbnail {
        flex-basis: 32%;
        min-height: 144px;
        margin-left: .5rem
    }
}

.archive-blog h4{
    color:#090C1E !important;
}
.archive-blog a{
    color:#090C1E !important;
}
.become-partner-2 li.active a {
    color: #000 !important;
    background-color: #d3d3d3!important;
}

.become-partner ul{
    margin-top:20px;
    padding-left:0px;
}

.btn-paginacao {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  background-color: #FFF;
}
.btn-paginacao ul {
  width: auto;
  height: auto;
}
.btn-paginacao ul li {
  width: 30px;
  height: 30px;
  float: left;
  margin: 0 5px 0 0;
  border: 0;
}
.btn-paginacao ul li:last-child {
  margin: 0;
}
.btn-paginacao ul li label {
  width: 100%;
  height: 30px;
  float: left;
  text-align: center;
  line-height: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #2E2929;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color .25s ease-in-out;
}
.btn-paginacao ul li label:hover {
  background-color: #FF1493;
  color: #FFF;
}

#paginacao1:checked ~ .box-vitrines > ul {
  transition: transform .7s ease-in-out;
  transform: translateY(0px);
}

#paginacao1:checked ~ .box-vitrines label[for="paginacao1"] {
  background-color: #FF1493;
  color: #FFF;
}

#paginacao2:checked ~ .box-vitrines > ul {
  transition: transform .7s ease-in-out;
  transform: translateY(-369px);
}

#paginacao2:checked ~ .box-vitrines label[for="paginacao2"] {
  background-color: #FF1493;
  color: #FFF;
}

.mais{
  width: 147px;
  height: auto;
  position: absolute;
  bottom: 7px;
  right: 0;
  text-align: center;
}
.mais a{
  font-size: 1.2em;
  color: #000;
}
.page {
  display: none;
}
.page-active {
  display: block;
}
#pagination-demo{
    margin-top:70px !important;
}

/*blog paddb91 all screen responsive start*/

@media screen and (max-width:2000px) and (min-width:1500px){
    .paddb91 {
    padding-bottom: 130px;
}
}
@media (max-width:1199px){
    .paddb91 {
    padding-bottom: 117px;
}
}
@media (max-width:767px){
      .elephant-darkbluesection-second{
          background: #0c4b84;
      }
}

/*blog paddb91 all screen responsive end*/