/** Shopify CDN: Minification failed

Line 423:7 Expected identifier but found whitespace
Line 423:9 Unexpected "{"
Line 423:17 Expected ":"
Line 423:42 Expected identifier but found "!"
Line 1152:2 "heigth" is not a known CSS property
Line 1193:2 "heigth" is not a known CSS property
Line 1686:2 "heigth" is not a known CSS property

**/
/****************** cooperer Services Page Css Start ******************/
.cooper_services_hero {
  width: 100%;
  height: auto;
  position: relative;
}
.cooper_services_hero .hero_inner {
  position: relative;
}
.cooper_services_hero .hero_bg {
  height: 480px;
  position: relative;
}
.cooper_services_hero .hero_bg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cooper_services_hero .hero_img,
.cooper_services_hero .hero_video {
  width: 100%;
  height: 100%;
}

.license {
    margin-top: 30px;
    font-size: 12px;
}

button.button.button--xl.showing {
    margin-top: 15px;
}
.cooper_services_hero .hero_img svg {
  width: 100%;
  height: 100%;
}
.cooper_services_hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cooper_services_hero .hero_content {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 60px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99;
}
.cooper_services_hero h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 20px;
  text-align: center;
}
.cooper_services_hero h2 {
  font-family: 'romelylight';
  font-weight: 300;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
.cooper_services_hero span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  display: block;
}
.cooper_services_hero span p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.cooper_services_hero .hero_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 20px;
}
.cooper_services {
  width: 100%;
  height: auto;
}
.cooper_services h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
.cooper_services h2 {
  font-family: 'romelylight';
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px;
}
.cooper_services span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: block;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
}
.cooper_services span p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.cooper_services .services_inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.cooper_services .services_inner.active {
  display: none;
}
.cooper_services .services_col {
  width: 100%;
  min-height: 440px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  transition: 0.5s ease-in-out;
}
.cooper_services .services_col:hover::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
  transition: 0.2s ease-in-out;
  backdrop-filter: blur(5px);
}
.cooper_services h4 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px;
  width: 100%;
  border-bottom: 1px solid #E6D5BE;
  z-index: 9;
}
.cooper_services .services_bottom_content {
  gap: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  z-index: 9;
}
.cooper_services h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  transition: 0.7s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.cooper_services .services_col:hover h5 {
  visibility: visible;
  opacity: 1;
}
.cooper_services .primary_btn {
  min-width: 100%;
}
.cooper_services .back_button {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  display: none;
}
.cooper_services .back_button.show_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
}
.cooper_services .tile_container.active {
  display: none;
}
.cooper_services .services_form_col {
  display: none;
}
.cooper_services .services_form_col.active {
  display: flex;
  flex-direction: column;
  animation: fade-in .5s linear;
}
@keyframes fade-in{
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1); 
  }
}
.cooper_services .services_form_col h2 {
  padding-top: 60px;
}
.cooper_services .form_inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
  width: 80%;
}
.seller_testimonials {
  width: 100%;
  height: auto;
}
.seller_testimonials h2 {
  text-align: center;
  font-family: 'romelylight';
  font-size: 60px;
  font-weight: 300;
  line-height: 60px; 
  letter-spacing: 3px;
  text-transform: uppercase;
}
.seller_testimonials .testimonials_inner {
  display: grid;
  gap: 60px;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  max-width: 85%;
  margin: 60px auto;
}
.seller_testimonials h4 {
  font-size: 14px;
  font-weight: 800;
  line-height: 14px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  padding-bottom: 20px;
  -webkit-font-smoothing: antialiased;
  font-family: 'Avenir LT Pro 55 Roman';
}
.seller_testimonials span p,
.seller_testimonials span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  max-width: 400px;
  display: block;
}
.seller_testimonials span {
  padding-top: 20px;
}
.seller_testimonials h3 {
  text-align: center;
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.seller_testimonials .testimonials_bottom_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.seller_testimonials a {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cooper_services_signup {
  width: 100%;
  height: auto;
}
.cooper_services_signup h2 {
  text-align: center;
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_services_signup h3 {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding-top: 20px;
}
.cooper_services_signup form {
  padding: 0 !important;
  max-width: 400px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px;
  margin: 60px auto 0 !important;
}
.cooper_services_signup input {
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  margin-bottom: 20px !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 0 10px !important;
  height: auto !important;
}
.cooper_services_signup input::placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  line-height: normal !important;
}
.cooper_services_signup input:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}
.cooper_services_signup button {
  font-family: 'Avenir LT Pro 55 Roman' !important;
  width: 100% !important;
  height: 60px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  cursor: pointer !important;
  margin-top: 40px;
  transition: 0.2s ease-in-out;
}
.needsclick.kl-private-reset-css-Xuajs1[data-testid="form-row"]:first-child {
  display: unset !important;
}
.cooper_services_signup label .needsclick.kl-private-reset-css-Xuajs1 {
  font-family: 'Avenir LT Pro 55 Roman' !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  margin: 0 !important;
}
.cooper_services_signup label svg {
  margin-right: 4px !important;
  min-width: 8px !important;
  width: 8px !important;
  height: 8px !important;
}
.cooper_services_signup label svg circle {
  fill: #8245141A !important;
}
.cooper_services_signup label svg:nth-child(1) circle {
  stroke: #824514 !important;
}
.cooper_services_signup label svg:nth-child(2) circle {
  stroke: #824514 !important;
  fill: #824514 !important;
}
.klaviyo-form.klaviyo-form.klaviyo-form input[type=radio]:checked svg,
.klaviyo-form.klaviyo-form.klaviyo-form input[type=radio]:checked svg circle {
  fill: {{section.settings.btn_bg_color}} !important;
}
div[component="[object Object]"] {
  padding: 0 !important;
}
div[role="radiogroup"] {
  display: flex !important;
  gap: 20px;
  justify-content: flex-start !important;
}
.cooper_services_signup form button {
  border-radius: 0 !important;
}
.cooper_services_signup .needsclick {
  width: 100% !important;
}
div[role="radiogroup"] .needsclick {
  width: auto !important;
}
.custom_contact_us {
  width: 100%;
  height: auto;
}
.custom_contact_us h2 {
  text-align: center;
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_featured_properties {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
.cooper_featured_properties .container {
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.cooper_featured_properties h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
}
.cooper_featured_properties h2 {
  font-family: 'romelylight';
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 60px;
  margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
}
.cooper_featured_properties .properties_inner {
  margin: 0;
}
.cooper_featured_properties .properties_inner::-webkit-scrollbar {
  display: none;
}
.cooper_featured_properties .properties_col {
  width: 320px;
  height: 440px;
  position:relative;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 10px;
}
.cooper_featured_properties h6 {
  border-bottom: 1px solid #E6D5BE;
  background: #f3f1ef;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  padding: 5px 10px 5px 10px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.cooper_featured_properties .slick-prev {
  left: 30px;
}
.cooper_featured_properties .slick-next {
  right: 30px;
}
.cooper_featured_properties .slick-prev,
.cooper_featured_properties .slick-next {
  width: 40px;
  height: 40px;
  background: #ffffffab!important;
  border-radius: 100%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooper_featured_properties .slick-prev::before,
.cooper_featured_properties .slick-next::before {
  content: '';
  background-image: url('/cdn/shop/files/Vector_2_3.png?v=1704293119');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 16px;
  display: block;
}
.cooper_featured_properties .slick-prev::before {
  transform: rotate(180deg);
  margin-left: -5px;
}
.cooper_featured_properties .slick-next.slick-disabled,
.cooper_featured_properties .slick-prev.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.cooper_featured_properties .slick-track {
  margin-inline-start: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
  margin-inline-end: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
}
.properties_col .properties_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.properties_col .properties_img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.properties_col .properties_img svg {
  width: 100%;
  height: 100%;
}
.cooper_featured_properties .properties_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  z-index: 99;
}
.cooper_featured_properties h4 {
  -webkit-font-smoothing: antialiased;
  font-family: 'Avenir LT Pro 55 Roman';
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.cooper_featured_properties h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding-top: 10px;
}
.cooper_featured_properties .primary_btn {
  min-width: 100%;
  z-index: 99;
}
/****************** cooperer Services Page Css End ******************/
/****************** cooperer Home Page Css Start ******************/
.cooper_hero_banner {
  width: 100%;
  height: 700px;
}
.cooper_hero_banner .container {
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.cooper_hero_banner .container,
.cooper_hero_banner .banner_inner,
.cooper_hero_banner .banner_bg,
.cooper_hero_banner .banner_img,
.cooper_hero_banner .banner_video,
.cooper_hero_banner .banner_content {
  width: 100%;
  height: 100%;
}
.cooper_hero_banner .banner_bg {
  position: relative;
}
.cooper_hero_banner .banner_bg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cooper_hero_banner .banner_img svg {
  width: 100%;
  height: 100%;
}
.cooper_hero_banner .banner_content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  gap: 20px;
  z-index: 99;
}
.cooper_hero_banner .banner_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.cooper_hero_banner h2 {
  font-family: 'romelylight';
  font-size: 60px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_hero_banner span,
.cooper_hero_banner span p {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}
.cooper_hero_banner span {
  display: block;
  max-width: 720px;
}
.cooper_hero_banner .primary_btn,
.cooper_hero_banner .secondry_btn {
  position: relative;
}
.cooper_hero_banner .primary_btn:hover::before,
.cooper_hero_banner .secondry_btn:hover::before {
  visibility: hidden !important;
  opacity: 0 !important;
}
.cooper_hero_banner .primary_btn b,
.cooper_hero_banner .secondry_btn b {
  z-index: 9;
}
.cooper_hero_banner .primary_btn:before,
.cooper_hero_banner .secondry_btn:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s ease-in-out;
}
.cooper_featured_listing {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.cooper_featured_listing .container {
  overflow: hidden;
  position: relative;
}
.cooper_featured_listing .featured_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.cooper_featured_listing .featured_col:first-child {
  width: 40%;
}
.cooper_featured_listing .featured_col:last-child {
  width: 60%;
  padding: 0 60px;
}
.cooper_featured_listing h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_featured_listing h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 20px;
}
.cooper_featured_listing span p,
.cooper_featured_listing span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cooper_featured_listing span {
  display: block;
  padding-top: 60px;
}
.cooper_featured_listing a {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 100px;
}
.cooper_featured_listing .feature_slider {
  z-index: 99;
  position: relative;
}
.cooper_featured_listing .thumbs_slider {
  position: absolute;
  right: 180px;
  width: calc(860px - 160px);
  overflow-x: hidden;
  bottom: 0;
  z-index: 99;
}
.cooper_featured_listing .thumbs_slider .swiper-slide {
  width: 160px;
}
.cooper_featured_listing .thumbs_slider .thumbs_image {
  width: 100%;
  height: 200px;
  cursor: pointer;
}
.cooper_featured_listing .load_more {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 0;
  width: 160px;
  height: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.cooper_featured_listing .swiper-notification {
  padding: 0 !important;
  display: none;
}
.cooper_featured_listing .slider_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
}
.cooper_featured_listing .slider_popup .overlay {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(2px);
}
.cooper_featured_listing .slider_popup.active .overlay {
  visibility: visible;
  opacity: 1;
}
.cooper_featured_listing .slider_popup.active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.cooper_featured_listing .popup_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cooper_featured_listing .popup_feature_slider {
  width: 60%;
  height: auto;
  position: relative;
}
.cooper_featured_listing .popup_feature_slider .swiper-slide {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooper_featured_listing .popup_feature_slider .thumbs_image {
  width: 60%;
  height: 90%;
  margin: 0 auto;
}
.cooper_featured_listing .popup_thumbs_slider .thumbs_image {
  width: 100%;
  height: 60px;
}
.cooper_featured_listing .popup_thumbs_slider {
  width: 300px;
  margin: 20px auto 0;
  overflow-x: hidden;
}
.cooper_featured_listing .swiper-button-next::after, 
.cooper_featured_listing .swiper-button-prev::after {
  display: none;
}
.cooper_featured_listing .swiper-button-next, 
.cooper_featured_listing .swiper-button-prev {
  width: 24px;
  height: 24px;
}
.cooper_featured_listing .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -65px);
}
.cooper_featured_listing .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -65px);
}
.cooper_featured_listing .popup_feature_slider .swiper-wrapper {
  width: 100%;
  overflow: hidden;
}
.cooper_featured_links {
  width: 100%;
  height: auto;
}
.cooper_featured_links .featured_inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.cooper_featured_links .featured_links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
}
.cooper_featured_links h2{
  text-align: center;
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 40px; 
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_featured_links .primary_btn{
  min-width: 100%;
}
.cooper_properties_scroll {
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: hidden;
}
.cooper_properties_scroll .container{
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.cooper_properties_scroll .properties_inner {
  margin: 0;
}
.cooper_properties_scroll .properties_inner::-webkit-scrollbar {
  display: none;
} 
.cooper_properties_scroll .properties_col {
  display: flex !important;
  height: 640px;
  background-position: center;
  padding: 20px;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  background-size: cover;
  position: relative;
}
.cooper_properties_scroll .properties_col::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cooper_properties_scroll .propertices_scroll_show {
  width: 420px;
  margin: 0 10px;
}
.cooper_properties_scroll h3 {
  border-bottom: 1px solid #E6D5BE;
  background: #f3f1ef;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  padding: 5px 10px 5px 10px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cooper_properties_scroll .col_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.cooper_properties_scroll h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_properties_scroll span,
.cooper_properties_scroll p{
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.cooper_properties_scroll .primary_btn {
  position: relative;
}
.cooper_properties_scroll .primary_btn:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.cooper_properties_scroll .slick-prev {
  left: 30px;
}
.cooper_properties_scroll .slick-next {
  right: 30px;
}
.cooper_properties_scroll .slick-prev,
.cooper_properties_scroll .slick-next {
  width: 40px;
  height: 40px;
  background: #ffffffab!important;
  border-radius: 100%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooper_properties_scroll .slick-prev::before,
.cooper_properties_scroll .slick-next::before {
  content: '';
  background-image: url('/cdn/shop/files/Vector_2_3.png?v=1704293119');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 16px;
  display: block;
}
.cooper_properties_scroll .slick-prev::before {
  transform: rotate(180deg);
  margin-left: -5px;
}
.cooper_properties_scroll .slick-next.slick-disabled,
.cooper_properties_scroll .slick-prev.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.cooper_properties_scroll .slick-track {
  margin-inline-start: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
  margin-inline-end: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
}
.cooper_featured_listing2 {
  width: 100%;
  height: auto;
}
.cooper_featured_listing2  .listing_inner_top {
  display: grid;
  grid-template-columns: 60% 40%;
}
.cooper_featured_listing2 .listing_inner_bottom {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0px;
}
.cooper_featured_listing2 .featured_image {
   height: 600px;
}
.cooper_featured_listing2 .listing_top_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding-left: 60px;
}
.cooper_featured_listing2 h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}
.cooper_featured_listing2 h3 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 20px 0 0;
}
.cooper_featured_listing2 span,
.cooper_featured_listing2 p {
  font-size: 14px;
  font-weight: 400;
  max-width: 480px;
  display: block;
}
.cooper_featured_listing2 p {
  margin: 0 0 20px 0;
}
.cooper_featured_listing2 .see_link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
}
.cooper_featured_listing2 .listing_bottom_content {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
}
.cooper_featured_listing2 .primary_btn{
  display: flex;
  width: 280px;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #824514;
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.cooper_featured_listing2 .listing_bottom_image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cooper_featured_listing2 .thumbnail_images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 100%;
}
.cooper_featured_listing2 .bottom_text_btn {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  min-width: 100%;
}
.cooper_featured_listing2 h5 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.cooper_featured_listing2 .border_line {
  display: none;
  background: #E6D5BE;
  width: 100%;
  height: 1px;
  margin: 60px 0 20px;
}
/****************** cooperer Home Page Css End ******************/
/****************** cooperer Properties Page Css Start ******************/
.cooper_feature_listing3 {
  width: 100%;
  heigth: auto;
}
.cooper_feature_listing3 .listing_inner {
  display: grid;
  grid-template-columns: 60% 40%;
}
.cooper_feature_listing3 .listing_col:last-child {
  padding-left: 20px;
}
.cooper_feature_listing3 h2 {
  font-family: 'romelylight';
  font-size: 60px;
  line-height: normal;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_feature_listing3 h3 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px 0;
}
.cooper_feature_listing3 p,
.cooper_feature_listing3 span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.cooper_feature_listing3 span {
  display: block;
  padding: 0 0 60px 0;
}
.cooper_feature_listing3 .thumbnail_image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 60px;
}
.cooper_featured_listing4 {
  width: 100%;
  heigth: auto;
}
.cooper_featured_listing4 .container {
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.cooper_featured_listing4 .listing_content {
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: space-between;
  margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
}
.cooper_featured_listing4 h2 {
  font-family: 'romelylight';
  font-size: 60px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_featured_listing4 h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 0 0;
}
.cooper_featured_listing4 .content_text {
  display: flex;
  justify-content: space-between;
}
.cooper_featured_listing4 span {
  display: block;
  width: 80%;
}
.cooper_featured_listing4 p,
.cooper_featured_listing4 span{
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
}
.cooper_featured_listing4 h4 p,
.cooper_featured_listing4 h4 {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-align: right;
}
.cooper_featured_listing4 .primary_btn {
  margin-top: 60px;
  margin-left: auto;
}
.cooper_featured_listing4 .listing_images {
  display: grid;
  grid-template-columns: 52% 23% 23%;
  margin-top: 60px;
  justify-content: space-between;
}
.cooper_listings {
  width: 100%;
  height: auto;
}
.cooper_listings .listings_inner {
  margin: 0;
  padding-bottom: 100px;
}
.cooper_listings .listings_single {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cooper_listings span {
  border-bottom: 1px solid #E6D5BE;
  background: #f3f1ef;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  padding: 5px 10px 5px 10px;
  width: 100%;
  display: block;
}
.cooper_listings .listings_col {
  width: 100%;
  height: 510px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 20px;
  gap: 40px;
}
.cooper_listings h2 {
  font-family: 'romelylight';
  color: #FDFAF8;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cooper_listings h3 p,
.cooper_listings h3 {
  color: #FDFAF8;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: normal;
}
.cooper_listings h3 {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.cooper_listings .primary_btn {
  border: 1px solid #FDFAF8;
  background: rgba(255, 249, 233, 0.20)!important;
}
.cooper_listings .primary_btn:hover {
  border: 1px solid #FDFAF8;
  background: rgba(255, 255, 255, 1)!important;
}
.cooper_listings .slick-prev {
  left: 40%;
} 
.cooper_listings .slick-next {
  right: 40%;
}
.cooper_listings .slick-prev, 
.cooper_listings .slick-next {
  width: 40px;
  height: 40px;
  background: transparent;
  margin: 0;
  z-index: 9;
  transition: 0.4s ease-in-out;
  padding: 0;
  border-radius: 100%;
  top: calc(100% - 40px);
  border: 1px solid #824514;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.cooper_listings .slick-prev:before {
  content: '';
  border: 2px solid #824514;
  width: 14px;
  height: 14px;
  z-index: 9;
  position: relative;
  background: transparent;
  border-right-width: 0 !important;
  border-bottom-width: 0 !important;
  rotate: 315deg;
  margin-left: 5px;
}
.cooper_listings .slick-next:before {
  content: '';
  border: 2px solid #824514;
  width: 14px;
  height: 14px;
  z-index: 9;
  position: relative;
  background: transparent;
  border-left-width: 0 !important;
  border-top-width: 0 !important;
  rotate: 315deg;
  margin-right: 5px;
}
.cooper_listings .slick-prev:hover, 
.cooper_listings .slick-next:hover {
  background: #D1C7B9;
  border: 1px solid #824514;
}
.cooper_listings .slick-prev:hover:before, 
.cooper_listings .slick-next:hover:before {
  border: 2px solid #824514;
}
.cooper_listings .custom_paging {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooper_listings .custom_paging li {
  display: none;
}
.cooper_listings .custom_paging li.slick-active {
  display: flex;
  color: #824514;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.cooper_listings .listings_mobile_inner {
  display: none;
}
/****************** cooperer Properties Page Css End ******************/
/****************** cooperer House Site Page Start ******************/
.cooper_house_hero {
  width: 100%;
  height: auto;
}
.cooper_house_hero video {
  width: 100%;
  height: 900px;
}
.cooper_house_hero .container {
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.cooper_house_hero svg,
.cooper_house_hero div {
  width: 100%;
  height: 100%;
}
.cooper_house_hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shopify-section:has(.house_property_details){
  overflow: hidden;
}
.house_property_details {
  width: 100%;
  height: auto;
}
.house_property_details .details_inner {
  display: grid;
  grid-template-columns: 60% 33%;
  justify-content: space-between;
  align-items: flex-start;
}
.house_property_details .details_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.house_property_details h2 {
  font-family: 'romelylight';
  font-size: 60px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.house_property_details h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.house_property_details h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.house_property_details span {
  display: block;
  padding-top: 20px;
}
.house_property_details span a,
.house_property_details span,
.house_property_details span p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.house_property_details span a {
  text-decoration-line: underline;
}
.house_property_details .details_images {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.house_property_details .details_img_col {
  width: 50%;
  flex-basis: 100%;
}
.house_property_details .details_img {
  width: 100%;
  height: 400px;
}
.house_property_details .details_img svg {
  width: 100%;
  height: 100%;
}
.house_property_details h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: 20px;
}
.house_property_details h5 span {
  padding: 0;
  display: inline-block;
}
.house_property_details .seemore_btn {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-top: 21px;
  cursor: pointer;
}
.house_property_details .seemore_btn button {
  margin: 0 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: transparent;
  padding: 5px 0 0;
  width: auto;
  height: auto;
}
.house_property_details #text{
  display:none;
} 
.house_property_details #toggle {
  color: #824514;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  padding-top: 20px;
  display:none;
}
.house_listed {
  width: 100%;
  height: auto;
}
.house_listed .listed_inner {
  display: grid;
  grid-template-columns: 33% 33% 26%;
  align-items: flex-start;
  justify-content: space-between;
}
.house_listed .listed_col {
  width: 100%;
  height: 100%;
}
.house_listed .listed_img {
  width: 100%;
  height: 100%;
}
.house_listed .listed_img svg {
  width: 100%;
  height: 100%;
}
.house_listed h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.house_listed .primary_btn {
  margin-top: 60px;
}
.house_listed h3 {
  -webkit-font-smoothing: antialiased;
  font-family: 'Avenir LT Pro 55 Roman';
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  padding-top: 80px;
}
.house_listed span {
  padding-top: 20px;
  display: block;
}
.house_listed span,
.house_listed span p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.house_listed .listed_col:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.house_listed .listed_logo {
  width: 90px;
}
.house_listed .listed_logo svg {
  width: 100%;
  height: 100%;
}
.house_listed #listed_text{
  display:none;
} 
.house_listed #listed_toggle {
  color: #824514;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  padding-top: 20px;
  display:none;
}
.related_house {
  width: 100%;
  height: auto;
}
.related_house .house_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.related_house .house_col {
  width: 100%;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  background-position: center;
  padding: 20px;
  background-repeat: no-repeat;
  background-size: cover;
}
.related_house .house_col:last-child {
  align-items: flex-end;
}
.related_house h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 60px;
}
.related_house h3 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.related_house .primary_btn {
  position: relative;
}
.related_house .primary_btn:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.house_features {
  width: 100%;
  heigth: auto;
}
.house_features .features_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.house_features h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.house_features span {
  display: block;
}
.house_features span,
.house_features span p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.house_features .mobile_btn {
  display: none;
}
.house_features .features_images_inner {
  display: grid;
  grid-template-columns: 50% auto auto;
  gap: 20px;
  margin: 60px auto 20px;
  cursor: pointer;
}
.house_features .features_caption {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.house_features .features_caption a {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}
.house_features h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.5;
}
.house_location {
  width: 100%;
  height: auto;
}
.house_location h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}
.house_location span {
  display: block;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 40px;
}
.house_location span,
.house_location span p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.house_location .location_inner {
  max-width: 1440px;
  margin: 60px auto 0;
  height: 720px;
}
.house_location iframe {
  width: 100%;
  height: 100%;
}
.house_featured_product {
  width: 100%;
  height: auto;
}
.house_featured_product .featured_product_inner {
  display: grid;
  grid-template-columns: 70% 30%;
}
.house_featured_product .featured_product_col {
  width: 100%;
  height: auto;
}
.house_featured_product .featured_product_col:last-child {
  padding-left: 60px;
}
.house_featured_product h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.house_featured_product span {
  display: block;
  padding-top: 40px;
}
.house_featured_product span p,
.house_featured_product span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.house_featured_product .primary_btn {
  margin-top: 40px;
}
.house_featured_product .product_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 150px;
}
.house_featured_product .product-card__info {
  padding: 20px 0 0;
  gap: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.house_featured_product .product-card__title a,
.house_featured_product .product-card__title {
  padding: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  font-family: 'Avenir LT Pro 55 Roman';
}
.house_featured_product .product_description {
  display: none;
}
.house_featured_product .product-card__quick-buy {
  transform: unset;
  position: unset;
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.house_featured_product .product-card__quick-buy .primary_btn {
  min-width: 100%;
  margin: 0;
}
.house_featured_product .product-card__quick-buy button {
  background: transparent;
  padding: 0;
}
.house_featured_product sale-price {
  font-family: 'Avenir LT Pro 55 Roman';
  font-style: normal;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 20px 0;
}
.house_featured_product product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  min-width: 100%;
}
.house_featured_product .product-card .product-card__swatch-list{
  scroll-snap-align: start;
}
.house_featured_product .product-card .product-card__aside fieldset label:first-of-type{
  margin-left:5px;
}
.house_featured_product .button__loader {
  display: none !important;
}
.house_featured_product .product-card__quick-buy button div {
  transform: unset !important;
  opacity: 1 !important;
}
.house_featured_product .product_badge {
  display: none;
}
.sold__out_btn {
  display: none;
}
.house_featured_product .sold__out_btn {
  background: #fdfaf8;
  color: #824514;
  border: 1px solid #824514;
  min-width: 100%;
  margin: 0;
  width: fit-content;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: .3s ease-in-out;
  margin-top: auto;
}
.house_featured_product .sold__out_btn:hover {
  background: #ebdfd6;
  color: #824514;
  border: 1px solid #824514;
}
.house_gallery_popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
  z-index: 9999;
}
.house_gallery_popup .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.house_gallery_popup.active {
  visibility: visible;
  opacity: 1;
}
.house_gallery_popup .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 30px 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.house_gallery_popup .popup_inner {
  max-width: 1280px;
  margin: 0 auto;
  z-index: 99;
  position: relative;
}
.house_gallery_popup .popup_col_for {
  width: 100%;
  height: 720px;
  margin: 0 auto;
}
.house_gallery_popup .popup_col_for div {
  height: 100%;
}
.house_gallery_popup .portrait img {
  width: auto;
  margin: 0 auto;
}
.house_gallery_popup .popup_col_nav {
  width: 270px;
  margin: 20px auto 0;
}
.house_gallery_popup .popup_col_nav .popup_gallery_img {
  width: 80px;
  height: 60px;
  margin: 0 5px;
}
.house_gallery_popup .hero_mobile {
  display: none !important;
}
.house_gallery_popup .close_popup {
  width: 32px;
  height: 32px;
  z-index: 9;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: 30px;
}
.house_gallery_popup .close_popup:hover {

}
.house_gallery_popup .close_popup:before, .house_gallery_popup .close_popup:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #fff;
}
.house_gallery_popup .close_popup:before {
  transform: rotate(45deg);
}
.house_gallery_popup .close_popup:after {
  transform: rotate(-45deg);
}
.house_gallery_popup .slick-prev {
  left: -80px;
}
.house_gallery_popup .slick-next {
  right: -80px;
}
.house_gallery_popup .slick-prev, 
.house_gallery_popup .slick-next {
  width: 40px;
  height: 40px;
  background: transparent;
  margin: 0;
  z-index: 9;
  transition: 0.4s ease-in-out;
  padding: 0;
  border-radius: 100%;
  border: 1px solid #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.house_gallery_popup .slick-prev:before {
  content: '';
  border: 2px solid #fff;
  width: 14px;
  height: 14px;
  z-index: 9;
  position: relative;
  background: transparent;
  border-right-width: 0 !important;
  border-bottom-width: 0 !important;
  rotate: 315deg;
  margin-left: 5px;
}
.house_gallery_popup .slick-next:before {
  content: '';
  border: 2px solid #fff;
  width: 14px;
  height: 14px;
  z-index: 9;
  position: relative;
  background: transparent;
  border-left-width: 0 !important;
  border-top-width: 0 !important;
  rotate: 315deg;
  margin-right: 5px;
}
.house_gallery_popup .slick-prev:hover, 
.house_gallery_popup .slick-next:hover {
  background: #D1C7B9;
  border: 1px solid #824514;
}
.house_gallery_popup .slick-prev:hover:before, 
.house_gallery_popup .slick-next:hover:before {
  border: 2px solid #824514;
}
.house_gallery_popup img {
  object-fit: contain;
}
/****************** cooperer House Site Page End ******************/
.listed_by {
  width: 100%;
  height: auto;
}
.listed_by .listed_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
}
.listed_by .listed_img {
  width: 600px;
}
.listed_by h3 {
  font-family: "Avenir LT Pro 55 Roman";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.listed_by h2 {
  font-family: 'romelylight';
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  max-width: 440px;
  padding: 40px 0;
}
.listed_by .description,
.listed_by .description p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.listed_by a,
.listed_by .arrow_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
.listed_by .arrow_btn {
  margin-top: 70px;
}











/****************** Media Query Css Start ******************/
@media screen and (max-width: 1600px) {
  /****************** cooperer Services Page Css Start ******************/
  .seller_testimonials .testimonials_inner {
    max-width: 90%;
  }
  /****************** cooperer Services Page Css End ******************/
  /****************** cooperer Home Page Css Start ******************/
  .cooper_featured_listing .thumbs_slider {
    width: calc(60% - 130px);
    padding-left: 110px;
  }
  .cooper_featured_listing .load_more {
    width: 160px;
    height: 150px;
  }
  .cooper_featured_listing .thumbs_slider .swiper-slide {
    width: 130px;
  }
  .cooper_featured_listing .thumbs_slider .thumbs_image {
    height: 150px;
  }
  /****************** cooper Home Page Css En ******************/
  /****************** cooper Properties Css Start ******************/
  .cooper_feature_listing3 h2 {
    font-size: 40px;
  }
  .cooper_feature_listing3 .thumbnail_image {
    padding-top: 40px;
  }
  .cooper_feature_listing3 span {
    padding: 0 0 40px 0;
  }
  .cooper_featured_listing4 h4 {
    width: 15%;
  }
  /****************** cooper Properties Css End ******************/
  /****************** cooperer House Site Page Start ******************/
  .house_gallery_popup .popup_inner {
    max-width: 1000px;
  }
  .house_gallery_popup .popup_col_for {
    height: 500px;
  }
  .house_featured_product .product_inner {
    margin-top: 40px;
  }
  .house_listed .listed_inner {
    grid-template-columns: 40% 40% 20%;
  }
  .house_property_details .details_inner {
    grid-template-columns: 50% 45%;
  }
  .cooper_house_hero video {
    height: calc(100vh - 78px);
  }
  .house_listed .listed_col:nth-child(2) {
    padding-left: 40px;
  }
  /****************** cooperer House Site Page End ******************/
}
@media screen and (max-width: 1350px) {
  /****************** cooper Home Page Css Start ******************/
  .cooper_featured_listing span {
    padding-top: 40px;
  }
  .cooper_featured_listing a {
    margin-top: 40px;
  }
  .cooper_featured_listing .thumbs_slider {
    width: calc(100% - 220px);
    position: unset;
    margin-top: 40px;
  }
  .cooper_featured_listing .load_more {
    width: 200px;
  }
  .cooper_featured_listing .thumbs_slider {
    padding: 0;
  }
  .cooper_properties_scroll .primary_btn {
    min-width: 100%;
  }
  /****************** cooper Home Page Css End ******************/
}
@media screen and (max-width: 1300px) {
  .house_featured_product .featured_product_col:last-child {
    padding-left: 30px;
  }
  .house_featured_product .primary_btn {
    min-width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  /****************** cooper Services Page Css Start ******************/
  .seller_testimonials .testimonials_inner {
    max-width: 100%;
    margin: 100px auto;
  }
  .seller_testimonials h3 {
    font-size: 30px;
    line-height: 30px;
  }
  /****************** cooper Services Page Css End ******************/
}
@media screen and (max-width: 1199px) {
  /****************** cooper Services Page Css Start ******************/
  .cooper_services .container {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
  .cooper_services h3 {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.36px;
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .cooper_services h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1.2px;
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .cooper_services span {
    max-width: 100%;
    padding-top: 40px;
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .cooper_services .services_inner {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .cooper_services .services_inner::-webkit-scrollbar {
    display: none;
  }
  .cooper_services .services_col {
    min-width: 400px;
  }
  .cooper_services .services_col:first-child {
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .cooper_services .services_col:last-child {
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .seller_testimonials .testimonials_inner {
    margin: 40px 0;
    gap: 40px;
  }
  .seller_testimonials .testimonials_bottom_content {
    gap: 20px;
  }
  .seller_testimonials h3 {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.6px;
  }
  .seller_testimonials h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1.2px;
  }
  /****************** cooperer Services Page Css End ******************/
  /****************** cooperer Home Page Css Start ******************/
  .cooper_featured_listing .featured_col:last-child {
    padding: 0 0 0 30px;
  }
  .cooper_featured_listing2 .listing_top_content {
    padding-left: 20px;
  }
  .cooper_featured_listing2 .listing_bottom_content {
    padding: 20px 0;
  }
  /****************** cooperer Home Page Css End ******************/
  /****************** cooperer Properties Css Start ******************/
  .cooper_feature_listing3 .listing_inner {
    grid-template-columns: 1fr;
  }
  .cooper_feature_listing3 .listing_col {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .cooper_feature_listing3 .thumbnail_image {
    padding-top: 20px;
  }
  .cooper_feature_listing3 .listing_col:last-child {
    padding: 0;
  }
  .cooper_featured_listing4 h2 {
    font-size: 40px;
  }
  .cooper_featured_listing4 h3 {
    padding: 20px 0 0;
  }
  .cooper_featured_listing4 .listing_content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cooper_featured_listing4 .content_text {
    flex-direction: column;
  }
  .cooper_featured_listing4 span,
  .cooper_featured_listing4 h4 {
    width: 100%;
  }
  .cooper_featured_listing4 h4 p,
  .cooper_featured_listing4 h4 {
    text-align: left;
  }
  .cooper_featured_listing4 .primary_btn {
    margin-left: unset;
    margin-top: 0;
  }
  .cooper_featured_listing4 span {
    padding: 40px 0;
  }
  .cooper_featured_listing4 .listing_images {
    margin-top: 20px;
  }
  .cooper_listings .listings_single {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .cooper_listings .slick-prev {
    left: 43%;
  }
  /****************** cooperer Properties Css End ******************/
  /****************** cooperer House Site Page Start ******************/
  .house_property_details .details_inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .house_property_details .details_content {
    gap: 60px;
  }
  .house_listed .listed_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .house_listed .listed_col:nth-child(2) {
    padding-left: 0;
  }
  .related_house .house_inner {
    gap: 20px;
  }
  .house_location .location_inner {
    height: 600px;
  }
  .house_featured_product .featured_product_inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .house_featured_product .featured_product_col:last-child {
    padding: 0;
  }
  .house_featured_product .primary_btn {
    min-width: 320px;
  }
  .house_gallery_popup .popup_inner {
    max-width: 100%;
  }
  .house_gallery_popup {
    padding: 0 80px;
  }
  /****************** cooperer House Site Page End ******************/
  .listed_by .listed_inner {
    gap: 30px;
  }
  .listed_by .listed_img {
    width: 400px;
  }
}
@media screen and (max-width: 991px) {
  /****************** cooperer Services Page Css Start ******************/
  .cooper_services_hero .hero_bg {
    height: 400px;
  }
  .cooper_services_hero .hero_content {
    padding: 40px;
  }
  .cooper_services_hero h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .cooper_services_hero .hero_buttons {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cooper_services_hero .primary_btn,
  .cooper_services_hero .secondry_btn {
    min-width: 100%;
  }
  .cooper_services .services_col {
    min-width: 320px;
  }
  .cooper_services span {
    max-width: unset;
  }
  .cooper_services .services_inner {
    margin-top: 40px;
  }
  .seller_testimonials .testimonials_inner {
    grid-template-columns: 1fr;
  }
  .seller_testimonials span p,
  .seller_testimonials span {
    max-width: 100%;
  }
  .cooper_featured_properties h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1.2px;
    padding-bottom: 40px;
  }
  /****************** cooperer Services Page Css End ******************/
  /****************** cooperer Home Page Css Start ******************/
  .cooper_hero_banner {
    height: auto;
  }
  .cooper_hero_banner h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1.2px;
  }
  .cooper_hero_banner span {
    max-width: unset;
  }
  .cooper_hero_banner span, 
  .cooper_hero_banner span p {
    font-size: 12px;
  }
  .cooper_hero_banner .banner_buttons {
    margin: 0;
    width: 100%;
  }
  .cooper_hero_banner .banner_content {
    padding: 40px;
  }
  .cooper_featured_listing .slider_popup,
  .cooper_featured_listing .load_more {
    display: none;
  }
  .cooper_featured_listing .thumbs_slider {
    width: 100%;
  }
  .cooper_featured_links .featured_inner {
    gap: 40px;
  }
  .cooper_featured_links h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1.2px;
  }
  .cooper_featured_links .featured_links {
    grid-template-columns: repeat(2, 1fr);
  }
  .cooper_properties_scroll .properties_col {
    min-width: 280px;
    width: fit-content;
    height: 400px;
  }
  .cooper_properties_scroll .propertices_scroll_show {
    width: 280px;
  }
  .cooper_properties_scroll .primary_btn{
    min-width: 100%;
  }
  .cooper_featured_properties .properties_col {
    scroll-snap-align: center;
  }
  .cooper_featured_listing2 .listing_inner_top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cooper_featured_listing2 .listing_top_content {
    padding: 0;
    gap: 40px;
  }
  .cooper_featured_listing2 h2 {
    line-height: 40px;
  }
  .cooper_featured_listing2 span, 
  .cooper_featured_listing2 p {
    max-width: 100%;
  } 
  .cooper_featured_listing2 .listing_inner_bottom {
    grid-template-columns: 1fr;
    gap: 40px;  
  }
  .cooper_featured_listing2 .listing_bottom_content {
    padding: 0;
    gap: 40px;
  }
  .cooper_featured_listing2 .border_line {
    display: block;
  }
  .cooper_featured_listing2 .featured_image {
    height: auto;
  }
  /****************** cooperer Home Page Css End ******************/
  /****************** cooperer Properties Css start ******************/
  .cooper_featured_listing4 .listing_images {
    overflow-x: auto;
    display: flex;
    gap: 20px;
  }
  .cooper_featured_listing4 .listing_images::-webkit-scrollbar {
    display: none;
  }
  .cooper_featured_listing4 .listing_img {
    min-width: 320px;
    height: 400px;
  }
  .cooper_featured_listing4 .listing_img:first-child {
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .cooper_featured_listing4 .listing_img:last-child {
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .cooper_listings .listings_single {
    grid-template-columns: 1fr;
  }
  .cooper_listings .slick-prev {
    left: 0;
  }
  .cooper_listings .slick-next {
    right: 0;
  }
  /****************** cooperer Properties Css End ******************/
  /****************** cooperer House Site Page Start ******************/
  .cooper_house_hero video {
    height: 600;
  }
  .house_property_details .details_img {
    height: 100%;
  }
  .house_listed .primary_btn {
    margin-top: 40px;
  }
  .house_listed h3 {
    padding-top: 40px;
  }
  .related_house .house_inner {
    grid-template-columns: 1fr;
  }
  .related_house .house_col {
    min-height: 400px;
  }
  .related_house h2 {
    padding-bottom: 40px;
  }
  .house_features .container {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
  .house_features .features_content {
    grid-template-columns: 1fr;
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .house_features .mobile_btn {
    display: flex;
  }
  .house_features .desktop_btn {
    display: none;
  }
  .house_features h2 {
    padding: 0;
  }
  .house_features .features_images_inner {
    display: flex;
    justify-content: flex-start;
    margin: 40px 0;
    overflow-x: auto;
  }
  .house_features .features_images_inner::-webkit-scrollbar {
    display: none;
  }
  .house_features .feature_image_col {
    min-width: 320px;
    height: 400px;
  }
  .house_features .feature_image_col:first-child {
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .house_features .feature_image_col:last-child {
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .house_features .features_caption {
    overflow-x: auto;
  }
  .house_features .features_caption::-webkit-scrollbar {
    display: none;
  }
  .house_features h3 {
    margin-inline-start: max(var(--container-gutter),50% - var(--container-max-width) / 2);
    min-width: fit-content;
  }
  .house_features .features_caption a {
    min-width: fit-content;
  }
  .house_features .features_caption a:last-child {
    margin-inline-end: max(var(--container-gutter),50% - var(--container-max-width) / 2);
  }
  .house_location .location_inner {
    margin: 40px auto 0;
  }
  .house_gallery_popup {
    padding: 0 20px;
  }
  .house_gallery_popup .slick-prev {
    left: 0;
    top: calc(100% + 30px);
  }
  .house_gallery_popup .slick-next {
    right: 0;
    top: calc(100% + 30px);
  }
  .house_gallery_popup .popup_col_nav .popup_gallery_img {
    width: 60px;
  }
  .house_gallery_popup .popup_col_nav {
    width: 210px;
  }
  .house_gallery_popup .popup_col_for {
    height: calc(100% - 100px);
  }
  .house_gallery_popup .hero_mobile {
    display: block;
  }
  .house_gallery_popup .hero_desktop {
    display: none;
  }
  .house_gallery_popup .hero_desktop {
    display: none !important;
  }
  .house_gallery_popup .hero_mobile {
    display: block !important;
  }
  .house_gallery_popup .close_popup {
    width: 25px;
    height: 25px;
    margin-right: 0;
  }
  .house_gallery_popup .close_popup:before, 
  .house_gallery_popup .close_popup:after {
    height: 20px;
  }
  .house_gallery_popup .portrait img {
    width: 340px;
    height: auto;
  }
  .house_gallery_popup .container {
    padding: 20px 0 0;
  }
  .house_gallery_popup .popup_inner {
    height: calc(100% - 30px);
  }
  .house_gallery_popup .popup_col_for .image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .house_gallery_popup .popup_col_for img {
    object-fit: contain;
  }
  .house_gallery_popup .container {
    justify-content: space-between;
  }
  /****************** cooperer House Site Page End ******************/
  .listed_by .listed_inner {
    gap: 50px;
    flex-direction: column-reverse;
  }
  .listed_by .listed_img {
    width: 100%;
  }
}



.hero_mobile.h2 p {
    font-family: romelylight;
}
@media screen and (max-width: 813px) {
  /****************** cooperer Services Page Css Start ******************/
  .cooper_services_hero .hero_buttons {
    display: flex;
    flex-direction: column;
  }

  .house_property_details .details_inner {
    gap: 20px;
}

  .house_property_details h3 {
    font-size: 15px;
  }

  .house_property_details .details_content {
    gap: 0px;
}

  .house_property_details h4 {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

  .house_property_details h2 {
  font-size: 35px;
}
  .cooper_services_hero .primary_btn,
  .cooper_services_hero .secondry_btn {
    min-width: 320px;
  }
  .seller_testimonials .testimonials_bottom_content {
    flex-direction: column;
  }
  /****************** cooperer Services Page Css End ******************/
  /****************** cooperer Home Page Css Start ******************/
  .cooper_hero_banner .banner_buttons {
    flex-direction: column;
  }
  .cooper_featured_listing .featured_col {
    width: 100% !important;
    padding: 0 !important;
  }
  .cooper_featured_listing .featured_inner {
    gap: 20px;
  }
  .cooper_featured_listing .thumbs_slider .thumbs_image {
    height: auto;
  }
  .cooper_featured_links .featured_links {
    grid-template-columns: 1fr;
  }
  .cooper_listings .primary_btn {
    min-width: 100%;
  }
  /****************** cooperer Home Page Css End ******************/
  /****************** cooperer House Site Page Start ******************/
  .house_listed h2 {
    text-align: center;
  }
  .house_listed .primary_btn {
    margin: 40px auto 0;
  }
  .house_listed .old_text {
    height: 260px;
    overflow: hidden;
  }
  .house_listed #listed_toggle {
    display: flex;
  }
  /****************** cooperer House Site Page End ******************/
  .cooper_properties_scroll .slick-prev, 
  .cooper_properties_scroll .slick-next {
    width: 30px;
    height: 30px;
  } 
  .cooper_properties_scroll .slick-prev::before, 
  .cooper_properties_scroll .slick-next::before {
    width: 7px;
    height: 13px;
  }
  .cooper_properties_scroll .slick-prev {
    left: 7px;
  }
  .cooper_properties_scroll .slick-next {
    right: 7px;
  }
  .cooper_featured_properties .slick-prev,
  .cooper_featured_properties .slick-next {
    width: 30px;
    height: 30px;
  } 
  .cooper_featured_properties .slick-prev::before, 
  .cooper_featured_properties .slick-next::before {
    width: 7px;
    height: 13px;
  }
  .cooper_featured_properties .slick-prev {
    left: 7px;
  }
  .cooper_featured_properties .slick-next {
    right: 7px;
  }
}
@media screen and (max-width: 430px) {
  .house_featured_product .primary_btn,
  .house_features .primary_btn,
  .cooper_featured_listing4 .primary_btn,
  .house_listed .primary_btn,
  .related_house .primary_btn,
  .cooper_feature_listing3 .primary_btn {
    min-width: 100%;
  }
  .house_property_details #toggle {
    display: flex;
  }
  .house_property_details .old_text {
    height: 265px;
    overflow: hidden;
  }
}
@media screen and (max-width: 380px) {
  /****************** cooperer Services Page Css Start ******************/
  .cooper_services_hero .hero_content {
    padding: 30px 20px;
  }
  .cooper_hero_banner .primary_btn,
  .cooper_hero_banner .secondry_btn,
  .cooper_services_hero .primary_btn,
  .cooper_services_hero .secondry_btn {
    min-width: 100%;
  }
  .cooper_services span {
    padding-top: 20px;
  }
  .cooper_services .services_inner {
    margin-top: 20px;
  }
  .cooper_services h4 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 1px;
    padding: 15px;
  }
  .cooper_services .services_bottom_content {
    gap: 20px;
    padding: 15px;
  }
  .seller_testimonials .testimonials_inner {
    gap: 30px;
    margin: 30px 0;
  }
  .seller_testimonials span p, 
  .seller_testimonials span {
    font-size: 13px;
  } 
  /****************** cooperer Services Page Css End ******************/
  /****************** cooperer Home Page Css Start ******************/
  .cooper_hero_banner .banner_content {
    padding: 30px;
  }
  /****************** cooperer Home Page Css End ******************/
  /****************** cooperer Properties Css Start ******************/
  .cooper_feature_listing3 .listing_col {
    gap: 30px;
  }
  .cooper_feature_listing3 h2 {
    font-size: 30px;
  }
  .cooper_feature_listing3 h3 {
    font-size: 16px;
    padding: 15px 0;
  }
  .cooper_feature_listing3 span {
    padding: 0 0 30px 0;
  }
  .cooper_feature_listing3 .primary_btn {
    min-width: 100%;
  }
  .cooper_feature_listing3 .thumbnail_image {
    gap: 15px;
  }
  /****************** cooperer Properties Css End ******************/
}

a.primary_btn {
    text-decoration: none !important;
}

@media screen and (max-width: 991px) {
    .hero_mobile {
        display: block;
        position: inherit !important;
    }
}