@charset "UTF-8";
/*
Joker Gayrimenkul v2.0.0

- #FBB040
- #FEC34D

*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap");
:root {
  --scrollbarBG: transparent;
  --thumbBG: #e4e4e4;
  --thumbBG-hover: #90a4ae;
  --bg-main: #FFF;
  --color-main-one: #FBB040;
  --color-main-two: #FEC34D;
  --color-gray: #F7F7F7;
  --color-darken-gray: #999999;
  --color-dark-gray: #D4D4D4;
  --color-solid-gray: #EFEFEF;
  --color-soft-gray: #F5F5F5;
  --color-white: #FFF;
  --color-dark: #212529;
  --color-dark-blue: #282F65;
  --color-turquoise: #79DCF2;
  --color-kiralik: #8BBACF;
  --color-satilik: #C9E0EE;
  --color-border-top: #FEC34D;
  --color-sidebar-border: #DB9600;
  --color-loading-bar: #6682A1;
  --sidebar-loading-bar-border: solid 3px transparent;
  --shadow: rgba(131, 131, 131, 0.5);
  --shadow-one-side-only: 0 8px 6px -6px rgba(131, 131, 131, 0.3);
  --font-family-main: "Montserrat", Helvetica, Arial, Sans-Serif;
  --box-radius: .5rem;
  --box-radius-t: var(--box-radius) var(--box-radius) 0 0;
  --box-radius-b: 0 0 var(--box-radius) var(--box-radius);
  --box-radius-l: 0 var(--box-radius) var(--box-radius) 0;
  --box-radius-r: var(--box-radius) 0 0 var(--box-radius);
  --transition: all 300ms;
  --icon-select-down: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* System */
* {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
*:focus {
  outline: 0;
}
*::-webkit-scrollbar {
  width: 4px;
}
*::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 4px;
  border: 4px solid var(--scrollbarBG);
}
*:hover::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG-hover);
}

body {
  background-color: var(--bg-main);
  font-family: var(--font-family-main);
  min-height: 100vh;
  border-top: 4px solid var(--color-border-top);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.font-family-main {
  font-family: var(--font-family-main);
}

.font-family-two {
  font-family: var(--font-family-two);
}

.text-space-nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.user-select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.box-radius {
  border-radius: var(--box-radius);
}

.box-radius-t {
  border-radius: var(--box-radius-t);
}

.box-radius-b {
  border-radius: var(--box-radius-b);
}

.box-radius-l {
  border-radius: var(--box-radius-l);
}

.box-radius-r {
  border-radius: var(--box-radius-r);
}

.shadow-one-side-only {
  box-shadow: var(--shadow-one-side-only);
}

.border-bottom-line {
  border-bottom: 3px solid var(--color-main-two);
}

.min-vh-75 {
  min-height: 75vh;
}

/* colors */
.bg-color-main-one,
.btn-color-main-one {
  background-color: var(--color-main-one);
}

.bg-color-main-two,
.btn-color-main-two {
  background-color: var(--color-main-two);
}

.bg-color-gray {
  background-color: var(--color-gray);
}

.bg-color-soft-gray {
  background-color: var(--color-soft-gray);
}

.bg-color-solid-gray {
  background-color: var(--color-solid-gray);
}

/* search advertisement button */
.btn-search {
  background: url("../images/icons/search-white.svg") no-repeat center #424242;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  right: 5px;
  bottom: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.15s linear;
  z-index: 100;
}

/* back to top button */
#backToTop {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: fixed;
  bottom: 60px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 99;
}
#backToTop img {
  width: 100%;
  height: 100%;
}

/* page loading bar */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: var(--color-sidebar-border);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 4px;
}

/* semantic ui */
.ui.label {
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
  margin: 0 0.14285714em;
  background-color: #e8e8e8;
  background-image: none;
  padding: 0.5833em 0.833em;
  color: rgba(0, 0, 0, 0.6);
  text-transform: none;
  font-weight: 700;
  border: 0 solid transparent;
  border-radius: 0.28571429rem;
  -webkit-transition: background 0.1s ease;
  transition: background 0.1s ease;
}

.ui.multiple.dropdown > .label {
  font-size: 0.8rem !important;
}

.ui.multiple.search.dropdown > input.search {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 4px !important;
  width: 2.2em;
  line-height: 1.21428571em;
  display: inline-block;
}

.ui.multiple.search.dropdown, .ui.multiple.search.dropdown > input.search {
  cursor: text;
}

.ui.search.dropdown.active > input.search, .ui.search.dropdown.visible > input.search {
  cursor: auto;
}

.ui.label > .close.icon,
.ui.label > .delete.icon {
  cursor: pointer;
  margin-right: 0;
  margin-left: 0.5em;
  font: normal 0.9em/1 Arial, sans-serif;
  opacity: 0.5;
  transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
}
.ui.label > .close.icon:before,
.ui.label > .delete.icon:before {
  content: "✖";
}

.ui.label > .icon {
  width: auto;
  margin: 0 0.75em 0 0;
}

.page-item a.page-link {
  color: #2b3034;
}
.page-item a.page-link:hover {
  color: #202020;
}
.page-item.active .page-link {
  background-color: #ffac0a;
  border-color: #f7f7f7;
}

/* global components */
.swiper-container {
  overflow: hidden;
  position: relative;
}

.joker-menu a.navbar-brand-joker {
  margin-right: 2vw;
}
.joker-menu a.navbar-brand-joker img {
  height: 65px;
}
.joker-menu .navbar-nav {
  /* mobil and tablet screen */
}
@media (max-width: 992px) {
  .joker-menu .navbar-nav {
    background: #fff;
    border-radius: 5px;
    margin-top: 10px;
    border-top: 3px solid var(--color-main-two);
    box-shadow: var(--shadow-one-side-only);
  }
}
.joker-menu .navbar-nav .nav-item a {
  padding: 15px 20px;
  font-weight: 600;
  color: #091133;
}
.joker-menu .navbar-nav .nav-item a::after {
  display: none;
}
.joker-menu .navbar-nav .nav-item a:hover {
  color: var(--color-main-two);
}
.joker-menu .navbar-nav .active {
  border-bottom: 2px solid var(--color-main-two);
}
.joker-menu .navbar-nav .active a {
  color: var(--color-main-one);
}
.joker-menu .navbar-nav ul.dropdown-menu {
  padding: 0;
}
.joker-menu .navbar-nav ul.dropdown-menu a.dropdown-item {
  padding: 10px 15px;
  font-weight: 600;
  color: #091133;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.joker-menu .navbar-nav ul.dropdown-menu a.dropdown-item:active, .joker-menu .navbar-nav ul.dropdown-menu a.dropdown-item.active {
  background-color: var(--color-main-one);
  color: #fff;
}
.joker-menu .navbar-nav.right-contact {
  border: 2px solid var(--color-main-two);
  border-radius: 5px;
}
.joker-menu .navbar-nav.right-contact a {
  color: var(--color-main-one);
}
.joker-menu .navbar-nav.right-contact a.active {
  background-color: var(--color-main-one);
  color: #fff;
}
.joker-menu .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.joker-menu .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjgzMjMgMTAuMDAwMUwxOS42MTk5IDIuMjEyMTVDMjAuMTI2NyAxLjcwNTU3IDIwLjEyNjcgMC44ODY1MSAxOS42MTk5IDAuMzc5OTMzQzE5LjExMzMgLTAuMTI2NjQ0IDE4LjI5NDMgLTAuMTI2NjQ0IDE3Ljc4NzcgMC4zNzk5MzNMOS45OTk4OCA4LjE2NzkzTDIuMjEyMjggMC4zNzk5MzNDMS43MDU0OCAtMC4xMjY2NDQgMC44ODY2NjkgLTAuMTI2NjQ0IDAuMzgwMTAzIDAuMzc5OTMzQy0wLjEyNjcwMSAwLjg4NjUxIC0wLjEyNjcwMSAxLjcwNTU3IDAuMzgwMTAzIDIuMjEyMTVMOC4xNjc3IDEwLjAwMDFMMC4zODAxMDMgMTcuNzg4MUMtMC4xMjY3MDEgMTguMjk0NyAtMC4xMjY3MDEgMTkuMTEzOCAwLjM4MDEwMyAxOS42MjA0QzAuNjMyNTU1IDE5Ljg3MzEgMC45NjQ0OTMgMjAgMS4yOTYxOSAyMEMxLjYyNzg5IDIwIDEuOTU5NTkgMTkuODczMSAyLjIxMjI4IDE5LjYyMDRMOS45OTk4OCAxMS44MzI0TDE3Ljc4NzcgMTkuNjIwNEMxOC4wNDA0IDE5Ljg3MzEgMTguMzcyMSAyMCAxOC43MDM4IDIwQzE5LjAzNTUgMjAgMTkuMzY3MiAxOS44NzMxIDE5LjYxOTkgMTkuNjIwNEMyMC4xMjY3IDE5LjExMzggMjAuMTI2NyAxOC4yOTQ3IDE5LjYxOTkgMTcuNzg4MUwxMS44MzIzIDEwLjAwMDFaIiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjU1Ii8+Cjwvc3ZnPgo=");
  background-size: 20px;
}
.joker-menu .navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: auto;
}

.theme-switch-wrapper {
  position: relative;
  width: 55px;
  height: 34px;
  margin: 0 auto;
  border-radius: 40px;
}
.theme-switch-wrapper input[type=checkbox] {
  display: none;
}
.theme-switch-wrapper label {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 2px 25px #d9d9d9;
  border-radius: 40px;
  overflow: hidden;
  transition: 0.2s ease background-color, 0.2s ease opacity;
}
.theme-switch-wrapper label:before, .theme-switch-wrapper label:after {
  content: "";
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: 0.5s ease transform, 0.5s ease left, 0.2s ease background-color;
}
.theme-switch-wrapper label:before {
  background-color: #fff;
  transform: translate(-100%, -100%);
  z-index: 1;
}
.theme-switch-wrapper label:after {
  background-color: #000;
  transform: translate(-100%, 0);
  left: 50%;
  z-index: 0;
}
.theme-switch-wrapper input[type=checkbox]:checked + label {
  background-color: #000;
}
.theme-switch-wrapper input[type=checkbox]:active + label {
  opacity: 0.5;
}
.theme-switch-wrapper input[type=checkbox]:checked + label:before {
  background-color: #000;
  transform: translate(-100%, -5px);
  left: 75%;
}
.theme-switch-wrapper input[type=checkbox]:checked + label:after {
  background-color: #fff;
  transform: translate(-100%, 0);
  left: 85%;
}

.realty-card {
  position: relative;
  border-radius: var(--box-radius);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid transparent;
}
.realty-card.realty-satilik {
  border-bottom: 4px solid var(--color-satilik);
}
.realty-card.realty-kiralik {
  border-bottom: 4px solid var(--color-kiralik);
}
.realty-card .tags {
  position: absolute;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
.realty-card .tags > a:not(:last-child) {
  margin-right: 10px;
}
.realty-card .tags .tag {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 4px;
  border-radius: 0 0 22px 22px;
  cursor: pointer;
  transition: var(--transition);
  width: 25px;
  height: 50px;
}
.realty-card .tags .tag:hover {
  background-color: black;
}
.realty-card .tags .tag.tag-joker img {
  width: 100%;
  height: 100%;
}
.realty-card .tags .tag.tag-urgent img {
  width: 100%;
  height: 100%;
}
.realty-card .tags .tag.tag-discounted img {
  width: 100%;
  height: 100%;
}
.realty-card .realty-img-and-detail {
  position: relative;
  border-radius: var(--box-radius-t);
  /* mobil and tablet screen */
}
.realty-card .realty-img-and-detail .realty-detail {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--box-radius-t);
  width: 100%;
  height: 100%;
  transition: var(--transition);
  transition-delay: 0.1s;
  z-index: 2;
  cursor: pointer;
}
.realty-card .realty-img-and-detail .realty-detail .sale-type {
  text-align: center;
  font-size: 16pt;
  font-weight: 600;
  margin: 20px 10px;
  color: #fff;
}
.realty-card .realty-img-and-detail .realty-detail .tel {
  text-align: center;
}
.realty-card .realty-img-and-detail .realty-detail .tel a {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.realty-card .realty-img-and-detail .realty-detail .realty-detail-data {
  color: #fff;
  font-size: 12pt;
  padding: 10px 50px;
}
.realty-card .realty-img-and-detail input[type=checkbox] {
  display: none;
}
@media (max-width: 992px) {
  .realty-card .realty-img-and-detail.mobile-info .btn-mobile-info {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
  }
  .realty-card .realty-img-and-detail.mobile-info .btn-mobile-info label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #212529;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .realty-card .realty-img-and-detail.mobile-info input:checked + .realty-detail {
    visibility: visible;
    opacity: 1;
  }
}
.realty-card .realty-img-and-detail a.realty-img-lazy {
  display: block;
  background-image: url("../images/icons/joker/joker-gray-icon.svg");
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #E5E5E5;
  border-radius: var(--box-radius-t);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .realty-card .realty-img-and-detail a.realty-img-lazy {
    height: 230px;
  }
}
@media (max-width: 992px) {
  .realty-card .realty-img-and-detail a.realty-img-lazy {
    height: 250px;
  }
}
.realty-card .realty-img-and-detail img.realty-img {
  width: 100%;
  border-radius: var(--box-radius-t);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .realty-card .realty-img-and-detail img.realty-img {
    height: 230px;
    object-fit: cover;
  }
}
@media (max-width: 992px) {
  .realty-card .realty-img-and-detail img.realty-img {
    height: 250px;
    object-fit: cover;
  }
}
.realty-card .realty-img-and-detail:hover .realty-detail {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.7s;
}
.realty-card .realty-info {
  position: relative;
}
.realty-card .realty-info .sale-type-and-advisor {
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.realty-card .realty-info .sale-type-and-advisor .sale-type {
  display: flex;
  align-items: center;
  padding: 3px 12px;
  background: var(--color-dark);
  border-radius: 11px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 8pt;
  margin-left: 20px;
  text-transform: uppercase;
}
.realty-card .realty-info .sale-type-and-advisor .sale-type.satilik {
  color: var(--color-satilik);
}
.realty-card .realty-info .sale-type-and-advisor .sale-type.kiralik {
  color: var(--color-kiralik);
}
.realty-card .realty-info .sale-type-and-advisor .advisor {
  background: #a3a3a3;
  width: 42px;
  height: 42px;
  margin-right: 20px;
  border-radius: 50%;
}
.realty-card .realty-info .sale-type-and-advisor .advisor img.advisor-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  overflow: hidden;
}
.realty-card .realty-info .title {
  display: block;
  background-color: var(--color-main-two);
  padding: 20px 20px 15px;
  color: var(--color-white);
  font-size: 12pt;
  font-weight: 600;
  text-align: center;
}
.realty-card .realty-info .location {
  text-align: center;
  margin-top: 10px;
  min-height: 24px;
}
.realty-card .realty-info .location a {
  font-weight: bold;
  color: #A3A3A3;
  font-size: 9pt;
  transition: var(--transition);
}
.realty-card .realty-info .location a:hover {
  color: var(--color-main-one);
}
.realty-card .realty-info .location a:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
}
.realty-card .realty-info .price {
  padding: 5px 0 10px;
  text-align: center;
}
.realty-card .realty-info .price a {
  display: block;
  color: #212529;
  font-size: 15pt;
  font-weight: 600;
}
.realty-card .realty-info .price a del {
  color: #a2a2a2;
}

.page-card {
  background-color: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--color-main-two);
  height: 100%;
}

.page-card--not-border {
  background-color: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.button-next:after, .button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: normal;
  line-height: 1;
}

.card-calculator input::-webkit-outer-spin-button,
.card-calculator input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.card-calculator input[type=number] {
  -moz-appearance: textfield;
}

/* footer */
.footer {
  /* mobil and tablet screen */
}
@media (max-width: 992px) {
  .footer .footer-content, .footer .footer-contact {
    text-align: center;
  }
}
.footer .footer-content--title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer .footer-content--site-maps a {
  font-size: 0.9rem;
  display: block;
  color: #626262;
  font-weight: 500;
  transition: var(--transition);
}
.footer .footer-content--site-maps a:not(:last-child) {
  padding-bottom: 10px;
}
.footer .footer-content--site-maps a:hover {
  color: var(--color-dark);
  padding-left: 10px;
}
.footer .footer-contact--title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer .footer-contact--info a.tel {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #626262;
  margin: 10px 0;
  /* mobil and tablet screen */
}
@media (max-width: 992px) {
  .footer .footer-contact--info a.tel {
    justify-content: center;
  }
}
.footer .footer-contact--info a.tel span.tel {
  margin-left: 10px;
}
.footer .footer-contact--info a.tel span.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
}
.footer .footer-contact--social-media .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 30px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
}
.footer .footer-contact--social-media .icon:not(:last-child) {
  margin-right: 15px;
}
.footer .footer-contact--social-media .icon svg {
  fill: #3E3E3E;
}
.footer .footer-contact--social-media .icon:hover {
  background-color: var(--color-main-one);
}
.footer .footer-contact--social-media .icon:hover svg {
  fill: #fff;
}
.footer .copright {
  background-color: var(--color-main-one);
  color: #FFF;
  padding: 16px 80px;
  font-size: 0.75rem;
  text-align: center;
}
.footer .copright span {
  font-weight: 600;
}
.footer .copright .hasanunal {
  color: #FFF;
  /* wide screen */
}
@media (min-width: 992px) {
  .footer .copright .hasanunal {
    position: absolute;
    right: 70px;
  }
}

/* home page */
.home-page--slider .home-slider {
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .home-page--slider .home-slider {
    border-radius: 5px 5px 0 0;
  }
}
@media (max-width: 992px) {
  .home-page--slider .home-slider {
    border-radius: 5px;
  }
}
.home-page--slider .home-slider .swiper-slide img {
  width: 100%;
}
.home-page--slider .home-slider .swiper-slide .swiper-lazy-preloader {
  right: 20px !important;
  left: auto !important;
  top: 40px !important;
}
.home-page--slider .home-slider-button-next:after, .home-page--slider .home-slider-button-prev:after {
  color: var(--color-main-two);
}
.home-page--slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--color-main-one);
}
.home-page--search-bar-form {
  /* wide screen */
  z-index: 2;
  background: #fff;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 16px;
}
@media (min-width: 992px) {
  .home-page--search-bar-form {
    position: absolute;
    transform: translateY(-50%);
  }
}
.home-page--search-bar-form .form-element {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  border: none;
  background-color: var(--color-gray);
  background-repeat: no-repeat;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.home-page--search-bar-form .form-element.icon-search {
  background-image: url("../images/icons/search.svg"), var(--icon-select-down);
  background-size: 20px, 16px 12px;
  background-position: 16px center, right 0.75rem center;
  padding-left: 48px;
}
.home-page--search-bar-form .form-element.icon-location {
  background-image: url("../images/icons/location.svg"), var(--icon-select-down);
  background-size: 20px, 16px 12px;
  background-position: 16px center, right 0.75rem center;
  padding-left: 48px;
}
.home-page--regions {
  --location-border-radius: .25rem;
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .home-page--regions .home-regions-slider {
    border-radius: var(--location-border-radius) 0 0 var(--location-border-radius);
  }
  .home-page--regions .last-item-gradient {
    position: absolute;
    background: white;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 90%);
    width: 250px;
    height: 100%;
    z-index: 2;
    right: 0;
    transition: var(--transition);
  }
  .home-page--regions .last-item-gradient.swiper-button-disabled {
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
  }
  .home-page--regions .first-item-gradient {
    position: absolute;
    background: white;
    background: linear-gradient(90deg, white 10%, rgba(255, 255, 255, 0) 80%);
    width: 250px;
    height: 100%;
    z-index: 2;
    left: -25px;
    transition: var(--transition);
  }
  .home-page--regions .first-item-gradient.swiper-button-disabled {
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .home-page--regions .home-regions-slider {
    border-radius: var(--location-border-radius);
  }
}
.home-page--regions .title {
  font-weight: 600;
  margin-bottom: 2rem;
}
.home-page--regions .regions {
  position: relative;
  min-height: 146px;
}
.home-page--regions .regions .info {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 20px;
  z-index: 1;
}
.home-page--regions .regions .info .regions-name {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-white);
}
.home-page--regions .regions .info .regions-value {
  font-size: 1rem;
  color: var(--color-white);
}
.home-page--regions .regions .overlay-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--location-border-radius);
}
.home-page--regions .regions img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--location-border-radius);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .home-page--regions .regions img {
    height: 146px;
  }
}
@media (max-width: 992px) {
  .home-page--regions .regions img {
    height: 167px;
  }
}
.home-page--joker-cards .title {
  font-weight: 600;
}
.home-page--joker-cards .joker-cards-button {
  display: flex;
  cursor: pointer;
  align-items: center;
  z-index: 10;
}
.home-page--joker-cards .joker-cards-button .slider-button {
  background: var(--color-main-two);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.home-page--joker-cards .joker-cards-button .slider-button::after {
  font-family: swiper-icons;
  font-size: 25px;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  color: #fff;
}
.home-page--joker-cards .joker-cards-button-prev {
  margin-right: 10px;
}
.home-page--joker-cards .joker-cards-button-prev::after {
  content: "prev";
  margin-left: -2px;
}
.home-page--joker-cards .joker-cards-button-next::after {
  content: "next";
  margin-right: -5px;
}
.home-page--joker-cards .joker-cards-button .swiper-button-disabled {
  opacity: 0.5;
}
.home-page--joker-cards .icon-and-text svg {
  width: 20px;
  height: 17px;
  fill: var(--color-dark);
}
.home-page--information .title {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 24pt;
  font-weight: 700;
}
.home-page--information .title::before {
  content: "";
  position: absolute;
  background-color: var(--color-turquoise);
  bottom: 0;
  height: 20px;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
.home-page--information .title span {
  position: relative;
  z-index: 1;
}
.home-page--information .info-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 30px;
  border-radius: var(--box-radius);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .home-page--information .info-card:hover {
    background: #FFFFFF;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--color-main-one);
  }
}
@media (max-width: 992px) {
  .home-page--information .info-card {
    background: #FFFFFF;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--color-main-one);
  }
}
.home-page--information .info-card-home-status {
  transition: var(--transition);
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
  border-radius: var(--box-radius);
  /* wide screen */
}
@media (min-width: 992px) {
  .home-page--information .info-card-home-status:hover {
    margin-top: -40px;
    margin-bottom: 40px;
  }
}
.home-page--information .info-card .icon {
  background-color: var(--color-dark-blue);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 30px;
}
.home-page--information .info-card .icon svg, .home-page--information .info-card .icon img {
  width: 48px;
  height: auto;
}
.home-page--information .info-card .heading {
  width: 80%;
  margin-bottom: 15px;
}
.home-page--information .info-card .heading .title-text {
  display: block;
  color: var(--color-black);
  font-size: 15pt;
  font-weight: 500;
}
.home-page--information .info-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #626262;
  font-size: 11pt;
  width: 80%;
}
.home-page--information .info-card .btn-read-me {
  border: 1px solid var(--color-main-one);
  color: var(--color-main-one);
  font-weight: 500;
  padding: 10px 32px;
  margin-top: 24px;
}
.home-page--information .info-card .btn-read-me:hover {
  background-color: var(--color-main-one);
  color: #fff;
}
.home-page--customer-comments .comments-button-next:after, .home-page--customer-comments .comments-button-prev:after {
  color: var(--color-main-two);
}
.home-page--customer-comments .title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.home-page--customer-comments .comment-card {
  background-color: var(--color-white);
  width: 100%;
  padding: 30px;
  box-shadow: 0 12px 64px rgba(0, 0, 0, 0.08);
  border-radius: var(--box-radius);
  border-bottom: 3px solid var(--color-main-one);
}
.home-page--customer-comments .comment-card .initials {
  background-color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 50%;
  border: 3px solid var(--color-main-two);
  margin-right: 14px;
  color: #7D7D7D;
}
.home-page--customer-comments .comment-card .name-and-process .name {
  font-weight: 600;
}
.home-page--customer-comments .comment-card .name-and-process .process {
  font-size: 0.7rem;
  font-style: italic;
}
.home-page--customer-comments .comment-card .name-and-process .process::before {
  content: "-";
}
.home-page--customer-comments .comment-card .comment .post {
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .home-page--customer-comments .comment-card .comment .post {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 150%;
    text-align: justify;
    height: 63px;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .home-page--customer-comments .comment-card .comment .post {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 150%;
  }
}
.home-page--customer-comments .comment-card .comment.read-more input[type=checkbox] {
  display: none;
}
.home-page--customer-comments .comment-card .comment.read-more label {
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .home-page--customer-comments .comment-card .comment.read-more label {
    color: var(--color-main-one);
    padding: 5px 10px;
    font-size: 0.85rem;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
  }
}
@media (max-width: 992px) {
  .home-page--customer-comments .comment-card .comment.read-more label {
    display: none;
  }
}
.home-page--customer-comments .comment-card .comment.read-more input:checked + .post {
  height: auto;
  overflow: auto;
}
.home-page--customer-comments .comment-card .comment.read-more input:checked + .post + label {
  display: none;
}

/* advertisement search */
.realty-search-result--form .list-form-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  border-bottom: 1px solid var(--color-dark-gray);
}
.realty-search-result--form .list-form-item.form-title {
  background-color: var(--color-main-one);
}
.realty-search-result--form .list-form-item input, .realty-search-result--form .list-form-item select {
  background: transparent;
  display: block;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: 0;
  border-bottom: 2px solid var(--color-grey);
  padding: 10px 5px;
}

/* advertisement detail */
.realty-detail-page--card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow-one-side-only);
}
.realty-detail-page--card .title {
  position: relative;
}
.realty-detail-page--card .title::before {
  content: "";
  position: absolute;
  background-color: var(--color-main-one);
  width: 15px;
  height: 100%;
  margin-left: -30px;
  border-radius: 0 5px 5px 0;
}
.realty-detail-page--card .realty-properties {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.realty-detail-page--card .realty-properties--check::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 13px;
  margin-left: -20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='13' viewBox='0 0 16 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0426 3.4795L6.86754 11.654C6.26217 12.2595 5.28016 12.2595 4.67421 11.654L0.454201 7.43365C-0.1514 6.82817 -0.1514 5.84604 0.454201 5.24044C1.05992 4.63473 2.04185 4.63473 2.6473 5.24021L5.7712 8.36416L12.8491 1.28618C13.4549 0.680461 14.4369 0.68092 15.0424 1.28618C15.6478 1.89178 15.6478 2.87356 15.0426 3.4795Z' fill='%23F5C463'/%3E%3C/svg%3E%0A");
}
.realty-detail-page--card .realty-properties--not {
  opacity: 0.5;
}
.realty-detail-page--card .realty-properties--not::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 13px;
  margin-left: -20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3051 7.78742L15.0992 2.99338C15.6289 2.46369 15.6289 1.60493 15.0992 1.07606L14.4601 0.436958C13.9302 -0.0928989 13.0715 -0.0928989 12.5426 0.436958L7.74872 5.23083L2.95468 0.435965C2.42499 -0.0937265 1.56623 -0.0937265 1.03737 0.435965L0.397269 1.07507C-0.132423 1.60493 -0.132423 2.46369 0.397269 2.99255L5.19213 7.78742L0.398262 12.5813C-0.131595 13.1111 -0.131595 13.9699 0.398262 14.4988L1.03737 15.1379C1.56706 15.6676 2.42582 15.6676 2.95468 15.1379L7.74872 10.3438L12.5426 15.1379C13.0725 15.6676 13.9312 15.6676 14.4601 15.1379L15.0992 14.4988C15.6289 13.9689 15.6289 13.1102 15.0992 12.5813L10.3051 7.78742Z' fill='%23F5C463'/%3E%3C/svg%3E%0A");
}
.realty-detail-page--realty-header {
  /* mobil and tablet screen */
}
@media (max-width: 992px) {
  .realty-detail-page--realty-header {
    text-align: center;
  }
}
.realty-detail-page--realty-header .title h1 {
  font-weight: 600;
}
.realty-detail-page--realty-header .price {
  font-weight: 600;
  color: var(--color-main-one);
}
.realty-detail-page--realty-gallery {
  --gallery-img-radius: 5px;
  display: block;
  height: 100%;
}
.realty-detail-page--realty-gallery .gallery-top {
  border-radius: var(--gallery-img-radius);
  /* wide screen */
}
@media (min-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-top {
    height: calc(88% - 10px);
  }
}
.realty-detail-page--realty-gallery .gallery-top .swiper-slide-container {
  height: 100%;
}
.realty-detail-page--realty-gallery .gallery-top .swiper-slide-container a {
  display: block;
  height: 100%;
}
.realty-detail-page--realty-gallery .gallery-top img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--gallery-img-radius);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-top img {
    height: 100%;
  }
}
@media (max-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-top img {
    height: 250px;
  }
}
.realty-detail-page--realty-gallery .gallery-thumbs {
  margin-top: 10px;
  border-radius: 5px;
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-thumbs {
    height: 12%;
  }
}
@media (max-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-thumbs {
    margin-bottom: 10px;
  }
}
.realty-detail-page--realty-gallery .gallery-thumbs .swiper-slide-container {
  height: 100%;
}
.realty-detail-page--realty-gallery .gallery-thumbs img {
  width: 100%;
  cursor: pointer;
  object-fit: cover;
  border-radius: var(--gallery-img-radius);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-thumbs img {
    height: 100%;
  }
}
@media (max-width: 992px) {
  .realty-detail-page--realty-gallery .gallery-thumbs img {
    height: 40px;
  }
}
.realty-detail-page--realty-gallery .gallery-thumbs .swiper-slide {
  width: 20%;
  height: 100%;
  opacity: 0.4;
}
.realty-detail-page--realty-gallery .gallery-thumbs .swiper-slide-active {
  opacity: 1;
}
.realty-detail-page--table {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  background-image: url("../images/icons/joker/joker-gray-30-icon.svg");
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--shadow-one-side-only);
  height: 100%;
}
.realty-detail-page--table table {
  margin: 0;
  font-size: 10.5pt;
}
.realty-detail-page--right-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow-one-side-only);
}
.realty-detail-page--right-sidebar a {
  color: var(--color-darken-gray);
}
.realty-detail-page--right-sidebar .advisor a {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.realty-detail-page--right-sidebar .advisor a .advisor-img {
  width: 112px;
  height: 112px;
  border: 5px solid var(--color-main-one);
  border-radius: 50%;
}
.realty-detail-page--right-sidebar .advisor a .advisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.realty-detail-page--right-sidebar .advisor a .advisor-name {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}
.realty-detail-page--right-sidebar .advisor a .advisor-name h2 {
  display: inline;
  font-size: 1rem;
  color: var(--color-dark);
}
.realty-detail-page--right-sidebar .advisor .advisor-detail {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 20px;
}
.realty-detail-page--right-sidebar .advisor .advisor-detail a, .realty-detail-page--right-sidebar .advisor .advisor-detail span {
  cursor: pointer;
  padding: 5px 0;
  opacity: 0.5;
}
.realty-detail-page--right-sidebar .extension {
  width: 100%;
  text-align: center;
}
.realty-detail-page--right-sidebar .extension .link {
  border-bottom: 2px solid var(--color-dark-gray);
  opacity: 0.7;
  transition: var(--transition);
}
.realty-detail-page--right-sidebar .extension .link:hover {
  opacity: 1;
}
.realty-detail-page--right-sidebar .extension .link:first-child {
  padding: 10px 0;
}
.realty-detail-page--right-sidebar .extension .whatsapp-widget {
  background: #00cb3f;
  color: #fff;
  border-radius: 5px;
}
.realty-detail-page--right-sidebar .extension .whatsapp-widget svg {
  width: 50px;
  height: 50px;
  /* mobil and tablet screen */
}
@media (max-width: 992px) {
  .realty-detail-page--right-sidebar .extension .whatsapp-widget svg {
    width: 40px;
    height: 40px;
  }
}
.realty-detail-page--right-sidebar .extension .whatsapp-widget svg path {
  fill: #ffffff;
}
.realty-detail-page--right-sidebar .extension .whatsapp-widget span {
  display: block;
  width: 100%;
  text-align: center;
}
.realty-detail-page--right-sidebar .extension .share {
  position: relative;
  padding: 5px 0;
}
.realty-detail-page--right-sidebar .extension .share .share-button {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.realty-detail-page--right-sidebar .extension .share .share-button__back {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: var(--color-main-one);
  padding: 5px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1) inset;
}
.realty-detail-page--right-sidebar .extension .share .share-button__front {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 0;
  transform-origin: center top;
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.realty-detail-page--right-sidebar .extension .share .share-button__text {
  margin: 0;
  font-size: 1rem;
  text-align: center;
  color: var(--color-darken-gray);
}
.realty-detail-page--right-sidebar .extension .share .share__link {
  position: relative;
  width: 100%;
  height: auto;
  top: 40px;
  display: inline-flex;
  padding: 2px;
  opacity: 0;
  -webkit-transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.realty-detail-page--right-sidebar .extension .share .share__link svg {
  width: 100%;
  height: auto;
  fill: #fff;
  display: inline-block;
  vertical-align: top;
  margin-right: 3px;
}
.realty-detail-page--right-sidebar .extension .share .share-button:hover .share-button__front {
  transform: rotateX(90deg);
}
.realty-detail-page--right-sidebar .extension .share .share-button:hover .share__link {
  top: 0;
  opacity: 1;
}
.realty-detail-page--right-sidebar .extension .share .share-button:hover .share__link:nth-of-type(1) {
  transition-delay: 0.1s;
}
.realty-detail-page--right-sidebar .extension .share .share-button:hover .share__link:nth-of-type(2) {
  transition-delay: 0.2s;
}
.realty-detail-page--right-sidebar .extension .share .share-button:hover .share__link:nth-of-type(3) {
  transition-delay: 0.3s;
}
.realty-detail-page--right-sidebar .extension .share .share-button:hover .share__link:nth-of-type(4) {
  transition-delay: 0.4s;
}
.realty-detail-page--right-sidebar .realty-tags {
  width: 100%;
}
.realty-detail-page--right-sidebar .realty-tags a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.9rem;
  padding: 5px 10px;
}
.realty-detail-page--right-sidebar .realty-tags a img {
  filter: grayscale(1);
  width: 20px;
  height: 20px;
}
.realty-detail-page--right-sidebar .realty-tags a img.joker {
  width: 25px;
  height: auto;
}

/* team list */
.team-list-page--content .title a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.team-list-page--content .biography p {
  line-height: 200%;
  font-size: 11pt;
  color: #8c8c8c;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-list-page--right-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  border-radius: 5px;
  box-shadow: var(--shadow-one-side-only);
}
.team-list-page--right-sidebar a {
  color: var(--color-darken-gray);
}
.team-list-page--right-sidebar .advisor {
  width: 100%;
}
.team-list-page--right-sidebar .advisor img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: top center;
  border-radius: 5px;
  filter: grayscale(1);
  transition: var(--transition);
}
.team-list-page--right-sidebar .advisor img:hover {
  filter: grayscale(0);
}

/* user detail */
.user-detail-page--right-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow-one-side-only);
}
.user-detail-page--right-sidebar a {
  color: var(--color-darken-gray);
}
.user-detail-page--right-sidebar .advisor a {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.user-detail-page--right-sidebar .advisor a .advisor-img {
  width: 112px;
  height: 112px;
  border: 5px solid var(--color-main-one);
  border-radius: 50%;
}
.user-detail-page--right-sidebar .advisor a .advisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.user-detail-page--right-sidebar .advisor .advisor-name {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}
.user-detail-page--right-sidebar .advisor .advisor-name h2 {
  display: inline;
  font-size: 1rem;
  color: var(--color-dark);
}
.user-detail-page--right-sidebar .advisor .advisor-detail {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 20px;
}
.user-detail-page--right-sidebar .advisor .advisor-detail a, .user-detail-page--right-sidebar .advisor .advisor-detail span {
  cursor: pointer;
  padding: 5px 0;
  opacity: 0.5;
}
.user-detail-page--right-sidebar .advisor .advisor-social {
  border-top: 2px solid var(--color-soft-gray);
}
.user-detail-page--right-sidebar .advisor .advisor-social h3 {
  display: inline-block;
  font-size: 1rem;
  color: var(--color-darken-gray);
  margin-bottom: 1rem;
}
.user-detail-page--right-sidebar .advisor .advisor-social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* corporate page */
.corporate-page .corporate-kit img {
  filter: grayscale(1);
  transition: var(--transition);
}
.corporate-page .corporate-kit img:hover {
  filter: grayscale(0);
}
.corporate-page .corporate-social {
  border-top: 2px solid var(--color-soft-gray);
}
.corporate-page .corporate-social h3 {
  display: inline-block;
  font-size: 1rem;
  color: var(--color-darken-gray);
  margin-bottom: 1rem;
}
.corporate-page .corporate-social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* information and blog page */
.information-and-blog-page--information .title {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 24pt;
  font-weight: 700;
}
.information-and-blog-page--information .title-info::before {
  content: "";
  position: absolute;
  background-color: var(--color-turquoise);
  bottom: 0;
  height: 20px;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
.information-and-blog-page--information .title-blog::before {
  content: "";
  position: absolute;
  background-color: var(--color-main-two);
  bottom: 0;
  height: 20px;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
.information-and-blog-page--information .title span {
  position: relative;
  z-index: 1;
}
.information-and-blog-page--information .card-detail {
  height: 100%;
}
.information-and-blog-page--information .card-detail .card-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 40px 30px;
  border-radius: var(--box-radius);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  background: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .information-and-blog-page--information .card-detail .card-info:hover {
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--color-main-one);
  }
}
@media (max-width: 992px) {
  .information-and-blog-page--information .card-detail .card-info {
    background: #FFFFFF;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--color-main-one);
  }
}
.information-and-blog-page--information .card-detail .card-info .icon {
  background-color: var(--color-dark-blue);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 30px;
}
.information-and-blog-page--information .card-detail .card-info .icon svg, .information-and-blog-page--information .card-detail .card-info .icon img {
  width: 48px;
  height: auto;
}
.information-and-blog-page--information .card-detail .card-info .heading {
  width: 80%;
  margin-bottom: 15px;
}
.information-and-blog-page--information .card-detail .card-info .heading .title-text {
  display: block;
  color: var(--color-black);
  font-size: 15pt;
  font-weight: 500;
}
.information-and-blog-page--information .card-detail .card-info p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #626262;
  font-size: 11pt;
  width: 80%;
}
.information-and-blog-page--information .card-detail .card-info .btn-read-me {
  border: 1px solid var(--color-main-one);
  color: var(--color-main-one);
  font-weight: 500;
  padding: 10px 32px;
  margin-top: 24px;
}
.information-and-blog-page--information .card-detail .card-info .btn-read-me:hover {
  background-color: var(--color-main-one);
  color: #fff;
}
.information-and-blog-page--information .card-detail .card-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 5px 5px 20px;
  border-radius: var(--box-radius);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  background: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .information-and-blog-page--information .card-detail .card-blog:hover {
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--color-main-one);
  }
}
@media (max-width: 992px) {
  .information-and-blog-page--information .card-detail .card-blog {
    background: #FFFFFF;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--color-main-one);
  }
}
.information-and-blog-page--information .card-detail .card-blog .icon {
  background-color: var(--color-soft-gray);
  width: 100%;
  border-radius: 0.25rem;
  /* wide screen */
  /* mobil and tablet screen */
}
@media (min-width: 992px) {
  .information-and-blog-page--information .card-detail .card-blog .icon {
    height: 165px;
  }
}
@media (max-width: 992px) {
  .information-and-blog-page--information .card-detail .card-blog .icon {
    height: auto;
  }
}
.information-and-blog-page--information .card-detail .card-blog .icon svg, .information-and-blog-page--information .card-detail .card-blog .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
.information-and-blog-page--information .card-detail .card-blog .heading {
  width: 80%;
  margin: 15px 0;
}
.information-and-blog-page--information .card-detail .card-blog .heading .title-text {
  display: block;
  color: var(--color-black);
  font-size: 15pt;
  font-weight: 500;
}
.information-and-blog-page--information .card-detail .card-blog p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #626262;
  font-size: 11pt;
  width: 80%;
  min-height: 88px;
}
.information-and-blog-page--information .card-detail .card-blog .btn-read-me {
  border: 1px solid var(--color-main-one);
  color: var(--color-main-one);
  font-weight: 500;
  padding: 10px 32px;
  margin-top: 24px;
}
.information-and-blog-page--information .card-detail .card-blog .btn-read-me:hover {
  background-color: var(--color-main-one);
  color: #fff;
}

/* information and blog page */
.information-and-blog-page-detail .content-img-info img {
  display: none;
  max-width: 300px;
}
.information-and-blog-page-detail .content-img-blog img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.information-and-blog-page-detail .information-or-blog-content img {
  max-width: 100%;
  border-radius: 5px;
}

/* realty search page */
.realty-search-page {
  background-image: url("../images/page/search-page-bg.jpg");
  background-size: cover;
}
.realty-search-page--form input[type=number],
.realty-search-page--form select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
}
.realty-search-page--form select option:invalid {
  color: #4e4e4e;
}

/* contact page */
.contact-page .google-maps iframe {
  background-color: var(--color-white);
  background-image: url("../images/icons/joker/joker-gray-30-icon.svg");
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  box-shadow: var(--shadow-one-side-only);
}
.contact-page .contact-information .info {
  width: 80px;
}
.contact-page .contact-information a.tel span.tel {
  font-weight: 600;
  color: #626262;
}
.contact-page .contact-information--social-media-accounts img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/*# sourceMappingURL=style.css.map */
