/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText,div#CybotCookiebotDialogHeader {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
    display: none;
}


/* Job Board Styling */
.job-posts {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}
.job-post-card {
	position: relative;
	width: 100%;
	background-color:#ffffff;
	border: 1px solid #00B4DE;
	border-radius: 8px;
	padding: 32px 40px 32px 16px;
	transition: all .3s ease-in-out;
}
.job-post-card:hover {
	box-shadow: 0px 24px 32px -34px rgba(0, 0, 0, 0.5);
	transition: all .3s ease-in-out;
}
.job-post-card p,.job-post-card h2 {
	margin: 0;
}
.job-post-title {
	color: var(--e-global-color-primary);
    font-size: 2rem !important;
    font-weight: bold !important;
    text-transform: none !important;
    line-height: 1em !important;
}
.job-post-location {
	color: var(--e-global-color-text);
}
.job-post-card-icon {
	position: absolute;
	color: var(--e-global-color-primary);
	font-size: 40px;
	top: 50%;
	transform: translatey(-50%);
	right: 8px;
	transition: all .3s ease-in-out;
}
.job-post-card:hover .job-post-card-icon {
	color: #00B4DE;
	transition: all .3s ease-in-out;
}