* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 500;
}

#wpadminbar {
  display: none;
}

html {
  margin-top: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-width: 320px;
  font-family: "ClashDisplay-Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #232931;
  background: #ffffff !important;
  transition: color 0.5s, background-color 0.5s;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  display: inline-block;
}

dl,
dd {
  margin: 0;
}

address {
  font-style: normal;
}

/* Buttons */
button {
  border: none;
  cursor: pointer;
}

.button {
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  border-radius: 0;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: center;
  overflow: hidden;
  min-width: fit-content;
  color: #ffffff;
  font-weight: 600;
}
.button--primary {
  position: relative;
  background-color: #028090;
  padding: 14px 30px 14px 35px;
  min-width: fit-content;
}
.button--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -95px;
  transform: skewX(47deg);
  transform-origin: top left;
  transition: width 0.2s ease, left 0.2s ease;
  z-index: 1;
  width: 60%;
  height: 100%;
  opacity: 0.1;
  border-radius: 0;
  background-color: #ffffff;
}
.button--primary:hover {
  background-color: #006c7c;
}
.button--secondary {
  position: relative;
  background-color: #ffffff;
  padding: 14px 30px 14px 35px;
  color: #232931;
}
.button--secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -95px;
  transform: skewX(47deg);
  transform-origin: top left;
  transition: width 0.2s ease, left 0.2s ease;
  z-index: 1;
  width: 60%;
  height: 100%;
  opacity: 0.1;
  border-radius: 0;
  background-color: #61666e;
  transition: width 0.2s ease, left 0.2s ease, background-color 0.2s ease;
}
.button--secondary:hover::after {
  opacity: 0.2;
}
.button--green {
  background-color: #14ae5c;
  color: #ffffff;
  padding: 4px 12px 4px 9px;
}
.button--gray {
  background-color: #eee;
  color: #2f343c;
  padding: 4px 12px;
}

a {
  text-decoration: none;
  color: inherit;
}

.check-icon {
  background-image: url("/wp-content/themes/churanek/images/svg/check-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.labels {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.labels__item {
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #eeeeee;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
}

.project-info__item {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.residential-item {
  background-color: #f8f8f8;
}
.residential-item__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.residential-item__text-title {
  margin: 40px 0 30px;
  width: 55%;
  font-size: 50px;
  font-weight: 500;
  line-height: 55px;
  text-align: left;
  padding-right: 140px;
}
@media (max-width: 1024px) {
  .residential-item__text-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .residential-item__text-title {
    width: 100%;
    padding: 0 20px;
  }
}
.residential-item__text-title span {
  color: #028090;
}
.residential-item__text-description {
  width: 55%;
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  text-align: left;
  color: #61666e;
  padding-right: 140px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .residential-item__text-description {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .residential-item__text-description {
    width: 100%;
    padding: 0 20px;
  }
}
.residential-item__project-info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 55%;
  padding-right: 140px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .residential-item__project-info {
    width: 100%;
    padding: 0 20px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 50px;
  }
}
.residential-item__project-info-item {
  display: flex;
  flex-direction: column;
}
.residential-item__project-info-item-value {
  font-size: 45px;
  font-weight: 500;
  line-height: 66px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .residential-item__project-info-item-value {
    font-size: 38px;
    line-height: 66px;
  }
}
.residential-item__project-info-item-title {
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 22.4px;
  text-align: left;
  color: #61666e;
}
.residential-item__gallery-description {
  width: 100%;
  padding: 120px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .residential-item__gallery-description {
    padding: 80px 0 0;
  }
}
@media (max-width: 767px) {
  .residential-item__gallery-description {
    padding: 50px 0;
  }
}
.residential-item__gallery-description p {
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  text-align: left;
  width: 50%;
  padding-right: 140px;
}
@media (max-width: 1024px) {
  .residential-item__gallery-description p {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .residential-item__gallery-description p {
    width: 100%;
    padding: 0 20px;
  }
}
.residential-item__other-projects-navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 0 40px;
}
.residential-item__other-projects-navigation-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 55px;
  text-align: left;
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .residential-item__other-projects-navigation-title {
    font-size: 36px;
    line-height: 39.6px;
    padding-top: 80px;
    margin-bottom: 30px;
  }
}
.residential-item__other-projects-navigation-title span {
  color: #028090;
}
.residential-item__other-projects-navigation-carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.residential-item__other-projects-navigation-carousel .carousel-prev-button {
  height: 50px;
  width: 50px;
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}
.residential-item__other-projects-navigation-carousel .carousel-next-button {
  height: 50px;
  width: 50px;
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}
.residential-item__other-projects-navigation-carousel .carousel-prev {
  height: 24px;
  width: 24px;
  background-image: url("/wp-content/themes/churanek/images/svg/chevron-left-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.residential-item__other-projects-navigation-carousel .carousel-next {
  height: 24px;
  width: 24px;
  background-image: url("/wp-content/themes/churanek/images/svg/chevron-right-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .residential-item__other-projects-navigation-carousel {
    display: none;
  }
}

.residential-page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 80px 40px 120px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .residential-page-gallery {
    padding: 0 20px;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }
  .residential-page-gallery .mobile-hidden {
    display: none !important;
  }
}
.residential-page-gallery__item {
  position: relative;
}
@media (max-width: 767px) {
  .residential-page-gallery__item {
    height: 350px;
  }
}
.residential-page-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.residential-page-gallery__item.wide {
  grid-column: span 2;
  max-height: 410px;
}
.residential-page-gallery__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.residential-page-gallery__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.residential-page-gallery__item a:hover::before {
  opacity: 1;
}
.residential-page-gallery__item a:hover img {
  transform: scale(1.02);
}
.residential-page-gallery__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-buttons {
  display: none;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .gallery-buttons {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .gallery-buttons button {
    width: 100%;
  }
}

.other-projects {
  background: #f8f8f8;
  padding: 50px 40px 120px;
  position: relative;
}
@media (max-width: 767px) {
  .other-projects {
    padding: 0 20px 80px;
    overflow: hidden;
  }
}
.other-projects__buttons {
  display: none;
}
@media (max-width: 767px) {
  .other-projects__buttons {
    display: block;
  }
}
.other-projects__buttons .carousel-prev-button, .other-projects__buttons .carousel-next-button {
  height: 50px;
  width: 50px;
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.other-projects__buttons .carousel-prev-button:disabled, .other-projects__buttons .carousel-next-button:disabled {
  opacity: 0.5;
}
.other-projects__buttons .carousel-next-button {
  right: 0;
}
.other-projects__buttons .carousel-prev-button {
  left: 0;
}
.other-projects__buttons .carousel-prev {
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/wp-content/themes/churanek/images/svg/chevron-left-icon.svg");
}
.other-projects__buttons .carousel-next {
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/wp-content/themes/churanek/images/svg/chevron-right-icon.svg");
}
.other-projects__title {
  font-size: 50px;
  font-weight: 500;
  line-height: 55px;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .other-projects__title {
    font-size: 36px;
    line-height: 39.6px;
    margin-top: 80px;
    margin-bottom: 30px;
  }
}
.other-projects__title span {
  color: #028090;
}
.other-projects__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .other-projects__list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .other-projects__list {
    overflow-x: scroll;
    display: flex;
  }
}
.other-projects__list-item {
  width: 100%;
}
@media (max-width: 767px) {
  .other-projects__list-item {
    max-width: 350px;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
  }
}

.project-card {
  width: 100%;
  background-color: #ffffff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .project-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
  }
}
.project-card__image {
  width: 100%;
  height: 295px;
  margin-bottom: 30px;
  position: relative;
}
.project-card__image-availability-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background-color: #eeeeee;
  color: #232931;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
}
.project-card__image-availability-badge-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.project-card__image-availability-badge.available {
  background-color: #14ae5c;
  color: #ffffff;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__labels {
  margin-bottom: 25px;
}
.project-card__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 30.8px;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .project-card__title {
    font-size: 24px;
    line-height: 26.4px;
  }
}
.project-card .project-info {
  margin-bottom: 40px;
  flex: 1;
}
.project-card .project-info__item {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  position: relative;
  overflow: hidden;
}
.project-card .project-info__item:last-child {
  margin-bottom: 0;
}
.project-card .project-info__item-title {
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 22.4px;
  color: #61666e;
  white-space: nowrap;
  position: relative;
  padding-right: 10px;
}
.project-card .project-info__item-title:after {
  content: "";
  position: absolute;
  left: 100%;
  right: -800px;
  bottom: 7px;
  opacity: 0.4;
  border-bottom: 1px dotted #61666e;
}
.project-card .project-info__item-value {
  font-family: Arimo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: right;
  padding-left: 10px;
  position: relative;
  background: #ffffff;
}
.project-card .project-info__item a {
  color: #028090;
}
.project-card .project-info__item_bg .project-info__item-value {
  background: none;
  padding: 0;
}
.project-card .project-info__item_bg .project-info__item-value-list {
  display: inline;
  background-color: white;
  padding-left: 10px;
}
@media (max-width: 1024px) {
  .project-card .project-info {
    margin-bottom: 30px;
  }
}
.project-card .project-info__item-value {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  max-width: 300px !important;
}
@media (max-width: 1024px) {
  .project-card .project-info__item-value {
    max-width: 182px !important;
  }
}
.project-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 200px;
  width: 100%;
  padding: 10px 0 !important;
  min-width: fit-content !important;
}
@media (max-width: 767px) {
  .project-card__button {
    max-width: 100%;
  }
}
.project-card__button-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/churanek/images/svg/arrow_right-icon-white.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.95);
  width: 80%;
  margin: 0 auto;
}
.fancybox__container .fancybox__nav {
  padding: 0;
}
.fancybox__container .fancybox__nav .f-button {
  width: 50px;
  height: 50px;
  background-color: #eee;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.fancybox__container .fancybox__nav .f-button.is-prev {
  left: 10px;
}
.fancybox__container .fancybox__nav .f-button.is-next {
  right: 10px;
}
.fancybox__container .fancybox__nav .f-button svg {
  width: 20px;
  height: 20px;
  color: #2f343c;
  filter: none;
}
.fancybox__container .fancybox__thumbs {
  --f-thumb-border-radius: 0;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}
.fancybox__container .fancybox__thumbs .f-thumbs__viewport {
  margin: 0 auto;
}
.fancybox__container .fancybox__thumbs .f-thumbs__slide {
  border-radius: 0;
}
