/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1742976372
Updated: 2025-03-26 00:06:12

*/

/* BREADCRUMBS */

.custom-breadcrumb-class, .custom-breadcrumb-class a {
    font-size: 14px !important;
    font-weight: 300 !important;
} 

/* END BREADCRUMBS */

/* RANK MATH FAQ*/

#rank-math-faq {
    box-sizing: border-box;
    border: solid 1px transparent;
    border-radius: 10px;
    padding: 1em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
}

.rank-math-list-item {
    margin-bottom: 0;
    margin-top: 1em;
    border-bottom: 1px solid #F3F5F8;
    text-align: left;
    width: 100%;
}

.rank-math-question {
    cursor: pointer;
    position: relative;
    display: block;
    padding-right: 2em;
    margin-right: 1em;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #1858c7;
}

.rank-math-question:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "\2715";
    transform: rotate(-45deg);
    transition: all 150ms ease-in-out;
}

.rank-math-question.collapse:after {
    transform: rotate(0deg);
}

.rank-math-question:hover {
    opacity: 0.8;
}

/* Specific rule for blue background */
#rank-math-faq.blue-bg .rank-math-question, #rank-math-faq.blue-bg a {
    color: white;
}

#rank-math-faq.blue-bg .rank-math-question:hover {
    opacity: 0.7;
}

#rank-math-faq.blue-bg {
    border: none;
    box-shadow: none;
}


/* END RANK MATH FAQ */

ul.wp-block-list, ol.wp-block-list {
    margin-bottom: 30px;
}

.job-list-table td, .job-list-table tr, .job-list-table thead th, .job-list-table table thead td, .job-list-table {
    border: none;
    text-align: left;
    border-block-start: none !important;
    hyphens: auto;
}
.job-list-table {
	overflow: auto;
}

.job-list-table a {
    font-size: inherit;
    font-weight: normal;
}

/* PROJECTS GRID */

.project-pages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-category {
    width: 100%;
}

.project-category h2 {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
}

.project-category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-page {
	width: 30%;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-align: left;
}

.project-page-image img {
    width: 100%;
    max-height: 170px;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
    border-radius: 10px !important;
}

.project-page-content h3 {
    margin: 0 0 10px;
    font-size: 22px !important;
}

.project-page-content p {
    margin: 5px 0 !important;
}

.project-page-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.project-page-link:hover {
    text-decoration: underline;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .project-page {
        width: 100%;
    }
	
	.project-category-items {
    flex-direction: column;
	}
    
    .project-page-image img {
        max-height: 170px;
    }
}