/* difine global fornt and color */
:root {
  --font-family: "Sora", sans-serif;
  --primary-color: #e8fb61;
  --secondary-color: #e6e6e6;
  --dark-color: #252525;
  --light-color: #f8f9fa;
  --white:#fff;
}

/* make scroll smooth */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--dark-color) !important;
}

a:hover {
  text-decoration: none !important;
}
h2{
  margin: 0px !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  font-family: var(--font-family);
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1280px !important;
    padding: 0 !important;
  }

}

/*******************************/
/* Sticky Header */
/*******************************/

.cus-op-0{
  opacity: 0 !important;
}
ul{
  padding: 0px !important;
  margin: 0px !important;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color:  #252525;
  display: none;
  padding: 0px 32px;
}


.sticky-header-inner {
  padding: 16px 0px;
  min-height: 80px;
}

.sticky-header .logo, .sticky-header .logo  {
  width: 164px;
  /* max-width: 100%; */
}

.sticky-header .logo img , .sticky-header .logo {
  width: 249px;
}

/* slide in animation slide in from top */
.sticky-header.slide-in {
  display: block;
  animation: slideIn 0.5s forwards;
}
.sticky-header.slide-in-for-offer {
  display: block;
}

.sticky-header .mobile-toggle {
  display: none;
}
.sticky-menu-padding {
  padding: 0px 48px !important;
}
.sticky-menu{
  min-height: 64px;
  list-style: none;
 
}
.sticky-menu  li a {
  text-decoration: none;
  color: var(--primary-color) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  text-transform: uppercase;
  /* white-space: nowrap; */

}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* slide out animation slide out to top */
.sticky-header.slide-out {
  display: block;
  animation: slideOut 0.5s forwards;
}

@keyframes slideOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/*******************************/
/* Hero Section */
/*******************************/

.hero-section {
  /* style background image */
  background-size: cover;
  /* background-position: 100% 80%; */
  /* no repeat */
  background-repeat: no-repeat;
  /* padding top and bottom */
  padding: 24px 32px ;
  /* min-height: 80vh; */
/* height: 100vh; */
}

.hero-section .left-column {
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 40px;
  min-height: 684px;
  min-width: 600px;
  height: 90vh;
}

.hero-section .left-column h1 {
  font-size: 112px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 112px */
  letter-spacing: -4.48px;
}

.hero-section .right-column {
  position: absolute;
  top: 40px;
  right: 40px;
}

.hero-section .logo .icon {
  display: none;
}

.cross-icon,
.mobile-logo {
  display: none;
}
/* style for menu-responsive */
.responsive-menu-container{
  padding: 21px 0px !important;
  background: var(--dark-color);
  min-height: 56px;
}
.responsive-menu-heading{
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%; /* 14px */
  text-transform: uppercase;
  margin: 0px !important;
}
/* stule the menu */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex ;
  justify-content: center;
  align-items: center;
}

.menu ul li {
  display: inline-block;
  /* margin-right: 20px; */
  position: relative;
  z-index: 1;
  
}

.menu ul li a {
  text-decoration: none;
  color: var(--white) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  text-transform: uppercase;

  white-space: nowrap;
}

.menu ul li a svg {
  margin-left: 24px;
  transition: transform 0.3s;
}
.hero-logo-image{
  width: 100%;
  transform: translateY(-50px);
}
.hero-heading {
  /* font-size: 96px; */

  font-size: 3rem;
font-size: clamp(3rem, 2.25em + 4vw, 7rem);
font-style: normal;
letter-spacing: -4.48px;
color: var(--white);
font-weight: 400;
}
.hero-button, .cus-sticky-header-cta-btn{
  background: var(--primary-color);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 100%; 
text-transform: uppercase;
border: none;
padding: 17px 24px;
color: #000 !important;
position: relative;
overflow: hidden;
transition: background 0.3s ease;
}
/* .cus-sticky-header-cta-btn{

} */
.hero-button::before,.cus-sticky-header-cta-btn::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: top 0.3s ease;
  z-index: 0;
}
.hero-button:hover,.cus-sticky-header-cta-btn:hover {
  color: var(--dark-color);
  background: var(--dark-color);
}
.hero-button:hover::before,.cus-sticky-header-cta-btn:hover::before {
  top: 0;
}

.hero-button span,.cus-sticky-header-cta-btn span {
  position: relative;
  z-index: 1;
}
.cus-gap-30{
  gap: 30px !important;
}
.hero-button-link, .cus-sticky-header-cta-btn-link{
  color: #000 !important;
}

.cus-p-logo-fixed{
  position: absolute;
  height: 80px;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.cus-p-logo-fixed img, .cus-p-logo-fixed svg {
  object-fit: cover;
  max-width: 80px;
  width: 80px;
}

.cus-menu-logo img{
  max-width: 210px;
}
.hero-element-container{
  /* gap: 368px; */
  /* gap: 200px; */
}
.menu ul li a:hover svg {
  /* rotate 10 deg */
  transform: rotate(45deg);
}
.nav-gaps{
  gap:165px;
}
/* cta button will be inline with menu and same style as menu items */
.cta-li {
  margin-right: 0px !important;
  margin-left: 80px;
}

.cta-li {
  background-color: var(--dark-color);
  padding: 16px;
  /* width: 100%; */
  text-align: center;
  color: var(--primary-color);
  /* margin-top: 80px; */
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;

  cursor: pointer;
}

.cta-li a {
  font-size: 14px !important;
  line-height: 24px !important;
  color: var(--primary-color) !important;
}

.cta-li svg path {
  fill: var(--primary-color) !important;
}

.cta-li::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Slide background color */
  transition: top 0.3s ease;
  z-index: 0;
}

.cta-li:hover a {
  color: var(--dark-color) !important;
}
.cta-li:hover::before {
  top: 0;
}

.cta-li a {
  position: relative;
  z-index: 2;
}

.cta-li:hover svg rect,
.cta-li:hover svg path {
  fill: var(--dark-color) !important;
}


.hero-cta-button {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-transform: uppercase;

  color: var(--dark-color);
}

.hero-cta {
  margin-top: 24px;
}

.hero-cta-button svg {
  margin-left: 24px;
  transition: transform 0.3s;
}

.hero-cta-button:hover svg {
  transform: rotate(45deg);
}

.hero-cta-button:hover {
  color: var(--dark-color);
  text-decoration: none;
}

/*******************************/
/* About Section */
/*******************************/
.if-slider-about-section{
  padding: 128px 0px 128px 45px !important;

}

.about-section .about-content img{
  height: 600px !important;
  width: 100%;
  object-fit: cover;
  float: right !important;


}
.about-section {
  /* padding: 128px 0px 128px 45px; */
  padding: 128px 45px 128px 45px;
  background-color: var(--primary-color);
}

.about-section .main-title {
  color: var(--dark-color);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 67.2px */
  letter-spacing: -2.24px;
}

.about-section .main-title-box {
  margin-bottom: 80px;
}

.about-section .about-content h2 {
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-transform: uppercase;

  margin-bottom: 48px;
}

.about-section .about-content p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}

/*******************************/
/* Apartments Section */
/*******************************/

.apartments-section {
  padding: 128px 45px;
}

.apartments-section h2 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-transform: uppercase;

  margin-bottom: 24px;
}

.apartments-section h3 {
  /* font-size: 80px; */

font-size: 3rem;
font-size: clamp(3rem, 2.2rem + 4vw, 7rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 80px */
  letter-spacing: -3.2px;
  margin-left: -8px;
}

.apartments-section .content-box img {
  width: 100%;
}

.apartments-section .apartment-box {
  padding-top: 128px;
  /* padding-right: 45px;
  padding-left: 45px; */
}

.apartments-section .apartment-list-item {
  padding: 32px;
  /* border-bottom: 1px solid rgba(37, 37, 37, 0.2); */
  /* cursor: pointer; */
  margin: 0;
  /* min-height: 207px; */
}

/* only for first element of the list border top */
.apartments-section .apartment-list-item:first-child {
  /* border-top: 1px solid rgba(37, 37, 37, 0.2); */
  /* margin: 0; */
}

.apartments-section .apartment-list-item:hover {
  /* background-color: var(--primary-color); */
}
.apartment-list-item{
  background-color: var(--secondary-color);

}
.apartments-section .apartment-list-item h4 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 48px */
  letter-spacing: -1.6px;
}

.apartments-section .apartment-list-item p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}
.apartments-section .apartment-list-item .apt-info-dec{
  font-size: 18px !important;
  font-weight: 400;

}
.apartments-section .apartment-list-item a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  text-transform: uppercase;
  display: none;
}

.apartments-section .apartment-list-item:hover a {
  display: block;
}

.apartments-section .apartment-list-item a svg {
  margin-left: 24px;
}


/* new css */



.apartment-boxes {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 384px));
  /* justify-content: start; */
  place-self: center;
}

.apartment-list-item{
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.apartments-section .catalog-btn{
  border-color: #25252533 !important;
  display: block !important;
  text-transform: uppercase;

}



/* Responsive grid based on device width */
@media (min-width: 1536px) {
  .apartment-boxes{
      grid-template-columns: repeat(3, 1fr);
      /* max-width: 1600px; */
  }
}

@media (min-width: 1280px) and (max-width: 1535px) {
  .apartment-boxes {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .apartment-boxes {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #apartmentGrid {
      grid-template-columns: 1fr;
      /* max-width: 384px; */
      margin: 0 auto;
      width: 100%;
  }
}




/*******************************/
/* benefits-section */
/*******************************/

.benefits-section {
  padding: 128px 45px;
  padding-bottom: 80px;
  /* gray bg */
  background-color: var(--secondary-color);
}

.benefits-section h2 {
  /* font-size: 56px; */

  font-size: 2rem;
  font-size: clamp(2rem, 1.4rem + 3vw, 5rem);
    font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 67.2px */
  letter-spacing: -2.24px;
}

.benefits-section .content-box p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}

.benefits-slider {
  margin-top: 80px;
}

.benefits-slider .benefit-box {
  height: 328px;
  width: 100%;
  padding: 32px;
  background-color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefits-slider .benefit-box .benefit-icon {
  height: 80px;
  width: 80px;
  padding: 10px;
}
.benefits-slider .benefit-box img {
  height: 100%;
  width: 100%;
}

.benefits-slider .benefit-content h4 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 48px */
  letter-spacing: -1.6px;
}

.benefits-slider .benefit-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

/*******************************/
/* location-section */
/*******************************/
.location-section {
  position: relative;
  padding: 80px 45px;
  background-color: var(--secondary-color);
  min-height: 744px;
}

.location-section .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* z-index: -1; */

  background-position: -225px 75%;
}

.location-section .bg-image-mobile {
  display: none;
}

.location-section .content-box {
  min-height: 590px;
}

.location-section h2 {
  /* font-size: 56px; */

  font-size: 2rem;
font-size: clamp(2rem, 1.4rem + 3vw, 5rem);

  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 67.2px */
  letter-spacing: -2.24px;
}

.location-section p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}

.location-section .top-navigation-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
top: -10%;
left: 30%;
  margin-top: 100px;
}

.location-section .top-navigation-info .location-icons {
  width: 184px;
}

.location-section .top-navigation-info .up-location {
  margin-top: 40px;
  width: 220px;
}

.location-section .left-location {
  position: absolute;
  top: 550px;
  left: 36px;
}

.panonska-map-icon {
  position: absolute;
  top: 55%;
  left: 18%;
  z-index: 1;
}

/*******************************/
/* footer */
/*******************************/
.footer {
  padding: 128px 45px;
  /* padding-bottom: 48px; */
  padding-bottom: 10px;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.footer__form {
  margin-top: 32px;
}

.footer__form__container {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 32px;
}

.footer__form__container h3 {
  /* font-size: 56px; */

  font-size: 3rem;
font-size: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 67.2px */
  letter-spacing: -2.24px;
}
.footer__form__container p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

.footer__form label {
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer__form input[type="text"],
.footer__form input[type="email"] {
  width: 100%;
  padding: 14px 8px;
  border: 0;
  /* border-bottom: 1px solid var(--dark-color); */
  background: #fff0;
  /* min-height: 50px; */
  box-shadow: inset 0 -1px 0 0 var(--dark-color); /* Initial shadow to match border */
}

/* Apply a box-shadow on hover instead of changing border size */
.footer__form input[type="text"]:hover,
.footer__form input[type="email"]:hover {
  box-shadow: inset 0 -2px 0 0 var(--dark-color); /* Thicker shadow on hover */
}

.footer__form input[type="text"]::placeholder,
.footer__form input[type="email"]::placeholder {
  color: var(--dark-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  opacity: 0.7;
  height: 50px;
}

.form-field-label {
  color: var(--dark-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  margin-bottom: 24px !important;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

/* .footer__form input[type="checkbox"] */
/* Style checkbox */
.footer__form input[type="checkbox"] {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border: 2px solid var(--dark-color);
  border-radius: 0px;
  position: relative;
  cursor: pointer;
}

/* When the checkbox is checked */
.footer__form input[type="checkbox"]:checked {
  background-color: var(--light-color);
  border-color: var(--dark-color);
}

/* Add a checkmark symbol when checked */
.footer__form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid var(--dark-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7-list-item-label {
  color: var(--dark-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */

  margin-left: 16px;
}

.wpcf7-list-item-label a {
  color: var(--dark-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  text-decoration: underline;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.wpcf7-submit {
  background-color: var(--dark-color);
  color: var(--primary-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-transform: uppercase;
  padding: 21px 24px;
  border: 0px;
  cursor: pointer;

  margin-top: 24px;
  transition: 0.3s;

  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Slide background color */
  transition: top 0.3s ease;
  z-index: 0;
}

.wpcf7-submit:hover {
  color: var(--dark-color);
}
.wpcf7-submit:hover::before {
  top: 0;
}

.wpcf7-submit span {
  position: relative;
  z-index: 1;
}

.wpcf7-submit:hover svg rect,
.wpcf7-submit:hover svg path {
  fill: var(--dark-color);
}

.wpcf7-submit svg {
  margin-left: 24px;
}

.wpcf7-response-output.success-submit {
  color: var(--dark-color);
}

.wpcf7-response-output {
  /* display: none; */
  color: red;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 24px;
}

input:focus-visible {
  outline: none;
}

input {
  cursor: pointer;
}

.wpcf7-form-control-wrap {
  cursor: pointer;
}

.screen-reader-response {
  display: none;
}

.footer__contact {
  margin-bottom: 80px;
}

.footer__contact h3 {
  color: var(--light-color);
  /* font-size: 40px; */

  font-size: 2rem;
font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);

  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 48px */
  letter-spacing: -1.6px;

  margin-bottom: 32px;
}

.footer__contact p,
.footer__contact a {
  color: var(--light-color) !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%; /* 33.6px */
}

.footer__contact a:first-child {
  text-decoration: underline;
}

.footer__social-icons {
  height: 64px;
}

.footer__social-icon {
  padding: 24px;
  margin-right: 8px;
  border: 1px solid rgba(230, 230, 230, 0.2);
  background: var(--dark-color);
}

.footer__social-icon:hover {
  border: 1px solid #e6e6e6;
}

.footer__menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu li a {
  color: var(--secondary-color) !important;
  /* margin-right: 24px; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.footer__menu-item {
  color: var(--secondary-color) !important;
  margin-right: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.footer__copy {
  color: var(--secondary-color) !important;
  margin-right: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.footer__bottom {
  margin-top: 80px;
}

.footer__logo img {
  width: 100%;
  margin-top: -30px;
}

.footer__bottom_bar {
  width: 100%;
}

/* .footer__bottom {
  width: 100%;
} */

.footer__logo {
  width: 100%;
}

.made_by a {
  text-decoration: underline;
}

/* animation  */
.reveal-image {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.reveal-image img {
  width: 100%;
  display: block;
}

.curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateY(0);
  transition: transform 1.5s ease;
}

.reveal-image.visible .curtain {
  transform: translateY(100%);
}

.apartments-section .curtain {
  background-color: #fff;
}



/*******************************/
/* 404 Page */
/*******************************/
.content404 {
padding: 128px 45px;
}

.content404 h1 {
  font-family: Sora;
font-size: 112px;
font-style: normal;
font-weight: 400;
margin-bottom: 24px;
}


.content404 p {
  font-family: Sora;
font-size: 24px;
font-style: normal;
font-weight: 400;
}

.content404 a {
  font-family: Sora;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

.nonepage-button {
  padding-top: 80px;
}

/* new css */
.about-swiper-button-container{
  display: flex;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}
.about-swiper-pagination-container{
  display: none;
}
.swiper-about-pagination{
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
/* .aboutSwiper .swiper-slide  {
width: 584px !important;
} */
 .aboutSwiper .swiper-slide img {
height: 600px !important;
object-fit: cover;
}
/* .aboutSwiper .swiper-slide-next {
  transform: translateX(-70px) !important;
} */
 .about-content{
  /* min-height: 67vh; */

 }
 .swiper-slide-container {
  right: 0px;
  bottom: 13%;

 }



 .apartment-link-btn {
  display: none; /* Hide by default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: none;
}

.apartment-list-item:hover .apartment-link-btn {
  display: block; /* Show on hover */
  opacity: 1;
  visibility: visible;
}
.apartment-link-btn svg {
  margin: 0px !important;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252525E5;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal content */
.modal-content {
  position: relative;
  width: 100%;
  height: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-height: 660px; */
  object-fit: cover;
  max-width: 82%;
  background-color: transparent !important;
  padding: 0;
  border-radius: 0px !important;
  overflow: hidden;
  border: none !important;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 5%;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
}

iframe {
  width: 100%;
  height: 100%;
  border: none !important;
}
#image-output img{
  width: 100%;
}
/*******************************/
/* language switcher  */
/*******************************/
.wpml-lang-switcher-desktop {
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;

}

.wpml-lang-dropdown {
  position: absolute; 
  top: 100%; 
  left: 50%;
  transform: translateX(-50%) translateY(-10px); 
  background: #fff;
  list-style: none;
  padding: 5px;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;

  /* Hide by default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;

box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.12);

}

/* Show dropdown smoothly on hover */
.wpml-lang-switcher-desktop:hover .wpml-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.wpml-lang-switcher-desktop 
  .wpml-actice-arrow{
    transition: all 0.4s ease;

  }
.wpml-lang-switcher-desktop:hover 
  .wpml-actice-arrow{
    transform: rotate(180deg);

  }


.wpml-lang-dropdown li {
  padding: 8px 5px;
  text-align: center;
  color: #000;
}
.wpml-lang-switcher-desktop .wpml-lang-active{
  display: flex;
  gap: 8px;
  align-items: center;
}
.wpml-lang-switcher-desktop .wpml-lang-active span {
  color: #fff !important;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
}

.menu .wpml-lang-switcher-desktop li a {
  text-decoration: none;
  color: #252525 !important;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; 
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.menu .wpml-lang-switcher-desktop li:hover a {
  opacity: 1;
}


.wpml-l-s-sticky-header svg path {
  fill: #E8FB61 !important; 
}
.wpml-l-s-sticky-header .wpml-lang-switcher-desktop .wpml-lang-active span {
  color: #E8FB61 !important;
}
.wpml-l-s-sticky-header .wpml-lang-switcher-desktop li a {
  color: #252525 !important;
}

/* mobile menu */

.mobile-menu li .language-switcher-mobile  .language-list{
 display: flex;
 gap: 20px;
 justify-content: flex-start;

 
}
.mobile-menu li .language-switcher-mobile  .language-list li{
  margin-bottom: 0px;
  width: 40px;
 
}

.mobile-menu li .language-switcher-mobile  .language-list li a{

  font-size: 24px !important;
  opacity: 0.4;
}

.mobile-menu li .language-switcher-mobile .language-list .wpml-active-mobile a {

  opacity: 1;


}




.cus-sticky-logo{
  width: 15vw !important;
}

.cus-left-menu, .cus-right-menu{
width: 42.5vw !important;
}

.cus-right-menu{
  display: flex;
  justify-content: flex-end;

  gap: 55px;
}


@media only screen and  (max-width: 1040px){
 

  .nav-gaps{
    gap:80px;
  }
  .cus-right-menu{
    
    gap: 35px;
  }
}

@media only screen and  (max-width: 1180px){
 

  .nav-gaps{
    gap:60px;
  }
  .cus-right-menu{
    
    gap: 48px;
  }
}


/* Remove wpml  widget */
.otgs-development-site-front-end {
  display: none !important;
}



.hero-element-container{

  display: flex;
  flex-direction: column;
  height: 90vh;
  justify-content: space-between; 
}

/* Map title  */
.map-title-cont{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  width: fit-content;
  padding: 10px;
}

.map-title{
  color:  #252525;
  font-family: Sora;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}



/* contact us card */
.contact-us-button{
  background-color: var(--primary-color);
  padding: 12px 16px !important;
  font-size: 14px;
  border:none;
  text-transform: uppercase;
  /* gap: 24px; */
  position: fixed;
  top: 86px;
  right: 0px;
  z-index: 1;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  transition: right 0.5s ease-in,background 0.3s ease;
  white-space: nowrap;
  width: 221px;
  letter-spacing: 1px;
  border: none !important;
  height: 48px;
  justify-content: space-between;
  /* transition: background 0.1s ease; */
  overflow: hidden;
  /* position: relative; */
}

.contact-us-button span{
  color: #252525 !important;
}

.contact-us-button::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: top 0.3s ease;
  z-index: 0;
}
.contact-us-button:hover {
  color: var(--dark-color);
  background: var(--dark-color);
}
.contact-us-button:hover::before {
  top: 0;
}

.contact-us-button span {
  position: relative;
  z-index: 1;
}


/* .contact-btn-span{
  width: 141px;
} */
.contact-us-button:focus {
  outline: none !important; /* Custom focus outline */
}
.contact-us-span{
  transform: rotate(90deg);
}
.contact-card{
  position: fixed;
  top: 134px;
  right: -260px;
  padding: 16px;
  background: var(--white);
  max-width: 260px;
  z-index: 10;
  transition: right 0.5s ease-in;
  min-height: 221px;
}

.cus-wpml-active-en .contact-us-button, .cus-wpml-active-de .contact-us-button{
  width: 250px;

}
.cus-wpml-active-en .contact-card, .cus-wpml-active-de .contact-card{
  min-height: 250px;

}
.contact-card-right-position{
  right: 0px;
}
.contact-button-right-position{
  right: 260px;
}
.contact-card-title{
color: var(--dark-color);
font-size: 24px;
font-weight: 400;
line-height: 120%; 
margin: 0px !important;
/* letter-spacing: -4%; */
}
.contact-card-img{
  height: 80px;
  width: 80px;
  object-fit: cover;
}
.contact-card-name{
  color: var(--dark-color);
  font-size: 18px;
font-weight: 400;
line-height: 140%;
margin: 0px !important;
}
.contact-card-telephone{
  color: var(--dark-color);
font-size: 14px;
font-weight: 400;
line-height: 140%; 
margin: 0px !important;
}
.gap-2{
  gap: 8px !important;
}
.gap-buttons{
  gap: 24px;
}
.apartment-link-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit; 
}

.apartment-link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; 
  background-color: currentColor;
  transition: width 0.5s ease;
}

.apartment-link-underline:hover::after {
  width: 100%;
}


.contact-card-close-button{
  background: transparent;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
font-weight: 400;
line-height: 100%;
padding: 0px;
}
.contact-card-close-button:focus{
  outline: none !important; /* Custom focus outline */
}

.modal {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: none !important;

}


/* The modal content style */
.modal-content-custom {
  background-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  width: 512px !important;
  animation: modalFadeIn 0.4s ease-in forwards; /* Apply the animation */
}
@keyframes modalFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  opacity: 1 !important;
}

.modal-footer-custom {
padding: 32px 21px;
}
.modal-img{
  width: 100%;
  height: 336px;
  object-fit: cover;
}
.interested-button{
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%; /* 14px */
  text-transform: uppercase;
  background: var(--dark-color);
  padding: 16px 24px !important;
  border: none;
  overflow: hidden;
  position: relative;
}
.interested-button::before{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Slide background color */
  transition: top 0.3s ease;
  z-index: 0;
}

.interested-button:hover::before {
  top: 0;
}

.interested-button:hover {
  color: var(--dark-color);
}

.interested-button span {
  position: relative;
  z-index: 1;
}



.modal-title-custom{
  color: var(--dark-color);
text-align: center;
font-size: 40px;
font-weight: 400;
line-height: 120%; /* 48px */
letter-spacing: -1.6px;
}
.modal-dsc{
  color: var(--dark-color);
text-align: center;
font-size: 18px;
font-weight: 400;
line-height: 140%;
}

.wm-text-xs{
  font-size: 12px;
  color: #e6e6e6;
}

.swiper-wrapper{
  z-index: 0 !important;
}

#close-btn{
  color: #252525 !important;
}

