 h1{font-size:25px;padding:10px;line-height:1.6; text-align:center;}


.isotope-item {
    z-index: 2;
    padding: 0;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.isotope,
.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

.portfolio-filter ul {
    padding: 0;
    z-index: 2;
    display: block;
    position: relative;
    margin: 0;
}

.portfolio-filter ul li {
    border-radius: 0;
    display: inline-block;
    margin: 0 5px 0 0;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
}

.portfolio-filter ul li:last-child:after {
    content: "";
}

.portfolio-filter ul li .btn-dark {
    box-shadow: none;
    background-color: transparent;
    border: 2px solid #eb1f28 !important;
    color: #393939;
    font-weight: 500;
    font-size: 14px;
    padding: 15px 35px;
}

.da-thumbs {
    list-style: none;
    position: relative;
    padding: 0;
}

.da-thumbs .pitem {
    margin: 0;
    padding: 15px;
    position: relative;
}

.da-thumbs .pitem a,
.da-thumbs .pitem a img {
    display: block;
    position: relative;
}

.da-thumbs .pitem a {
    overflow: hidden;
}

.da-thumbs .pitem a div {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

.da-thumbs .pitem a div h3 {
    display: block;
    color: #ffffff;
    font-size: 20px;
    padding: 30px 15px;
    text-transform: capitalize;
    font-weight: normal;
}

.da-thumbs .pitem a div h3 small {
    display: block;
    color: #ffffff;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 300;
}

.da-thumbs .pitem a div i {
    background-color: #eb1f28;
    position: absolute;
    color: #ffffff !important;
    bottom: 0;
    font-size: 15px;
    z-index: 12;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
	border-radius: 25px 0px 0px 0px;
}


p{font-size:18px;}
    .feature-box {
        background-color: #f8f9fa; 
        padding: 20px; 
        margin-bottom: 20px;
        border-radius: 5px; 
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
        text-align: center; 
          transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    }
    .feature-box:hover {
    background-color: red; 
    color:white;
        transform: scale(1.05); 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); 
}
    .feature-box i {
        display: block; 
        font-size: 30px; 
        margin: 0 auto 10px; 
        border-radius: 50%; 
        background-color: red; 
        color: white; 
        width: 50px; 
        height: 50px; 
        line-height: 50px; 
    }

    .feature-box h5 {
        margin-top: 0; 
        font-size: 18px; 
    }
.post-media {
    position: relative;width:32.5%; float:left;
}

.post-media img {
    width: 100%;
}
    .feature-box p {
        font-size: 16px; 
    }
    @media (max-width: 768px) {
        .feature-box {
            text-align: left; 
        }
    }
    
   .breadcrumb-wrapper {
    padding-right: 50px;
    text-align: right;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #fff;
    padding: 0 0.5rem;
}

 /* Overall FAQ Container */
.faq {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* FAQ Question */
.faq .q {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 18px;
    color:black;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .q:hover {
    background-color: #f7f7f7;
    border-color: #ddd;
}

.faq .q i {
    font-size: 20px;
    color: #555;
    transition: transform 0.3s ease-in-out;
}

/* FAQ Answer */
.faq .a {
    display: none;
    font-size: 16px;
     color:black;
    padding: 15px 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #007BFF;
    margin-bottom: 18px;
    border-radius: 8px;
    line-height: 1.6;
}

.faq .a ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.faq a {
    text-decoration: none;
}

.faq a:hover {
    text-decoration: underline;
}

/* Active state (when question is expanded) */
.faq .q.active i {
    transform: rotate(180deg); /* Rotate the arrow when active (open) */
}

/* Optional: Style for small screens (Mobile responsive) */
@media (max-width: 767px) {
    .faq .q {
        font-size: 16px;
        padding: 16px;
    }

    .faq .a {
        padding: 12px 20px;
    }
}    
    
    