

a:active, a:hover, a:link, a:visited {
    color: #555;
}

.img-fill {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.search-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .search-filter-container {
        flex-direction: column;
        align-items: stretch; /* Ensures elements take up full width */
    }

    .search-bar {
        width: 100%;
        margin-bottom: 10px;
    }

    .filters {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
        order: 1; /* Ensure filters are above the listing info */
    }

    .listing-info {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        order: 2; /* Listing info appears below filters */
    }

    .view-options {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .sort-by {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
}

.search-bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.search-bar input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-bar button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    margin-left: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 2;
}

.filters select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    width: 100%; /* Ensure select takes full width on mobile */
}

.listing-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 3;
    justify-content: flex-end;
}

.listing-info span {
    font-size: 14px;
}

.listing-info .view-options {
    display: flex;
    gap: 10px;
}

.view-options button {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: black;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;

}

@media (max-width: 768px) {
.probootstrap-header {

    background: #000;
    background-color: rgb(255 255 255 / 75%)!important;

}

}

.st-footer-06 #footer {
    background-color: #000;
    padding: 60px 0 0;
    width: 100%;
}
.st-footer-06 #footer .widget a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
#footer .widget ul>li, #footer .widget ul>li>a, #footer .widget>ul>li>a, .st-footer-06 #footer .widget>ul>li {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 2px 0;
}
.st-footer-06 #footer .widget h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 20px;
}
.st-footer-06 #footer .widget h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 10px;
}
.st-footer-06 #footer .widget address {
    color: #fff;
    font-size: 14px;
}
.social-links ul{

    display: flex;
    gap: 10px;
}
/*# sourceMappingURL=sothebys.min.css.map */
.contact-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
     margin-bottom: 30px;
}

.contact-form h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.contact-form .form-group{
    margin-bottom: 30px;
}
.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.contact-form .form-group label {
    font-weight: bold;
}

.contact-form .form-control {
    border-radius: 4px;
}

.contact-form .btn-warning {
    background-color: #000;
    border-color: #000;
    color: white;
    font-weight: bold;
    border-radius: 4px;
}

.contact-form .btn-warning:hover {
    background-color: #b2e600;
    border-color: #b2e600;
}

.services-section {
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    width: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 500px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the card area */
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Dark overlay */
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space between elements */
    align-items: flex-start; /* Aligns the text to the top left */
    text-align: left;
}

.service-overlay h3 {
    font-size: 2rem;
    margin: 0; /* Removes any default margins */
    color: white;
}
.service-overlay span {
color: transparent;
    font-family: "Poppins", Sans-serif;
    font-size: 79px;
    line-height: 53px;
    -webkit-text-stroke: 1px #ededed;
    display: block;
    padding-bottom: 22px;
    font-weight: 900;
}
.service-card .learn-more {
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: center; /* Centers the button horizontally */
    margin-bottom: 20px; /* Adds some space from the bottom */
}

.service-card .learn-more:hover {
    background-color: #b2e600;
}
#cCarousel {
  position: relative;
  max-width: 900px;
  margin: auto;
}

#cCarousel .arrow {
  position: absolute;
  top: 50%;
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
  font-size: 26px;
  color: white;
  background: #00000072;
  cursor: pointer;
}

#cCarousel #prev {
  left: 0px;
}

#cCarousel #next {
  right: 0px;
}

#carousel-vp {
  width: 770px;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}

@media (max-width: 770px) {
  #carousel-vp {
    width: 510px;
  }
}

@media (max-width: 510px) {
  #carousel-vp {
    width: 250px;
  }
}

#cCarousel #cCarousel-inner {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
}

.cCarousel-item {
  width: 250px;
  height: 365px;
  border: 2px solid white;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cCarousel-item img {
  width: 100%;
  object-fit: cover;
  min-height: 246px;
  color: white;
}

.cCarousel-item .infos {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: white;
  color: black;
}

.cCarousel-item .infos button {
  background: #222;
  padding: 10px 30px;
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.custom-view-all-agents-container {
    text-align: center;
    margin-top: 20px;
}

.custom-view-all-agents {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-view-all-agents:hover {
    background-color: #45a049;
}
.custom-heading {
    text-align: center;
 font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
.services-container{

    display: block!important;
   
}
.service-card{
    width: 100%!important;
     margin-bottom: 30px!important;
}
.search-filter-container .filters {
    flex-direction: column!important;
}
}


@media (max-width: 768px) {
    .list-inline {
        flex-direction: column;
        align-items: center;
    }

    .list-inline li {
        margin-bottom: 10px;
    }

    .st-footer-divider {
        display: none;
    }

    .footer a {
        font-size: 16px;
    }

    .footer {
        padding: 30px 15px;
    }

    .copyright {
        font-size: 14px;
    }
}