/* global style */
body {
  overflow-x: hidden;
}
input {
  border-radius: 0;
}
textarea {
  border-radius: 0;
}
input[type="search"] {
  -webkit-appearance: none;
}

:root {
  --color-blue: #113270;
  --color-light-blue: rgba(144, 160, 188);
  --color-light-gold: rgba(178, 173, 135, 0.1);
  --color-white: #ffffff;
  --color-black: #000000;
  --transition: all 0.3s ease-in;
}
body {
  font-family: "Open Sans", sans-serif;
}

html {
  font-size: 62.5%; /* 10px/16px = 62.5% -> 1rem = 10px*/
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
}
a,
a svg,
a svg path,
li,
li a,
li span {
  transition: var(--transition);
}
.bg-center {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
::-webkit-scrollbar {
  width: 100px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-light-blue);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 30px;
  border: 2px solid var(--color-light-blue);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-blue) var(--color-light-blue);
}
/* BASIC */
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.h1 {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 5rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}

h1 {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}
h2 {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}
h3 {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}
p {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}

.title20 {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}

.container1820 {
  width: 90%;
  max-width: 182rem;
  margin: 0 auto;
}
.container1600 {
  width: 90%;
  max-width: 160rem;
  margin: 0 auto;
}
.container1440 {
  width: 90%;
  max-width: 144rem;
  margin: 0 auto;
}

.container1400 {
  width: 90%;
  max-width: 140rem;
  margin: 0 auto;
}

.container1235 {
  width: 90%;
  max-width: 123.5rem;
  margin: 0 auto;
}
.container830 {
  width: 90%;
  max-width: 83rem;
  margin: 0 auto;
}
.container1115 {
  width: 90%;
  max-width: 115rem;
  margin: 0 auto;
}
.mt5 {
  margin-top: 5rem;
}
.mb5 {
  margin-bottom: 5rem;
}
.mt10 {
  margin-top: 10rem;
}
.mb10 {
  margin-bottom: 10rem;
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.btnBlue,
.btnBlack {
  width: 22.3rem;
  height: 4.3rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btnBlack {
  background-color: var(--color-black);
}

.btnBlue {
  background-color: var(--color-blue);
}

.btnBlack:hover {
  background-color: var(--color-blue);
}
.btnBlue:hover {
  background-color: var(--color-black);
}

.flexColGap5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.flexColGap3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

/* Checkbox */
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
/* [type="checkbox"]:not(:checked) + span,
[type="checkbox"]:checked + span {
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  font-size: 0.85em;
  font-weight: 400;
  color: #999;
} */
[type="checkbox"]:not(:checked) + span a,
[type="checkbox"]:checked + span a {
  color: var(--color-black);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 350;
  line-height: 2.6rem;
}

/* checkbox aspect */
/* [type="checkbox"]:not(:checked) + span:before,
[type="checkbox"]:checked + span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 15px;
  height: 15px;
  border: 1px solid #c3c3c3;
  border-radius: 100px;
  background: transparent;
  box-shadow: none;
} */

/* checked mark aspect */
[type="checkbox"]:not(:checked) + span:after,
[type="checkbox"]:checked + span:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 0.5rem;
  height: 0.8rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
input[type="checkbox"]:checked + .checkbox-container {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + span:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + span:before,
[type="checkbox"]:disabled:checked + span:before {
  box-shadow: none;
  border-color: red;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + span:after {
  color: #999;
}
[type="checkbox"]:disabled + span {
  color: #aaa;
}

/* accessibility */
[type="checkbox"]:checked:focus + span:before,
[type="checkbox"]:not(:checked):focus + span:before {
  border: 1px solid #c3c3c3;
}
.checkbox-container {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid #080808;
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-right: 1rem;
  cursor: pointer;
}
.checkbox-container::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.5rem;
  width: 0.68rem;
  height: 1.1rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + .checkbox-container::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.checkbox-container::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.5rem;
  width: 0.68rem;
  height: 1.1rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
/* CookiesUp */
.cookiesUp {
  position: fixed;
  display: none;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 10000;
  box-sizing: border-box;
}
.cku-yes.ic-greenBTN,
.cku-no.ic-greenBTN {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 12px 20px;
  font-size: 1em;
  font-weight: 400;
  transition: all 0.3s linear;
}
.cku-label {
  margin: 0 20px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Header */
header {
  position: relative;
  width: 100%;
  z-index: 3000;
  background: var(--color-white);
  max-width: 100%;
  transition: all 0.3s ease-in;
}
.wrap__header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
header > div {
  position: relative;
}

#ic-headerTop {
  display: flex;
  align-items: center;
  gap: 3rem;
}
#ic-headerTop ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}

#ic-headerTop .ic-dropdown ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
#ic-headerTop ul li {
  padding: 0;
}
#ic-headerTop a {
  color: var(--color-black);
  display: block;
}
#ic-headerTop a:hover {
  color: #e2dad1;
}
#ic-headerTop a .fa-envelope,
#ic-headerTop a .fa-phone,
#ic-menuShortlist.shortlist-empty {
  display: none;
}

#ic-languages {
  position: relative;
  z-index: 201;
  color: var(--color-black);
  cursor: pointer;
}

#ic-languages ul {
  display: none;
  width: auto;
  position: absolute;
  background: var(--color-white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  top: 6rem;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  margin: 0;
  padding: 0;
}

#ic-languages ul li.selected {
  display: none;
}
#ic-languages li {
  display: block;
  padding: 0;
}
#ic-languages li a {
  text-transform: uppercase;
  color: #000;
}
#ic-languages li a:hover {
  color: #000;
  background: #fff;
}
#ic-languages ul li a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  text-transform: uppercase;
  padding: 1rem 2rem;
}
#ic-headerTop li::before,
#ic-languages li::before,
#ic-navigation li::before {
  display: none;
}

#ic-headerSpacer {
  height: 96px;
}

/* Navigation */
#ic-navigation > button,
#ic-logoXS,
#ic-menuXS {
  display: none;
}
#ic-logo img,
#ic-logo {
  z-index: 1;
  width: 45rem;
}
#ic-navBTN:focus,
#ic-navBTN:active {
  outline: none;
}
#ic-navBTN {
  display: none;
  z-index: 200;
  width: 5rem;
  height: 30px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  outline: none;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#ic-navBTN span {
  display: block;
  position: absolute;
  height: 2px;
  width: 3.9rem;
  background: var(--color-black);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#ic-navBTN span:nth-child(1) {
  top: 5px;
  transform-origin: left center;
}
#ic-navBTN span:nth-child(2) {
  top: 15px;
  transform-origin: left center;
}
#ic-navBTN span:nth-child(3) {
  top: 25px;
  transform-origin: left center;
}
#ic-navBTN.open span:nth-child(1) {
  transform: rotate(45deg);
}
#ic-navBTN.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#ic-navBTN.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 3.3rem;
  left: 2px;
}

#ic-navigation {
  width: 100%;
  z-index: 200;
}
#ic-navbar {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
}

#ic-navigation .nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}
#ic-navigation .nav li {
  position: relative;
  width: max-content;
}

#ic-navigation .nav > li > a,
#ic-navigation .nav > li > a:visited {
  position: relative;
  display: block;
  font-family: "Open Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-black);
  text-transform: uppercase;
}
#ic-navigation .ic-dropdown a:hover,
#ic-navigation .ic-dropdown a:focus,
#ic-navigation .nav li:hover > a,
#ic-navigation .nav li:focus > a {
  color: #e2dad1;
}
#ic-navigation .ic-dropdown a:hover,
#ic-navigation .ic-dropdown a:focus,
#ic-navigation .nav li:hover > a,
#ic-navigation .nav li:focus > a {
  color: var(--color-light-blue);
}

#ic-navigation .nav li:hover > a .ic-caret svg path,
#ic-navigation .nav li > a:focus .ic-caret svg path,
#ic-navigation .nav li:focus-within > a .ic-caret svg path {
  stroke: var(--color-light-blue);
}
#ic-navigation .nav li.active a {
  color: var(--color-light-blue);
}

#ic-navigation .nav li.active:hover > a {
  color: var(--color-black);
}
#ic-menuShortlist {
  position: relative;
}

#ic-languages svg {
  width: 3rem;
  height: 3rem;
}
#ic-menuShortlist svg {
  width: 3.6rem;
  height: 3.2rem;
}
.shortlistCount {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  text-transform: uppercase;
}

#ic-navigation .ic-dropdown ul {
  margin: 0;
  padding: 0;
}
#ic-navigation .ic-dropdown li {
  text-align: left;
}
#ic-navigation .ic-dropdown a {
  display: block;
  color: var(--color-black);
  font-family: "Open Sans";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  text-transform: uppercase;
}

#ic-navigation .ic-caret svg {
  width: 1.8rem;
}
#ic-navigation li:hover .ic-caret {
  border-color: #e2dad1;
}

/* Collapse */
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
}

/* Close Menu */
.ic-XSclose {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  cursor: pointer;
  overflow: hidden;
  transition: none;
}
.ic-XSclose:hover::before,
.ic-XSclose:hover::after {
  background: #000;
  transition: all 0.3s linear;
}
.ic-XSclose::before,
.ic-XSclose::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  transition: all 0.3s linear;
}
.ic-XSclose::before {
  transform: rotate(45deg);
}
.ic-XSclose::after {
  transform: rotate(-45deg);
}

/* Home Gallery */

#ic-heroInternal,
#ic-homeGallery {
  position: relative;
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  width: 100%;
  height: 78.3rem;
}

#ic-heroInternal .hero-image {
  gap: 2rem;
  height: 41.2rem;
}
#ic-heroInternal .hero-image .btnBlue {
  width: 22.3rem;
}
.hero-image h1,
.hero-image h2 {
  color: var(--color-white);
  max-width: 91.6rem;
}

#ic-homeGallery .hero-image h2 {
  margin-top: -10rem;
}
#ic-heroInternal .hero-image h1 {
  max-width: 33%;
}

#ic-heroInternal .hero-image p {
  color: var(--color-white);
  font-weight: 650;
  max-width: 32%;
}
/* Hilites */
#ic-hilites {
  position: relative;
}

#ic-hilites > article > div::after,
#ic-resultsList > div::after,
.ic-hilite {
  position: relative;
}

.ic-hilite {
  border: 1px solid #d7d7d7;
  background: #fff;
  overflow: hidden;
}
.ic-tag {
  display: none;
  position: absolute;
  padding: 4px 23px;
  bottom: 1rem;
  right: 1rem;
  text-align: center;
  font-family: "Open Sans";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  text-transform: capitalize;
  color: var(--color-black);
  background: var(--color-white);
  z-index: 2;
}
.ic-tag.ic-newActive,
.ic-tag.ic-status-14,
.ic-tag.ic-status-4 {
  display: block;
}
.ic-tag.ic-status-14,
.ic-tag.ic-status-4 {
  color: #fff;
  background: #a52a35;
}

.ic-tag + .ic-tag {
  top: 56px;
}

.ic-hilite .ic-backIMG {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  transition: var(--transition);
}
.ic-hilite .ic-backIMG:hover {
  scale: 1.01;
}
.ic-hilite .ic-shortlist {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 2.4rem;
  z-index: 2;
  transition: var(--transition);
}
.ic-hilite .ic-shortlist:hover {
  color: #000;
}
.ic-hilite .ic-button {
  position: absolute;
  top: -20px;
  right: 20px;
  border: 0;
}
.ic-hilite .ic-button:hover,
.ic-hilite .ic-button:focus,
.ic-hilite .ic-button:active {
  background: #e2dad1;
}
.ic-hilInfo {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: left;
  padding: 3rem;
  background: #fff;
}

.ic-listupd {
  display: block;
  color: #999;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.ic-hilite h3 a {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-black);
}

.ic-hilite h3 {
  font-weight: 300;
}
.ic-hilFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.ic-hilFlex li {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  color: var(--color-blue);
}
.ic-hilFlex li:not(:first-child)::before {
  content: "|";
  color: var(--color-blue);
 
}
.ic-hilFlex li span {
  text-transform: lowercase;
}
.paraSmall {
  color: var(--color-blue);
  font-family: "Open Sans";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  text-transform: capitalize;
}

.area {
  color: var(--color-blue);
  font-family: "Open Sans";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}
.price {
  color: var(--color-blue);
  font-family: "Open Sans";
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}

#newDevelopments {
  overflow: hidden;
}
#newDevelopments h2 {
  margin-bottom: 5rem;
}

#newDevelopments .btnBlue {
  margin: 0 auto;
  margin-top: 5rem;
}
#newDevelopments .developmentsSwiper {
  width: 100%;
  overflow: hidden;
}

#newDevelopments .developmentsSwiper .swiper-wrapper {
  padding-bottom: 5rem;
}

#newDevelopments .developmentsSwiper .swiper-slide {
  height: auto;
}

#newDevelopments .ic-hilite.developments {
  background: transparent;
  border: none;
}

#newDevelopments .ic-hiliteIMG.developments a {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

#newDevelopments .ic-hilInfo.developments {
  text-align: center;
}

/* Reviews section */

.reviewsSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviewsSection h2 {
  font-size: 5.2rem;
  line-height: 1.15;
  font-weight: 450;
  color: #000;
  margin: 0 0 2.8rem;
}

.reviewsSection__intro {
  max-width: 110rem;
  margin: 0 0 6.5rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 450;
  color: #14387f;
}

.reviewsSwiper {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 0 10rem 8rem;
}

.ic-review {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ic-review--wrap {
  width: 100%;
  max-width: 64.7rem;
  min-height: 29.1rem;
  border: 0.1rem solid #d7d7d7;
  background: #fff;
  text-align: left;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: flex-start;
  gap: 3rem;
}

.ic-review--wrap h3 {
  color: var(--color-blue);
  font-family: "Open Sans";
  font-size: 2rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

.review-text {
  color: var(--color-black);
  font-family: "Open Sans";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  text-align: left;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;

  transition: all 0.3s ease;
}

.ic-review--wrap.open .review-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.ic-review--wrap a {
  color: var(--color-black);
  text-align: right;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

.ic-review--wrap a:hover {
  text-decoration: underline;
}

/* Video Home */
#ic-homeVideo {
  position: relative;
  height: 53rem;
}
#ic-homeVideo video {
  z-index: -1;
  width: 100%;
}
#banner {
  position: relative;
}
video {
  height: 100%;
  object-fit: cover;
}

.carContact {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 62%;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  width: 46.3rem;
  height: 45.7rem;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.carContact h2 {
  font-size: 3rem;
}
.carContact img {
  width: 18rem;
  height: 18rem;
}

#ic-BannerPhone a {
  color: var(--color-blue);
  font-family: "Open Sans";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  transition: var(--transition);
}

#ic-BannerPhone a:hover {
  color: var(--color-light-blue);
}
/* Flechas */
.reviewsSwiper .swiper-button-prev,
.reviewsSwiper .swiper-button-next {
  width: 4rem;
  height: 4rem;
  color: #14387f;
  top: 50%;
  transform: translateY(-65%);
}

.reviewsSwiper .swiper-button-prev {
  left: 0;
}

.reviewsSwiper .swiper-button-next {
  right: 0;
}

.reviewsSwiper .swiper-button-prev::after,
.reviewsSwiper .swiper-button-next::after {
  font-size: 2.4rem;
  font-weight: 650;
}

/* Paginación */

.developmentsSwiper .swiper-pagination,
.reviewsSwiper .swiper-pagination {
  bottom: 0;
}
.developmentsSwiper .swiper-pagination-bullet,
.reviewsSwiper .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  background: transparent;
  border: 0.2rem solid #14387f;
  opacity: 1;
  margin: 0 0.9rem !important;
}
.developmentsSwiper .swiper-pagination-bullet-active,
.reviewsSwiper .swiper-pagination-bullet-active {
  background: #14387f;
}
/* selling Page */

.sellingMallorca__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
.sellingMallorca__intro h2 {
  color: var(--color-black);
}
.sellingMallorca__stats {
  align-items: start;
}

.sellingMallorca__statCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

.sellingMallorca__statCard h3 {
  text-align: left;
  color: var(--color-blue);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

.sellingMallorca__statCard p {
  text-align: left;
  max-width: 33rem;
  color: var(--color-black);
}

.sellingMallorca__services {
  gap: 0;
  align-items: stretch;
}

.sellingMallorca__imageWrap {
  width: 100%;
}

.sellingMallorca__imageWrap .img {
  width: 100%;
  height: 100%;
  min-height: 72rem;
  object-fit: cover;
  display: block;
}

.sellingMallorca__servicesPanel {
  background: #98a8c4;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sellingMallorca__servicesPanel h3 {
  text-align: left;
  color: var(--color-white);
  font-size: 3rem;
}

.sellingMallorca__servicesIntro {
  text-align: left;
  color: var(--color-white);
}
.sellingMallorca__statCard .sellingMallorca__statNumber {
  font-family: "Open Sans", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  color: var(--color-blue);
}
.sellingMallorca__servicesList {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sellingMallorca__serviceItem {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.sellingMallorca__iconWrap {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.sellingMallorca__iconWrap--gold {
  background: var(--color-blue);
}

.sellingMallorca__serviceContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sellingMallorca__serviceContent h4 {
  color: var(--color-white);
  text-align: start;
  font-weight: 650;
}

.sellingMallorca__serviceContent p {
  text-align: left;
  color: var(--color-white);
}

.sellingMallorca__processIntro {
  color: var(--color-black);
}

.sellingMallorca__processGrid {
  align-items: start;
  gap: 5rem;
}

.sellingMallorca__processCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.sellingMallorca__processIconWrap {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sellingMallorca__processCard h3 {
  color: var(--color-blue);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}
.sellingMallorca__processNumber {
  font-family: "Open Sans", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  color: var(--color-blue);
}

.sellingMallorca__processCard {
  color: var(--color-blue);
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
}

.sellingMallorca__processCard p {
  color: var(--color-black);
  max-width: 36rem;
}

.sellingMallorca__processCard--last {
  grid-column: 1 / 2;
}

.sellingMallorca__apart {
  background: var(--color-blue);
  padding: 10rem 0;
}

.sellingMallorca__apartIntro h2 {
  color: var(--color-white);
  text-align: center;
}

.sellingMallorca__apartGrid {
  max-width: 101rem;
  margin-left: auto;
  margin-right: auto;
  gap: 6rem 12rem;
}

.sellingMallorca__apartItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.sellingMallorca__apartIconWrap {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sellingMallorca__apartIcon {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.sellingMallorca__apartItem .title20 {
  color: var(--color-white);
  text-align: center;
  font-weight: 650;
}

.sellingMallorca__apartItem p {
  color: var(--color-white);
  max-width: 38rem;
}

/* About Page */

.aboutUs__top {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.aboutUs__topContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  max-width: 63%;
}

.aboutUs__rte {
  color: var(--color-black);
  width: 100%;
  align-items: flex-start;
}

.aboutUs__rte h1,
.aboutUs__rte h2,
.aboutUs__rte h3 {
  text-align: left;
  color: var(--color-black);
}

.aboutUs__rte h2 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}

.aboutUs__rte p {
  text-align: left;
  color: var(--color-black);
}

.aboutUs__logoWrap img {
  display: block;
  width: 100%;
  max-width: 47.7rem;
}
.aboutUs__topImage {
  width: 100%;
}
.aboutUs__topImage .img {
  width: 100%;
  max-width: 42rem;
  height: 47.2rem;
  object-fit: cover;
  display: block;
}

.aboutUs__split {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.aboutUs__imageBox {
  width: 100%;
  max-width: 40.2rem;
  height: 47.2rem;
  object-fit: cover;
  display: block;
}

.aboutUs__imageBox--right {
  display: flex;
  justify-content: flex-end;
}

.aboutUs__textBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}

.aboutUs__textBox h2 {
  text-align: left;
}

.aboutUs__textBox p {
  text-align: left;
}

.aboutUs__textBox--dark h2 {
  color: var(--color-black);
}

.aboutUs__textBox--dark p {
  color: #2b2b2b;
}

/* Buying Page */

.whyMallorca__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
#whyChooseMallorca .whyMallorca__intro p,
.whyMallorca__intro h2 {
  color: var(--color-white);
}

.whyMallorca__intro .whyMallorca__introText {
  color: var(--color-black);
}
.grid4.whyMallorca__features {
  gap: 5rem;
}
.whyMallorca__featureCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.whyMallorca__featureCard .title20,
.whyMallorca__featureCard p {
  text-align: left;
}

.whyMallorca__featureCard .title20 {
  color: var(--color-blue);
  font-weight: 650;
}

.whyMallorca__featureCard p {
  color: var(--color-black);
  max-width: 35rem;
}

.whyMallorca__iconWrap {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}

.whyMallorca__iconWrap.whyMallorca__iconWrap--gold svg path {
  fill: var(--color-white);
}

.whyMallorca__icon--gold {
  width: 1.8rem;
  height: 1.8rem;
}

.whyMallorca__split {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.whyMallorca__image {
  width: 50%;
}

.whyMallorca__image--smallRight .img,
.whyMallorca__image .img {
  width: 100%;
  height: 47rem;
  object-fit: cover;
  display: block;
}

.whyMallorca__text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 50%;
}
.whyMallorca__text p {
  text-align: start;
  max-width: 94%;
}

.whyMallorca__text h2 {
  text-align: left;
  color: var(--color-blue);
  font-weight: 650;
  font-size: 3rem;
}

.whyMallorca__brandStrip {
  background: var(--color-blue);
  padding: 1rem 0;
}

.whyMallorca__brandLogo {
  display: flex;
  justify-content: center;
  align-items: center;
}
#whyChooseMallorca {
  background-color: var(--color-light-blue);
}

.wrap__whyChooseMallorca {
  padding: 5rem;
}
.whyMallorca__whyChoose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem 4rem;
}

.whyMallorca__whyChooseItem {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.whyMallorca__whyChooseContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
}

.whyMallorca__whyChooseContent .title20,
.whyMallorca__whyChooseContent p {
  text-align: left;
  color: var(--color-white);
}

.whyMallorca__whyChooseContent .title20 {
  font-weight: 650;
}

.whyMallorca__contactSection {
  display: flex;
  justify-content: space-between;
  gap: 11rem;
}
#whyMallorcaForm {
  width: 51%;
}
.whyMallorca__agents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  width: 50%;
}

.whyMallorca__agentCard {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.agentContentwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.whyMallorca__agentCard .agentContentwrap h3 {
  color: var(--color-black);
}

.agentContentwrap .whyMallorca__agentName {
  color: var(--color-light-blue);
  text-align: center;
  font-weight: 550;
}

.whyMallorca__agentCard .agentContentwrap a {
  font-family: "Open Sans", sans-serif;
  color: var(--color-black);
  text-decoration: none;
  text-align: center;
  word-break: break-word;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}

.whyMallorca__agentImage img {
  width: 23.7rem;
  height: 23.4rem;
}
/* Contact home */
.wrap0ffice {
  display: flex;
  gap: 10rem;
}
.office-image {
  display: block;
  object-fit: cover;
  width: 100%;
  max-width: 67.4rem;
  height: 50rem;
}
.formWrap {
  width: 100%;
}
.connectUs__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.connectUs__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.connectUs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.connectUs__item h4 {
  color: var(--color-blue);
  font-weight: 650;
}
.connectUs__item p,
.connectUs__item a {
  color: var(--color-black);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  flex: 1;
  transition: var(--transition);
}
.agentContentwrap a:hover,
.connectUs__item a:hover {
  color: var(--color-light-blue);
}
.bannerLogo {
  background: var(--color-blue);
  padding: 1rem 0;
}

.wrap__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap__teamsection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.contact__agents {
  display: flex;
  justify-content: center;
  gap: 10rem;
  width: 100%;
  margin: 0 auto;
}
.agentCard {
  width: 100%;
  max-width: 38.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.agentCard .agentImage img {
  width: 23.7rem;
  height: 23.6rem;
}

.agentContentwrap p,
.agentContentwrap a {
  color: var(--color-black);
  font-weight: 350;
}
.agentContentwrap h3 {
  color: var(--color-black);
  font-weight: 650;
}
.agentContentwrap a {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}
.mapContact iframe,
.mapContact {
  width: 100%;
}

.mapContact iframe {
  height: 51.7rem;
}

/* FAQS */

.faqItem {
  border: 1px solid #d7d7d7;
}
.containerItemFaq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.containerItemFaq h3 {
  font-family: "Open Sans";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  text-align: start;
}

.containerItemFaq p {
  text-align: start;
}

.containerItemFaq {
  padding: 2rem;

  color: var(--color-black);
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 2rem;
}
.containerItemFaq:last-child {
  border-bottom: none;
}
.containerItemFaq .faq-question {
  color: var(--color-blue);
}
.containerItemFaq .faq-answers {
  color: var(--color-black);
}
/* Categories */
#ic-popularCategories {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.imagePopularCat {
  width: 100%;
  aspect-ratio: 4 / 7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem;
  transition: var(--transition);
}
.imagePopularCat:hover {
  scale: 1.01;
}
.imagePopularCat h3 {
  color: var(--color-white);
  font-size: 2.6rem;
  font-weight: 700;
}
/* Swiper */
.swiper-container {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
/* Arrows */
.swiper-BTN-prev:focus,
.swiper-BTN-next:focus,
.swiper-BTN-prev:active,
.swiper-BTN-next:active {
  outline: none;
}

.swiper-BTN-prev,
.swiper-BTN-next {
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  cursor: pointer;
  background: #fff;
}
.swiper-BTN-prev::before,
.swiper-BTN-next::before {
  content: "";
  display: block;
  width: 2rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.swiper-BTN-prev::after,
.swiper-BTN-next::after {
  content: "";
  display: block;
  margin: 0 auto;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  border-style: solid;
  border-color: #000;
  border-width: 0px 2px 2px 0px;
  transform: rotate(-45deg);
}
.swiper-BTN-prev::after {
  right: auto;
  left: 15px;
  transform: rotate(135deg);
}

.swiper-BTN-prev.swiper-button-disabled,
.swiper-BTN-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  display: none;
}
.swiper-button-prev {
  left: 0;
  right: auto;
}
.swiper-button-next {
  right: 0;
  left: auto;
}
.swiper-BTN-prev {
  left: 20px;
  right: auto;
}
.swiper-BTN-next {
  right: 20px;
  left: auto;
}

.reviewsSwiper .swiper-pagination-bullet-active,
.reviewsSwiper .swiper-pagination-bullet-active-main,
.reviewsSwiper .swiper-pagination-bullet-active-prev,
.reviewsSwiper .swiper-pagination-bullet-active-prev-prev,
.reviewsSwiper .swiper-pagination-bullet-active-next,
.reviewsSwiper .swiper-pagination-bullet-active-next-next {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0.9rem !important;
}
@keyframes arrows-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes arrows-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes arrows-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@o-keyframes arrows-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Footer */
#ic-whatsappBTN {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 500;
}
#ic-whatsappBTN a {
  display: block;
}
.footer__top {
  background-color: var(--color-blue);
  padding: 3rem;
}

.footer__container {
  width: 90%;
  max-width: 140rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.footer__logo {
  display: block;
  width: 100%;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.footer__socialLink {
  color: var(--color-white);
  transition: opacity 0.3s ease-in-out;
  width: 3.5rem;
  height: 3.5rem;
}

.footer__col.footer__col--categories,
.footer__col.footer__col--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
.footer__socialLink:hover {
  opacity: 0.75;
}

.footer__title {
  color: var(--color-white);
  text-transform: uppercase;
}
.footer__menuList,
.footer__contactList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer__menuList a,
.footer__contactItem {
  color: var(--color-white);
  font-family: "Open Sans";
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
  transition: var(--transition);
}
.footer__menuList a:hover {
  color: var(--color-light-blue);
}
.footer__contactItem a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

.footer__contactItem a:hover {
  color: var(--color-light-blue);
}

.footer__contactItem--address {
  margin-top: 0.6rem;
  text-align: start;
}

.footer__menu,
.footer__menuList {
  margin: 0;
  padding: 0;
}

.footer__menuList {
  list-style: none;
}

.footer__menuItem {
  margin: 0 0 1.5rem;
  padding: 0;
}

.footer__menuItem:last-child {
  margin-bottom: 0;
}

.footer__menuItem a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 650;
  line-height: 1.35;
  transition: opacity 0.3s ease-in-out;
}

.footer__menuItem a:hover {
  opacity: 0.75;
}

.footer__bottom {
  padding: 3rem 0 1.5rem 0;
}

.footer__bottomContainer {
  width: 90%;
  max-width: 144rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer__legalList a,
.footer__copy a,
.footer__copy {
  color: var(--color-black);
  font-family: "Open Sans";
  font-size: 1.6rem;
  font-style: normal;
  line-height: normal;
  transition: var(--transition);
}

.footer__legalList a:hover,
.footer__copy a:hover {
  color: var(--color-light-blue);
}
.footer__legal {
  display: flex;
  justify-content: center;
}

.footer__legalList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__legalItem {
  margin: 0;
  padding: 0;
}

.footer__legalItem a {
  color: #111111;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.4;
  transition: opacity 0.3s ease-in-out;
}

.footer__legalItem a:hover {
  opacity: 0.7;
}

/* Contact */

/* Blog */
#ic-blogHome {
  padding: 100px 0;
  background: #f5f1ed;
}

#ic-blogHome > h2 {
  text-align: center;
  padding: 0 20px;
}
#ic-blogList {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#ic-blogList::after,
.ic-blogPost {
  content: "";
  display: block;
  flex: 1 32%;
  max-width: 32%;
  margin-bottom: 30px;
}
.ic-blogPost .ic-backIMG {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 66%;
}
.ic-blogPost .ic-button {
  position: absolute;
  top: -20px;
  right: 20px;
  border: 0;
}
.ic-blogPost .ic-button:hover,
.ic-blogPost .ic-button:focus,
.ic-blogPost .ic-button:active {
  background: #e2dad1;
}
.ic-blogPost > article {
  position: relative;
  z-index: 4;
  display: block;
  text-align: left;
  padding: 30px 20px;
  background: #fff;
}
.ic-datePost,
#ic-sharePost > span,
#ic-sharePost > strong {
  display: block;
  color: #999;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}
.ic-datePost {
  margin-top: -10px;
}
#ic-sharePost > span,
#ic-sharePost > strong {
  display: inline-block;
  vertical-align: middle;
}
.ic-blogPost h4 {
  text-align: left;
  display: flex;
  width: 100%;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.2;
  height: 2.4em;
  margin: 15px auto;
  padding: 0;
  text-transform: none;
}
.ic-blogPost h4 a {
  color: #000;
  margin: auto 0;
  font-size: 1em;
  padding-bottom: 2px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ic-blogPost p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.25;
  color: #999;
}

#ic-blogPage {
  position: relative;
  background: #f5f1ed;
}
#ic-blogPage > article {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px 100px;
}
#ic-blogPage h1,
#ic-blogPage h2:first-child {
  font-size: 2.2em;
  font-weight: 300;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
#ic-blogPage > #ic-blogList {
  padding: 0;
}

#ic-blogContent {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#ic-blogContent > div {
  flex: 2 80%;
  max-width: calc(100% - 280px);
}
#ic-blogContent > aside {
  flex: 1 240px;
  max-width: 240px;
}
#ic-blogContent > aside > div {
  background: #fff;
  padding: 30px 30px 36px;
}
.ic-categoriesList {
  margin-bottom: 30px;
}

#ic-metaBlog {
  display: flex;
  flex-flow: row wrap;
  line-height: 1;
  padding: 17px 2px 14px;
  border: 1px solid #ddd;
  border-width: 1px 0;
  margin-top: 35px;
  margin-bottom: 50px;
}
#ic-metaBlog .ic-datePost,
#ic-metaBlog .ic-articleTags {
  margin: auto auto auto 0;
}
#ic-metaBlog #ic-sharePost {
  margin: auto 0 auto auto;
}
#ic-sharePost > a {
  color: #999;
  padding: 0 6px;
}
#ic-sharePost > a:hover {
  color: #000;
}
#ic-metaBlog .ic-articleTags,
.smarttag-tags-wrapper a,
.smarttag-tags-wrapper a:visited {
  color: #999;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}
.smarttag-tags-wrapper a:hover,
.smarttag-tags-wrapper a:focus,
.smarttag-tags-wrapper a:active {
  color: #000;
}
.smarttag-tags-wrapper,
.smarttag-tags-wrapper li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.smarttag-tags-wrapper {
  margin-bottom: -7px;
}
.smarttag-tags-wrapper li::before {
  display: none;
}

/* Shortlist */
.shortlistToggle {
  position: relative;
}
.slToggleState {
  display: none;
  cursor: pointer;
  position: relative;
}
.shortlistToggle .loading-icon,
.shortlistToggle .propertyId,
.shortlistToggle .propertyRef {
  display: none;
}
.shortlistToggle.loading .slToggleState,
.shortlistToggle.loading .slToggleState.active {
  display: none;
}
.shortlistToggle .active {
  display: inline;
}

/* Pagination */
.ic-pagination ul,
.ic-paging.ic-pagination {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.ic-paging.ic-pagination .item {
  width: 2.2rem;
}
.ic-pagination li:before {
  display: none;
}
.ic-pagination li a,
.ic-pagination li span {
  display: block;
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 2rem;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
}
.ic-pagination li.active a,
.ic-pagination li a:hover,
.ic-pagination li a.active,
#ic-blogPage .ic-pagination li a:hover,
#ic-blogPage .ic-pagination li a.active,
.ic-pagination li span {
  color: var(--color-light-blue);
}

/* Empty pages */
#ic-emptyPage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px 10px;
  text-align: center;
}

#ic-emptyPage h1 span {
  display: block;
  font-size: 0.6em;
  font-weight: 300;
  margin-top: 3px;
  color: #808080;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

/* FAV share */
.ic-resultsMeta .tooltip {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  padding: 10px 10px 9px;
  font-size: 1.1em;
  line-height: 1.3;
}
#ic-iconCOPY {
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease-in;
}
#ic-iconCOPY:hover,
#ic-iconCOPY:focus,
#ic-iconCOPY:active {
  color: #999;
}
.ic-resultsMeta #myInput {
  cursor: pointer;
  font-size: 0.8125rem;
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
  background: #fff;
  border: 0;
  border-bottom: 0;
  display: block;
  width: calc(100% - 50px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 7px;
}

.ic-resultsMeta .w3-button {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  width: 42px;
  cursor: pointer;
}
.ic-resultsMeta .tooltip .tooltiptext {
  visibility: hidden;
  width: 181px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: auto;
  right: -72px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.7em;
}

.ic-resultsMeta .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.ic-resultsMeta .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 700px) {
  .ic-resultsMeta .tooltip:hover .tooltiptext,
  .ic-resultsMeta .tooltip .tooltiptext {
    display: none;
  }
}

/* Page */
#ic-page {
  position: relative;
  z-index: 1;
  align-items: flex-start;
}
#ic-page p,
#ic-page h2 {
  text-align: start;
}
#ic-page ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: inside;
}
#ic-page ul li,
#ic-page ul li a {
  font-family: "Open Sans", sans-serif;
  text-align: start;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  color: var(--color-black);
}
#ic-page p a,
#ic-page p span a,
#ic-page ul li a {
  color: var(--color-light-blue);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  color: var(--color-black);
  background-color: #fff;
  border: 0.1rem solid #e5e5e5;
  border-radius: 1.2rem;
  overflow: hidden;
}

table th {
  background-color: #f7f7f7;
  color: #111;
  font-weight: 650;
  text-align: left;
  padding: 1.6rem 2rem;
  border-bottom: 0.1rem solid #e5e5e5;
}

table td {
  padding: 1.6rem 2rem;
  vertical-align: top;
  border-bottom: 0.1rem solid #eeeeee;
}

table tr:last-child td {
  border-bottom: none;
}

table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

table tbody tr:hover {
  background-color: #f3f3f3;
  transition: background-color 0.3s ease;
}

table td:first-child {
  font-weight: 550;
  color: #111;
  white-space: normal !important;
  word-break: break-word;
}

table td:nth-child(2) {
  white-space: normal !important;
  min-width: 18rem;
}

table td:nth-child(3) {
  width: 50%;
}

table a {
  color: var(--color-light-blue);
  text-decoration: none;
  font-weight: 550;
}

table a:hover {
  text-decoration: underline;
}

/* Contact */
#ic-page.ic-contactPage {
  background: #f5f1ed;
  max-width: none;
  padding: 0;
}
#ic-page.ic-contactPage > article {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 20px;
}
#ic-page.ic-contactPage #ic-reqContact h3 {
  display: none;
}
#resultsTop.promotions {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: 41.2rem;
}
#ic-results.promotions {
  position: relative;
  z-index: 1;
}

#resultsTop.promotions h2 {
  color: var(--color-white);
  text-align: center;
  font-family: "Open Sans";
  font-size: 5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
/* ------ RESPONSIVE ------ */
@media only screen and (min-width: 1000px) {
  #ic-navigation li:hover .ic-dropdown {
    visibility: visible;
    opacity: 1;
  }
  #ic-navigation .ic-dropdown {
    position: absolute;
    top: 2.5rem;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
  }
  #ic-navigation .ic-dropdown {
    padding-top: 0;
    background-color: var(--color-white);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
    padding: 1rem 3rem 1rem 1rem;
  }
}
@media only screen and (max-width: 1500px) {
  html {
    font-size: 55%;
  }

  .whyMallorca__contactSection {
    gap: 3rem;
  }
  .whyMallorca__agents {
    width: 55%;
  }
  #whyMallorcaForm {
    width: 40%;
  }
}

@media only screen and (max-width: 1200px) {
  #ic-logo img,
  #ic-logo {
    width: 40rem;

  }

  .wrap__header.container1820 {
    width: 95%;
  }
  .carContact {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: auto;
    width: 30rem;
    height: 30rem;
    padding: 1rem;
    transform: translateY(0);
  }

  .carContact h2 {
    font-size: 2rem;
  }

  #ic-BannerPhone a {
    font-size: 1.8rem;
  }

  .footer__container {
    width: 99%;
  }

  .whyMallorca__contactSection {
    flex-direction: column-reverse;
  }
  .whyMallorca__agents,
  #whyMallorcaForm {
    width: 100%;
  }
  .whyMallorca__agents {
    justify-content: center;
  }

  .whyMallorca__agentCard {
    max-width: 100%;
  }

  .carContact img {
    width: 13rem;
    height: 13rem;
  }
}
@media only screen and (max-width: 1000px) {
  #ic-headerTop {
    flex-direction: row-reverse;
  }
  .wrap__header.container1820 {
    width: 90%;
  }
  /* body.menuOpen header > div::before {
    content: "";
    display: block;
    height: 92px;
    background: #000;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
  } */
  body.menuOpen {
    position: fixed;
    z-index: -100;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  #ic-navBTN,
  #ic-logoXS,
  #ic-menuXS,
  #ic-navigation .nav > li.first > .ic-dropdown > ul > li:last-child ul {
    display: block;
  }
  #ic-navbar {
    overflow-y: auto;
    display: block;
    transform: translateX(100%);
    transition: transform 0.5s;
    position: fixed;
    top: 5rem;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    text-align: left;
  }
  #ic-navbar.menuOpen {
    visibility: visible;
    transform: translateX(0%);
    transition: transform 0.5s;
  }
  #ic-navigation .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
  #ic-navigation .nav > li > .ic-dropdown {
    display: none;
    position: relative;
    padding: 2rem 0 0 2rem;
  }

  #ic-navigation .nav > li > .ic-dropdown > ul > li > .ic-dropdown {
    display: none;
    padding: 0;
    margin-top: -1px;
    margin-left: -20px;
    width: calc(100% + 40px);
    background: #636363;
  }
  #ic-navigation .ic-dropdown > ul > li:last-child {
    margin-top: 0;
  }

  #ic-navigation .nav > li.first > .ic-dropdown > ul > li:last-child,
  #ic-navigation .nav > li.first > .ic-dropdown > ul > li:last-child ul > li {
    max-width: none;
  }
  #ic-navigation .nav > li > .ic-dropdown > ul > li > .ic-dropdown a {
    font-size: 1em;
    padding: 10px 0 10px 20px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  #ic-navigation .ic-dropdown > ul > li > ul > li > a {
    font-size: 1em;
    padding: 3px 0 3px 15px;
  }
  #ic-navigation .nav li#ic-phoneMenuXS {
    display: block !important;
    color: #fff;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  #ic-phoneMenuXS span {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .whyMallorca__whyChoose {
    gap: 4rem;
  }

  .whyMallorca__image img,
  .whyMallorca__image--smallRight img {
    height: 32rem;
  }

  .whyMallorca__text--right,
  .whyMallorca__text--left {
    padding-right: 0;
  }

  .whyMallorca__formTitle,
  .whyMallorca__text h3 {
    font-size: 3rem;
  }

  .whyMallorca__agents {
    justify-content: center;
  }

  .whyMallorca__brandLogo img {
    max-width: 34rem;
  }
  .sellingMallorca__stats.grid4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .sellingMallorca__services,
  .sellingMallorca__processGrid {
    grid-template-columns: 1fr;
  }

  .sellingMallorca__imageWrap .img {
    min-height: 100%;
    aspect-ratio: 4 / 3;
  }

  .sellingMallorca__servicesPanel {
    padding: 4rem 2.5rem;
  }

  .sellingMallorca__servicesPanel h3 {
    font-size: 3rem;
  }

  .aboutUs__topImage .img,
  .aboutUs__imageBox .img {
    max-width: 100%;
    height: 36rem;
  }

  .aboutUs__rte h2,
  .aboutUs__textBox h2 {
    font-size: 3.8rem;
  }
  .wrap0ffice {
    gap: 3rem;
    flex-direction: column-reverse;
  }

  .office-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
  }
  .contact__agents {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .whyMallorca__image--smallRight .img,
  .whyMallorca__image .img {
    height: 100%;
    aspect-ratio: 4 / 3;
  }

  .wrap__whyChooseMallorca {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 1030px) {
  .reviewsSection h2 {
    font-size: 4rem;
  }

  .reviewsSection__intro {
    font-size: 1.8rem;
    margin-bottom: 4.5rem;
  }

  .reviewsSwiper {
    padding: 0 6rem 7rem;
  }

  .ic-review--wrap {
    min-height: auto;
    padding: 3rem 2.5rem;
  }

  .review-text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1000px) {
  .footer__container {
    display: grid;
    grid-template-areas:
      "brand brand"
      "contact categories";
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    justify-items: center;
    text-align: center;
  }

  .footer__col--brand {
    grid-area: brand;
  }

  .footer__col--contact {
    grid-area: contact;
  }

  .footer__col--categories {
    grid-area: categories;
  }
  .whyMallorca__intro {
    gap: 3rem;
  }
}
@media only screen and (max-width: 950px) {
  .mt5 {
    margin-top: 2.5rem;
  }
  .mb5 {
    margin-bottom: 2.5rem;
  }

  .ic-welcome.mt10 {
    margin-top: 8rem;
  }
  .mt10 {
    margin-top: 5rem;
  }
  .mb10 {
    margin-bottom: 5rem;
  }
  .grid5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  #ic-homeVideo {
    height: 100%;
    aspect-ratio: 4 / 3;
  }
  .sellingMallorca__stats.grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
  #ic-heroInternal .hero-image p {
    max-width: 80%;
  }
  .sellingMallorca__statCard {
    align-items: center;
  }
}

@media only screen and (max-width: 766px) {
  .reviewsSection h2 {
    font-size: 3.2rem;
  }

  .reviewsSection__intro {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 3.5rem;
  }

  .reviewsSwiper {
    padding: 0 !important;
  }

  .reviewsSwiper .swiper-button-prev,
  .reviewsSwiper .swiper-button-next {
    width: 2rem;
    height: 3rem;
    transform: translateY(0%);
  }
  .developmentsSwiper .swiper-pagination,
  .reviewsSwiper .swiper-pagination {
    display: none;
  }
  .ic-review--wrap {
    padding: 2.4rem 2rem;
    width: 90%;
    max-width: 100%;
  }

  .review-text {
    font-size: 1.6rem;
    -webkit-line-clamp: 3;
  }

  .sellingMallorca__apart {
    padding: 6rem 0 7rem;
  }

  .sellingMallorca__apartGrid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .sellingMallorca__apartItem p {
    font-size: 1.6rem;
  }

  .sellingMallorca__statNumber,
  .sellingMallorca__processNumber {
    font-size: 3.4rem;
  }

  .sellingMallorca__servicesPanel h3 {
    font-size: 2.8rem;
  }

  .sellingMallorca__statCard p,
  .sellingMallorca__serviceContent p,
  .sellingMallorca__processCard p,
  .sellingMallorca__processIntro {
    font-size: 1.6rem;
    max-width: 100%;
  }
  .sellingMallorca__statCard p {
    text-align: center;
  }
  .sellingMallorca__statCard {
    align-items: center;
  }

  .aboutUs__rte h2,
  .aboutUs__textBox h2 {
    font-size: 3rem;
  }

  .aboutUs__rte p,
  .aboutUs__textBox p {
    font-size: 1.6rem;
  }

  .aboutUs__topImage img,
  .aboutUs__imageBox img {
    height: 30rem;
  }

  .aboutUs__logoWrap img {
    max-width: 28rem;
  }

  .whyMallorca__split {
    flex-direction: column;
  }

  .whyMallorca__split.reverse {
    flex-direction: column-reverse;
  }
  .whyMallorca__text,
  .whyMallorca__image {
    width: 100%;
  }
  .whyMallorca__whyChooseItem {
    justify-content: space-between;
  }
  .whyMallorca__whyChooseContent {
    width: 80%;
  }

  #ic-heroInternal .hero-image p {
    max-width: 90%;
    font-size: 1.5rem;
  }
  .grid4,
  .grid3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .whyMallorca__features.grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
  #newDevelopments .developmentsSwiper .swiper-wrapper {
    padding-bottom: 0rem;
  }
  #newDevelopments .btnBlue {
    margin-top: 0;
  }
  .whyMallorca__agentCard,
  .agentCard {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
  }

  .whyMallorca__agentImage img,
  .agentCard .agentImage img {
    width: 13rem;
    height: 13rem;
  }
  .agentContentwrap {
    align-items: flex-start;
    gap: 0rem;
    width: 100%;
  }

  .whyMallorca__agentCard .agentContentwrap h3 {
    display: none;
  }
  .whyMallorca__agents {
    justify-content: flex-start;
  }

  .whyMallorca__agentCard .agentContentwrap {
    gap: 1rem;
  }

  .whyMallorca__agentCard .whyMallorca__agentCard {
    align-items: center;
  }
}
@media only screen and (max-width: 660px) {
  html {
    font-size: 50%;
  }

  .h1 {
    font-size: 4rem;
  }
  h1,
  h2 {
    font-size: 3rem;
  }

  #ic-logo img,
  #ic-logo {
    width: 25rem;
    height: 100%;
  }

  #ic-headerTop ul,
  #ic-headerTop {
    gap: 2rem;
  }

  .hero-image {
    height: 40rem;
  }
  .grid2,
  .grid3,
  .grid4,
  .grid5 {
    grid-template-columns: repeat(1, 1fr);
  }
  .imagePopularCat {
    aspect-ratio: 4 / 3;
  }
  #ic-popularCategories,
  .flexColGap5,
  .flexColGap3 {
    gap: 2rem;
  }
  .footer__col--brand {
    width: 100%;
    gap: 0;
  }

  .footer__col.footer__col--categories,
  .footer__col.footer__col--contact {
    gap: 2rem;
  }
  .footer__container {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    gap: 2rem;
    grid-template-areas:
      "brand"
      "contact"
      "categories";
  }

  .carContact img {
    width: 10rem;
    height: 10rem;
  }
  #ic-BannerPhone a,
  .carContact h2 {
    font-size: 1.5rem;
  }
  .carContact {
    width: 25rem;
    height: 22rem;
    gap: 1rem;
  }

  .ic-pagination ul,
  .ic-paging.ic-pagination {
    gap: 1rem;
  }
  #ic-navigation .ic-caret svg {
    width: 1.5rem;
  }

  .agentCard {
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
  }

  .mapContact iframe {
    height: 100%;
    aspect-ratio: 4 / 3;
  }

  .aboutUs__top {
    flex-direction: column;
    align-items: center;
  }

  .aboutUs__topContent {
    max-width: 100%;
  }

  .aboutUs__topImage .img {
    max-width: 100%;
    height: 100%;
    aspect-ratio: 3 / 3;
  }

  .aboutUs__band--blue .aboutUs__split {
    flex-direction: column-reverse;
  }
  .aboutUs__split {
    flex-direction: column;
  }

  .aboutUs__imageBox {
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
  }

  .whyMallorca__featureCard p {
    color: var(--color-black);
    max-width: 100%;
  }

  .sellingMallorca__stats.grid4 {
    grid-template-columns: repeat(1, 1fr);
  }

  #ic-menuShortlist svg {
    width: 3rem;
    height: 2.6rem;
  }
}
@media only screen and (max-width: 500px) {
  #ic-navbar {
    left: 30%;
  }

  .wrap__logo img {
    width: 100%;
  }

  .whyMallorca__features.grid4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .whyMallorca__featureCard {
    align-items: center;
  }
  .whyMallorca__features .whyMallorca__featureCard p {
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .wrap__header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  #ic-headerTop {
    width: 100%;
  }

  #ic-navbar {
    top: 11rem;
  }
}
