/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
a:where(:not(.wp-element-button)) {
  text-decoration: unset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

body.body-fix-scroll {
  height: 1px;
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 500;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.45;
}

.big,
h4 {
  font-size: 22px;
}

p {
  margin: 0 0 15px 0;
}

.page-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.splitting .word,
.splitting .char {
  display: inline-block;
}

.splitting .char {
  position: relative;
}

.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}

.splitting {
  --word-center: calc((var(--word-total) - 1) / 2);
  --char-center: calc((var(--char-total) - 1) / 2);
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  --word-percent: calc(var(--word-index) / var(--word-total));
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  --char-percent: calc(var(--char-index) / var(--char-total));
  --char-offset: calc(var(--char-index) - var(--char-center));
  --distance: calc(
    (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.section-banner:after,
.section-banner-2:after,
.section-banner-3:after {
  content: "";
  display: block;
}

#wrapper .section,
#wrapper section {
  display: block;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

body .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  #wrapper .section,
  #wrapper section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1260px) {
  #wrapper .section,
  #wrapper section {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

a {
  color: #4a4a4a;
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.absolute-footer {
  display: none;
}

.nav > li > a {
  font-weight: 500;
}

.checkbox-language {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  text-transform: uppercase;
  gap: 8px;
}

.checkbox-language li {
  margin-bottom: 0;
}

.checkbox-language li a {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

#footer .checkbox-language {
  margin-top: 50px;
  justify-content: flex-end;
}

#footer .checkbox-language li {
  margin-left: 0;
}

.headermenu__wrap .checkbox-language li a {
  color: rgba(255, 255, 255, 0.6);
}

#footer .checkbox-language li a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.checkbox-language li.current-lang a {
  color: #000;
}

.headermenu__wrap .checkbox-language li.current-lang a {
  color: #fff;
}

#footer .checkbox-language li.current-lang a {
  color: #000;
}

.checkbox-language li:not(:last-child)::after {
  content: "\2013";
  color: #a9a9a9;
  margin-left: 5px;
}

.btn-link {
  display: inline-block;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--primary-color);
  overflow: hidden;
}

.btn-link:hover {
  color: var(--primary-color);
}

.btn-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-link:hover:after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.btn-link-dot {
  display: inline-block;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  color: var(--primary-color);
  padding-left: 14px;
  overflow: hidden;
}

.btn-link-dot:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.btn-link-dot:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-link-dot:hover:after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.hero {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
}

.hero__title {
  font-size: 33px;
  line-height: 1.11;
  margin: 0;
}

.hero__bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #4a4a4a;
}

html body #wrapper .section-box-custom {
  padding-top: 0;
  margin-top: -160px;
}

.section-box-custom .section-content {
  position: relative;
  max-width: 1570px;
  background-color: #fff;
  margin-left: auto;
  margin-right: 0;
}

.section-box-custom .section-content:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -54px;
  left: 0;
  width: 100%;
  height: 55px;
  background-color: #fff;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.section-box-custom .workspace__desc {
  margin-bottom: 40px;
}

.select-group {
  margin-bottom: 27px;
}

.select-group label {
  font-size: 15px;
  color: #a9a9a9;
  letter-spacing: 0;
  font-weight: 400;
}

.select-group .select-group__item {
  position: relative;
  border-bottom: 1px solid #4a4a4a;
}

.select-group .select-group__item img {
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.select-group select.form-control {
  background-image: url(./assets/images/icon-arrow-down-select.svg);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: auto 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 25px;
}

.select-group .form-control {
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  color: #000;
  background-color: transparent;
  padding-left: 28px;
  margin: 0;
  box-shadow: none;
  border: none;
}

.select-group .form-control:focus {
  box-shadow: none;
}

.find-space {
  font-size: 17px;
  font-weight: bold;
  color: var(--primary-color);
  background-color: transparent;
  margin: 0;
  padding: 0;
}

.section-box-custom .workspace__slide .item {
  border-left: 1px solid #d7d7d7;
  padding: 0 30px;
  padding-bottom: 50px;
}

.section-box-custom .workspace__slide .f-title {
  position: relative;
}

.section-box-custom .workspace__slide .f-title h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.section-box-custom .workspace__slide .f-subtitle {
  font-size: 15px;
  color: #888888;
}

.section-box-custom .workspace__slide .f-img-wrap {
  position: relative;
}

.section-box-custom .workspace__slide .f-img {
  margin-top: 150px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-box-custom .workspace__slide .f-img img {
  width: 100%;
}

.section-box-custom .workspace__slide .f-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 15px;
  letter-spacing: 0;
  visibility: hidden;
  opacity: 0;
  /* z-index: -1; */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-box-custom .workspace__slide .item:hover .f-img {
  -webkit-transform: translateY(-35px);
  -ms-transform: translateY(-35px);
  transform: translateY(-35px);
}

.section-box-custom .workspace__slide .item:hover .f-btn {
  visibility: visible;
  opacity: 1;
}

.section-box-custom .workspace__slide .swiper-button-next-custom,
.section-box-custom .workspace__slide .swiper-button-prev-custom {
  max-width: 22px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  z-index: 1;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

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

.section-box-custom .workspace__slide .swiper-button-prev-custom {
  top: 42%;
  left: 10px;
}

.section-box-custom .workspace__slide .swiper-button-next-custom {
  top: 42%;
  right: 10px;
}

.section-box-custom
  .workspace__slide
  .swiper-button-next-custom.swiper-button-disabled,
.section-box-custom
  .workspace__slide
  .swiper-button-prev-custom.swiper-button-disabled {
  visibility: hidden;
}

.section-box-custom .service-home {
  border-top: 1px solid #000;
  padding-top: 25px;
  margin-top: 85px;
}

.section-box-custom .service-home .service-home__subtitle {
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-box-custom .service-home .service-home__slide {
  position: relative;
  max-width: 1020px;
}

.section-box-custom .service-home .service-home__slide .swiper-button-disabled {
  visibility: hidden;
}

.service-horizontal__counter {
  display: inline-block;
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}

.service-horizontal__title {
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-horizontal__title a {
  color: #000;
}

.service-horizontal__title a:hover {
  color: var(--primary-color);
}

.service-horizontal__text {
  margin-bottom: 30px;
}

.service-horizontal__img img {
  width: 100%;
}

.section-banner:after {
  padding-top: 59%;
}

.title {
  margin-bottom: 100px;
}

.title__subtitle {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #4a4a4a;
  margin-top: 0;
  margin-bottom: 30px;
}

.title__title {
  font-size: 60px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 30px;
}

.title--style2 {
  margin-bottom: 60px;
}

.title--style2 .title__title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}

.coworking-space-masonry {
  display: block;
}

.coworking-space-masonry img {
  width: 100%;
}

.coworking-space-masonry .box-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 10px;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cta-text {
  border-top: 1px solid #000;
  padding-top: 23px;
  max-width: 330px;
}

.cta-text p {
  font-size: 19px;
  line-height: 1.57;
  color: #000;
  margin-bottom: 25px;
}

.cta-text a {
  font-size: 23px;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1.32;
  color: var(--primary-color);
}

.cta-text a img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cta-text a:hover img {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

body #wrapper .section-post {
  display: block;
  padding-top: 0;
}

.section-custom-box2__bg {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #7b7b7b;
  background-size: cover;
}

.section-custom-box2__bg:after {
  content: "";
  display: block;
  padding-top: 80%;
}

.section-custom-box2__content {
  margin-top: -55px;
}

.section-custom-box2__wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.section-custom-box2__wrap:before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  width: 1900px;
  height: 55px;
  background-color: #fff;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.section-custom-box2__wrap:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 1900px;
  height: 100%;
  background-color: #fff;
}

.section-custom-box2--style2 .section-custom-box2__wrap:before {
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
  left: auto;
  right: 0;
}

.section-custom-box2--style2 .section-custom-box2__wrap:after {
  right: 0;
  left: auto;
}

.section-post__header {
  margin-bottom: 70px;
}

.section-post__header .f-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  font-size: 15px;
  color: #888888;
}

.section-post__header .f-date .f-date__date {
  font-size: 28px;
  line-height: 1;
  color: #000;
  margin-bottom: 5px;
}

.section-post__header .f-date .f-date__time {
  margin-bottom: 30px;
}

.section-post__header .f-date .f-date__location {
  margin-bottom: 0;
}

.section-post__header .f-body {
  padding-top: 30px;
  padding-bottom: 40px;
}

.section-post__header .f-body .title,
.section-post__header .f-body .title__title {
  margin-bottom: 0;
}

.title__subtitle {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #4a4a4a;
  margin-top: 0;
  margin-bottom: 30px;
}

.section-post__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.section-post__list li {
  position: relative;
  padding: 25px 0;
  border-top: 1px solid #d7d7d7;
}

.section-post__list li .f-wrap {
  display: block;
  position: relative;
  min-height: 100px;
}

.section-post__list li img {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
}

.section-post__list li .f-body {
  width: calc(100% - 120px);
  padding-right: 20px;
}

.section-post__list li .f-body__title {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-post__list li span {
  display: inline-block;
  font-size: 13px;
  color: #888888;
}

.section-post__list li .f-wrap:hover .f-body__title {
  color: #db665a;
}

.section-post__list li:last-child {
  border-bottom: 1px solid #d7d7d7;
}

.pagination {
  padding-top: 30px;
  text-align: center;
}

.pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination__list li {
  display: inline-block;
  vertical-align: middle;
}

.pagination__list .page-item a,
.pagination__list .page-item span {
  display: block;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #d7d7d7;
  margin: 0 20px;
}

.pagination__list .page-item .current,
.pagination__list .page-item a:hover {
  color: #db665a;
  font-weight: 500;
}

.footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid #e4e4e4;
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #fff;
}

.footer .ux-logo-link {
  padding: 0 !important;
}

.footer__list {
  display: block;
}

.footer__list .ux-menu-link {
  display: inline-block;
}

.footer__list .ux-menu-link__link {
  border-bottom: 0px;
  display: inline-block;
  min-height: auto;
  margin: 0;
  padding: 0;
}

.footer__list .ux-menu-link a {
  display: block;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.footer__list .ux-menu-link a:hover {
  color: var(--primary-color);
}

.footer__title {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}

.footer__title.list a {
  white-space: nowrap;
}

.footer__title a {
  color: inherit;
}

.footer__title a:hover {
  color: var(--primary-color);
}

.footer__title.list a:not(:last-child):after {
  content: "/";
  color: #000;
  margin-left: 3px;
}

.footer__copyright {
  font-size: 13px;
  color: #888888;
  margin-bottom: 0;
}

.backtotop {
  display: inline-block;
  position: absolute;
  top: 50px;
  right: 80px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  color: #888888;
  z-index: 9;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.backtotop img {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 6px;
}

.cta-book {
  position: fixed;
  z-index: 3;
  top: 50%;
  left: 25px;
  background-color: var(--primary-color);
  height: 50px;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.cta-book:hover {
  background-color: rgba(219, 102, 90, 0.8);
}

.cta-book span {
  top: 0;
  left: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  height: 50px;
  width: 160px;
  line-height: 50px;
  letter-spacing: 0.5px;
  padding: 0 20px;
}

/******* HEADER *******/
.header__iconmenu {
  text-align: center;
  cursor: pointer;
  margin-top: 7px;
}

.wn-home .header__iconmenu svg path {
  fill: #fff;
}

.wn-home #header .header-bg-container .header-bg-color {
  background-color: var(--primary-color);
}

.wn-home .nav > li > a {
  color: #fff !important;
}

.wn-home .checkbox-language li a {
  color: rgba(255, 255, 255, 0.6);
}

.wn-home .checkbox-language li.current-lang a {
  color: #fff;
}

.wn-home #logo .header-logo-dark {
  display: block !important;
}

.wn-home #logo .header-logo {
  display: none !important;
}

.wn-home .header-vertical-menu__opener {
  background-color: var(--primary-color);
}

.wn-home .header-vertical-menu__opener .header-vertical-menu__title,
.wn-home .header-vertical-menu__opener i {
  color: #fff;
}

.wn-home .header__login > a,
.wn-home .header__login:hover > a {
  color: #fff;
}

.headermenu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  background-color: var(--primary-color);
  padding: 0 28px;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}

.headermenu.headermenu--active {
  visibility: visible;
  opacity: 1;
}

.headermenu__close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}

.headermenu__wrap .f-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.headermenu__wrap .f-list a {
  white-space: nowrap;
}

.headermenu__wrap .f-list a:not(:last-child):after {
  content: "/";
  margin-right: 5px;
  margin-left: 3px;
}

.headermenu__wrap .checkbox-language a {
  color: #fbaba3;
}

.headermenu__wrap .checkbox-language a.current {
  color: #fff;
}

.headermenu__wrap .checkbox-language a:not(:last-child):after {
  color: #fff;
}

.headermenu__info .f-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.headermenu__info .f-info {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
}

.headermenu__info .f-info li,
.headermenu__info .f-info li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.headermenu__info .f-info li + li {
  margin-top: 15px;
}

.headermenu__info .f-list {
  font-size: 15px;
  line-height: 1.53;
}

.headermenu__info .f-list a {
  font-weight: 500;
  color: #fff;
}

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

.headermenu__menu {
  margin-bottom: 60px;
}

.headermenu__menu .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.headermenu__menu .menu-list a {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
}

.headermenu__menu .menu-list > li + li {
  margin-top: 70px;
}

.headermenu__menu .menu-list > li > a {
  color: #fff;
}

.headermenu__menu .menu-list .f-list a {
  color: #fbaba3;
}

.headermenu__menu .menu-list .f-list a:hover {
  color: #fff;
}

.headermenu_submenu {
  max-width: 340px;
}

.headermenu_submenu .f-list {
  font-size: 18px;
  line-height: 1.42;
}

.headermenu_submenu .f-list a {
  color: #fff;
}

.headermenu__login {
  margin-bottom: 40px;
}

.headermenu__login > a {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
  color: #fff;
}

.headermenu__login > a img {
  max-width: 20px;
}

.headermenu__login-content {
  position: absolute;
  background-color: #db665a;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.headermenu__login-content.show-content {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.headermenu__login-content .f-scroll {
  height: 100%;
  overflow-y: auto;
}

.headermenu__login-content .f-back-icon {
  position: absolute;
}

.headermenu__login-content .f-back-icon img {
  max-width: 30px;
}

.headermenu__login-content h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.headermenu__login-content ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.headermenu__login-content ul a {
  display: block;
  font-size: 15px;
  color: #fff;
  display: block;
  padding: 20px 0;
}

.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  position: relative;
}

.header__login a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.header__login a:hover {
  color: #db665a;
}

.header__login:hover .header__login-submenu {
  opacity: 1;
  visibility: visible;
}

.header__login-submenu {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 280px;
  background-color: #fff;
  text-align: left;
  max-height: 305px;
  overflow-y: auto;
  border: 1px solid #d7d7d7;
  border-top: 1px solid #d7d7d7;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__login-submenu::-webkit-scrollbar {
  width: 5px;
}

.header__login-submenu::-webkit-scrollbar-track {
  background-color: #d7d7d7;
}

.header__login-submenu::-webkit-scrollbar-thumb {
  background: #888;
}

.header__login-submenu::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

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

.header__login-submenu ul li + li {
  border-top: 1px solid #d7d7d7;
}

.header__login-submenu ul a {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #4a4a4a;
  padding: 15px 30px;
}

.header__login-submenu ul a:hover {
  color: #db665a;
}

/******* END HEADER *******/
/******* LOCATION *******/
.section-first__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 100px;
}

.section-first__title span {
  color: var(--primary-color);
}

.location-working-filter {
  margin-bottom: 80px;
}

.location-working-filter .f__filter {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  padding-bottom: 30px;
}

.location-working-filter .f__filter li {
  display: inline-block;
  margin-right: 30px;
}

.location-working-filter .f__filter li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #a9a9a9;
}

.location-working-filter .f__filter li.current a,
.location-working-filter .f__filter li:hover a {
  color: #000;
}

.location-working-filter .f-list__item {
  display: none;
}

.location-working-filter .f-list__item.show {
  display: block;
}

.location-working-filter .f-list__header {
  position: relative;
  border-top: 1px solid #d7d7d7;
  padding-top: 30px;
  padding-bottom: 5px;
}

.location-working-filter .f-list .f-list__header.wow {
  opacity: 0;
}

.location-working-filter .f-list .f-list__header.wow.effect {
  opacity: 1;
}

.location-working-filter .f-list__title {
  font-size: 58px;
  font-weight: normal;
  line-height: 0.9;
  letter-spacing: -2.5px;
  color: #d7d7d7;
  cursor: pointer;
  margin-bottom: 0;
}

.location-working-filter .f-list .f-list__header.wow .f-list__title .word {
  position: relative;
  z-index: 1;
}

.location-working-filter
  .f-list
  .f-list__header.wow.effect
  .f-list__title.splitting
  .char {
  -webkit-animation: locationWorkingEffect 0.5s cubic-bezier(0.5, 0, 0.5, 1)
    both;
  animation: locationWorkingEffect 0.5s cubic-bezier(0.5, 0, 0.5, 1) both;
  -webkit-animation-delay: calc(80ms * var(--char-index));
  animation-delay: calc(80ms * var(--char-index));
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-working-filter
  .f-list
  .f-list__header.wow.effect
  .f-list__title.splitting:hover
  .char {
  color: #000;
  -webkit-transition-delay: calc(40ms * var(--char-index));
  -o-transition-delay: calc(40ms * var(--char-index));
  transition-delay: calc(40ms * var(--char-index));
}

.location-working-filter .f-list__count {
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 34px;
  line-height: 1;
  color: #d7d7d7;
}

.location-working-filter .f-list__count img {
  display: none;
  max-width: 25px;
}

.location-working-filter .f-list__item.show-child .f-list__count span {
  display: none;
}

.location-working-filter .f-list__item.show-child .f-list__count img {
  display: inline-block;
}

.location-working-filter .f-list__accordion {
  display: none;
  max-width: 85%;
  margin-left: auto;
  padding: 40px 0 10px;
}

.location-working-filter .f-list__accordion .location-working,
.location-working-filter .f-list__accordion .cta-hotline {
  margin-bottom: 30px;
}

.location-working__img {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.location-working__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.location-working__img:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.location-working__img:after {
  content: "";
  display: block;
  padding-top: 62%;
}

.location-working__title {
  font-size: 21px;
  margin-bottom: 10px;
}

.location-working__comingsoon {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e74c3c;
  display: inline-block;
  color: white;
  padding: 0px 8px;
  font-size: 14px;
  border-radius: 5px;
}

.location-working__text {
  font-size: 16px;
  max-width: 100%;
  margin: 0;
}

.slogan {
  margin-bottom: 40px;
}

.slogan p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: #000;
  margin-bottom: 60px;
}

/******* END LOCATION *******/

/******* LOCATION DETAIL *******/
body #wrapper .section-space-detail {
  padding-top: 0;
}

.space-detail__comingsoon {
  background-color: #e74c3c;
  display: inline-block;
  color: white;
  padding: 0px 8px;
  font-size: 14px;
  border-radius: 5px;
}

.space-detail__title {
  font-size: 40px;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

.widget-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget-contact li {
  font-size: 15px;
}

.widget-contact li b {
  display: block;
  font-weight: 500;
  color: #000;
}

.widget-contact li a {
  display: block;
  color: #4a4a4a;
}

.widget-contact li a:hover {
  color: #db665a;
}

.widget-contact--style2 li {
  border-top: 1px solid #d7d7d7;
  padding: 10px 0 !important;
  margin: 0 !important;
}

.widget-contact--style2 li b {
  color: #a9a9a9;
}

.widget-contact--style2 li p,
.widget-contact--style2 li a {
  margin: 0;
  color: #000;
}

.widget-contact--style2 li:last-child {
  border-bottom: 1px solid #d7d7d7;
}

.space-detail__entry .f-entry {
  font-size: 20px;
}

.workspace-packages-wrap .f-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.workspace-packages-wrap .item {
  border-top: 1px solid #d7d7d7;
  padding: 40px 0;
}

.workspace-packages-wrap .item:nth-child(2) {
  border-color: #000;
}

.packages__img {
  margin-bottom: 15px;
}

.packages__body {
  position: relative;
}

.packages__img img {
  width: 100%;
}

.packages__title {
  font-size: 24px;
  margin-bottom: 0;
}

.packages__price {
  font-size: 17px;
  color: #888888;
  margin-bottom: 25px;
}

.packages__text {
  margin-bottom: 10px;
}

.packages__text ul {
  margin-left: 19px;
}

.packages__text li {
  margin-bottom: 0;
}

.packages__text h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.packages__book {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
}

.packages__short .btn-toggle {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #4a4a4a;
}

.shortTextJs .shortTextJs-entry {
  display: none;
}

.shortTextJs .btn-toggle {
  display: inline-block;
  cursor: pointer;
}

.shortTextJs .btn-toggle .up {
  display: none;
}

.shortTextJs.active .btn-toggle .down {
  display: none;
}

.shortTextJs.active .btn-toggle .up {
  display: inline-block;
}

.space-detail-slide {
  padding: 0;
}

.space-detail-slide .item {
  position: relative;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.space-detail-slide .item:after {
  content: "";
  display: block;
  padding-top: 96%;
}

.space-detail-slide .item-content {
  position: absolute;
  left: 0;
  bottom: 40px;
  right: 0;
}

.space-detail-slide .item-text {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}

.space-detail-slide .swiper-pagination-custom {
  position: absolute;
  z-index: 1;
  bottom: 30%;
  left: 60px;
  font-size: 15px;
  color: #fff;
}

.space-detail-slide .swiper-button-next-custom {
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.amenitie {
  position: relative;
  height: 100%;
  border-top: 1px solid #d7d7d7;
  padding-bottom: 45px;
}

.amenitie .fix {
  position: relative;
  padding-top: 25px;
  height: 100%;
}

.amenitie__text {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 100px;
}

.amenitie__text em {
  display: block;
  font-style: normal;
  color: #888888;
}

.amenitie.more .amenitie__text {
  color: var(--primary-color);
}

.amenitie__icon {
  position: absolute;
  left: 0;
  bottom: 0;
}

/******* END LOCATION DETAIL *******/
/******* ABOUT US *******/
.section-about__title {
  font-size: 50px;
  line-height: 1.2;
  margin-top: 0;
}

.section-about__entry {
  font-size: 20px;
}

.section-about__entry h2 {
  font-size: 20px;
  margin-bottom: 40px;
}

#wrapper .section-about-philosophy {
  padding-top: 0;
}

.philosophy-wrapper__title {
  font-size: 17px;
  color: #4a4a4a;
  margin-bottom: 25px;
}

.philosophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.philosophy-list .philosophy {
  border-top: 1px solid #d7d7d7;
  padding: 25px 0;
}

.philosophy-list .philosophy:first-child {
  border-color: #000;
}

.philosophy-list .philosophy .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.philosophy-list .philosophy__img {
  margin-bottom: 20px;
}

.philosophy-list .philosophy__body {
  position: relative;
  padding-right: 60px;
}

.philosophy-list .philosophy__title {
  font-size: 24px;
  line-height: 1.28;
  max-width: 250px;
  margin-bottom: 20px;
}

.philosophy-list .philosophy__count {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  color: #888888;
}

.philosophy-list .philosophy .btn-link-dot {
  color: #888888;
  font-size: 15px;
}

.philosophy-list .philosophy .btn-link-dot:before,
.philosophy-list .philosophy .btn-link-dot:after {
  background-color: #888888;
}

.title-2 {
  border-top: 1px solid #000;
  padding-top: 50px;
  margin-bottom: 20px;
}

.title-2__subtitle {
  display: inline-block;
  font-size: 17px;
  color: #4a4a4a;
}

.title-2__title {
  font-size: 34px;
  line-height: 1.35;
  margin-top: 20px;
}

.testimonial-wrap .swiper-pagination-custom {
  position: absolute;
  z-index: 1;
}

.testimonial-wrap .swiper-pagination-custom .swiper-pagination-bullet {
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background-color: #dadada;
  opacity: 1;
  margin: 0 6px;
}

.testimonial-wrap .swiper-pagination-custom .swiper-pagination-bullet-active {
  background-color: #000;
}

.testimonial__body {
  margin-bottom: 55px;
}

.testimonial__quote {
  position: relative;
  font-size: 34px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.47;
}

.testimonial__position {
  font-weight: 500;
  color: #888888;
  margin: 0;
}

.testimonial__img {
  position: relative;
}

.testimonial__img span {
  display: block;
  margin-top: -45%;
  margin-left: -35%;
  max-width: 60%;
}

#wrapper .section-about-ctaText {
  padding-top: 0;
}

.section-about-ctaText .cta-text {
  border-color: #d7d7d7;
}

.section-about-ctaText .cta-text + .cta-text {
  margin-top: 60px;
}

#wrapper .section-about-partners,
#wrapper .section-about-client {
  padding-top: 0;
}

.client-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.client-wrapper .item {
  width: 50%;
}

.client {
  position: relative;
  margin-bottom: 15px;
}

.client:before {
  content: "";
  display: block;
  padding-top: 46%;
}

.client__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/******* END ABOUT US *******/
/******* SERVICE *******/
.section-first__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 100px;
}

.service-full {
  margin-bottom: 80px;
}

.service-full__img {
  margin-bottom: 30px;
}

.service-full__img img {
  width: 100%;
}

.service-full__body.wow {
  opacity: 0;
}

.service-full__body.wow.effect {
  opacity: 1;
}

.service-full__title {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.21;
  margin-bottom: 10px;
}

.service-full__count {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.service-full__text {
  margin-bottom: 20px;
}

#wrapper .section-video {
  padding: 0;
  overflow: hidden;
}

.section-video .f-btn {
  position: absolute !important;
  z-index: 1;
  top: 50%;
  left: 50%;
  max-width: 35px;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.section-video:after {
  content: "";
  display: block;
  padding-top: 40%;
}

.slogan-2 {
  margin-bottom: 40px;
}

.slogan-2__text {
  font-size: 50px;
  font-weight: normal;
  line-height: 1.1;
}

.section-service-last .service-page-cta .cta-text:first-child {
  padding-top: 0;
  border-top: 0;
  margin-bottom: 40px;
}

.section-service-last .service-page-cta .cta-text:not(:last-child) {
  margin-bottom: 60px;
}

.splitting.wow.effect .char,
.service-full__body.wow.effect .splitting .char {
  -webkit-animation: textFadeInUp 1s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation: textFadeInUp 1s cubic-bezier(0.5, 0, 0.5, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

/******* END SERVICE *******/
/******* CONTACT US *******/
.section-first__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 100px;
}

.contact-form-booking .booking {
  max-width: 535px;
  margin-bottom: 60px;
}

.contact-form-booking .booking__content {
  margin-top: 40px;
}

.contact-form-booking .booking__content .booking-edit {
  display: block;
  background-color: #ffe9e6;
  padding: 25px 20px;
}

.contact-form-booking .booking__content .booking-edit .f-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-form-booking .form-item {
  position: relative;
}

.contact-form-booking .booking__content .booking-edit .form-item {
  margin-bottom: 30px;
}

.contact-form-booking .booking__content .booking-edit .form-item label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #f89a90;
}

.contact-form-booking
  .booking__content
  .booking-edit
  .form-item
  select.wpcf7-select {
  border-bottom: 1px solid #fbaba3;
  background-image: url(./assets/images/icon-booking-contact.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 25px;
  padding-left: 0;
}

.contact-form-booking .booking__content .booking-edit .wpcf7-form-control,
.contact-form-booking .booking__content .booking-edit .input-number {
  font-size: 18px;
}

.contact-form-booking .form-item .wpcf7-form-control {
  color: #000;
  border: 0;
  border-bottom: 1px solid #a9a9a9;
  background-color: transparent;
  margin: 0;
  box-shadow: none;
}

.contact-form-booking .form-item.f-location {
  width: 100%;
}

.contact-form-booking .booking__content .booking-edit .form-item.f-user {
  margin-right: 25px;
}

.contact-form-booking .form-item .input-number p {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #fbaba3;
  gap: 8px;
  align-items: center;
}

.contact-form-booking .form-item .input-number .wpcf7-form-control {
  min-width: 30px;
  max-width: 30px;
  border: 0;
  padding: 0;
}

.contact-form-booking .contact-form {
  max-width: 495px;
}

.contact-form-booking .contact-form .form-item {
  margin-bottom: 45px;
  position: relative;
}

.contact-form-booking .contact-form .form-item .wpcf7-text,
.contact-form-booking .contact-form .form-item .wpcf7-phonetext,
.contact-form-booking .contact-form .form-item .wpcf7-textarea {
  font-size: 28px;
  height: 55px;
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: 1px solid #b2b2b2;
  padding: 0;
}

.contact-form-booking input[type="submit"] {
  margin: 0;
  padding: 0;
  background: none;
  letter-spacing: 0;
}

.contact-form-booking .wpcf7-submit.wpcf7-form-control {
  background-color: transparent;
  padding: 0;
  letter-spacing: 0;
  background-image: url(./assets/images/icon-contact-right.svg);
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--primary-color);
  text-transform: none;
  border: none;
}

.contact-form-booking .wpcf7-submit.wpcf7-form-control:hover {
  box-shadow: none;
  padding-right: 15px;
}

.contact-page__info {
  margin-top: 70px;
  position: sticky;
  top: 150px;
}

.location-list .item {
  border-top: 1px solid #d7d7d7;
  padding-top: 30px;
}

.location-list .item:first-child {
  border-color: #000;
}

.location-list .item .f-title {
  font-size: 15px;
  color: #db665a;
  margin-bottom: 35px;
}

.location-list .item .f-wrap {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.location-list .item .f-wrap h3 {
  font-size: inherit;
  margin-bottom: 10px;
}

/******* END CONTACT US *******/
/******* SERVICE DETAIL *******/
#wrapper .section-service-detail {
  padding-top: 0;
}

.service-detail .service-detail__title {
  font-size: 45px;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 50px;
}

.service-detail .service-detail__featured {
  font-size: 18px;
  color: #000;
  line-height: 1.47;
  margin-bottom: 80px;
}

.service-detail .title-2 {
  margin-bottom: 30px;
}

.service-detail .service-detail__slogan {
  line-height: 1.34;
  margin-bottom: 25px;
}

.service-detail .service-detail__slogan span {
  color: var(--primary-color);
}

.service-detail .service-detail__faq {
  max-width: 370px;
  margin-left: auto;
}

.accordion .accordion-title,
.accordion .accordion-title.active {
  border-top: 1px solid #d7d7d7;
}

.accordion .accordion-item:last-child .accordion-title {
  border-bottom: 1px solid #d7d7d7;
}

.accordion .accordion-title,
.accordion .accordion-inner {
  background-color: transparent;
  padding: 0;
}

.accordion .accordion-title {
  position: relative;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -1px;
  color: #000;
  padding: 10px 0;
}

.accordion .accordion-title.active {
  color: var(--primary-color);
  font-weight: 400;
}

.accordion .toggle {
  font-size: 16px;
  margin: 0;
  left: -8px;
}

.accordion .accordion-inner {
  padding-top: 10px;
  padding-left: 0;
  padding-bottom: 20px;
  font-size: 17px;
  overflow: hidden;
}

.process-accordion .accordion__header .f-count {
  position: absolute;
  right: 0;
  bottom: 7px;
  font-size: 15px;
  color: #a9a9a9;
}

.accordion-btn-link {
  letter-spacing: 0;
}

.service-detail .service-detail__spacing {
  height: 100px;
}

.service-detail .service-detail__spacing2 {
  height: 60px;
}

.section-custom-box3__bg {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-custom-box3__bg:after {
  content: "";
  display: block;
  padding-top: 84%;
}

.section-custom-box3__inner {
  position: relative;
  z-index: 1;
}

.section-custom-box3__inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #fff;
}

.room-min {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
  margin-bottom: 20px;
}

.room-min:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.room-min__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.room-min__body:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.85))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.room-min__body .fix {
  -webkit-transform: translateY(calc(100% - 40px));
  -ms-transform: translateY(calc(100% - 40px));
  transform: translateY(calc(100% - 40px));
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.room-min__title {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.room-min__title,
.room-min__text {
  color: #fff;
}

.room-min__text {
  font-size: 15px;
  margin-bottom: 0;
  visibility: hidden;
  opacity: 0;
}

.room-min:hover .fix {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.room-min:hover .room-min__body:after {
  visibility: visible;
  opacity: 1;
}

.room-min:hover .room-min__text {
  visibility: visible;
  opacity: 1;
}

#wrapper .section-service-relate {
  padding: 0;
}

.section-service-relate .item {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section-service-relate .item .item-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--primary-color);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-service-relate .item h3 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font-size: 15px;
  text-align: center;
  color: #fff;
  padding: 0 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-service-relate .item:after {
  content: "";
  display: block;
  padding-top: 70%;
}

.section-service-relate .item:hover .item-bg {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.counter-text {
  margin-bottom: 80px;
}

.counter-text__subtitle {
  display: block;
  font-size: 18px;
  color: #000;
  letter-spacing: -0.64px;
  margin-bottom: 5px;
}

.counter-text__counter {
  display: inline-block;
  position: relative;
  font-size: 70px;
  color: #000;
  line-height: 0.85;
  letter-spacing: -6px;
  padding-right: 35px;
  margin-bottom: 30px;
}

.counter-text__counter small {
  position: absolute;
  top: 14px;
  right: 0;
  font-size: 34px;
  font-weight: 500;
}

.counter-text__text {
  max-width: 250px;
  margin: 0;
}

.service-detail .service-detail__textbox .f-title {
  font-size: 34px;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 25px;
}

.service-detail .service-detail__textbox ul {
  margin-left: 19px;
}

.service-detail .service-detail__textbox ul li h2 {
  font-size: inherit;
}

/******* END SERVICE DETAIL *******/
/******* POST DETAIL *******/
.section-post__widget.post-related {
  max-width: 220px;
  position: sticky;
  top: 150px;
}

.section-post__widget .w-title {
  font-size: 17px;
  margin-bottom: 15px;
}

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

.section-post__widget.post-related ul li {
  border-top: 1px solid #d7d7d7;
}

.section-post__widget.post-related ul li h3 {
  display: block;
  font-size: 15px;
  color: #000;
  padding: 10px 0;
}

.section-post__header .f-date .f-date__social {
  margin-top: 30px;
}

.section-post__header .f-date .f-date__social a {
  display: inline-block;
  margin-right: 10px;
  width: 20px;
}

.section-post__detail .f-entry {
  font-size: 19px;
}

.section-post__detail .f-entry .f-featured {
  margin-top: 0;
  margin-bottom: 35px;
}

.section-post__detail .f-entry h1,
.section-post__detail .f-entry h2,
.section-post__detail .f-entry h3 {
  margin: 20px 0;
}

.section-post__detail .f-entry h4,
.section-post__detail .f-entry h5,
.section-post__detail .f-entry h6 {
  margin: 15px 0;
}

.section-post__detail .f-entry h1 {
  font-size: 20px;
}

.section-post__detail .f-entry h2 {
  font-size: 18px;
}

.section-post__detail .f-entry h3 {
  font-size: 16px;
}

.section-post__detail .f-entry h4 {
  font-size: 14px;
}

.section-post__detail .f-entry h5 {
  font-size: 12px;
}

.section-post__detail .f-entry h6 {
  font-size: 10px;
}

.section-post__detail .f-entry figure {
  margin: 40px 0;
}

blockquote {
  position: relative;
  border-left: none;
  border-top: 1px solid #02153c;
  border-bottom: 1px solid #02153c;
  padding: 30px 0;
  margin: 40px 0;
}

blockquote p {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 1.57;
}

.section-post__detail .f-footer {
  margin-top: 80px;
}

.section-post__detail .f-footer .tags {
  font-weight: 500;
  color: #888888;
}

.section-post__detail .f-footer .tags a {
  white-space: nowrap;
  color: inherit;
}

.section-post__detail .f-footer .social {
  margin-top: 15px;
}

.section-post__detail .f-footer .social a {
  display: inline-block;
  width: 20px;
}

.section-post__detail .f-footer .social a:not(:last-child) {
  margin-right: 10px;
}

.section-post__relate {
  border-top: 1px solid #000;
  padding-top: 30px;
  margin-top: 30px;
}

.section-post__relate .f-title {
  font-size: 16px;
  margin-bottom: 40px;
}

.post-min img {
  width: 100%;
  margin-bottom: 30px;
}

.post-min h3 {
  font-size: 19px;
  font-weight: normal;
  margin-bottom: 10px;
}

.post-min span {
  font-weight: 500;
  color: #888888;
}

/******* END POST DETAIL *******/

/************** RESPONSIVE MIN-768px **************/
@media (min-width: 768px) {
  .section-banner .bg,
  .section-banner-2 .bg,
  .section-banner-3 .bg {
    background-attachment: fixed;
  }

  .hero {
    height: 560px;
  }

  .hero__content {
    position: absolute;
    z-index: 1;
    top: 22%;
    left: 0;
    right: 0;
  }

  .hero__title {
    font-size: 40px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.59);
  }

  .hero__content .scroll-down {
    display: none;
  }

  .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .section-box-custom .section-content {
    padding-left: 100px;
  }

  .section-box-custom .section-content:before {
    top: -99px;
    height: 100px;
  }

  .section-box-custom .workspace__desc {
    margin-bottom: 80px;
  }

  .section-box-custom .service-home .service-home__subtitle {
    margin-bottom: 50px;
  }

  .service-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .service-horizontal__img,
  .service-horizontal__body {
    width: 50%;
  }

  .service-horizontal__body {
    padding-left: 40px;
    padding-right: 20px;
  }

  .section-banner:after {
    padding-top: 41%;
  }

  .title__title {
    line-height: 1.18;
  }

  .section-custom-box2__bg:after {
    padding-top: 55%;
  }

  .section-post__header .f-date {
    border-right: 1px solid #d7d7d7;
    padding-right: 20px;
  }

  .section-post__list {
    margin-bottom: 60px;
  }

  .section-post__list li {
    padding: 40px 0;
  }

  .section-post__list li img {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .section-post__list li .f-wrap:hover img {
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  .section-post__list li .f-body__title {
    font-size: 22px;
    line-height: 1.45;
  }

  .section-post__list li span {
    font-size: 17px;
  }

  .footer {
    padding: 30px !important;
  }

  .footer__list .ux-menu-link a {
    padding-left: 15px;
  }

  .footer__list .ux-menu-link:not(:last-child) {
    margin-right: 18px !important;
  }

  .footer__list .ux-menu-link a:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #d7d7d7;
  }

  /******* HEADER *******/
  .headermenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 40px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .headermenu__wrap {
    position: relative;
    padding-left: 300px;
  }

  .headermenu__wrap .checkbox-language {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .headermenu__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
  }

  .headermenu__menu .menu-list a {
    font-size: 30px;
  }

  .headermenu_submenu .f-list {
    font-size: 19px;
  }

  .headermenu {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .headermenu .headermenu__info,
  .headermenu .headermenu__menu,
  .headermenu .headermenu_submenu,
  .headermenu .headermenu__login,
  .headermenu .checkbox-language {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .headermenu .headermenu__info,
  .headermenu .checkbox-language {
    -webkit-transform: translateX(-70px);
    -ms-transform: translateX(-70px);
    transform: translateX(-70px);
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .headermenu .headermenu__menu,
  .headermenu .headermenu__login,
  .headermenu .headermenu_submenu {
    -webkit-transform: translateX(70px);
    -ms-transform: translateX(70px);
    transform: translateX(70px);
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .headermenu.headermenu--active .headermenu__info,
  .headermenu.headermenu--active .headermenu__menu,
  .headermenu.headermenu--active .headermenu__login,
  .headermenu.headermenu--active .headermenu_submenu,
  .headermenu.headermenu--active .checkbox-language {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  /******* END HEADER *******/
  /******* LOCATION *******/
  .location-working-filter .f-list__title {
    font-size: 70px;
  }

  .location-working-filter .f-list__accordion {
    padding: 70px 0 0;
  }

  .location-working-filter .f-list__accordion .location-working,
  .location-working-filter .f-list__accordion .cta-hotline {
    margin-bottom: 70px;
  }

  .location-working__img {
    margin-bottom: 30px;
  }

  .location-working__title {
    margin-bottom: 15px;
  }

  /******* END LOCATION *******/
  /******* LOCATION DETAIL *******/
  .space-detail__title {
    font-size: 55px;
    margin-bottom: 40px;
  }

  .workspace-packages-wrap .f-title {
    font-size: 34px;
    margin-bottom: 55px;
  }

  .packages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .packages__img {
    width: 300px;
    margin-bottom: 0;
  }

  .packages__body {
    width: calc(100% - 300px);
    padding-left: 30px;
  }

  .packages__body .fix {
    max-width: 460px;
  }

  .amenitie {
    padding-bottom: 60px;
  }

  /******* END LOCATION DETAIL *******/
  /******* ABOUT US *******/
  .section-about__title {
    font-size: 60px;
    margin-bottom: 40px;
  }

  .section-about__entry h2 {
    font-size: 24px;
  }

  .philosophy-wrapper__title {
    margin-bottom: 40px;
  }

  .philosophy-list .philosophy {
    padding: 40px 0;
    padding-left: 50px;
  }

  .philosophy-list .philosophy__img {
    margin-bottom: 0;
  }

  .philosophy-list .philosophy__title {
    font-size: 28px;
  }

  .testimonial-wrap {
    position: relative;
  }

  .testimonial-wrap .swiper-container {
    position: static;
  }

  .testimonial-wrap .swiper-pagination-custom {
    top: -20px;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    line-height: 1;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .testimonial-wrap .swiper-slide {
    opacity: 0 !important;
  }

  .testimonial__body {
    padding-right: 50px;
    margin-bottom: 0;
  }

  .testimonial-wrap .swiper-slide .testimonial__body {
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
  }

  .testimonial-wrap .swiper-slide .testimonial__body,
  .testimonial-wrap .swiper-slide .testimonial__img {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 0;
  }

  .testimonial__quote {
    color: #000;
  }

  .testimonial-wrap .swiper-slide .testimonial__body,
  .testimonial-wrap .swiper-slide .testimonial__img {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 0;
  }

  .testimonial-wrap .swiper-slide .testimonial__img {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .testimonial__img {
    max-width: 320px;
    margin-left: auto;
  }

  .client-wrapper .item {
    width: 25%;
  }

  /******* END ABOUT US *******/
  /******* SERVICE *******/
  .service-full {
    padding: 0 40px;
  }

  .service-full .container {
    padding: 0;
    max-width: 100%;
  }

  .service-full__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .service-full__header {
    width: 45%;
  }

  .service-full__title {
    font-size: 32px;
  }

  .service-full__count {
    margin-left: 7px;
  }

  .service-full__content {
    width: 55%;
    padding-left: 20px;
  }

  .section-video .f-btn {
    max-width: 50px;
  }

  /******* END SERVICE *******/
  /******* CONTACT US *******/
  .contact-form-booking .booking__content .booking-edit {
    padding: 35px 30px;
  }

  .contact-form-booking .booking__content .booking-edit .wpcf7-form-control,
  .contact-form-booking .booking__content .booking-edit .input-number span {
    font-size: 22px;
  }

  .contact-page__info {
    margin-top: 30px;
  }

  .location-list .item {
    padding-top: 50px;
  }

  .location-list .item .f-title {
    margin-bottom: 20px;
  }

  .location-list .item .f-wrap {
    margin-bottom: 50px;
    padding-right: 20px;
  }

  /******* END CONTACT US *******/
  /******* SERVICE DETAIL *******/
  .service-detail .service-detail__slogan {
    font-size: 22px;
  }

  .accordion .accordion-title {
    padding: 7px 10px;
    padding-left: 30px;
  }

  .accordion .accordion-inner {
    padding-left: 30px;
  }

  .section-custom-box3__bg {
    margin-left: 25px;
    margin-right: 25px;
  }

  .section-custom-box3__bg:after {
    padding-top: 45%;
  }

  .section-custom-box3__content {
    margin-top: -130px;
  }

  .section-custom-box3__inner {
    padding-top: 60px;
  }

  .section-custom-box3__inner:after {
    top: 0;
    left: 100px;
    width: 1920px;
    height: 100%;
  }

  .room-min {
    margin-bottom: 30px;
  }

  .section-service-relate .item h3 {
    font-size: 24px;
  }

  .section-service-relate .item:after {
    padding-top: 55%;
  }

  .accordion-btn-link {
    margin-left: 10px;
  }

  /******* END SERVICE DETAIL *******/
  /******* POST DETAIL *******/
  .section-post__widget {
    max-width: 250px;
  }

  .section-post__detail .f-entry .f-featured {
    margin-bottom: 80px;
  }

  .section-post__detail .f-entry h1 {
    font-size: 26px;
  }

  .section-post__detail .f-entry h2 {
    font-size: 24px;
  }

  .section-post__detail .f-entry h3 {
    font-size: 22px;
  }

  .section-post__detail .f-entry h4 {
    font-size: 20px;
  }

  .section-post__detail .f-entry h5 {
    font-size: 18px;
  }

  .section-post__detail .f-entry h6 {
    font-size: 16px;
  }

  blockquote p {
    font-size: 25px;
  }

  .section-post__detail .f-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .section-post__detail .f-footer .tags {
    max-width: 400px;
  }

  .section-post__detail .f-footer .social {
    margin-top: 0;
  }

  .section-post__relate {
    padding-top: 80px;
  }

  /******* END POST DETAIL *******/
}

/************** END RESPONSIVE MIN-768px **************/

/************** RESPONSIVE MIN-992px **************/
@media (min-width: 992px) {
  .hero {
    height: 650px;
  }

  .hero__title {
    font-size: 55px;
  }

  .section-box-custom .workspace__slide .item {
    padding-bottom: 70px;
  }

  .section-box-custom .service-home {
    margin-top: 60px;
    padding-top: 40px;
  }

  .section-box-custom .service-home .service-home__subtitle {
    margin-bottom: 80px;
  }

  .section-box-custom .service-home .service-home__slide {
    margin-left: 90px;
  }

  .service-horizontal__body {
    padding-left: 70px;
    padding-right: 30px;
  }

  .service-horizontal__title {
    font-size: 35px;
    margin-bottom: 25px;
  }

  .coworking-space-masonry {
    overflow: hidden;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 25px;
  }

  .coworking-space-masonry .gallery-col {
    position: relative !important;
    display: block !important;
  }
	
	.coworking-space-masonry .gallery-col > .col-inner {
		width: 100%;
		height: 100%;
	}
	
	.coworking-space-masonry .box {
		height: 100%;
		display: flex;
		align-items: stretch;
		flex-direction: column;
	}
	
	.coworking-space-masonry .box-image {
		flex: 1;
		width: 100%;
	}
	
	.coworking-space-masonry .box-image img {
		height: 100%;
		object-fit: cover;
	}

  .coworking-space-masonry .box-text {
    font-size: 20px;
    margin-top: 5px;
  }

  .coworking-space-masonry .gallery-col:nth-child(1) {
    grid-row: span 3 / span 3;
  }

  .coworking-space-masonry .gallery-col:nth-child(2) {
  }

  .coworking-space-masonry .gallery-col:nth-child(3) {
    grid-column-start: 2;
    grid-row-start: 2;
  }

  .coworking-space-masonry .gallery-col:nth-child(4) {
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 1;
  }

  .coworking-space-masonry .gallery-col:nth-child(5) {
    grid-column: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 3;
  }

  .section-custom-box2__wrap:before {
    top: -79px;
    height: 80px;
  }

  .section-post__header .f-date {
    margin-right: 40px;
    padding-right: 20%;
  }

  .footer {
    padding: 40px !important;
  }

  /******* HEADER *******/
  .headermenu__menu {
    margin-bottom: 80px;
  }

  .headermenu__menu .menu-list a {
    font-size: 36px;
  }

  .headermenu__inner {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  /******* END HEADER *******/
  /******* LOCATION *******/
  .section-first__title {
    font-size: 55px;
  }

  .location-working-filter .f-list__header {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .location-working-filter .f-list__title {
    font-size: 120px;
  }

  .location-working-filter .f-list__accordion {
    padding: 100px 0 30px;
  }

  .slogan p {
    font-size: 34px;
    margin-bottom: 80px;
  }

  /******* END LOCATION *******/
  /******* LOCATION DETAIL *******/
  .space-detail__title {
    font-size: 65px;
    margin-bottom: 60px;
  }

  .packages__body {
    padding-left: 80px;
  }

  .space-detail-slide .item:after {
    padding-top: 40%;
  }

  /******* END LOCATION DETAIL *******/
  /******* ABOUT US *******/
  .section-about__title {
    font-size: 75px;
    margin-bottom: 60px;
  }

  .section-about__entry h2 {
    font-size: 28px;
  }

  .philosophy-list .philosophy {
    padding-left: 100px;
  }

  #wrapper .section-about-testimonial {
    padding: 100px 0;
  }

  .testimonial-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: -24px;
    width: 50px;
    height: 44px;
    background-image: url(./assets/images/icon-quote.svg);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .testimonial__body {
    padding-right: 70px;
  }

  #wrapper .section-about-partners {
    padding-bottom: 100px;
  }

  .client-wrapper .item {
    width: 20%;
  }

  /******* END ABOUT US *******/
  /******* SERVICE *******/
  .section-first__title {
    font-size: 55px;
  }

  .service-full__img {
    margin-bottom: 40px;
  }

  .service-full__body {
    padding-right: 30px;
  }

  .service-full__title {
    font-size: 45px;
  }

  .section-service-last .slogan-2 {
    margin-bottom: 0;
  }

  .section-service-last .service-page-cta {
    margin-top: -60px;
  }

  /******* END SERVICE *******/
  /******* CONTACT US *******/
  .section-first__title {
    font-size: 55px;
  }

  .contact-form-booking .booking__content .booking-edit {
    padding-right: 100px;
  }

  /******* END CONTACT US *******/
  /******* SERVICE DETAIL *******/
  .service-detail .service-detail__title {
    font-size: 75px;
  }

  .service-detail .service-detail__featured {
    font-size: 26px;
  }

  .service-detail .service-detail__slogan {
    font-size: 28px;
  }

  .section-custom-box3__bg {
    margin-left: 50px;
    margin-right: 50px;
  }

  .section-custom-box3__bg:after {
    padding-top: 37%;
  }

  .section-custom-box3__inner {
    padding-top: 85px;
  }

  .room-min {
    margin-bottom: 40px;
  }

  .room-min__body {
    padding: 30px;
  }

  .room-min__title {
    font-size: 24px;
  }

  .section-service-relate .item h3 {
    font-size: 28px;
  }

  .section-service-relate .item:after {
    padding-top: 40%;
  }

  .counter-text__counter {
    font-size: 100px;
  }

  /******* END SERVICE DETAIL *******/
  /******* POST DETAIL *******/
  blockquote {
    padding: 30px 11px;
    margin: 70px -45px;
  }

  blockquote p {
    font-size: 28px;
  }

  /******* END POST DETAIL *******/
}

/************** END RESPONSIVE MIN-992px **************/

/************** RESPONSIVE MIN-1260px **************/
@media (min-width: 1260px) {
  .hero {
    height: 800px;
  }

  .hero__title {
    font-size: 65px;
  }

  .home-spacing-1 {
    padding-bottom: 200px !important;
  }

  .section-box-custom .section-content {
    padding-left: 140px;
  }

  .section-box-custom .section-content:before {
    top: -140px;
    height: 140px;
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-prev-custom {
    left: -90px;
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-next-custom {
    right: -90px;
  }

  .service-horizontal__body {
    padding-left: 120px;
    padding-right: 0;
  }

  .title__title {
    font-size: 70px;
  }

  .cta-text {
    padding-left: 5px;
    padding-right: 5px;
  }

  .section-custom-box2__bg:after {
    padding-top: 42%;
  }

  .section-custom-box2__content {
    margin-top: -160px;
  }

  .section-custom-box2__wrap:before {
    top: -119px;
    height: 120px;
  }

  .section-post__header {
    margin-bottom: 100px;
  }

  .section-post__list li {
    padding: 35px 0 65px;
  }

  .section-post__list li img {
    width: 150px;
  }

  .section-post__list li .f-body {
    width: calc(100% - 150px);
    max-width: 510px;
    padding-right: 0;
  }

  .footer {
    padding: 60px !important;
  }

  .container-fixwidth__width {
    margin-left: auto;
    margin-right: 0;
  }

  .container-fixwidth__width .container {
    margin-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  /******* HEADER *******/
  .headermenu {
    padding: 0 70px;
  }

  .headermenu__wrap {
    padding-left: 200px;
  }

  .headermenu__inner {
    max-width: 60%;
  }

  .headermenu__login {
    display: none;
  }

  /******* END HEADER *******/
  /******* LOCATION *******/
  .location-working-filter {
    margin-bottom: 220px;
  }

  .location-working-filter .f-list__header {
    padding-top: 90px;
    padding-bottom: 0;
    margin-right: 110px;
  }

  .location-working-filter .f-list__title {
    font-size: 180px;
    letter-spacing: -10px;
  }

  .location-working-filter .f-list__count img {
    max-width: 60px;
  }

  /******* END LOCATION *******/
  /******* LOCATION DETAIL *******/
  .space-detail__title {
    font-size: 75px;
    margin-bottom: 80px;
  }

  .space-detail__entry .f-entry {
    font-size: 18px;
    padding-left: 45px;
  }

  .amenitie {
    padding-bottom: 80px;
  }

  /******* END LOCATION DETAIL *******/
  /******* ABOUT US *******/
  .section-about__title {
    margin-bottom: 100px;
  }

  .philosophy-list .philosophy {
    padding-left: 150px;
  }

  .testimonial-wrap {
    margin-top: 30px;
  }

  .testimonial-wrap .swiper-pagination-custom {
    top: -35px;
  }

  .testimonial__body {
    padding-right: 100px;
  }

  .testimonial__img span {
    margin-top: -45%;
    margin-left: -43%;
    max-width: 80%;
  }

  /******* END ABOUT US *******/
  /******* SERVICE *******/
  .section-service-first {
    padding-bottom: 100px;
  }

  .service-full {
    padding: 0 120px;
    margin-bottom: 140px;
  }

  .service-full__body {
    padding-right: 80px;
  }

  .service-full__header {
    max-width: calc(100% - 500px);
  }

  .service-full__title {
    font-size: 50px;
  }

  .service-full__content {
    max-width: 450px;
    padding-left: 0;
    padding-top: 15px;
  }

  .section-video .f-btn {
    max-width: 70px;
  }

  .section-service-last {
    padding-bottom: 200px;
  }

  /******* END SERVICE *******/
  /******* CONTACT US *******/
  .contact-page__info {
    margin-top: 70px;
  }

  /******* END CONTACT US *******/
  /******* SERVICE DETAIL *******/
  #wrapper .section-service-detail {
    padding-bottom: 100px;
  }

  .section-custom-box3__bg {
    margin-left: 100px;
    margin-right: 100px;
  }

  /******* END SERVICE DETAIL *******/
}

/************** END RESPONSIVE MIN-1260px **************/

/************** RESPONSIVE MIN-1500px **************/
@media (min-width: 1500px) {
  #wrapper .section-first {
    padding-top: 200px;
  }

  .hero {
    height: 1035px;
  }

  .hero__title {
    font-size: 87px;
  }

  .home-spacing-1 {
    padding-bottom: 300px !important;
  }

  .section-box-custom .workspace__slide .item {
    padding: 0 45px;
    padding-bottom: 100px;
  }

  .section-box-custom .workspace__slide .f-title h2 {
    font-size: 28px;
  }

  .section-box-custom .workspace__slide .f-img {
    aspect-ratio: 1.1;
  }

  .section-box-custom .workspace__slide .f-img img {
    height: 100%;
    object-fit: cover;
  }

  .section-box-custom .workspace__slide .swiper-button-prev-custom {
    left: 30px;
  }

  .section-box-custom .workspace__slide .swiper-button-next-custom {
    right: 30px;
  }

  .section-box-custom .service-home .service-home__subtitle {
    margin-bottom: 105px;
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-prev-custom {
    left: -160px;
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-next-custom {
    right: -160px;
  }

  .service-horizontal__body {
    padding-left: 160px;
  }

  .service-horizontal__counter {
    margin-bottom: 40px;
  }

  .service-horizontal__title {
    font-size: 40px;
  }

  .section-coworking-space {
    padding-top: 200px !important;
    padding-bottom: 300px !important;
  }

  .title__title {
    font-size: 80px;
  }

  .section-coworking-space .cta-text {
    margin-top: 170px;
    padding-left: 10px;
    padding-right: 45px;
  }

  .cta-text p {
    margin-bottom: 55px;
  }

  .cta-text a {
    font-size: 28px;
  }

  .section-post__header .f-body .title__title {
    font-size: 78px;
  }

  .footer {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }

  .footer__title {
    font-size: 21px;
  }

  .cta-book {
    left: 30px;
    height: 60px;
  }

  .cta-book span {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 0 30px;
  }

  /******* LOCATION *******/
  .section-first__title {
    font-size: 65px;
    letter-spacing: -2.03px;
    margin-bottom: 150px;
  }

  .location-working-filter .f-list__title {
    font-size: 240px;
  }

  .location-working-filter .f-list__count img {
    max-width: 90px;
  }

  /******* END LOCATION *******/
  /******* LOCATION DETAIL *******/
  .space-detail__title {
    font-size: 90px;
  }

  .space-detail__entry .f-entry {
    font-size: 21px;
    padding-left: 60px;
  }

  .space-detail-slide {
    padding: 0 100px;
  }

  /******* END LOCATION DETAIL *******/
  /******* ABOUT US *******/
  .section-about__title {
    font-size: 90px;
    margin-bottom: 160px;
  }

  .section-about__entry {
    font-size: 21px;
  }

  .section-about__entry h2 {
    font-size: 34px;
  }

  .philosophy-list .philosophy {
    padding-left: 240px;
  }

  .philosophy-list .philosophy__body {
    padding-right: 75px;
  }

  .section-about-testimonial .testimonial-wrap {
    margin-top: 40px;
  }

  .section-about-testimonial .testimonial-wrap .swiper-pagination-custom {
    top: -45px;
  }

  .testimonial__quote {
    margin-bottom: 40px;
  }

  #wrapper .section-about-ctaText {
    padding-bottom: 137px;
  }

  /******* END ABOUT US *******/
  /******* SERVICE *******/
  .service-full__body {
    padding-right: 100px;
  }

  .service-full__header {
    max-width: calc(100% - 600px);
  }

  .service-full__title {
    font-size: 70px;
    margin-bottom: 22px;
  }

  .service-full__content {
    padding-top: 25px;
  }

  .section-service-last {
    padding-top: 200px;
    padding-bottom: 280px;
  }

  .slogan-2__text {
    font-size: 62px;
  }

  /******* END SERVICE *******/
  /******* CONTACT US *******/
  .section-first__title {
    font-size: 65px;
    letter-spacing: -2.03px;
    margin-bottom: 150px;
  }

  .contact-page__info {
    margin-top: 100px;
  }

  /******* END CONTACT US *******/
  /******* SERVICE DETAIL *******/
  .service-detail .service-detail__title {
    font-size: 90px;
  }

  .service-detail .service-detail__featured {
    font-size: 34px;
  }

  .service-detail .service-detail__slogan {
    font-size: 33px;
  }

  .accordion .accordion-title {
    font-size: 28px;
  }

  .room-min__body .fix {
    max-width: 80%;
  }

  .room-min__title {
    font-size: 28px;
  }

  .room-min__text {
    font-size: 17px;
  }

  .counter-text__counter {
    font-size: 140px;
  }

  /******* END SERVICE DETAIL *******/
  /******* POST DETAIL *******/
  .section-post__detail .f-entry h2 {
    margin: 30px 0;
  }

  .section-post__detail .f-entry figure {
    margin: 60px 0;
  }

  .section-post__detail .f-footer {
    margin-top: 130px;
  }

  .section-post__relate {
    margin-right: -300px;
  }

  /******* END POST DETAIL *******/
}

/************** END RESPONSIVE MIN-1500px **************/

/************** RESPONSIVE MAX-992px **************/
@media (max-width: 991.98px) {
  .backtotop {
    display: none;
  }

  .coworking-space-masonry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }

  .coworking-space-masonry .gallery-col {
    width: 50%;
    padding: 0 10px !important;
    margin-bottom: 60px;
    flex-basis: initial;
  }

  .coworking-space-masonry .gallery-col:nth-child(2) {
    margin-top: 40px;
  }

  .coworking-space-masonry .gallery-col:nth-child(3) {
    margin-top: -90px;
  }

  .coworking-space-masonry .gallery-col:nth-child(5) {
    margin-top: -50px;
  }

  .section-coworking-space .cta-text {
    width: 100%;
    max-width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    padding-right: 20%;
  }

  .section-post__header .f-body .title__subtitle {
    margin-bottom: 20px;
  }

  .section-post__header .f-body .title__title {
    font-size: 45px;
  }

  .post-min {
    position: relative;
    padding-right: 130px;
    margin-bottom: 30px;
  }

  .post-min img {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
  }

  .post-min h3 {
    font-size: 17px;
  }
}

/************** END RESPONSIVE MAX-992px **************/

/************** RESPONSIVE MAX-768px **************/
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  body .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__content {
    margin-bottom: 30px;
  }

  .hero__content .scroll-down {
    display: inline-block;
    max-width: 25px;
    margin-top: 40px;
    float: right;
  }

  .hero__bg:after {
    content: "";
    display: block;
    padding-top: 150%;
  }

  #footer .checkbox-language {
    margin-top: 0;
    justify-content: flex-end;
  }

  .section-box-custom .section-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-box-custom .workspace__left .col-inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 100%;
  }

  .section-box-custom .workspace__slide {
    display: none;
  }

  .service-horizontal__img {
    margin-bottom: 30px;
  }

  .service-horizontal__counter {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    margin-bottom: 0;
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-prev-custom {
    top: 35%;
    left: 20px;
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-custom
    img {
    max-width: 25px;
    filter: brightness(0) invert(1);
  }

  .section-box-custom
    .service-home
    .service-home__slide
    .swiper-button-next-custom {
    top: 35%;
    right: 20px;
  }

  .section-coworking-space .title__title {
    font-size: 33px;
  }

  .section-coworking-space .section-content > .row > .col > .col-inner {
    padding: 0 10px;
  }

  .section-post-mobile .section-post__header {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 20px;
  }

  .section-post__header > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .section-post__header .f-body {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-post__header .f-body .title__title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1.2px;
  }

  .section-post__header .f-date .f-date__time {
    margin-bottom: 20px;
  }

  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer__list .ux-menu-link:not(:last-child) {
    margin-right: 20px !important;
  }

  .ux-logo {
    margin-bottom: 40px;
  }

  /******* HEADER *******/
  .headermenu__close {
    top: 30px;
    right: 28px;
  }

  .headermenu__info {
    max-width: 70%;
    margin-bottom: 70px;
  }

  .headermenu__info .f-logo {
    position: absolute;
    top: 30px;
    left: 28px;
    max-width: 100px;
  }

  .headermenu_submenu {
    margin-bottom: 50px;
  }

  .headermenu__login-content {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 30px;
    padding-top: 110px;
  }

  .headermenu__login-content .f-back-icon {
    top: 30px;
    right: 28px;
  }

  .headermenu__login-content .f-back-icon img {
    max-width: 25px;
  }

  /******* END HEADER *******/
  .section-custom-box2__wrap {
    margin-left: -28px;
    padding-left: 28px;
  }

  .section-space-detail .section-custom-box2__bg:after {
    padding-top: 110%;
  }

  .packages__book {
    top: auto;
    bottom: 0;
  }

  .amenitie__text {
    font-weight: 500;
    font-size: 16px;
  }

  .cta-book {
    display: none;
  }

  /******* ABOUT US *******/
  .testimonial__img {
    margin-left: 130px;
  }

  .testimonial__img span {
    max-width: 67%;
  }

  /******* END ABOUT US *******/
  /******* CONTACT *******/
  .contact-form-booking .booking__content {
    margin-top: 20px;
  }

  .contact-form-booking .booking__content .booking-edit .form-item {
    margin-bottom: 15px;
  }

  .contact-form-booking .contact-form .form-item {
    margin-bottom: 15px;
  }

  .contact-form-booking .booking {
    margin-bottom: 20px;
  }

  .contact-form-booking .booking__content .booking-edit .wpcf7-form-control,
  .contact-form-booking .booking__content .booking-edit .input-number {
    font-size: 16px;
  }

  .contact-form-booking .contact-form .form-item .wpcf7-textarea {
    min-height: 80px;
  }

  .contact-form-booking .contact-form .form-item .wpcf7-text,
  .contact-form-booking .contact-form .form-item .wpcf7-phonetext,
  .contact-form-booking .contact-form .form-item .wpcf7-textarea {
    height: 35px;
    font-size: 16px;
  }

  /******* END CONTACT *******/
  /******* SERVICE *******/
  .slogan-2__text {
    font-size: 33px;
  }

  /******* END SERVICE *******/
  /******* SERVICE DETAIL *******/
  .section-service-detail .section-custom-box2__bg:after {
    padding-top: 110%;
  }

  .service-detail .service-detail__title-wrap {
    position: absolute;
    top: -80px;
    padding-left: 38px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .service-detail .service-detail__title {
    color: #fff;
    margin-bottom: 0;
  }

  .service-detail .service-detail__featured {
    padding-left: 40px;
  }

  .service-detail .service-detail__slogan {
    font-size: 34px;
  }

  .accordion .toggle {
    left: -40px;
  }

  .section-custom-box3__inner:after {
    height: 55px;
    top: -54px;
    left: -28px;
    width: 500px;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
  }

  .section-custom-box3 {
    padding-bottom: 90px;
  }

  .counter-text__counter {
    font-size: 140px;
  }

  /******* END SERVICE DETAIL *******/
  /******* POST DETAIL *******/
  .section-post--detail .section-post__header {
    padding-left: 40px;
    margin-bottom: 40px;
  }

  .section-post--detail .section-post__header .f-date {
    position: relative;
    padding-right: 130px;
  }

  .section-post--detail .section-post__header .f-date .f-date__date {
    font-style: 18px;
  }

  .section-post--detail .section-post__header .f-date .f-date__time {
    margin-bottom: 5px;
  }

  .section-post--detail .section-post__header .f-date .f-date__social {
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .section-post__inner .sticky {
    display: none;
  }

  .section-post__widget {
    margin-bottom: 50px;
  }

  .section-post__detail .f-entry {
    font-style: 20px;
    padding-left: 40px;
  }

  .section-post__detail .f-entry figure {
    margin-left: -40px;
  }

  .section-post__detail .f-entry figure figcaption {
    padding-left: 40px;
  }

  /******* END POST DETAIL *******/
}

/************** END RESPONSIVE MAX-768px **************/

@media (max-width: 1259.98px) {
  .headermenu {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding-top: 140px;
    padding-bottom: 45px;
  }
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-BoldItalic-04.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-Bold-02.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-MediumItalic-12.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-Medium-11.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-Italic-03.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-01.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-LightItalic-09.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-Light-08.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-ThinItalic-14.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-Thin-13.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-UltraLightItalic-07.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeue-UltraLight-06.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.705;
}

form {
  margin-bottom: 0;
}

#wrapper .section-banner,
#wrapper .section-banner-2,
#wrapper .section-banner-3 {
  padding: 0;
}

.section-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-banner .bg,
.section-banner-2 .bg,
.section-banner-3 .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #4a4a4a;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 576px) {
  body .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  body .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  body .container {
    max-width: 960px;
  }
}

@media (min-width: 1260px) {
  body .container {
    max-width: 1200px;
  }
}

@media (min-width: 1500px) {
  body .container {
    max-width: 1440px;
  }
}

@-webkit-keyframes locationWorkingEffect {
  from {
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    opacity: 0;
  }
}

@keyframes locationWorkingEffect {
  from {
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    opacity: 0;
  }
}

@-webkit-keyframes textFadeInUp {
  from {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
}

@keyframes textFadeInUp {
  from {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
}
