.post-box .post-inner{
	margin-bottom: 30px;
}

/* Home Get Free Quote widget */
/* General styling for the custom dropdown */
.custom-dropdown {
    font-family: Arial, sans-serif; /* Modern, clean font */
    font-size: 16px; /* Readable font size */
    padding: 10px 45px; /* Comfortable padding */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 5px; /* Softly rounded corners for a modern look */
    background-color: #f9f9f9; /* Light background to make it pop out */
    color: #333; /* Contrast for readability */
    appearance: none; /* Removing default system appearance */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background-image: url('/wp-content/uploads/2024/02/arrow-down.png');
    background-repeat: no-repeat;
    background-position: right 15px center; /* Positioning the custom arrow */
    background-size: 40px 30px; /* Size of the custom arrow */
    cursor: pointer; /* Pointer cursor to indicate it's selectable */
    margin: 5px; /* Margin around the select for spacing */
}

/* Enhancements for the custom dropdown when it's focused or hovered */
.custom-dropdown:hover {
    border-color: #888; /* Darker border on hover for feedback */
}

.custom-dropdown:focus {
    border-color: #007bff; /* Highlight color when focused for accessibility */
    box-shadow: 0 0 0 2px rgba(0,123,255,.25); /* Adding a glow effect on focus */
}

/* Styling for the custom button */
.custom-button {
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding: 10px 15px;
    background-color: #FE8423;
    color: #ffffff;
    border: 1px solid #FE8423;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.custom-button:hover {
    background-color: #ff933d; /* Slightly darker on hover */
}



/* Home START A QUOTE box
 */
q-box-container


.q-box-container {
	position: relative;
	overflow: hidden;
}

.q-box-container:before {
	content: "";
	position: absolute;
	width: 200%;
	height: 200%;
	left: -50%;
	top: -50%;
	opacity: 0.5;
	background: linear-gradient(45deg, green 0 50%, orange 50% 100%);
	animation: q-box-container-rotate 15s linear infinite;
}

@keyframes q-box-container-rotate {
	100% {
		transform: rotate(1turn);
	}
}

/* Client services page - pay
 */
.services-img-box .elementor-widget-container .ot-image-box a img {
  width: 85%;
  padding-top: 35px;
}




















