@import "./base-color.css";
@import "./base-typography.css";
@import "./base-gap.css";
@import "./base-spacing.css";
@import "./base-rounded.css";
@import "./base-size.css";
@import "./base-object.css";
@import "./base-position.css";
@import "./base-button.css";

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

a {
  text-decoration: none;
}

ul,
ol {
  list-style-type: none;
}

.flex-1 {
  flex: 1 1 0%;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 940px;
  }
}

.header {
  z-index: 99;
  transition: background-color 0.3s ease;
}

.header .logo img {
  width: auto;
  height: 56px;
}

.header .header-social-media > a {
  border-radius: 40px;
}

.header .header-social-media > a:hover {
  background-color: var(--primary-500);
}

.header .header-social-media > a > img {
  width: auto;
  height: 32px;
}

.header .header-social-media > a.header-social-media-whatsapp {
  background: var(--custom-green);
  padding: 3px 12px;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.header .header-social-media > a.header-social-media-whatsapp:hover {
  background: var(--custom-green-hover);
}

.header .header-social-media > a.header-social-media-whatsapp > img {
  width: auto;
  height: 26px;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 16px 0;
    background: #fff;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .header-social-media > a {
    padding: 3px 12px;
  }
}

.icon-globe {
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M12 21a9 9 0 1 0 0-18m0 18a9 9 0 1 1 0-18m0 18c2.761 0 3.941-5.163 3.941-9S14.761 3 12 3m0 18c-2.761 0-3.941-5.163-3.941-9S9.239 3 12 3M3.5 9h17m-17 6h17'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.icon-close {
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59L7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12L5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.section {
  width: 100%;
  padding: 80px 0;
}
.section__title {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.section__title.left {
  justify-content: flex-start !important;
}

@media screen and (max-width: 768px) {
  .section__title.left {
    justify-content: center !important;
  }
}

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

.section__title_container::before,
.section__title_container::after {
  content: "";
  flex: 1;
  height: 5px;
  margin: 0 10px;
}

.section__title_container h2 {
  color: #333;
}

.section__title_container::before {
  position: relative;
  width: 100px;
  background-image: url("../img/bg-title-before.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.section__title_container::after {
  position: relative;
  width: 100px;
  background-image: url("../img/bg-title-after.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 24px 0;
  }
  .section__title {
    margin-bottom: 24px;
  }
  .section__title_container {
    display: block;
  }
  .section__title_container::before,
  .section__title_container::after {
    display: none;
  }

  .section__title_container h2 {
    color: #333;
    margin: 0;
    padding: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section {
    padding: 40px 0;
  }
  .section__title {
    margin-bottom: 24px;
  }
  .section__title_container {
    display: block;
  }
  .section__title_container::before,
  .section__title_container::after {
    display: none;
  }

  .section__title_container h2 {
    color: #333;
    margin: 0;
    padding: 0;
  }
}

.section__title_container.white::before {
  position: relative;
  width: 100px;
  background-image: url("../img/bg-title-white-before.webp");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.section__title_container.white::after {
  position: relative;
  width: 100px;
  background-image: url("../img/bg-title-white-after.webp");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

/** section hero start **/
.hero {
  width: 100%;
  padding: 0;
  background-image: url("../img/bg-hero.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__container {
  max-width: 992px;
  margin: 0 auto;
}

.hero-slider .slick-dots {
  bottom: -60px;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .hero {
    background-size: 100% 60%;
  }

  .hero-slider .slick-dots {
    bottom: 0;
    margin: 20px 0 0 0;
    padding: 0;
    top: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    background-size: 100% 60%;
  }

  .hero-slider .slick-dots {
    bottom: 0;
    margin: 20px 0 0 0;
    padding: 0;
    top: 100%;
  }
}

.hero-slider .slick-dots button {
  width: 18px;
  height: 4px;
  font-size: 0px;
  border-radius: 2px;
  background: var(--primary-100);
  border: none;
}

.hero-slider .slick-dots .slick-active button {
  background: var(--primary-500);
}

.hero-slider .slick-dots li button:before {
  color: white;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.hero-slider .slick-prev {
  top: 50%;
  left: -106px;
}

.hero-slider .slick-next {
  top: 50%;
  right: -106px;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 40px;
}

.hero .carousel-control-next:hover,
.hero .carousel-control-prev:hover {
  opacity: 1 !important;
}

.hero .carousel-control-next-icon {
  background-image: url(../img/arrow_right_white.svg);
}

.hero .carousel-control-prev-icon {
  background-image: url(../img/arrow_left_white.svg);
}

@media screen and (max-width: 768px) {
  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    top: 61%;
    display: block !important;
    z-index: 1;
  }

  .hero-slider .slick-prev {
    left: -15px;
  }

  .hero-slider .slick-next {
    right: -15px;
  }

  .hero .carousel-control-next-icon {
    background-image: url(../img/arrow_right.svg);
  }

  .hero .carousel-control-prev-icon {
    background-image: url(../img/arrow_left.svg);
  }

  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--primary-500);
  }
}

.hero h1 {
  padding-bottom: 95px;
}

.hero .hero__img {
  width: 100%;
}

.hero .hero__img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: bottom;
}

@media screen and (max-width: 768px) {
  .hero .hero__img img {
    height: 170px;
  }
}

/** section hero end **/

.overview {
  width: 100%;
  background-image: url("../img/bg-overview.webp");
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
}

.overview__content {
  width: 100%;
}

.overview__content_card {
  width: 100%;
  min-height: 195px;
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .overview__content_card {
    padding: 16px;
    min-height: auto;
  }
}

.location,
.flow_consultation,
.intro {
  background: var(--primary-50);
  background-image: url("../img/bg-texture.webp");
  background-position: left top;
  background-repeat: repeat;
}

.location__container {
  max-width: 994px;
  margin: 0 auto;
}

.location__tabs {
  width: 100%;
  gap: 56px;
}

.location__tabs .location__tabs_nav {
  width: 350px;
}

.location__tabs .location__tabs_nav h2 {
  margin-bottom: 32px;
}

.location__tabs .location__tabs_nav .nav-link {
  height: 120px;
  border-radius: 8px;
  background: var(--primary-300);
  color: var(--neutral-50);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}

.location__tabs .location__tabs_nav .nav-link.active {
  background: var(--primary-500);
}

.location__tabs .location__tabs_content {
  flex: 1;
}

.location {
  position: relative;
  overflow: hidden;
}

.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Optional: if you want rounded corners */
}

.location-card .img-wrapper {
  width: 100%;
  height: 224px;
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-card:hover img {
  transform: scale(1.08);
}

.location-card img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.location-card:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

@media screen and (max-width: 768px) {
  .location-card {
    display: flex;
    gap: 16px;
  }
  .location-card .img-wrapper {
    width: 150px;
    height: 125px;
    overflow: hidden;
  }
  .location-card img {
    border-radius: 0 !important;
  }
}

.commitment,
.common_troubles {
  background-image: url("../img/bg-texture-2.webp");
  background-position: left top;
  background-repeat: repeat;
}

.photos {
  background-image: url("../img/bg-texture-2.webp");
  background-position: left top;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .commitment {
    padding-bottom: 50px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .photos {
    padding-bottom: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitment {
    padding-bottom: 80px;
  }
}

.commitment__container {
  width: 100%;
}

.commitment__container_content {
  width: 100%;
  border-radius: 16px;
  border: 11px solid var(--primary-700);
  background: var(--primary-500);
  background-image: url("../img/bg-texture-3.webp");
  background-position: left top;
  background-repeat: repeat;
}

.commitment .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 0px;
  padding-right: 0px;
}

.commitment .carousel-control-prev {
  left: -28px;
}

.commitment .carousel-control-next {
  right: -28px;
}

.commitment .carousel-control-next-icon,
.commitment .carousel-control-prev-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat !important;
  background-position: 50% !important;
  background-size: 24px;
  border-radius: 100px;
  border: 1px solid #ccd7c9;
  background: #fff;
  border-radius: 40px;
}

.commitment .carousel-control-next:hover,
.commitment .carousel-control-prev:hover {
  opacity: 1 !important;
}

.commitment .carousel-control-next-icon {
  background-image: url(../img/arrow_right.svg);
}

.commitment .carousel-control-prev-icon {
  background-image: url(../img/arrow_left.svg);
}

.commitment .carousel-indicators [data-bs-target] {
  width: 24px;
  height: 8px;
  background: white;
  border-radius: 8px !important;
}

.commitment .carousel-indicators {
  margin-right: 15%;
  margin-bottom: 24px;
  margin-left: 35%;
}

.commitment .carousel-indicators .active {
  background-color: var(--custom-orange);
}

.commitment__container_content__text {
  padding: 24px 32px;
}

@media screen and (max-width: 768px) {
  .commitment__container_content {
    width: 100%;
    border-radius: 16px;
    border: 0;
    background: var(--primary-500);
    background-image: url("../img/bg-texture-3.webp");
    background-position: left top;
    background-repeat: repeat;
    background-size: cover;
  }
  .commitment__container_content__img img {
    -webkit-border-radius: 12px !important;
    -webkit-border-bottom-right-radius: 0px !important;
    -webkit-border-bottom-left-radius: 0px !important;
    -moz-border-radius: 12px !important;
    -moz-border-radius-bottomright: 0px !important;
    -moz-border-radius-bottomleft: 0px !important;
    border-radius: 12px !important;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .commitment__container_content__text {
    padding: 16px 24px;
    border-radius: 0 !important;
    background: none;
  }
}

.commitment-slider .slick-dots {
  bottom: -65px;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .commitment .slick-prev {
    left: -20px !important;
  }

  .commitment-slider .slick-next {
    right: -20px !important;
  }
  .commitment-slider .slick-dots {
    bottom: -45px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    justify-content: center;
    width: 100%;
  }
  .commitment-slider .slick-dots button {
    width: 18px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: var(--primary-100) !important;
    border: none !important;
  }

  .commitment-slider .slick-dots .slick-active button {
    background: var(--primary-500) !important;
  }
}

.commitment-slider .slick-dots li button {
  border-radius: 50%;
  width: 24px;
  height: 8px;
  border-radius: 100px;
  border: 1px solid var(--primary-100);
  background: var(--primary-100);
}

.commitment-slider .slick-dots li.slick-active button {
  opacity: 1;
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.commitment-slider .slick-prev,
.commitment-slider .slick-next {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.commitment-slider .slick-prev {
  top: 44%;
  left: -25px;
}

.commitment-slider .slick-next {
  top: 44%;
  right: -25px;
}

.room {
  background: var(--primary-50);
  background-position: left top;
  background-repeat: repeat;
  background-size: cover;
}

.room .nav-link {
  display: block;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid var(--primary-100);
  background: #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  color: #5c7e52;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.room .nav-pills .nav-link.active,
.room .nav-pills .show > .nav-link {
  color: white;
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.room__card_img {
  position: relative;
}

.room__card_img img {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 10px solid #fff;
}

.room__card_img:before {
  content: "";
  display: block;
  position: absolute;
  width: 450px;
  height: 450px;
  left: -32px;
  bottom: -32px;
  background-image: url("../img/bg-subtract.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .room .nav-link {
    font-size: 14px;
  }

  .room__card_img:before {
    background: none;
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .room__card_img:before {
    background: none;
    display: none;
  }
}

.room__card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
}

.room__card h3 {
  width: 100%;
  padding: 32px;
  background: var(--primary-700);
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .room__card h3 {
    padding: 16px;
  }

  .room .btn {
    width: 100%;
  }
}

.room__card_content {
  border: 1px solid var(--primary-100);
  -webkit-border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.room__card_content_item {
  width: 100%;
  border-bottom: 1px solid var(--primary-100);
  text-align: center;
  display: flex;
  align-items: center;
}

.room__card_content_item:last-child {
  border-bottom: none;
}

.room__card_content_item h4 {
  width: 200px;
  margin: 0;
}

.room__card_content_item_value {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  border-left: 1px solid var(--primary-100);
  flex: 1;
  padding: 10px;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .room__card_content_item_value {
    min-height: 65px;
    padding: 0px;
  }
}

.hs-input.error {
  border: 2px solid red;
}

.field-error {
  color: rgb(181, 80, 80);
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 16px;
}

#contactForm {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-control {
  margin-bottom: 16px;
  padding: 13px 24px !important;
  border: 1px solid #fff;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1 !important;
}

.form-control:focus {
  border: 1px solid var(--primary-500);
  box-shadow: 0 0 0 0.25rem var(--primary-100);
}

.form-control::placeholder {
  color: #989898;
}

.form-floating>label {
  padding: 16px 24px;
  line-height: 1;
  color: #989898 !important;
}

.btn-primary {
  width: 100%;
  padding: 13px 24px;
  background-color: var(--primary-500);
  color: white;
  text-align: center;
  border: 1px solid var(--primary-500);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  outline: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-700) !important;
  border: 1px solid var(--primary-700) !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-primary:disabled {
  background-color: var(--primary-100);
  border: 1px solid var(--primary-100);
  cursor: not-allowed;
}

.btn-primary:disabled:hover {
  background-color: var(--primary-100);
  border: 1px solid var(--primary-100);
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 104px;
  padding-right: 104px;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: -3rem;
  margin-left: 15%;
}

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  margin-right: 3px;
  margin-left: 3px;
  background-color: var(--primary-100);
  opacity: 1;
  transition: opacity 0.6s ease;
  border-radius: 2px !important;
  border: none !important;
}

.carousel-indicators .active {
  background-color: var(--primary-500);
}

.carousel-control-prev {
  left: 0px;
}

.carousel-control-next {
  right: 0px;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 0;
  color: #000;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.carousel-control-next:hover,
.carousel-control-next:focus,
.carousel-control-prev:hover,
.carousel-control-prev:focus {
  opacity: 0.5;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  background-color: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 40px;
}

.carousel-control-next-icon {
  background-image: url(../img/arrow_right.svg);
}

.carousel-control-prev-icon {
  background-image: url(../img/arrow_left.svg);
}

/** Modal Start **/
.floorPlanModal {
  width: 100%;
}

.modal-content.floorPlanModal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  pointer-events: auto;
  background-color: transparent;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  outline: 0;
}

.floorPlanModal .btn-close {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid var(--custom-white);
  border-radius: 40px;
  opacity: 1;
  font-size: 16px;
  background-size: 17px;
  margin-bottom: -5px;
  z-index: 1;
  margin-right: -30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%235c7e52' d='m12 14.122l5.303 5.303a1.5 1.5 0 0 0 2.122-2.122L14.12 12l5.304-5.303a1.5 1.5 0 1 0-2.122-2.121L12 9.879L6.697 4.576a1.5 1.5 0 1 0-2.122 2.12L9.88 12l-5.304 5.304a1.5 1.5 0 1 0 2.122 2.12z'/%3E%3C/g%3E%3C/svg%3E");
}

@media screen and (max-width: 768px) {
  .floorPlanModal .btn-close {
    margin-right: 15px;
  }
}

.floorPlanModal .modal-body {
  width: 100%;
  background-color: var(--custom-white);
  border-radius: 8px;
}

/** Modal End **/

@keyframes swayAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.component-1 {
  position: absolute;
  z-index: 1;
  right: -50px;
  top: -80px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-2 {
  position: absolute;
  z-index: 1;
  left: -120px;
  bottom: -50px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-3 {
  position: absolute;
  z-index: 1;
  right: -80px;
  top: -20px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-4 {
  position: absolute;
  z-index: 1;
  left: -120px;
  bottom: -50px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-5 {
  position: absolute;
  z-index: 1;
  left: -15px;
  top: 20%;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-6 {
  position: absolute;
  z-index: 1;
  right: -80px;
  top: -120px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-7 {
  position: absolute;
  z-index: 1;
  right: -140px;
  bottom: 20px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-8 {
  position: absolute;
  z-index: 1;
  left: -50px;
  top: -34px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-9 {
  position: absolute;
  z-index: 1;
  left: -65px;
  top: -85px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

.component-10 {
  position: absolute;
  z-index: 1;
  right: -30px;
  top: 10px;
  animation: swayAnimation 5s ease-in-out infinite;
  transform-origin: center bottom;
}

@media screen and (max-width: 768px) {
  .component-1,
  .component-2,
  .component-3,
  .component-4,
  .component-5,
  .component-6,
  .component-7,
  .component-8,
  .component-9,
  .component-10 {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .component-1,
  .component-2,
  .component-3,
  .component-4,
  .component-5,
  .component-6,
  .component-7,
  .component-8,
  .component-9,
  .component-10 {
    display: none;
  }
}

.events {
  max-width: 820px;
  margin: 0 auto;
}

.events_list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events_list__desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
  .events_list__img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  .events_list__desc {
    -webkit-line-clamp: 2;
    max-height: 4.5em; /* Fallback for non-webkit browsers */
  }
}

.cta {
  position: relative;
  display: block;
  width: 100%;
  height: 345px;
  background: var(--primary-400);
}

.cta::before {
  content: "";
  display: block;
  position: absolute;
  width: 40%;
  height: 345px;
  background-image: url("../img/bg-cta-1.webp");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}

.cta::after {
  content: "";
  display: block;
  position: absolute;
  width: 257px;
  height: 345px;
  background-image: url("../img/bg-cta-2.webp");
  background-size: 100% 95%;
  background-position: right bottom;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .cta {
    width: 100%;
    height: auto;
  }
  .cta::before {
    content: "";
    position: relative;
    width: 100%;
    height: 200px;
    background-size: 120%;
    background-position: left;
  }
  .cta::after {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cta {
    width: 100%;
    height: auto;
    padding: 40px 0;
  }
  .cta::before {
    display: none;
  }
  .cta::after {
    display: none;
  }
}

.introduction {
  position: relative;
  background: var(--primary-50);
  background-image: url("../img/bg-introduction.webp");
  background-position: left top;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .introduction {
    padding-bottom: 48px;
  }

  .introduction::after {
    width: 94% !important;
    background-size: cover;
    bottom: 0;
    right: 3%;
    left: 3%;
  }
}

.introduction .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 0px;
  padding-right: 0px;
}

.introduction .introduction__nav {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .introduction .introduction__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }
}

.introduction .carousel-control-next,
.introduction .carousel-control-prev {
  position: static;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 0;
  color: #000;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.introduction::after {
  content: "";
  display: block;
  position: absolute;
  width: 500px;
  height: 18px;
  background-image: url("../img/subtract.webp");
  background-position: bottom right;
  background-repeat: no-repeat;
  bottom: 0;
  right: 25%;
}

.introduction-container {
  width: 100%;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
}

.introduction-slider {
  position: relative;
}

.introduction-slider-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .introduction-container {
    padding: 24px;
    margin-bottom: 0;
  }
  .introduction-slider-nav {
    align-items: center;
    position: relative;
    bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    width: 100%;
    justify-content: center;
  }
}

.introduction-slider-nav .slider-nav-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.introduction-slider .slick-dots {
  position: static;
  display: flex;
  gap: 10px;
  margin: 0;
}

.introduction-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.introduction-slider .slick-dots li.slick-active button {
  background: white;
}

.introduction-slider-nav .slider-nav-content .slick-prev,
.introduction-slider-nav .slider-nav-content .slick-next {
  position: static;
  transform: none;
  border: none;
  background-color: transparent;
  margin: 0 !important;
  padding: 0 !important;
  width: 40px;
  height: 40px;
}

.custom-dots {
  color: white;
  background: none;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
}

.slick-active .custom-dots {
  font-weight: bold;
}

.common_troubles__container {
  max-width: 964px;
  margin: 0 auto 60px auto;
}

@media screen and (max-width: 768px) {
  .common_troubles__container {
    margin: 0 auto 24px auto;
    padding: 0 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .common_troubles__container {
    margin: 0 auto 24px auto;
    padding: 0 12px;
  }
}

.common_troubles__card {
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--primary-100);
  background: #fff;
}

.voices {
  background-image: url("../img/bg-testi.webp");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

.voices .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 104px;
  padding-right: 104px;
}

@media screen and (max-width: 768px) {
  .voices {
    background-image: none;
  }
  .voices .carousel-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voices {
    padding-bottom: 100px;
  }
  .voices .carousel-inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.voices .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: -3rem;
  margin-left: 15%;
}

@media screen and (max-width: 768px) {
  .voices .carousel-indicators {
    position: relative;
    margin-bottom: 12px;
    margin-top: 30px;
  }
}

.voices .carousel-indicators [data-bs-target] {
  width: 24px;
  height: 10px;
  margin-right: 3px;
  margin-left: 3px;
  background-color: var(--primary-100);
  opacity: 1;
  transition: opacity 0.6s ease;
  border-radius: 16px !important;
  border: none !important;
}

.voices .carousel-indicators .active {
  background-color: var(--primary-500);
}

.voices .carousel-control-prev {
  left: 0px;
}

.voices .carousel-control-next {
  right: 0px;
}

.voices .carousel-control-next,
.voices .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 0;
  color: #000;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}

@media screen and (max-width: 768px) {
  .carousel-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
  }

  .voices .carousel-control-next,
  .voices .carousel-control-prev {
    position: relative;
  }

  .voices .carousel-indicators {
    position: relative;
    margin: 0;
  }
}

.voices .carousel-control-next:hover,
.voices .carousel-control-next:focus,
.voices .carousel-control-prev:hover,
.voices .carousel-control-prev:focus {
  opacity: 0.5;
}

.voices .carousel-control-next-icon,
.voices .carousel-control-prev-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  background-color: #fff;
  border: 1px solid var(--primary-100);
  border-radius: 40px;
}

.voices .carousel-control-next-icon {
  background-image: url(../img/arrow_right.svg);
}

.voices .carousel-control-prev-icon {
  background-image: url(../img/arrow_left.svg);
}

.voices .carousel-item-tag {
  display: flex;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--primary-100);
  color: var(--custom-gray-100);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

@media screen and (max-width: 768px) {
  .voices .carousel-item-tag {
    border: none;
  }
}

.cta-2 {
  width: 100%;
  padding: 60px 0;
  background: var(--secondary-600);
  background-image: url("../img/bg-cta-3.webp");
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .cta-2 {
    padding: 24px 0;
  }
}

.faq {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 24px;
  }

  .faq .accordion-button {
    padding: 16px 0;
  }
}

.faq_container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.faq .accordion-item:first-of-type .accordion-button,
.faq .accordion-item .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
}

.faq .accordion-item:first-of-type,
.faq .accordion-item {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px dashed var(--secondary-100);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--neutral-500);
  background-color: transparent;
  box-shadow: none;
}

.faq .accordion-button::after {
  display: none !important;
}

.faq .accordion-button-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ccd7c9;
  border-radius: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}
.faq .accordion-button-icon::after {
  display: block;
  width: 22px;
  height: 22px;
  content: "";
  background-repeat: no-repeat;
  background-size: 22px;
  background-image: url("data:image/svg+xml,%3Csvg class='accordion-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%235C7E52' d='m12 20l-.707.707l.707.707l.707-.707zm1-15a1 1 0 1 0-2 0zm-7.707 9.707l6 6l1.414-1.414l-6-6zm7.414 6l6-6l-1.414-1.414l-6 6zM13 20V5h-2v15z'/%3E%3C/svg%3E");
  background-position: center center;
  transition: transform 0.3s ease;
  transform: rotate(180deg); /* Default state points down */
}

/* Only rotate when collapsed */
.faq .accordion-item .collapsed .accordion-button-icon::after {
  transform: rotate(0deg);
}

/* Keep hover effects */
.faq .accordion-button-icon:hover {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.faq .accordion-button-icon:hover::after {
  animation: flipIcon 0.6s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg class='accordion-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 20l-.707.707l.707.707l.707-.707zm1-15a1 1 0 1 0-2 0zm-7.707 9.707l6 6l1.414-1.414l-6-6zm7.414 6l6-6l-1.414-1.414l-6 6zM13 20V5h-2v15z'/%3E%3C/svg%3E");
}

@keyframes flipIcon {
  0% {
    transform: scaleX(1) rotate(var(--rotation));
  }
  50% {
    transform: scaleX(-1) rotate(var(--rotation));
  }
  100% {
    transform: scaleX(1) rotate(var(--rotation));
  }
}

.faq .accordion-button-icon::after {
  --rotation: 180deg; /* Default pointing down */
}

.faq .accordion-item .collapsed .accordion-button-icon::after {
  --rotation: 0deg; /* Points up when collapsed */
}

.request {
  padding-top: 80px;
  background: var(--primary-500);
  background-image: url("../img/bg-texture-4.webp");
  background-position: left top;
  background-repeat: repeat;
}

.request > .w-100 > .container > .row {
  --bs-gutter-x: 56px;
}

@media screen and (max-width: 767px) {
  .request {
    padding-top: 24px;
    background-image: url("../img/subtract-2.webp");
    background-position: 60% bottom;
    background-repeat: no-repeat;
    background-size: 93%;
  }

  .request > .w-100 > .container > .row {
    --bs-gutter-x: 20px;
  }
  
}

.request__text {
  background-image: url("../img/subtract-2.webp");
  background-position: left bottom;
  background-repeat: repeat-x;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .request > .w-100 > .container > .row {
    --bs-gutter-x: 20px;
  }
  .request__text {
    background-image: none;
  }
}

.request__text_info {
  background: #eaf4ff;
  background-image: url("../img/icon-info.webp");
  background-position: right bottom;
  background-repeat: no-repeat;
}

.request__text_info > ul {
  padding: 0;
  margin: 0;
}

.request__text_info > ul > li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.request__text_info > ul > li > ul {
  padding-left: 15px;
  padding-top: 8px;
}

.request__text_info > ul > li > ul > li {
  position: relative;
  font-weight: 400;
}

.request__text_info > ul > li > ul > li::before {
  content: "•";
  color: var(--primary-500);
  position: absolute;
  left: -10px;
  top: -0.25rem;
  line-height: 1.5;
}

.footer {
  background: var(--secondary-700);
  padding: 48px 0;
  background-image: url("../img/bg-footer.webp");
  background-position: left bottom;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .footer {
    padding: 24px 0;
  }
}

.footer_title {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--primary-50);
  margin-bottom: 25px;
}

.footer_title::before {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  background: var(--primary-500);
  position: absolute;
  bottom: -3px;
}

.footer > .container > .row {
  --bs-gutter-x: 144px;
}

@media screen and (max-width: 767px) {
  .footer > .container > .row {
    --bs-gutter-x: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer > .container > .row {
    --bs-gutter-x: 20px;
  }
}

.footer_copy_right {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/* Base styling for speech bubble */
.bubble {
  background-color: #fff;
  border: 1px solid #ccd7c9;
  border-radius: 16px;
  color: #333;
  display: inline-block;
  font: 16px/24px sans-serif;
  padding: 16px;
  position: relative;
  width: 100%;
}

/* Arrow base styling - shared properties */
.bubble:after,
.bubble:before {
  content: "";
  position: absolute;
}

/* Bottom arrow */
.bubble.arrow-bottom:after {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--primary-500);
  bottom: -30px;
  left: 85%;
  margin-left: -30px;
}

.bubble.arrow-bottom:before {
  border-left: 33px solid transparent;
  border-right: 33px solid transparent;
  border-top: 33px solid;
  border-top-color: var(--primary-500);
  bottom: -33px;
  left: 85%;
  margin-left: -33px;
}

/* Top arrow */
.bubble.arrow-top:after {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid var(--primary-500);
  top: -30px;
  left: 50%;
  margin-left: -30px;
}

.bubble.arrow-top:before {
  border-left: 33px solid transparent;
  border-right: 33px solid transparent;
  border-bottom: 33px solid;
  border-bottom-color: var(--primary-500);
  top: -33px;
  left: 50%;
  margin-left: -33px;
}

/* Right arrow */
.bubble.arrow-right:after {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid var(--primary-500);
  right: -30px;
  top: 50%;
  margin-top: -30px;
}

.bubble.arrow-right:before {
  border-top: 33px solid transparent;
  border-bottom: 33px solid transparent;
  border-left: 33px solid;
  border-left-color: var(--primary-500);
  right: -33px;
  top: 50%;
  margin-top: -33px;
}

/* Left arrow */
.bubble.arrow-left:after {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 30px solid var(--primary-500);
  left: -30px;
  top: 50%;
  margin-top: -30px;
}

.bubble.arrow-left:before {
  border-top: 33px solid transparent;
  border-bottom: 33px solid transparent;
  border-right: 33px solid;
  border-right-color: var(--primary-500);
  left: -33px;
  top: 50%;
  margin-top: -33px;
}

@media screen and (max-width: 1024px) {
  .bubble {
    margin-bottom: 40px;
  }
  .bubble.arrow-right:after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--primary-500);
    bottom: -53px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0px;
    margin-right: 0px;
    right: 50%;
    top: auto;
  }

  .bubble.arrow-right:before {
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid;
    border-top-color: var(--primary-500);
    bottom: -57px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0px;
    margin-right: 0px;
    right: 50%;
    top: auto;
  }

  .bubble.arrow-bottom:after,
  .bubble.arrow-bottom:before {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }

  .bubble.arrow-bottom:after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--primary-500);
    bottom: -21px;
  }

  .bubble.arrow-bottom:before {
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid;
    border-top-color: var(--primary-500);
    bottom: -23px;
  }

  .row-reverse {
    flex-direction: column-reverse;
  }

  .bubble.arrow-left:after,
  .bubble.arrow-left:before {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }

  .bubble.arrow-left:after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--primary-500);
    top: auto;
    margin-top: 0px;
    bottom: -50px;
  }

  .bubble.arrow-left:before {
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid;
    border-top-color: var(--primary-500);
    top: auto;
    margin-top: 0px;
    bottom: -56px;
  }
}

.flow_consultation {
  padding-bottom: 0;
}

.flow_consultation__container {
  padding-bottom: 80px;
}

.flow_consultation > .w-100 > .container > .flow_consultation__container > .row {
  --bs-gutter-x: 45px;
}

@media screen and (max-width: 768px) {
  .flow_consultation > .w-100 > .container > .flow_consultation__container > .row {
    --bs-gutter-x: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow_consultation > .w-100 > .container > .flow_consultation__container > .row {
    --bs-gutter-x: 20px;
  }
}

.flow_consultation__container::after {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 27px;
  background-image: url(../img/subtract-3.webp);
  background-position: bottom left;
  background-repeat: repeat-x;
  bottom: 0;
  left: 5%;
  right: 5%;
}

@media screen and (max-width: 1024px) {
  .flow_consultation__container {
    padding-bottom: 24px;
  }
  .flow_consultation__container::after {
    height: 15px;
    background-size: cover;
  }
}

.carousel_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.carousel_container {
  width: calc((100vw - 1200px) / 2 + 1200px);
  margin-left: auto;
  padding-left: 20px;
}

@media screen and (max-width: 1024px) {
  .carousel_container {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}

.carousel_photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel_photo__container {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  gap: 32px;
}

.photo-slider {
  overflow: visible;
  margin-left: calc((100vw - 1200px) / 2);
  padding-right: 0;
}

.carousel_photo__item {
  width: 350px;
  margin-right: 32px;
  position: relative;
}

.carousel_photo__item:first-child {
  margin-left: 15px;
}

.carousel_photo__item .img-wrapper {
  width: 100%;
  height: 224px;
  overflow: hidden;
  border-radius: 16px;
}

@media screen and (max-width: 1024) {
  .carousel_container {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .photo-slider {
    overflow: visible;
    margin-left: 0;
    padding-right: 0;
  }

  .carousel_photo__item {
    width: 100%;
    margin-right: 0;
    position: relative;
  }

  .carousel_photo__item:first-child {
    margin-left: 0;
  }
  
}

@media screen and (max-width: 768px) {
  .photo-slider {
    margin-left: 0 !important;
}
  .photo-slider .slick-dots {
    padding-top: 10px;
    display: flex;
    align-items: center !important;
    gap: 8px;
    padding-left: 0;
    justify-content: center !important;
    width: 100%;
  }

  .photo-slider .slick-dots button {
      width: 18px !important;
      height: 4px !important;
      border-radius: 2px !important;
      background: var(--primary-100) !important;
      border: none !important;
      font-size: 0;
  }

  .photo-slider .slick-dots li.slick-active button {
    background: var(--primary-500) !important;
  }
}

.carousel_photo__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 16px;
}

.carousel_photo__item:hover img {
  transform: scale(1.09);
}

.carousel_photo__item img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.carousel_photo__item:hover img {
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}

@media (max-width: 1400px) {
  .photo-slider {
    margin-left: calc((100vw - 1140px) / 2);
  }
}

@media (max-width: 1024) {
  .photo-slider {
    margin-left: 0;
  }
  .carousel_photo__item {
    width: 100%;
    margin-right: 0;
  }
}

.photo-slider-arrows {
  display: flex;
  gap: 1rem;
}

.carousel_photo__btn {
  position: static;
  transform: none;
}

.carousel_photo__item__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: white;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 0px 0px 16px 16px;
  background: linear-gradient(0deg, #5c7e52 0%, rgba(166, 228, 148, 0) 100%);
  text-align: center;
  z-index: 1;
}

.carousel_photo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccd7c9;
  background: #fff;
  border-radius: 40px;
}
.carousel_photo__btn:hover {
  background: #f5f5f5;
}
.carousel_photo__btn.prev {
  left: 10px;
}
.carousel_photo__btn.next {
  right: 10px;
}

/* Responsif */
@media (max-width: 1200px) {
  .carousel_container {
    width: 100%;
    padding: 0 15px;
  }
}


.floating-whatsapp {
  display: none;
}

@media screen and (max-width: 767px) {
  .floating-whatsapp {
    display: inline;
    position: fixed;
    bottom: 0;
    right: 0;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .hero-desc {
    min-height: 48px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .floating-whatsapp {
    display: inline;
    position: fixed;
    bottom: 90px;
    right: 0;
    padding-right: 10px;
    padding-bottom: 10px;
  }

}

.download-form .form-control{
  border: 1px solid var(--primary-100);
}
