@import url("./fonts.css");
@import url("./variables.css");
@import url("./base.css");

@import url("./pages/home.css");
@import url("./pages/about.css");
@import url("./pages/contacts.css");
@import url("./pages/tenants.css");
@import url("./pages/services.css");
@import url("./pages/banks.css");
@import url("./pages/entertaiments.css");
@import url("./pages/food-court.css");
@import url("./pages/scheme.css");
@import url("./pages/offices.css");
@import url("./pages/events.css");

/* HEADER STYLES START */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    z-index: 7;
    transition: .3s;
}

.header--hidden {
    transform: translateY(-100%);
}

.header-top {
    padding: 8px 44px;
    height: 40px;
    background: var(--blue);
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.header-top__left p {
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

.header-top__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top__right button,
.header-top__right a {
    color: white;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.header-top__right button:hover,
.header-top__right a:hover {
    cursor: pointer;
    color: #ccc;
}

.navbar {
    background: #fff;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 44px;
}

.navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 330px;
    height: 100%;
    z-index: 11;
    background: var(--template-page-bg);
    display: flex;
    flex-direction: column;
    transition: 0.3s transform;
    transform: translateX(100%);
}

.navbar__menu.active {
    transform: translateX(0);
}

.navbar__menu__top {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--white);
    gap: 24px;
}

.navbar__menu__top__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__menu__top__header .menu-close {
    cursor: pointer;
    font-size: 24px;
    padding: 8px;
}

.navbar__menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.navbar__menu-links .navbar__link {
    font-weight: 600;
    font-size: 20px;
}

.navbar__menu .socials {
    margin-top: 4px;
    background: var(--white);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navbar__menu .socials h4 {
    font-weight: 400;
    font-size: 18px;
    color: var(--neutrals-4);
}

.navbar__menu .socials .socials__items {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__menu .socials .socials__item__link {
  color: var(--black);
  text-decoration: none;
    font-size: 24px;
}

.navbar__logo img {
    width: 64px;
}

.navbar__links {
    display: flex;
    gap: 24px;
}

.navbar__link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    color: var(--nav-link-color);
}

.navbar__link:hover {
    color: var(--nav-link-hover-color);
}

.navbar-lang {
    position: relative;
}

.navbar-lang:hover .navbar-lang__options {
    top: calc(100% - 15px);
    visibility: visible;
    opacity: 1;
}

.navbar-lang .flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.navbar-lang__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    background: #f2f2f2;
    z-index: 8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-top: 20px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.navbar-lang__options.active {
    top: calc(100% - 15px);
    visibility: visible;
    opacity: 1;
}

.navbar-lang__options button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    padding: 5px 0;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
}

.navbar-lang__options button:hover {
    background: #fff;
}

.navbar-lang__button {
    position: relative;
    z-index: 9;
    min-width: 70px;
    border-radius: 16px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--light-gray);
    border: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    gap: 4px;
}

.navbar-lang__button:hover {
    cursor: pointer;
    background: var(--light-gray-hover);
}

.burger {
    cursor: pointer;
    display: none;
    width: 24px;
    height: 24px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 10px;
}

/* HEADER STYLES END */

.template-page-bg {
    background: var(--template-page-bg);
}

.template-page {
    width: 100%;
    padding-top: 64px;
}

.template-page__header {
    position: relative;
    display: flex;
    align-items: center;
}

.template-page__header::after {
    height: 160px;
    content: url("/assets/img/template-page-pattern.svg");
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.filters {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filters__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.filters__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 1px solid var(--filters-border-color);
    border-radius: 12px;
    color: var(--neutrals-2);
    background: #fff;
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
}

.filters__btn.active {
    color: var(--secondary);
}

.filters__btn.active::before {
    font-family: "vefa-icons";
    content: "\e905";
}

.select {
    display: none;
}

.search-field__wrap {
    width: max-content;
    position: relative;
}

.search-field__wrap::before {
    content: "\e906";
    font-family: "vefa-icons" !important;
    font-size: 20px;
    color: var(--gray);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.search-field {
    position: relative;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    font-size: 16px;
    padding: 12px 16px;
    padding-left: 52px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    font-weight: 500;
}

.floors {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.floor {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.floor__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
}

.floor__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contacts {
    position: relative;
    background: #007aff;
    padding: 100px 0;
}

.contacts .block-pattern {
    position: absolute;
    left: 0;
    bottom: 0;
}

.contacts__content {
    max-width: 1545px;
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.contacts .page-title {
    color: #fff;
}

.contacts .left {
    width: 30%;
    position: relative;
}

.contacts .right {
    width: 70%;
    position: relative;
}

.contacts .left .pattern {
    position: absolute;
    font-size: 80px;
    opacity: 30%;
    color: #fff;
}

.contacts .left .page-title .pattern {
    display: none;
}

.contacts .left .pattern:first-child {
    top: -54px;
    left: 289px;
}

.contacts .left .pattern:nth-child(2) {
    top: 37px;
    right: -13px;
}

.contacts .desc {
    margin-top: 24px;
    color: #fff;
}

.contacts .contacts__list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 27.5px;
}

.contacts .contacts__list li {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contacts .contacts__list li span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--input-fill);
}

.contacts .contacts__list li span .icon-mail {
    font-size: 12px;
}

.contacts .contacts__list a {
    color: var(--white);
    text-decoration: none;
}

.contacts .right {
  position: relative;
}

.contacts .map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.contacts .map__controls {
  position: absolute;
  width: 100%;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.contacts .map__controls .btn img {
  max-height: 100%;
}
.contacts .map__controls .btn {
  height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-400) var(--sds-size-depth-800) var(--sds-size-depth-negative-100) #0C0C0D33;
  background: #FFFFFF;
  border-radius: 12px;
  color: var(--black);
  font-weight: 600;
}

/* FOOTER STYLES START */

.footer {
    --col-title-size: 20px;
    --col-content-size: 28px;
    --text-size: 20px;
    --nav-link-size: 20px;
    --copyright-size: 16px;

    font-family: var(--font-gilroy), sans-serif;

    background: var(--footer-bg);
    padding-top: 64px;
    padding-bottom: 24px;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer__main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 58px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--black);
}

.footer-col .footer-col__title {
    font-size: var(--col-title-size);
    font-weight: 500;
    line-height: 150%;
}

.footer-col h4,
.footer-col a {
    font-weight: 700;
    font-size: var(--col-content-size);
    line-height: 120%;
    letter-spacing: 4%;
    text-decoration: none;
    color: var(--black);
}

.footer__main {
    display: flex;
}

.footer__main__left {
  width: 50%;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__main__left p {
    max-width: 500px;
    font-weight: 500;
    line-height: 150%;
    font-size: var(--text-size);
    color: var(--black);
    text-align: justify;
}

.footer__main__left .socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__main__left .socials .socials__btn {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.15px solid #38388a33;
    border-radius: 8px;
    font-size: 24px;
    color: var(--black);
    transition: 0.3s;
    text-decoration: none;
}

.footer__main__left .socials .socials__btn:hover {
    cursor: pointer;
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.footer__main__right {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer__main_nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__main_nav a {
    font-weight: 500;
    font-size: var(--nav-link-size);
    color: var(--black);
    text-decoration: none;
}

.footer .divider {
    margin-top: 32px;
    width: 100%;
    height: 1px;
    background: var(--black);
    opacity: 30%;
}

.footer .copyright {
    margin-top: 32px;
    text-align: center;
    font-size: var(--copyright-size);
    font-weight: 500;
}

.footer .copyright a {
    text-decoration: none;
    color: var(--black);
}

/* FOOTER STYLES END */

.not-found-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 94px);
    background: #f1efeb;
}

.not-found-page .pattern {
    position: absolute;
    top: 0;
    right: 0;
}

.not-found-page .pattern2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.not-found {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.not-found .bg-title {
    font-size: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
}

.not-found h1 {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 48px;
    color: #181d27;
}

.not-found p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: #535862;
}

.not-found .btn {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.not-found .btn {
    width: max-content;
    margin: auto;
}

.floating_btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
    width: 54px;
    height: 54px;
    background: #48C95F;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s;
    padding: 14px;
    z-index: 9;
    animation: pulse 1.5s infinite;
    -webkit-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #42db87;
}

.floating_btn:hover {
    cursor: pointer;
    background: #38a04b;
}

.floating_btn img {
    max-width: 32px;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}


@media screen and (max-width: 1920px) {
    html[lang='ky'] .navbar__links {
      gap: 24px;
    }

    html[lang='ky'] .navbar__link {
      font-size: 12px;
    }
}

@media screen and (min-width: 1700px) {
    .navbar {
        padding: 10px 44px;
    }

    .navbar__links {
        gap: 32px;
    }

    .navbar__link {
        font-size: 18px;
    }
}

@media screen and (max-width: 1700px) {
    .footer {
        --col-title-size: 22px !important;
        --col-content-size: 22px !important;
    }
}

@media screen and (max-width: 1500px) {
    .template-page .page-title {
        font-size: 64px;
    }

    .footer {
        --col-title-size: 20px !important;
        --col-content-size: 20px !important;
    }

    .contacts .map__controls {
      position: static;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    html[lang='ky'] .navbar__links {
      gap: 12px;
    }
}

@media screen and (max-width: 1400px) {
  .navbar__links {
    gap: 16px;
  }
}


@media screen and (max-width: 1300px) {
  .navbar__links {
    gap: 16px;
  }
}

@media screen and (max-width: 1280px) {
    .footer {
        --col-title-size: 16px !important;
        --col-content-size: 18px !important;
        --text-size: 16px !important;
        --nav-link-size: 16px !important;
    }

    .header-top {
        justify-content: center;
    }

    .header-top__right {
        display: none;
    }

    .navbar__links {
        display: none;
    }

    .navbar__right .navbar-lang {
        display: none;
    }

    .burger {
        display: flex;
    }

    .floor__content {
        grid-template-columns: repeat(3, 1fr);
    }

    .contacts .left {
        width: 40%;
    }

    .contacts .right {
        width: 60%;
    }

    .contacts__content {
        gap: 40px;
    }
}

@media screen and (max-width: 1100px) {
    .footer__top {
      row-gap: 50px;
      grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer__main {
      display: flex !important;
      flex-direction: column-reverse;
      gap: 50px;
    }

    .footer__main__right, .footer__main__left {
      width: 100% !important;
    }

}

@media screen and (max-width: 992px) {
    .contacts__content {
        flex-direction: column;
        gap: 20px;
    }

    .contacts .left,
    .contacts .right {
        width: 100%;
    }

    .footer {
        --col-title-size: 16px;
        --col-content-size: 18px;
        --text-size: 16px;
        --nav-link-size: 16px;
    }

    .footer__top {
        flex-wrap: wrap;
    }

    .footer-col {
        width: 100%;
    }

    .footer__main {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .footer__main__right {
        min-width: unset;
        width: 100%;
    }

    .footer__main_nav {
        width: 50%;
    }

    .floor__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .template-page {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .navbar {
        padding: 0 22px;
    }

    .template-page .page-title {
        font-size: 48px;
    }

    .select {
        display: block;
    }

    .filters {
        gap: 12px;
    }

    .search-field__wrap {
        width: 100%;
    }

    .filters__items {
        display: none;
    }

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

    .template-page__header::after {
        content: url("/assets/img/template-page-pattern-small.svg");
        height: 50px;
        right: -22px;
    }

    .contacts {
        padding: 32px 0 !important;
    }

    .contacts .block-pattern {
        display: none;
    }

    .contacts .left {
        max-width: 250px;
        margin: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contacts .left > .pattern {
        display: none;
    }

    .contacts .left .page-title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .contacts .left .page-title .pattern {
        display: block;
        position: static;
        font-size: 30px;
    }

    .contacts .contacts__list {
        margin-top: 24px;
        width: max-content;
        align-self: center;
    }

    .not-found-page .pattern,
    .not-found-page .pattern2 {
        display: none;
    }

    .not-found {
        gap: 10px;
    }

    .not-found .bg-title {
        position: relative;
        width: 80%;
        top: unset;
        left: 50%;
        transform: translateX(-50%);
    }

    .events-animated .events-card__left {
      flex-direction: column;
      gap: 12px;
    }

    .events-animated .events-card__left .btn {
      width: 100%;
    }

    .events-animated .events-card {
      padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .template-page .page-title {
        font-size: 36px;
    }

    .footer__top {
      display: flex !important;
      flex-direction: column;
        gap: 16px;
    }

    .footer__main__right {
      display: flex !important;
      flex-direction: column;
      gap: 32px;
    }

    .footer-col {
        width: 100%;
    }
}


.stores-page, .food-page, .entertaiment-page, .banks-page {
  margin-bottom: 44px;
}
