/*
  Blog Name: Blog masonry Plugin
 */

/* font family */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ========== color section =========== */
    /* blog heading section color */
    --dc-blog-heading-color: #000;
    --dc-breadcrumb-color: #494949;
    --dc-breadcrumb-active-color: #6c757d;
    --dc-blog-heading-bg-color: #EFDAD7;
    --dc-blog-heading-gradient: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .4));

    /* blog post list section color */
    --dc-blog-list-heading-color: #000;
    --dc-blog-list-heading-font-size: 40px;
    --dc-blog-list-heading-padding: 5% 0;

    /* blog post block section */
    --dc-post-excerpt-padding: 25px;
    --dc-post-item-bg: rgba(0, 0, 0, .04);
    --dc-date-month-year-fontsize: 16px;
    --dc-date-month-year-color: #000;
    --dc-post-heading-fontsize: 20px;
    --dc-post-heading-color: #000;
    --dc-post-excerpt-fontsize: 15px;
    --dc-post-detail-fontsize: 15px;
    --dc-post-detail-color: #000;
    --dc-post-detail-hoverline-color: #1572A1;

    /* blog post section color */
    --dc-categories-bg-color: #1572A1;
    --dc-categories-text-color: #fff;
    --dc-date-bg-color: #fff;

    --dc-post-excerpt-color: #494949;

    /* ================== single  Page: Related Post Color ================ */
    --dc-related-post-heading-color: #000;
    --dc-related-post-heading-after: #1572A1;
    --dc-related-excerpt-color: #494949;
    --dc-related-post-title-color: #000;
    --dc-related-title-hover-color: #1572A1;
    --dc-related-post-excerpt-color: #494949;

    /* ============== font size ================== */
    /* blog header section font size */
    --dc-header-font-size: 44px;
    --dc-breadcrumb-font-size: 16px;

    /* blog post font size */
    --dc-categories-fontsize: 16px;
    --dc-date-day-fontsize: 19px;

    /* ================== single  Page: Related Post font size ================ */
    --dc-related-post-heading-fontsize: 32px;
    --dc-related-post-title-fontsize: 18px;
    --dc-related-post-excerpt-fontsize: 16px;

    /* ============== padding margin section ============== */
    /* blog heading section padding margin */
    --dc-blog-heading-padding-top: 30px;
    --dc-blog-heading-padding-bottom: 30px;
    --dc-blog-heading-margin-bottom: 50px;

    /* blog post margin padding section */
    --dc-post-wrapper-margin-bottom: 25px;

    /* ================== single  Page: ================ */
    --dc-single-blog-title-fontsize: 40px;
    --dc-single-blog-title-color: #000;
    --dc-single-blog-description-fontsize: 16px;
    --dc-single-blog-description-color: #494949;
}



html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Open Sans', sans-serif;
}

/*  ====================================  Blog Header Section Open  ==================================== */

.dc-blog-header {
    background: var(--dc-blog-heading-bg-color);
    background-image: var(--dc-blog-heading-gradient), url("../images/blog-img-1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--dc-blog-heading-padding-top);
    padding-bottom: var(--dc-blog-heading-padding-bottom);
    margin-bottom: var(--dc-blog-heading-margin-bottom);
}

.dc-blog-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.dc-main-heading {
    font-size: var(--dc-header-font-size);
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: var(--dc-blog-heading-color);
}


.dc-blog-wrapper nav li {
    font-size: var(--dc-breadcrumb-font-size);
}

.dc-blog-wrapper nav li > a {
    color: var(--dc-breadcrumb-color);
    text-decoration: none;
}

.dc-blog-wrapper nav li > a:hover {
    text-decoration: underline;
}

.dc-blog-wrapper .breadcrumb-item.active {
    color: var(--dc-breadcrumb-active-color);
}

/*  ====================================  Blog Header Section Close  ==================================== */

/* ====================================  Blog body Section Open   ==================================== */

.dc-blog-wrapper .dc-classic-layout-item {
    background: var(--dc-post-item-bg);
    margin-bottom: 25px;
}

.dc-post-thumbnail-rollover {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.dc-post-thumbnail-wrap {
    position: relative;
    width: 100%;
}

.dc-post-thumbnail {
    position: relative;
    display: block;
}


.dc-fancy-date {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1;
    min-width: 55px;
    background: var(--dc-date-bg-color);
    color: var(--dc-date-text-color);
    padding: 4px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
}

.dc-fancy-date .dc-entry-month, .dc-fancy-date .dc-entry-year, .dc-fancy-date .updated.dc-entry-date {
    font-size: var(--dc-date-month-year-fontsize);
    color: var(--dc-date-month-year-color);
}

.dc-fancy-date .dc-entry-date {
    font-size: var(--dc-date-day-fontsize);
    font-weight: bold;
}


.dc-fancy-date a {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--dc-black-color);
    font-size: 17px;
}



.dc-fancy-categories {
    position: absolute;
    left: 25px;
    top: 25px;
    z-index: 1;
}

.dc-fancy-categories a {
    font-size: var(--dc-categories-fontsize);
    display: block;
    background: var(--dc-categories-bg-color);
    margin-bottom: 10px;
    padding: 5px 15px;
    color: var(--dc-categories-text-color);
    text-decoration: none;
    opacity: .9;
}

.dc-post-entry-content {
    padding: var(--dc-post-excerpt-padding);
}

.dc-post-entry-content .dc-entry-excerpt >p {
    color: var(--dc-post-excerpt-color);
    font-size: var(--dc-post-excerpt-fontsize);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dc-entry-title {
    font-size: var(--dc-post-heading-fontsize);
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    color: var(--dc-post-heading-color);
}

.dc-post-entry-content .dc-post-detail {
    color: var(--dc-post-detail-color);
    font-weight: bold;
    text-decoration: none;
    position: relative;
    font-size: var(--dc-post-detail-fontsize);
    display: inline-block;
    margin-top: 19px;
}

.dc-post-entry-content a.dc-post-detail::after {
    content: '';
    background: var(--dc-post-detail-hoverline-color);
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .5s ease;
}

.dc-thumbnail-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.dc-post-entry-content a.dc-post-detail:hover::after {
    width: 100%;
}

/* ====================================  Blog body Section Close   ==================================== */


/* ====================================  Blog Single Page Section Open   ==================================== */
.dc-single-thumbnail .dc-thumbnail-img {
    height: 550px;
}

.dc-single-content {
    margin-top: 35px;
}

.dc-single-content h3 {
    font-size: var(--dc-single-blog-title-fontsize);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dc-single-blog-title-color);
}

.dc-single-content p {
    font-size: var(--dc-single-blog-description-fontsize);
    font-width: 400;
    color: var(--dc-single-blog-description-color);
    margin-top: 10px;
}


.dc-fancy-post {
    margin-top: 55px;
}


.dc-fancy-post .dc-fancy-blog-img {
    height: 350px;
    width: 100%;
    object-fit: cover;

}

.dc-fancy-post-conetent {
    margin-top: 25px;
    margin-bottom: 25px;
}

/* ==================== RElated Post */
.dc-related-post {
    margin-top: 90px;
}

.dc-related-post-heading {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: var(--dc-related-post-heading-fontsize);
    color: var(--dc-related-post-heading-color);
}

.dc-related-post-heading::after {
    content: '';
    height: 3px;
    background: var(--dc-related-post-heading-after);
    width: 100px;
    position: absolute;
    bottom: -15px;
}

.dc-related-post-items {
    margin-top: 55px;
    margin-bottom: 55px;
}

.dc-related-img {

    height: 140px !important;
    width: 150px;
    object-fit: cover;
    position: relative;
}

.dc-related-img-link {
    position: relative;
    display: block;
}

.dc-related-img-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    transition: .5s ease;
}

.dc-related-img-link:hover::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);

}
.dc-related-post-items .dc-related-post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--dc-related-post-excerpt-color);
    font-size: var(--dc-related-post-excerpt-fontsize);
    margin-bottom: 0;
}

.dc-related-post-items .dc-related-post-title a {
    text-decoration: none;
    color: var(--dc-related-post-title-color);
    font-size: var(--dc-related-post-title-fontsize);
    transition: .5s ease;
    /*white-space: nowrap;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 2;*/
    /*-webkit-box-orient: vertical;*/
    /*overflow: hidden;*/
    height:25px;

}

.dc-related-post-items .dc-related-post-title a:hover{
    color: var(--dc-related-title-hover-color);
}

.dc-related-post-items p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--dc-related-post-excerpt-color);
    font-size: var(--dc-related-post-excerpt-fontsize);

}

/* ====================================  Blog Single Page Section Close   ==================================== */

/* ========================= Pagination  Section ==============================  */
.Dc-pagination {
    margin-bottom: 55px;
    margin-top: 55px;
}

.Dc-pagination a, .Dc-pagination span {
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    display: inline-block;
    color: var(--dc-post-heading-color);
}

.Dc-pagination span.current {
    background: var(--dc-post-heading-color);
    color: #fff;
}

.Dc-pagination a:hover:not(.active) {
    background-color: #ddd;
}

/* ========================= Heading  Section ==============================  */

.Dc-noticias__heading h2 {
    text-align: center;
    padding:  var(--dc-blog-list-heading-padding);
    font-size: var(--dc-blog-list-heading-font-size);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--dc-blog-list-heading-color);
}