#copyright-area {
	 transform: translateY(7px);
}

.img-float-left {
    float: left;
    margin-right: 20px;
    max-width: 48%;
    margin-bottom: 20px;
}

.dropdown-menu {
	display: none; 
	position: absolute;
	right: -20px;
	top: 49px;
	z-index: 1000;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	background-image: url(https://bari.ussl.store/wp-content/themes/beari/assets/images/nav-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-width: 200px;
}

.menu-item {
	position: relative;
}
.links {
	position: relative;
}

.links img{
	position: absolute;
	left: -26px;
	top: 9px;
}

.single-job ul {
    list-style: disc;
    transform: translateX(-20px);
}

@media (max-width: 975px) {
	#wpadminbar {
		display: none;
	}

	html {
		margin-top: 0px !important;
	}
	
	header {
		top: 0px !important;
	}
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: url('path-to-your-background-image.jpg'); /* Replace with your actual background image path */
    padding: 20px;
    font-family: Arial, sans-serif; /* You can change the font family to match your design */
}

.contact-form .input-group {
    grid-column: span 1;
}

.contact-form .input-group.wide {
    grid-column: span 3;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px; /* Slightly rounded borders for input fields */
}

.contact-form input[type="submit"] {
    background-color: #0000ff; /* Blue background for submit button */
    color: white;
    padding: 8px 16px;
    border: none;
    border-bottom: 3px solid #0000cc; /* Darker blue border bottom */
    border-radius: 0; /* No border radius for submit button */
    font-weight: bold;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: right; /* Aligns labels to the right */
}

/* RTL Support */
.contact-form {
    direction: rtl; /* Right-to-left support for languages like Hebrew */
}

.compensate-for-scrollbar {
    margin-right: auto !important;
}