section.banner {
    text-align:center;
    background:#202020;
    margin-top:20px;
    padding:70px 70px 30px 20px;
}
section.banner h1 {
    color: #C7A03E;
    font-family: "Playfair", Sans-serif !important;
    padding: 0 !important;
    margin:0 !important;
    font-size: 52px;
    font-weight: 600;
}
.breadcrumb {
    padding: 20px 0 0 0;
    color: #C0C0C0;
    transition: color 0.3s;
    font-family: "Playfair", Sans-serif !important;
    font-size:15px;
    font-weight:400;
}
.breadcrumb a {
    color: #C0C0C0;
    font-family: "Playfair", Sans-serif !important;
    transition: color 0.3s;
    text-decoration:none;
    padding:10px;
}
.breadcrumb span.current {
     padding:10px;
}
#blog-area .container {
    width: 1140px;
    margin: 0 auto;
}
section#blog-area {
    padding-top:60px;
    background:#000;
}
.card-container {
    display: flex;
    gap: 20px;
}
.card {
    background-color: #202020;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    text-align: left;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}
.card img {
    width: 100%;
    height: auto;
}
.card h3 {
    font-size: 18px;
    color: #f0c040;
    margin-top: 30px;
    font-weight: 400;
    font-family: "Playfair Display", sans-serif;
}
.card-meta {
    font-family: "Playfair Display", sans-serif;
    display: flex;
    justify-content: left;
    gap: 5px;
    font-size: 16px;
    margin: 0 20px 10px 0px;
    color: #fff;
    margin-top: 30px;
}
.card-meta span i {
    margin-right: 10px;
}
.card p {
    margin: 20px 0px 20px 0px;
    color: #fff;
    font-weight: 400;
    font-family: "Playfair Display", sans-serif;
    font-size: 16px;
}
.learn-more {
    display: block;
    text-align: center;
    background-color: #B27F2D;
    color: #fff;
    text-decoration: none;
    font-family: "Playfair Display", sans-serif;
    padding: 12px 30px;
    width: 42%;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s;
}
.learn-more:hover {
    background-color: #e5b835;
}



body {
    font-family: "Playfair Display", sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 24px;
    font-weight: 400;
}
a, a:hover, a:active, a:focus {
    transition: all 0.5s ease 0s;
    text-decoration: none;
    outline: none;
    color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", sans-serif;
    color: #000000;
    margin: 0;
}

.blog-post .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.blog-post header {
    display: none;
}
.blog-default-area .blog-post .single-blog-item {
    margin-bottom: 40px;
}

.blog-default-area .single-blog-item {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 456px;
    border-bottom: 1px solid #f4f4f4;
    background: #ddd;
}
.blog-default-area .single-blog-item .img-holder {
    overflow: hidden;
    position: relative;
}
.blog-default-area .single-blog-item .img-holder img {
    transform: scale(1.1, 1.1);
    transition: all 0.5s ease 0s;
    width: 100%; 
    height: 320px;
    object-fit: cover;
}
.blog-default-area .single-blog-item:hover .img-holder img {
    transform: scale(1, 1);
}
.blog-default-area .single-blog-item:hover .img-holder .overlay-style-one {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -moz-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}
.overlay-style-one {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 0px;
    color: #ffffff;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transform: perspective(400px) rotateX(-90deg);
    -moz-transform: perspective(400px) rotateX(-90deg);
    -ms-transform: perspective(400px) rotateX(-90deg);
    -o-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-default-area .single-blog-item:hover .img-holder .categories {
    transform: translate3d(0px, -89px, 0px);
}

.single-blog-item .img-holder .categories {
    background: #c0182f;
    position: absolute;
    bottom: 20px;
    left: 15px;
    height: 35px;
    transform: translate3d(0px, 0%, 0px);
    transition: all 500ms ease;
    padding: 0 10px;
}
.single-blog-item .img-holder .categories a {
    text-align: center;
    padding: 6px 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Playfair Display", sans-serif;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}
.single-blog-item:hover .text-holder {
    bottom: 0;
    border-bottom: none;
}
.single-blog-item .text-holder {
    border: 1px solid #f4f4f4;
    border-top: none;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 22px;
    text-align: center;
    transition: all 500ms ease;
    bottom: -82px;
    position: absolute;
    width: 100%;
    left: 0;
    background: #ffffff;
    z-index: 3;
    transition: all 500ms ease;
    box-sizing: border-box;
}
.single-blog-item .text-holder .meta-info {
    overflow: hidden;
    padding-top: 20px;
    text-align: center;
}
.single-blog-item .text-holder .meta-info li {
    display: inline-block;
    float: none;
    line-height: 16px;
    border-right: 1px solid #dfdfdf;
    padding-right: 10px;
    margin-right: 5px;
}
.single-blog-item .text-holder .meta-info li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    font-family: "Playfair Display", sans-serif;
}
.single-blog-item .text-holder .meta-info li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.single-blog-item .text-holder .blog-title {
    color: #252525;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding: 10px 0 18px;
    display: block;
    transition: all 500ms ease;
}
.single-blog-item .text-holder .blog-title:hover {
    color: #b27f2d;
}
.single-blog-item .text-holder .text p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}
.blog-default-area .text-holder .text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/*_________________Detail Page__________________*/

.blog-single-area .row {
    display: grid;
    grid-template-columns: 70% 30%;
}
.blog-single-area {
    border-top: 1px dashed #ffffff42;
}
.blog-large-area .blog-post {
    border-right: 1px dashed #ffffff42;
    padding-right: 30px;
    /* margin-top: -60px; */
    /* padding-top: 60px; */
    margin-bottom: -50px;
    padding-bottom: 20px;
}
.blog-post .post-thumbnail img {
    width: 94%;
    height: 350px;
    object-fit: contain;
    padding: 20px;
    border: 1px dashed #ffffff42;
}
.blog-single-area .single-blog-item {
    margin-bottom: 33px;
}
.blog-large-area .single-blog-item {
    margin-bottom: 50px;
    border: none;
    min-height: initial;
}
.blog-single-area .single-blog-item .img-holder {
    overflow: hidden;
    position: relative;
}
.blog-large-area .single-blog-item .img-holder .categories {
    transform: translate3d(0px, 0px, 0px);
    bottom: 52px;
    display: none;
}
.blog-single-area .single-blog-item .text-holder {
    border: none;
    border-top: none;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    text-align: left;
    transition: all 500ms ease;
    position: static;
    background: #202020;
}
.blog-large-area .single-blog-item .text-holder .meta-info {
    text-align: left;
    padding: 0;
}
.blog-single-area .single-blog-item .text-holder .blog-title {
    font-size: 24px;
    padding: 15px 0 15px;
}

.blog-large-area .single-blog-item .text-holder .blog-title {
    font-size: 24px;
    padding: 15px 0 15px;
    line-height: 30px;
    color: #b27f2d;
}
.blog-single-area .text h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0 10px;
}
.blog-single-area .text ul {
    list-style: disc;
    padding-bottom: 15px;
}

.blog-single-area .text ul li {
    list-style: inside;
}
.blog-single-area .text ul li::marker {
    color: #009833;
}
.blog-single-area .text-holder {
    border-radius: 10px;
    padding: 35px 30px!important;
}
.blog-single-area .elementor-widget-text-editor h3 {
    padding: 0 0 10px!important;
}
.blog-single-area .post-thumbnail {
    margin-bottom: 30px;
}
/*_________________Sidebar Css__________________*/

.sidebar-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 30px;
    /* padding-top: 60px;  */
}
.sidebar-wrapper .single-sidebar form.search-form {
    position: relative;
}
.sidebar-wrapper .single-sidebar {
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}
.sidebar-wrapper .single-sidebar .search-form input.search-field {
    background: #fff;
    border: 1px solid #f4f4f4;
    color: #ababab;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 44px;
    letter-spacing: 1px;
    padding-left: 15px;
    padding-right: 55px;
    position: relative;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    width: 100%;
    border-radius: 5px;
}
.sidebar-wrapper .single-sidebar .search-form button {
    background: #b27f2d none repeat scroll 0 0;
    color: #fff;
    display: block;
    height: 45px;
    border-radius: 0 5px 5px 0;
    padding: 3px 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    width: 50px;
    border: 0;
}
.sidebar-wrapper .single-sidebar .search-form button:hover {
    background: #b27f2d;
}

.sidebar-wrapper .single-sidebar .search-form button::after {
    content: '\e97a';
    font-family: 'elementskit';
    font-size: 20px;
}
.sidebar-wrapper .single-sidebar .sec-title h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: "Playfair Display", sans-serif;
    text-transform: uppercase;
}
.single-sidebar .categories {
    background: #ffffff;
    display: block;
    border: 1px solid #f5f4f3;
    padding: 24px 30px 24px;
    list-style: none;
    border-radius: 3px;
}
.single-sidebar .categories li {
    border-bottom: 1px solid #ededed;
    margin-bottom: 12px;
    padding-bottom: 9px;
}
.single-sidebar .categories li a {
    color: #252525;
    transition: all 500ms ease;
    font-size: 14px;
    font-weight: 500;
    font-family: "Playfair Display", sans-serif;
    position: relative;
}
.single-sidebar .categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.single-sidebar .categories li a i {
    padding-right: 10px;
    color: #c0182f;
    font-size: 18px;
}
.single-sidebar .categories li a:hover {
    color: #c0182f;
    padding-left: 10px;
}
.sidebar-wrapper .single-sidebar .sec-title {
    overflow: hidden;
    padding-bottom: 25px;
    margin-top: 0;
}
.single-sidebar .popular-post li {
    margin-bottom: 25px;
    padding-left: 70px;
    position: relative;
    border-bottom: 1px solid #ffffff42;
    padding-bottom: 25px;
}
.single-sidebar .popular-post li .img-holder {
    display: block;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.single-sidebar .popular-post li .img-holder img {
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    width: auto;
    height: 70px;
    width: 100%;
}


.single-sidebar .categories li a i {
    padding-right: 10px;
}
.single-sidebar .popular-post li .title-holder {
    padding-left: 20px;
}
.single-sidebar .popular-post li .title-holder a .post-title {
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    font-weight: 300;
    margin: 0 0 7px;
    font-family: "Playfair Display", sans-serif;
    transition: all 500ms ease;
}
.single-sidebar .popular-post li .title-holder a:hover .post-title {
    color: #b27f2d;
}
.single-sidebar ul.popular-post {
    padding: 0;
}
.single-sidebar .popular-post li .title-holder .post-date {
    color: #b27f2d;
    display: block;
    transition: all 500ms ease;
    font-weight: 500;
    font-size: 15px;
    font-family: "Playfair Display", sans-serif;
}
.single-sidebar .popular-post li:hover .img-holder .overlay-style-one {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -moz-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}
.overlay-style-one .box {
    display: table;
    height: 100%;
    width: 100%;
}
.overlay-style-one .box .content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.single-sidebar .popular-post li .img-holder .overlay-style-one .box .content a:hover i {
    color: #009833;
}
.single-sidebar .popular-post li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/*---------------------------Responsive Css-----------------------------*/
@media screen and (min-device-width: 320px) and (max-device-width: 767px) { 
    section.banner {
        margin-top: 0px; 
    }
    section.banner h1 {
        font-size: 25px;
        line-height: 30px;
    }
    .card {
        width: 300px;
    }
    .blog-post .col-md-6 {
        margin-bottom: 30px;
    }

    section#blog-area {
        padding-left: 10px;
        padding-right: 10px;
    }
    .blog-post .row {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
    }
	.blog-single-area .row {
    grid-template-columns: repeat(1, 1fr);
    }
	.blog-large-area .blog-post {
    border-right: 0px dashed #ffffff42;
    padding-right: 0px;  
    }
	.sidebar-wrapper {
    padding-left: 00px;
    padding-top: 50px;
    border-top: 1px dashed;
    margin-top: 25px;
   }
   .sidebar-wrapper .single-sidebar:last-child {
    margin-bottom: 20px;
    }
	.sidebar-wrapper .single-sidebar {
    margin-bottom: 40px;
    }
    #blog-area .container {
        width: 100%;
    }
    
}


@media screen and (min-device-width: 768px) and (max-device-width: 991px) { 
    section.banner h1 {
        font-size: 25px;
        line-height: 30px;
    }
    #blog-area .container {
        width: 100%;
    }
    section#blog-area {
        padding-left: 10px;
        padding-right: 10px;
    }
    
	.blog-post .row {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 30px;
	}
	.blog-single-area .row {
    grid-template-columns: repeat(1, 1fr);
   }
   .blog-large-area .blog-post {
    border-right: 0px dashed #ffffff42;
    padding-right: 0px;
   }
   .sidebar-wrapper {
    padding-left: 00px;
    padding-top: 50px;
    border-top: 1px dashed #ffffff42;
    margin-top: 25px;
   }
   .single-sidebar .popular-post li:last-child {
    padding-bottom: 20px;
   }
   .dgwt-wcas-search-wrapp {
    margin-left: 0;
   }
}