/* Web Base Template Styles */

/* Responsive Logo */
.responsive-logo {
    height: 150px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Mobile devices (phones, 576px and down) */
@media (max-width: 576px) {
    .responsive-logo {
        height: 80px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 577px) and (max-width: 768px) {
    .responsive-logo {
        height: 100px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 769px) and (max-width: 992px) {
    .responsive-logo {
        height: 120px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 993px) and (max-width: 1200px) {
    .responsive-logo {
        height: 130px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1201px) {
    .responsive-logo {
        height: 150px;
    }
}

/* Hide notifications in web section */
.notifications,
.dropdown.notifications,
.notification-dropdown,
[id*="notification"],
[class*="notification"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Agent Application Form Styles (for separate page) */
.agent-application-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.agent-application-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #947054, #7a5d45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(148, 112, 84, 0.3);
}

.agent-application-icon i {
    font-size: 3rem;
    color: white;
}

.application-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    border: none;
    margin: 0 15px;
}

.application-header {
    background: linear-gradient(135deg, #947054, #7a5d45);
    color: white;
    padding: 40px;
    text-align: center;
}

.application-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.application-header h3 i {
    margin-right: 15px;
    font-size: 1.8rem;
}

.application-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.application-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #947054;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.section-title i {
    font-size: 1.5rem;
    color: #947054;
    margin-right: 15px;
}

.section-title h4 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: #947054;
    margin-right: 10px;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

/* Select dropdown specific styles */
.form-control[type="select"],
select.form-control {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-control[type="select"]:focus,
select.form-control:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23947054' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Select options styling */
select.form-control option {
    padding: 8px 12px;
    font-size: 1rem;
    background: white;
    color: #333;
}

select.form-control option:hover {
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #947054;
    box-shadow: 0 0 0 0.2rem rgba(148, 112, 84, 0.25);
    background: white;
}

.form-control::placeholder {
    color: #adb5bd;
}

.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.file-upload-area:hover {
    border-color: #947054;
    background: rgba(148, 112, 84, 0.05);
}

.file-upload-area .form-control-file {
    border: none;
    background: transparent;
}

.file-upload-area .form-text {
    color: #6c757d;
    margin-top: 10px;
    font-size: 0.9rem;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #947054;
    border-color: #947054;
}

.custom-control-label {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 500;
}

.custom-control-label i {
    color: #947054;
    margin-right: 10px;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.submit-btn {
    background: linear-gradient(135deg, #947054, #7a5d45);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(148, 112, 84, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 112, 84, 0.4);
    background: linear-gradient(135deg, #7a5d45, #6b4f3a);
    color: white;
}

.submit-btn i {
    margin-right: 10px;
    font-size: 1rem;
}

.back-btn {
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.back-btn:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.back-btn i {
    margin-right: 10px;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .application-form {
        padding: 30px;
    }
    
    .form-section {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .agent-application-icon {
        width: 100px;
        height: 100px;
    }
    
    .agent-application-icon i {
        font-size: 2.5rem;
    }
    
    .application-header {
        padding: 35px 25px;
    }
    
    .application-header h3 {
        font-size: 1.7rem;
    }
    
    .application-form {
        padding: 25px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .section-title h4 {
        font-size: 1.2rem;
    }
    
    .form-control {
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .agent-application-area {
        padding: 40px 0;
    }
    
    /* Select dropdown mobile styles */
    select.form-control {
        padding-right: 35px;
        background-size: 14px 10px;
        background-position: right 10px center;
        font-size: 0.95rem;
    }
    
    .agent-application-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .agent-application-icon i {
        font-size: 2rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .section-heading p {
        font-size: 1rem;
    }
    
    .application-header {
        padding: 25px 20px;
    }
    
    .application-header h3 {
        font-size: 1.4rem;
    }
    
    .application-header h3 i {
        font-size: 1.3rem;
        margin-right: 10px;
    }
    
    .application-header p {
        font-size: 1rem;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .form-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .section-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .section-title i {
        font-size: 1.3rem;
        margin-right: 10px;
    }
    
    .section-title h4 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .form-group label i {
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .file-upload-area {
        padding: 20px 15px;
    }
    
    .file-upload-area .form-text {
        font-size: 0.85rem;
    }
    
    .custom-control-label {
        font-size: 0.9rem;
    }
    
    .custom-control-label i {
        font-size: 0.9rem;
        margin-right: 8px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .submit-btn, .back-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .submit-btn i, .back-btn i {
        margin-right: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .agent-application-area {
        padding: 30px 0;
    }
    
    /* Select dropdown small mobile styles */
    select.form-control {
        padding-right: 30px;
        background-size: 12px 8px;
        background-position: right 8px center;
        font-size: 0.9rem;
    }
    
    .agent-application-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .agent-application-icon i {
        font-size: 1.8rem;
    }
    
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .section-heading p {
        font-size: 0.95rem;
    }
    
    .application-header {
        padding: 20px 15px;
    }
    
    .application-header h3 {
        font-size: 1.3rem;
    }
    
    .application-header h3 i {
        font-size: 1.2rem;
        margin-right: 8px;
    }
    
    .application-header p {
        font-size: 0.95rem;
    }
    
    .application-form {
        padding: 15px;
    }
    
    .form-section {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .section-title {
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .section-title i {
        font-size: 1.2rem;
        margin-right: 8px;
    }
    
    .section-title h4 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group label i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
    
    .form-control {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .file-upload-area {
        padding: 15px 10px;
    }
    
    .file-upload-area .form-text {
        font-size: 0.8rem;
    }
    
    .custom-control-label {
        font-size: 0.85rem;
    }
    
    .custom-control-label i {
        font-size: 0.85rem;
        margin-right: 6px;
    }
    
    .form-actions {
        gap: 12px;
        margin-top: 25px;
    }
    
    .submit-btn, .back-btn {
        max-width: 250px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .submit-btn i, .back-btn i {
        margin-right: 6px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .agent-application-area {
        padding: 25px 0;
    }
    
    /* Select dropdown very small mobile styles */
    select.form-control {
        padding-right: 25px;
        background-size: 10px 6px;
        background-position: right 6px center;
        font-size: 0.85rem;
    }
    
    .agent-application-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .agent-application-icon i {
        font-size: 1.5rem;
    }
    
    .section-heading h2 {
        font-size: 1.4rem;
    }
    
    .section-heading p {
        font-size: 0.9rem;
    }
    
    .application-header {
        padding: 18px 12px;
    }
    
    .application-header h3 {
        font-size: 1.2rem;
    }
    
    .application-header h3 i {
        font-size: 1.1rem;
        margin-right: 6px;
    }
    
    .application-header p {
        font-size: 0.9rem;
    }
    
    .application-form {
        padding: 12px;
    }
    
    .form-section {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .section-title {
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .section-title i {
        font-size: 1.1rem;
        margin-right: 6px;
    }
    
    .section-title h4 {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .form-group label i {
        font-size: 0.85rem;
        margin-right: 5px;
    }
    
    .form-control {
        padding: 7px 8px;
        font-size: 0.85rem;
    }
    
    .file-upload-area {
        padding: 12px 8px;
    }
    
    .file-upload-area .form-text {
        font-size: 0.75rem;
    }
    
    .custom-control-label {
        font-size: 0.8rem;
    }
    
    .custom-control-label i {
        font-size: 0.8rem;
        margin-right: 5px;
    }
    
    .form-actions {
        gap: 10px;
        margin-top: 20px;
    }
    
    .submit-btn, .back-btn {
        max-width: 220px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .submit-btn i, .back-btn i {
        margin-right: 5px;
        font-size: 0.8rem;
    }
    
    .application-card {
        margin: 0 10px;
        border-radius: 15px;
    }
}

@media (max-width: 360px) {
    .agent-application-area {
        padding: 20px 0;
    }
    
    .agent-application-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .agent-application-icon i {
        font-size: 1.3rem;
    }
    
    .section-heading h2 {
        font-size: 1.3rem;
    }
    
    .section-heading p {
        font-size: 0.85rem;
    }
    
    .application-header {
        padding: 15px 10px;
    }
    
    .application-header h3 {
        font-size: 1.1rem;
    }
    
    .application-header h3 i {
        font-size: 1rem;
        margin-right: 5px;
    }
    
    .application-header p {
        font-size: 0.85rem;
    }
    
    .application-form {
        padding: 10px;
    }
    
    .form-section {
        padding: 8px;
        margin-bottom: 10px;
    }
    
    .section-title {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    
    .section-title i {
        font-size: 1rem;
        margin-right: 5px;
    }
    
    .section-title h4 {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .form-group label i {
        font-size: 0.8rem;
        margin-right: 4px;
    }
    
    .form-control {
        padding: 6px 7px;
        font-size: 0.8rem;
    }
    
    .file-upload-area {
        padding: 10px 6px;
    }
    
    .file-upload-area .form-text {
        font-size: 0.7rem;
    }
    
    .custom-control-label {
        font-size: 0.75rem;
    }
    
    .custom-control-label i {
        font-size: 0.75rem;
        margin-right: 4px;
    }
    
    .form-actions {
        gap: 8px;
        margin-top: 15px;
    }
    
    .submit-btn, .back-btn {
        max-width: 200px;
        padding: 7px 14px;
        font-size: 0.85rem;
    }
    
    .submit-btn i, .back-btn i {
        margin-right: 4px;
        font-size: 0.75rem;
    }
    
    .application-card {
        margin: 0 8px;
        border-radius: 12px;
    }
}

.agent-application-form .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.agent-application-form .form-control:focus {
    border-color: #947054;
    box-shadow: 0 0 0 0.2rem rgba(148, 112, 84, 0.25);
}

.agent-application-form .form-control-file {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.agent-application-form .form-control-file:hover {
    border-color: #947054;
    background-color: rgba(148, 112, 84, 0.05);
}

.agent-application-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #947054;
    border-color: #947054;
}

.agent-application-form .btn-lg {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.agent-application-form .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 112, 84, 0.3);
}

.breadcrumb-area {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-content h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
}

.alert .close {
    color: inherit;
    opacity: 0.7;
}

.alert .close:hover {
    opacity: 1;
}

/* Call to Action Agent Benefits Styles */
.agent-benefits-mini {
    margin: 30px 0;
}

.benefit-mini {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.benefit-mini i {
    font-size: 2rem;
    color: #70c745;
    margin-bottom: 8px;
    display: block;
}

.benefit-mini span {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.call-to-action-area .btn-lg {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #70c745, #5a9e3a);
    border: none;
    box-shadow: 0 5px 15px rgba(112, 199, 69, 0.3);
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.call-to-action-area .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 199, 69, 0.4);
    background: linear-gradient(135deg, #5a9e3a, #4a7c2f);
}

.call-to-action-area .btn-lg i {
    font-size: 16px;
    margin: 0;
}

.call-to-action-area .btn-lg span {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments for benefits */
@media (max-width: 768px) {
    .benefit-mini i {
        font-size: 1.5rem;
    }
    
    .benefit-mini span {
        font-size: 0.8rem;
    }
    
    .agent-benefits-mini .row {
        margin: 0 -10px;
    }
    
    .agent-benefits-mini .col-6 {
        padding: 0 10px;
    }
}

/* Footer image size reduction - same height as Featured Items */
.footer-widget-area img[src*="footer.jpg"] {
    max-width: 100%;
    max-height: 150px;
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Featured Items images - same height as footer image */
.featured-properties-slides img,
.single-featured-properties-slide img,
.single-featured-properties-slide a img {
    max-width: 100%;
    max-height: 120px; /* Same as footer image */
    width: 200px; /* Same as footer image */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive footer and featured images */
@media (max-width: 576px) {
    .footer-widget-area img[src*="footer.jpg"] {
        width: 180px;
        max-height: 110px;
    }
    .featured-properties-slides img,
    .single-featured-properties-slide img,
    .single-featured-properties-slide a img {
        width: 150px;
        max-height: 90px;
    }
}

/* Footer Featured Items Slider Styles - More Specific */
.footer-area .featured-properties-slides {
    position: relative !important;
    overflow: hidden !important;
    height: auto !important;
}

.footer-area .featured-properties-slides .owl-stage {
    display: flex !important;
    align-items: center !important;
}

.footer-area .featured-properties-slides .owl-item {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
}

.footer-area .single-featured-properties-slide {
    width: 100% !important;
    text-align: center !important;
    height: auto !important;
}

.footer-area .single-featured-properties-slide img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
    object-fit: cover !important;
}

.footer-area .single-featured-properties-slide:hover img {
    transform: scale(1.05) !important;
}

.footer-area .featured-properties-slides .owl-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    pointer-events: none !important;
}

.footer-area .featured-properties-slides .owl-prev,
.footer-area .featured-properties-slides .owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0,0,0,0.7) !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    transition: all 0.3s ease !important;
}

.footer-area .featured-properties-slides .owl-prev:hover,
.footer-area .featured-properties-slides .owl-next:hover {
    background: rgba(0,0,0,0.9) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.footer-area .featured-properties-slides .owl-prev {
    left: -15px !important;
}

.footer-area .featured-properties-slides .owl-next {
    right: -15px !important;
}

@media (min-width: 577px) and (max-width: 768px) {
    .footer-widget-area img[src*="footer.jpg"] {
        width: 220px;
        max-height: 130px;
    }
    .featured-properties-slides img,
    .single-featured-properties-slide img,
    .single-featured-properties-slide a img {
        width: 180px;
        max-height: 100px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .footer-widget-area img[src*="footer.jpg"] {
        width: 240px;
        max-height: 140px;
    }
    .featured-properties-slides img,
    .single-featured-properties-slide img,
    .single-featured-properties-slide a img {
        width: 190px;
        max-height: 110px;
    }
} 