:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
  --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
  --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
  --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
  --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}
:where(.is-layout-flex) {
  gap: 0.5em;
}
:where(.is-layout-grid) {
  gap: 0.5em;
}
body .is-layout-flex {
  display: flex;
}
.is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}
.is-layout-flex > :is(*, div) {
  margin: 0;
}
body .is-layout-grid {
  display: grid;
}
.is-layout-grid > :is(*, div) {
  margin: 0;
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}
:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}
.has-black-color {
  color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
  color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}
.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}
.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}
.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}
.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}
.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}
:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}
:root :where(.wp-block-pullquote) {
  font-size: 1.5em;
  line-height: 1.6;
}
.svg-wrapper img {
  max-width: 180px;
  margin-top: -30px;
}
.links-wrapper li h4, .links-wrapper li a {
  font-size: 40px !important;
  line-height: 40px;
}
span.small_heading {
  display: block;
  font-size: 20px;
}
nav .menu .container-wrapper .sub-menu .sub-wrapper .links-wrapper li a.active {
  color: #000;
}
body .my-swiper-slide h1 {
  font-size: 60px !important;
  line-height: 65px !important;
}
p.description {
  margin-bottom: 15px;
}
.buildings-item h1 {
  color: #fff;
  font-size: 30px;
}
/*.buildings-item .image-wrapper .overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgb(0 0 0 / 53%) 100%);
}*/
.buildings-item h1 {
  font-family: "Inter", sans-serif;
}
.buildings-item .icon-wrapper {
  bottom: 10px;
  top: unset;
  transform: unset;
  bottom: 0;
  position: absolute;
  left: 50%;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);
  background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 4%, rgb(0 0 0 / 53%) 90%);
}
.slide_txt p.small {
  padding: 15px;
  text-align: left;
  background: #f1f1f1;
  margin-top: 10px;
  border-radius: 0 0 15px 15px;
}
p.text-wrapper.white {
  color: #fff;
}
.buildings-item h1 {
  color: #fff;
  font-size: 25px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cb img {
  width: 75px;
}
p.note {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
  color: #333;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
}
.newsletter .newsletter-wrapper .info-wrapper .text-wrapper.section-title {
  padding-bottom: 0;
}
.window-slider a.button-text.link {
  color: #fff;
  margin-top: 10px;
}
.window-slider .button-wrapper .button-text::after {
  background: #fff;
}
@media (min-width: 992px) {
  .cta .cta-wrapper {
    padding-bottom: 100px;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .footer-note {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .newsletter {
    padding-bottom: 0px;
  }
}
.footer-note .text-wrapper p {
  display: ruby-text;
}
footer.hide-sticky-cta {
  background: #fff !important;
}
.pictos-wrapper img {
  max-width: 100px;
}
.overlay {
  position: relative;
}
.overlay:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #3333;
}
.availability .overlay:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40%;
  top: unset;
  bottom: 0 !important;
  left: 0;
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgb(0 0 0 / 60%) 90%);
}
.availability .overlay {
  position: relative;
}
.banner_sec.overlay:before {
  background: #33333394;
}
.pictos .pictos-wrapper .swiper-wrapper .swiper-slide .pictos-item .image-wrapper {
  max-width: 75px;
}
nav .navbar .logo-wrapper .quick-link {
  font-size: 13px;
}
.column.first {
  opacity: 1;
}
footer.hide-sticky-cta {
  background: #f1f1f1 !important;
}
nav .navbar .hamburguer i {
  background-color: #2e3192;
}
.keymessage-one-image p.large {
  font-size: 18px !important;
}
@media (min-width: 1280px) {
  [data-type="annual"] {
    width: 25%;
    float: left;
  }
  .keymessage-simple {
    padding-top: 140px;
  }
  .banner_sec h1 {
    font-size: 75px;
  }
}
.about_sec .text-wrapper {
  padding-top: 40px !important;
}
.about_sec {
  display: block !important;
}
.about_sec .text-wrapper {
  width: 100% !important;
}
.banner_sec p {
  margin-top: 20px;
}
@-webkit-keyframes spinnerRotate {
  from {
    -webkit-transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(360deg)
  }
}
@-moz-keyframes spinnerRotate {
  from {
    -moz-transform: rotate(0)
  }
  to {
    -moz-transform: rotate(360deg)
  }
}
@-ms-keyframes spinnerRotate {
  from {
    -ms-transform: rotate(0)
  }
  to {
    -ms-transform: rotate(360deg)
  }
}
#form_process {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  visibility: hidden
}
#error_data {
  display: block;
  width: 100%;
  color: red;
  font-size: 14px;
  margin: 10px;
  line-height: normal;
}
form .button-wrapper .button {
  padding: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(135, 150, 165, .1);
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background: #df3716 linear-gradient(45deg, #0181ca, #2e3192);
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  border-radius: 10px;
  background-color: rgba(135, 150, 165, .1);
}
h3.tz-title-contact {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  border-bottom: 1px solid #0181ca42;
  display: inline-block;
}
.investor_page .tta-panels {
  clear: both;
  margin-top: 20px;
}
.investor_page .composer .tta.general.tta-o-all-clickable .tta-panel .tta-panel-title > a {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e4e4e4;
}
.investor_page .text-wrapper p {
  padding-left: 0;
/*  padding-top: 15px;*/
}
.text-justify {
  text-align: justify;
}
.investor_page .about_sec .wpb_wrapper {
  padding-top: 0 !important;
}
.investor_page .text-wrapper h6 {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 36px;
  font-weight: 500;
  margin-top: 20px;
  background: #f3f3f3;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 15px;
}
.investor_page .text-wrapper p:first-child {
  padding-top: 0;
}
.investor_page .cd-faq-items img {
  padding: 5px;
  width: 60px;
  vertical-align: middle;
}
.Appointment a {
  display: block;
  font-size: 16px;
  align-items: center;
  margin-top: 10px;
}
.q_div span {
  display: block;
  text-align: center;
}
.years_img li:nth-child(even) .q_div {
  position: relative;
  width: 70px;
  height: 70px;
  background: #e8f9ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.years_img li:nth-child(even) .q_div::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 25%;
  background: #00bfff;
  /* Corner color */
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.years_img li:nth-child(even) .q {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  /* Black color for "Q2" */
}
.years_img li:nth-child(even) .year {
  font-size: 14px;
  color: #00bfff;
}
.years_img li:nth-child(odd) .q_div {
  position: relative;
  width: 70px;
  height: 70px;
  background: #e8f9ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.years_img li:nth-child(odd) .q_div::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 25%;
  background: #3e4095;
  /* Corner color */
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.years_img li:nth-child(odd) .q {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  /* Black color for "Q2" */
}
.years_img li:nth-child(odd) .year {
  font-size: 14px;
  color: #3e4095;
}
ul.years_img {
  display: inline-flex;
  column-gap: 20px;
  width: 100%;
  padding-bottom: 20px;
  /* border-bottom: 1px solid #3333; */
  margin-top: 15px;
  background: #f3f3f3;
  padding: 20px;
}
ul.img_ul {
  /*    display: inline-flex;*/
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.img_ul li a {
  /*
    float: left;
    width: 25%;
*/
  text-align: center;
}
.img_ul li span {
  padding-top: 5px;
}
.img_ul img {
  width: 180px !important;
}
.img_ul li span {
  padding-top: 5px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  /* background: #f3f3f3; */
  padding: 10px;
  font-weight: 500;
  min-height: 75px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.composer .tta.general .tta-panel-body {
  padding: 0;
}
.img_ul img {
  padding: 0 !important;
  vertical-align: middle;
  border: 2px solid #3333;
  border-radius: 15px;
}
.ul_li {
  margin-top: 10px;
}
.ul_li li {
  margin-bottom: 15px;
  list-style: circle;
  display: list-item;
}
.text-wrapper li {
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-left: 15px;
}
.ag-timeline_year h2 {
  font-size: 55px;
  color: #000;
}
.ag-timeline-carousel-nav_box:before, .ag-timeline-carousel-nav_box:after {
  display: none;
}
.our_team .text-wrapper {
  padding-top: 0 !important;
}
.our_team .about_sec:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.our_team .about_sec {
  border-bottom: 1px solid #3333;
  padding-bottom: 30px;
  padding-top: 30px;
}
.about_sec p.label {
  font-weight: 400;
  font-size: 16px;
}
.about_sec h4 {
  padding-bottom: 10px;
}
.sec_pad {
  padding: 60px 0;
}
.text-center {
  text-align: center;
}
.pb_20 {
  padding-bottom: 20px;
}
.three_div_img img {
  max-width: 100%;
}
.three_div_img .pictos-item {
  width: 33.33% !important;
  padding: 5px;
}
.three_div_img .pictos-item h6 {
  margin-top: 10px;
}
.sec_bpad {
  padding: 0 0 60px 0;
}
.p0 {
  padding: 0;
}
.project_inner .swiper-slide .pictos-item img {
  border-radius: 0px;
}
.four_div_img.pictos-wrapper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  height: auto;
  column-gap: 40px;
  justify-content: center;
}
.four_div_img.pictos-wrapper img {
  max-width: 100%;
}
.four_div_img.pictos-wrapper .swiper-wrapper .swiper-slide .pictos-item {
  width: 25%;
}
.pb_15 {
  padding-bottom: 15px;
}
.max_h {
  max-height: 450px !important;
  object-fit: contain !important;
}
.keymessage-interior .keymessage-interior-wrapper .keymessage-interior-content {
  background-color: rgb(0 0 0 / 28%);
}
.sticky-cta ul.links-wrapper.text-wrapper.centered {
  left: -15px;
}
.sec_padding {
  padding: 80px 0 !important;
}
.keymessage-interior::after {
  display: none;
}
.bg_dark {
  background: #f7f7f7;
}
.composer .tta.general .tta-panel-title, #FinancialTab > .panel-group > .panel.panel-default > .panel-heading h4.panel-title {
  box-shadow: none;
}
.composer .tta.general .tta-panel-body {
  padding: 20px 0;
}
.investor_page .text-wrapper h6:first-child {
  margin-top: 0;
}
.investor_page .composer .text-wrapper p {
  padding: 0 10px;
}
.investor_page .text-wrapper p {
  font-size: 16px;
  line-height: 24px;
}
.investor_page .about_sec .text-wrapper {
  padding-top: unset !important;
}
.years_img li .q_div {
  width: 90px !important;
  height: 80px !important;
}
.investor_page .img_ul li {
  text-align: center;
}
.investor_page .contact {
  margin-bottom: 15px;
}
.mb_10 {
  margin-bottom: 10px;
}
.dis_flex {
  display: flex !important;
  align-items: center;
}
.project_inner .swiper-slide .pictos-item img {
  border-radius: 0px;
  height: 300px;
  object-fit: cover;
  width: 100%;
}
.project_inner .pictos .pictos-wrapper .swiper-wrapper .swiper-slide {
  display: contents;
}
.project_inner .pictos .pictos-wrapper .swiper-wrapper {
  row-gap: 0
}
.neighborhood-item .text-wrapper .description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.align-center {
  align-items: center !important;
}
.sticky-cta-wrapper li a {
  font-size: 12px !important;
}
.loader-113 {
  color: #000 !important;
  position: relative;
  font-size: 48.7px;
  letter-spacing: 4px;
  font-style: normal;
}
.loader-113::before {
  content: "";
  position: absolute;
  right: 69px;
  bottom: 10px;
  height: 28px;
  width: 4px;
  background: currentColor;
  -webkit-animation: animloader113L 1s linear infinite alternate;
  animation: animloader113L 1s linear infinite alternate;
}
.loader-113::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 125px;
  top: 2px;
  border-radius: 50%;
  background: #1b86c7;
  -webkit-animation: animloader113 1s linear infinite alternate;
  animation: animloader113 1s linear infinite alternate;
}
span.loader-113 {
  color: #333;
}
@-webkit-keyframes animloader113 {
  0% {
    transform: translate(0px, 0px) scaleX(1);
  }
  14% {
    transform: translate(-12px, -16px) scaleX(1.05);
  }
  28% {
    transform: translate(-27px, -28px) scaleX(1.07);
  }
  42% {
    transform: translate(-46px, -35px) scaleX(1.1);
  }
  57% {
    transform: translate(-70px, -37px) scaleX(1.1);
  }
  71% {
    transform: translate(-94px, -32px) scaleX(1.07);
  }
  85% {
    transform: translate(-111px, -22px) scaleX(1.05);
  }
  100% {
    transform: translate(-125px, -9px) scaleX(1);
  }
}
@keyframes animloader113 {
  0% {
    transform: translate(0px, 0px) scaleX(1);
  }
  14% {
    transform: translate(-12px, -16px) scaleX(1.05);
  }
  28% {
    transform: translate(-27px, -28px) scaleX(1.07);
  }
  42% {
    transform: translate(-46px, -35px) scaleX(1.1);
  }
  57% {
    transform: translate(-70px, -37px) scaleX(1.1);
  }
  71% {
    transform: translate(-94px, -32px) scaleX(1.07);
  }
  85% {
    transform: translate(-111px, -22px) scaleX(1.05);
  }
  100% {
    transform: translate(-125px, -9px) scaleX(1);
  }
}
@-webkit-keyframes animloader113L {
  0% {
    box-shadow: 0 -6px, -122.9px -8px;
  }
  25%, 75% {
    box-shadow: 0 0px, -122.9px -8px;
  }
  100% {
    box-shadow: 0 0px, -122.9px -16px;
  }
}
@keyframes animloader113L {
  0% {
    box-shadow: 0 -6px, -122.9px -8px;
  }
  25%, 75% {
    box-shadow: 0 0px, -122.9px -8px;
  }
  100% {
    box-shadow: 0 0px, -122.9px -16px;
  }
}
.form-wrapper form .field-wrapper input, .form-wrapper form .field-wrapper textarea {
  font-family: "Inter", sans-serif;
}
.button-wrapper .button p {
  margin: 0;
}
@media (min-width: 768px) and (max-width: 980px) {
 
    #cssmenu .button{
        top: 15px;
    }
    .project_inner .swiper-slide .pictos-item img {
    height: 250px !important;
}
    .pictos .pictos-wrapper .swiper-wrapper .swiper-slide {
        row-gap: 0;}
    .tab-content h3 {
    width: 80%;
}
    .masonry-items li figcaption {
    align-items: end;
}
  .masonry-items .gallery-img, body .grid.masonry-items li {
    height: 350px !important;
  }
  .logovic img {
    width: 100px;
  }
  footer .columns-wrapper {
    display: flex;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first .columns-wrapper .column:last-child {
    display: block;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background {
/*    position: relative;*/
  }
  .parallax-wrapper .parallax-clip-path {
/*    position: relative;*/
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first .columns-wrapper .column {
    padding: 10px;
    display: block;
  }
  footer .parallax-wrapper {
    height: 30vh;
  }
  .form-wrapper.text-wrapper.aos-init.aos-animate {
    width: 100% !important;
  }
  .navbar .svg-wrapper img {
    max-width: 130px;
    margin-top: -15px;
  }
  .project_inner .swiper-slide .pictos-item img {
    height: 250px;
  }
  .js-ag-timeline-carousel-arrow_prev {
    margin: 0;
  }
  .contacts-info .contacts-info-wrapper .contacts-wrapper {
    flex-direction: row;
	          width: 100%;
        justify-content: space-between;
  }
  /* .project_inner .swiper-slide .pictos-item img {
    height: auto;
}*/
  .project_inner .pictos .pictos-wrapper .swiper-wrapper .swiper-slide {
    padding: 0;
  }
  section#block_666856e4d676e {
    padding-bottom: 20px;
  }
  .Appointment a {
    text-align: left;
    display: flex !important;
    align-content: center !important;
    padding-left: 50px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .Appointment .pdf {
    position: absolute;
    left: 0;
  }
  /*  section.neighborhood-list .neighborhood-list-vue .neighborhood-wrapper .neighborhood-item {
      padding: 10px;
    width: 50%;
      float: left;}*/
  .max_h {
    max-height: unset !important;
  }
  section.rich-content .rich-content-wrapper .image-wrapper {
    margin-bottom: 40px;
    padding-top: 20px;
  }
  .sec_padding {
    padding: 80px 0 !important;
  }
  .newsletter {
    padding-bottom: 70vw;
  }
  .swiper.fit-content .swiper-slide {
    height: fit-content;
    padding: 0 0 0 20px;
  }
  .rich-intro.with-icon {
    padding-top: 40px;
  }
  .keymessage .keymessage-wrapper .my-swiper-wrapper .my-swiper-slide .keymessage-content .text-wrapper {
    padding: 0 60px;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first {
    align-items: center;
  }
  .three_div_img .pictos-item {
    width: 33% !important;
    padding: 15px;
  }
  .project_inner .pictos .pictos-wrapper .swiper-wrapper .swiper-slide {
    display: flex;
  }
  .keymessage-detail .keymessage-detail-wrapper .background, .keymessage-interior .keymessage-interior-wrapper {
    height: 60vh !important;
  }
  section.rich-content .rich-content-wrapper .text-wrapper {
    width: 90vw;
  }
}
.wd_50 {
  padding: 0 10px;
  width: 50% !important;
  float: left;
}
.file-wrapper {
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  position: relative;
  margin-bottom: 40px;
  cursor: pointer;
  border-bottom: 1px solid #33333373;
}
.file-wrapper input {
  left: 0;
  opacity: .01;
  cursor: pointer;
  position: absolute;
  -moz-opacity: .01;
  filter: alpha(opacity=1)
}
.file-wrapper .file-button {
    color: #fff;
    float: left;
    cursor: pointer;
    margin-left: -20px;
    padding: 15px;
    background: #0181c9;
    display: flex;
    align-items: center;
}
.file-holder {
  top: 15px;
  padding-left: 15px;
  position: absolute;
  left: auto;
}
.file-button i {
  margin-right: 8px;
}
span.file-holder {
  position: absolute;
}
.color_black a {
  color: #000 !important;
}
.color_black .quick-link::before {
  background-color: #000 !important;
}
.file-wrapper input {
  left: 0;
  opacity: .01;
  cursor: pointer;
  position: absolute;
  -moz-opacity: .01;
  filter: alpha(opacity=1);
  position: absolute !important;
  width: 100% !important;
  height: 50px;
}
.sub_heading {
  text-align: center;
  width: 100%;
}
.mt_30 {
  margin-top: 30px !important;
}
.video_div {
  max-width: 100%;
}
.cd-close-panel::before, .cd-close-panel::after {
  background: #333
}
.cd-faq-categories a {
  margin: 0 15px;
  border-radius: 15px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}
.main-info p:first-child {
  margin-bottom: 5px;
}
.main-info h1 {
  padding-bottom: 10px !important;
}
.our_team .text-wrapper.section-title p {
  padding-bottom: 0;
}
.our_team .section-title {
  padding-bottom: 25px !important;
}
.pb_0 {
  padding-bottom: 0;
  margin-bottom: 0 !important;
}
.pt_0 {
  padding-top: 0 !important;
  margin-top: 0;
}
nav .navbar .logo-wrapper {
  gap: 25px;
}
.m_auto .swiper-wrapper {
  justify-content: center;
}
.white {
  color: #fff;
}
.p_cus {
  padding-bottom: 20px;
  font-size: 17px;
  line-height: 22px;
}
.navbar .links-wrapper li h4 {
  font-size: 35px !important;
  line-height: 45px !important;
}
.sub-wrapper a.link-underline {
  font-size: 30px !important;
}
nav .menu {
  z-index: 999999;
}
.registration_div img.lazy.loading {
  height: auto;
}
.form-wrapper.text-wrapper.aos-init.aos-animate {
  width: 30%;
}
#Newsletter button.submit {
  padding: 10px;
  margin: 20px auto;
}
#Newsletter label {
  padding: 10px 0;
}
.social-icon svg {
  width: 25px;
  height: 25px;
}
.mt-10 {
  margin-top: 10px !important;
}
.submenu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .submenu {
  display: none;
  position: absolute;
  background-color: #ffffffe0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  z-index: 1000;
}
.dropdown .submenu a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  line-height: 20px;
  font-family: "Inter", sans-serif;
}
.dropdown:hover .submenu {
  display: block;
}
nav .navbar .logo-wrapper .quick-link {
  font-size: 16px;
  line-height: 35px;
}
nav .navbar .logo-wrapper .quick-link {
  font-family: "Inter", sans-serif;
}
.dropdown .submenu a:hover {
  border-bottom: 1px solid #3333338c;
}
.black_nav a {
  color: #333 !important;
}
.fixedd .fixed_header_hide {
  display: none;
}
.fixedd .fixed_header {
  display: block;
}
.fixed_header {
  display: none;
}
.fixedd .fixed_header_hide {
  display: none;
}
#navbar.fixedd a.quick-link {
  color: #333;
}
#navbar.fixedd a.quick-link {
  color: #333 !important;
}
#navbar {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
#navbar.fixedd .navbar {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.fixedd .navbar.container.wide {
  background: #f1f1f1;
  padding: 15px 30px;
}
.fixedd .logo-wrapper .svg-wrapper img {
  margin-top: -15px;
  max-width: 140px;
}
nav .navbar .logo-wrapper .quick-link::before {
  background-color: #333;
}
img.logo_element {
  position: absolute;
  opacity: .1;
  object-fit: contain;
  height: 100%;
  left: 0;
}
section.availability.our_project {
  background: url(../images/bg-nilainfra.jpg);
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
}
.our_project .buildings-item {
  border-radius: 30px;
}
.elementor-element-c1ef48f a {
  font-family: "Inter", sans-serif;
}
.report-filter-controls {
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.report-filter-controls label {
  font-weight: bold;
}
.report-filter-controls select {
  padding: 5px 10px;
}
.report-block {
  margin-bottom: 20px;
}
.report-block {
  display: none;
}
.cd-faq-group {
  clear: both;
}
.report-filter-controls select {
  padding: 15px;
  border-radius: 12px;
  border-color: #e4e4e4;
}
[data-type="quarterly"] {
  margin-bottom: 0px;
}
.project_txt p {
  color: #fff;
}
.project_txt {
  padding: 20px;
}
.res_img {
  max-width: 100%;
}
.align_center {
  align-self: center !important;
}
.h_auto {
  height: auto !important;
}
.mb_20 {
  margin-bottom: 15px !important;
}
.align_center .text-wrapper.aos-init.aos-animate {
  padding-top: 0;
}
/*#cssmenu {
    display: flex !important;
    align-items: center;
}*/
#cssmenu > ul > li > a {
  color: #fff !important;
  font-family: "Inter", sans-serif;
}
#cssmenu .logo {
  float: left;
}
#cssmenu .navbarr {
  float: right;
  margin-top: 30px;
}
.logo img {
  width: 160px;
}
nav#cssmenu {
  padding-top: 15px;
}
#cssmenu > ul > li > a {
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 400 !important;
}
.keymessage-content h1 {
  font-family: 'Inter';
  font-weight: 400;
}
.keymessage .keymessage-wrapper .my-swiper-wrapper .my-swiper-slide .keymessage-content {
  padding-top: 30%;
  background-color: rgb(0 0 0 / 20%);
}
a.cus_btn {
  font-size: 20px;
  margin-top: 25px;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
  display: inline-block;
}
.keymessage::after {
  display: none;
}
#block_6539377a9b1ac {
  height: auto !important;
  padding-bottom: 0;
}
#block_6539377a9b1ac h1 {
  font-weight: 400;
}
#block_6539377a9b1ac .rich-intro-wrapper.container.small {
  align-items: flex-start;
  padding-bottom: 0;
}
#block_6539377a9b1ac .text-wrapper {
  padding-top: 0;
}
#block_6539377a9b1ac .text-wrapper p {
  font-size: 17px;
}
.availability h2 {
  font-weight: 400;
}
.availability .swiper.fit-content .swiper-slide {
  height: fit-content;
  width: 25%;
  padding: 0 8px;
}
.availability .text-wrapper h3 {
  font-family: 'Inter';
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  margin: 0;
  text-align: left;
  letter-spacing: 1px;
}
.buildings-item {
  height: 25vw;
}
.availability .text-wrapper.section-title {
  padding-left: 0;
}
.availability .swiper-slide.aos-init.aos-animate:first-child {
  padding-left: 0;
}
.availability .swiper-slide.aos-init.aos-animate:last-child {
  padding-right: 0;
}
.availability {
  padding-bottom: 0;
}
.counter_p {
  font-size: 100px;
}
.kpis .kpis-wrapper .kpis-item .addon {
  font-family: 'Inter';
  font-size: 60px;
  font-weight: 400 !important;
  line-height: 56px;
}
.kpis .kpis-wrapper .kpis-item .kpi-value {
  font-weight: 400;
}
.newsletter .form-wrapper.text-wrapper.aos-init.aos-animate {
  width: 100%;
}
.newsletter form .dis_flex {
  gap: 20px;
}
.form-wrapper form .field-wrapper label {}
.newsletter .newsletter-wrapper .form-wrapper {
  padding-top: 0;
}
.form-wrapper form .field-wrapper label {
  font-family: 'Inter';
  color: #333333b8;
}
.form_btn {
  padding: 12px 15px;
  background: #1e1e1e;
  display: flex;
  align-content: center;
  color: #fff;
  line-height: 24px;
  outline: none !important;
  border: none !important;
  gap: 10px;
}
.form-wrapper form .field-wrapper input, .form-wrapper form .field-wrapper textarea {
  padding: 10px;
  font-family: 'Inter';
  border-color: #33333373;
}
footer.hide-sticky-cta {
  background: #1e1e1e !important;
}
footer p, footer h5, footer a {
  color: #fff !important;
  font-family: 'Inter';
  font-weight: 300;
}
footer .parallax-wrapper .parallax-clip-path .parallax-background .footer-note {
  border: none;
}
.copyright {
  padding-top: 100px;
}
.link_f a {
  padding-bottom: 10px;
}
#block_6539377a9b1ac .rich-intro-wrapper {
  align-items: flex-start;
}
.vm_div .image-wrapper {
  text-align: left;
  margin-bottom: 130px;
}
.vm_div .text-wrapper {
  text-align: left;
}
.vm_div .pictos-item {
  width: 33.33%;
}
.vm_div .pictos-item:first-child {
  border: 1px solid #3333334f;
  padding: 25px;
  height: 100%;
  border-radius: 10px 0 0 10px;
}
.vm_div .pictos-item:nth-child(2) {
  padding: 25px;
  border: 1px solid #3333;
  border-left: none;
  border-right: none;
}
.vm_div .pictos-item:last-child {
  border: 1px solid #3333334f;
  padding: 25px;
  height: 100%;
  border-radius: 0 10px 10px 0;
}
.vm_div .text-wrapper p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  color: #333;
  width: 85%;
  margin-top: 15px;
}
.vm_div .text-wrapper h6 {
  font-family: "Inter", sans-serif;
}
.vm_div .dis_flex {
  align-items: end;
}
#block_6539377a9b1ac .rich-intro.with-icon .rich-intro-wrapper {
  padding-bottom: 0;
  align-self: flex-end;
}
.featured_project .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
.featured_project .owl-carousel .owl-item {
  height: 100vh;
}
.text {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100vh;
  width: 60%;
  margin: 0 auto;
  left: 0;
  right: 0;
  align-content: center !important;
}
.featured_project .swiper-slide .bg_img {
  height: 800px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.featured_project .text .txt1 {
  width: 100%;
}
.featured_project h3 {
  font-size: 40px;
  color: #fff;
}
.featured_project p {
  line-height: 20px;
  color: #fff;
  font-weight: 400;
}
.featured_project .overlay:before {
  background: hsl(0deg 0% 0% / 59%);
}
.featured_project .button-wrapper {
  margin-top: 30px;
}
button img {
  width: unset !important;
}
/*.featured_project .owl-item {
    height: 700px !important;
}*/
.featured_project .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.featured_project .form_btn {
  background: #fff;
  color: #000;
}
.featured_project .form_btn img {
  filter: invert(1);
}
.featured_project .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: 6.6vw;
  transform: translateY(-50%);
}
.featured_project .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: 6.6vw !important;
  transform: translateY(-50%);
}
.featured_project button.owl-prev {
  background: url(../images/icons/left.png) !important;
  width: 50px;
  height: 36px;
}
.featured_project button.owl-next {
  background: url(../images/icons/right.png) !important;
  width: 50px;
  height: 36px;
}
.featured_project .owl-prev span, .featured_project .owl-next span {
  display: none;
}
.featured_project h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 400;
}
.featured_project .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  border: 1px solid #fff;
  background: transparent;
}
.featured_project .owl-theme .owl-dots .owl-dot.active span, .featured_project .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}
.newsletter .newsletter-wrapper {
  padding-top: 0;
  min-height: unset;
  background-color: unset;
  padding-bottom: 0;
}
body {
  font-family: "Inter", sans-serif;
}
.text-wrapper h2, .text-wrapper .h2 {
  font-family: "Inter", sans-serif;
}
.just_center {
  justify-content: center !important;
}
.b_head #cssmenu > ul > li > a {
  color: #333 !important;
}
.pb_60 {
  padding-bottom: 60px;
}
.masonry-items .gallery-img {
  max-width: 100%;
}
.masonry-items .gallery-img {
  overflow: hidden;
}
.masonry-items li figcaption {
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 30px 20px;
  display: flex;
}
body .grid.masonry-items li {
  width: 33.33%;
  height: 485px;
  overflow: hidden;
  padding: 5px;
}
body .grid.masonry-items li .gallery-img img {
  height: 485px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.masonry-items .gallery-img {
  overflow: hidden;
  height: 475px;
}
.grid.masonry-items li i {
  filter: invert(1) brightness(3.5);
  float: right;
  position: absolute;
  right: 20px;
  z-index: 99999;
  opacity: 1;
}
.grid.masonry-items li i img {
  width: 20px;
}
li:hover i img {
  transform: rotate(45deg);
}
.grid.masonry-items .overlay:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 1%, #00000094 91%);
}
.innerpage nav#cssmenu {
  padding-top: 15px;
  /* background: #fff;*/
  padding-bottom: 15px;
}
.innerpage #cssmenu .navbarr {
  margin-top: 15px;
}
.innerpage #cssmenu > ul > li:hover, .innerpage #cssmenu ul li.active:hover, .innerpage #cssmenu ul li.active, .innerpage #cssmenu ul li.has-sub.active:hover {
  border-bottom: 1px solid #333;
}
.dis_btnm {
  padding: 20px 0;
  display: flex !important;
  align-items: center;
}
.dis_btnm .left {
  width: 50%;
}
.dis_btnm .right {
  width: 50%;
}
.dis_btnm .right button {
  float: right;
}
.left button.form_btn {
  background: transparent;
  border: 1px solid #333 !important;
  color: #333;
}
.left button.form_btn img {
  filter: invert(1);
}
.project_inner .swiper-slide .pictos-item img {
  height: 450px;
}
.pictos-item.wd_half {
  width: 66.67% !important;
}
.vm_div .pictos-item {
  height: 380px !important;
}
.featured_project .item {
  height: 100vh !important;
}
.featured_project .item img.bg_img {
  height: 100vh;
  object-fit: cover;
}
footer .parallax-wrapper .parallax-clip-path .parallax-background .first .columns-wrapper .column {
  max-width: unset;
}
.project_inner section.rich-content .rich-content-wrapper .text-wrapper .description {
  margin-top: 0;
}
@media (max-width: 980px) {
  section.rich-content .rich-content-wrapper .image-wrapper img {
    max-height: 550px;
    object-fit: cover;
  }
}
@media (max-width: 980px) {
  body #cssmenu ul {
    width: 90%;
  }
  body #cssmenu > ul > li > a {
    color: #333 !important;
  }
  #cssmenu ul li:hover a {
    color: #fff !important;
  }
  #cssmenu .navbarr {
    background: #f3f3f3;
  }
}
form .button-wrapper .button {
  width: auto;
}
.submit:after, .submit:before {
  display: none !important;
}
img.parallax-background.lazy.loading {
  height: 85vh;
}
#block_666856e4d676e h1 {
  font-size: 40px;
}
section.rich-content .rich-content-wrapper .text-wrapper {
  width: 48vw;
}
.keymessage-interior .keymessage-interior-wrapper {
  height: 85vh;
}
.keymessage-detail .keymessage-detail-wrapper .background {
  height: 85vh;
}
/*.text-wrapper p.description:last-child {
    margin-bottom: 0;
}*/
.pictos-item.wd_full {
  width: 100% !important;
}
@media (min-width: 992px) {
    .container.small .row:not(.no-gutters) > .col, .container.small .row:not(.no-gutters) > [class*=col-] {
        padding-right: 2.95vw !important;
        padding-left: 6.95vw !important;
    }
}
@media (min-width: 768px) and (max-width: 980px) {
  section.rich-content .rich-content-wrapper .text-wrapper {
    width: 90vw;
  }
}
@media (max-width: 767px) {
      section.newsletter.sec_padding {
    padding-bottom: 90px !important;
}
    header.show.scroll_in {
    background: #3333339c;
}
    .tab-content h3 {
    margin-top: 0;
    width: 80%;
}
    .aerrow img {
    width: 20px;
}
  .copyright {
    padding-top: 25px !important;
  }
  select#report-type {
    width: 50%;
  }
  h3.tz-title-contact {
    font-size: 25px;
  }
  section.rich-content .rich-content-wrapper .text-wrapper {
    width: auto !important;
  }
  #block_666856e4d676e h1 {
    font-size: 25px !important;
    margin-bottom: 20px;
  }
    body .grid.masonry-items li {
        width: 100% !important;
        /* height: 300px; */
        display: block;
        position: relative !important;
        top: unset !important;
    }
    body .grid.masonry-items li{
        border: 10px solid #fff;
        padding: 0;
    }
  .portfolio-filter {
    text-align: center;
  }
  .portfolio-filter li {
    display: inline-flex;
    width: 30% !important;
    height: 63px;
    text-align: center;
  }
  body .vm_div .pictos-item {
    height: auto !important;
  }
  .kpis .kpis-wrapper .kpis-item .kpi-value .odometer-value, .kpis .kpis-wrapper .kpis-item .kpi-value .odometer-digit-spacer {
    width: auto;
  }
  .keymessage .keymessage-wrapper {
    width: 100%;
    height: 70vh;
  }
  body .banner_sec .keymessage-background video {
    height: 70vh !important;
  }
  .button {
    top: 20px !important;
  }
  .logo img {
    width: 120px !important;
  }
  .homepage .sec_padding {
    padding: 40px 0 !important;
  }
  .vm_div .pictos-item:nth-child(2) {
    border-left: 1px solid #3333 !important;
    border-right: 1px solid #3333 !important;
  }
  .aerrow {
    margin-top: 20px;
  }
  .vm_div .dis_flex {
    display: block !important;
  }
  .vm_div .pictos-item {
    width: 100% !important;
  }
  .featured_project h3 {
    font-size: 35px !important;
    line-height: 37px !important;
    margin-bottom: 15px;
  }
  .featured_project .owl-nav button.owl-prev {
    left: 2.6vw !important;
  }
  .featured_project .owl-nav button.owl-next {
    right: 2.6vw !important;
  }
  .featured_project .text {
    display: block;
  }
  .owl-carousel .owl-item .bg_img {
    height: 100vh;
  }
  .swiper-wrapper {
    display: block !important;
  }
  .availability .swiper.fit-content .swiper-slide {
    width: 100% !important;
    padding: 10px 0px !important;
  }
  .buildings-item {
    height: auto !important;
  }
  .text-wrapper.section-title.centered.container.aos-init.aos-animate {
    background: #fff;
  }
  .buildings-wrapper.swiper.fit-content.container.project_swipe.m_auto.home_projects.swiper-initialized.swiper-horizontal.swiper-ios.swiper-backface-hidden {
    background: #fff;
  }
  .wpb_text_column.wpb_content_element td {
    padding-left: 60%;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .text-wrapper h5, footer .parallax-wrapper .parallax-clip-path .parallax-background .text-wrapper .h5 {
    font-size: 16px !important;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background {
    position: relative;
  }
  /*            .parallax-wrapper .parallax-clip-path {
                position: relative;
            }*/
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first .columns-wrapper .column {
    padding: 10px;
    display: block;
  }
  footer .parallax-wrapper {
    height: 60vh;
  }
  .form-wrapper.text-wrapper.aos-init.aos-animate {
    width: 100% !important;
  }
  body .sub-wrapper a.link-underline {
    font-size: 25px !important;
    line-height: 30px !important;
  }
  .project_inner section#block_666856e4d676e {
    padding-bottom: 30px;
  }
  .sticky-cta {
    display: none;
  }
  .banner_sec::after {
    display: none;
  }
  .mob_pad {
    margin-top: 30px;
  }
  .project_inner .swiper-slide .pictos-item img {
    height: 250px;
  }
  .window-slider .window-slider-wrapper {
    height: auto;
  }
  .window-slider .window-slider-wrapper .windows-wrapper {
    grid-template-columns: unset !important;
  }
  .banner_sec .keymessage-background video {
    height: 100vh !important;
  }
  .home_projects .swiper-wrapper {
    display: block;
  }
  .home_projects .swiper-wrapper .aos-init {
    padding: 20px;
  }
  .keymessage-simple {
    padding-top: 110px;
  }
  .wd_50 {
    width: 100% !important;
  }
  .cd-faq-items {
    width: 90%;
  }
  .cd-faq-categories {
    width: 100%;
  }
  .four_div_img.pictos-wrapper .swiper-wrapper .swiper-slide .pictos-item {
    margin-bottom: 20px;
    width: 100%;
  }
  body .sec_padding {
    padding: 60px 0 !important;
  }
  .keymessage-detail .keymessage-detail-wrapper .background, .parallax-wrapper .parallax-clip-path .parallax-background, .keymessage-detail .keymessage-detail-wrapper .background img {
    height: 55vh;
  }
  #FinancialInformation.cd-faq-group li {
    list-style-type: none;
    width: 50%;
    float: left;
  }
  .img_ul li a {
    display: block !important;
  }
  .img_ul a {
    padding-left: 10px;
  }
  .img_ul li span {
    min-height: auto !important;
  }
  ul.years_img li {
    margin-bottom: 15px;
  }
  ul.years_img {
    display: inline-table !important;
  }
  .pdf {
    max-width: 50px !important;
  }
  .years_img li {
    margin-left: 0 !important;
  }
  .Appointment a {
    text-align: left;
    display: flex !important;
    align-content: center !important;
    padding-left: 50px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .Appointment .pdf {
    position: absolute;
    left: 0;
  }
  ul.years_img {
    display: inline-flex;
    column-gap: 0;
  }
  .investor_page .text-wrapper h6 {
    text-align: left;
    font-size: 21px;
    line-height: normal;
  }
  .investor_page .text-wrapper p {
    text-align: left;
  }
  .cd-faq-items.slide-in {
    z-index: 999999999999999999999999999;
    padding-top: 70px;
  }
  .img_ul li span {
    min-height: auto;
  }
  .investor_page .cd-faq-items img {
    width: 50px;
  }
  .text-wrapper h4, .text-wrapper .h4 {
    font-size: 30px;
    line-height: 35px;
  }
  .sec_padding {
    padding: 60px 0 !important;
  }
  .keymessage-interior .keymessage-interior-wrapper {
    width: 100%;
    height: 60vh;
  }
  .links-wrapper li h4, .links-wrapper li a {
    font-size: 30px !important;
    line-height: 35px;
  }
  .newsletter {
    padding-bottom: 60.35vw;
  }
  .availability .swiper-slide {
    padding: 0 20px;
  }
  .rich-intro.with-icon {
    padding-top: 60px;
  }
  .text-wrapper h1, .text-wrapper .h1, .text-wrapper h2, .text-wrapper .h2, .ag-timeline_year h2 {
    font-size: 35px !important;
    line-height: 40px !important;
  }
  .keymessage-content .container.small.text-wrapper {
    padding: 0 50px;
  }
  body .my-swiper-slide h1 {
    font-size: 40px !important;
    line-height: 45px !important;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px !important;
  }
  footer .first {
    text-align: center;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .text-wrapper p {
    width: 100%;
    display: block;
    text-align: center;
  }
  a.quick-link {
    display: none;
  }
  .text-wrapper h3 {
    font-size: 30px;
    line-height: 35px;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first .columns-wrapper .column:last-child {
    justify-content: center;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first div {
    text-align: center;
    padding: 10px 0;
    display: block;
  }
  .svg-wrapper img {
    max-width: 130px;
    margin-top: 0;
    padding: 10px;
  }
  .logovic img {
    max-width: 100px;
  }
  .keymessage-detail .keymessage-detail-wrapper .content-wrapper .main-info h1, .keymessage-detail .keymessage-detail-wrapper .content-wrapper .main-info .h1 {
    font-size: 35px;
    line-height: 40px;
  }
  .project_inner .pictos .pictos-wrapper .swiper-wrapper .swiper-slide {
    display: block !important;
  }
  body .three_div_img .pictos-item {
    width: 100% !important;
  }
  .svg-wrapper img {
    max-width: 130px;
    margin-top: -30px;
    padding: 10px;
  }
  .kpis .kpis-wrapper .kpis-item .kpi-value {
    font-size: 50px;
    line-height: normal;
  }
  .vm_div .image-wrapper {
    text-align: left;
    margin-bottom: 40px;
  }
  .composer .tta.general .tta-panel-body {
    padding: 0px 0;
  }
  footer .parallax-wrapper .parallax-clip-path .parallax-background .first {
    justify-content: center;
  }
  body .grid.masonry-items li .overlay {
    position: unset;
  }
  .text-wrapper h6, .text-wrapper .h6 {
    font-size: 24px;
    line-height: normal;
  }
}
/*
.parallax-wrapper .parallax-clip-path .parallax-background{
	    position: relative;
}*/

textarea{
    resize: none;
}

.nav-tabs > li > a {
    padding: 8px 15px !important;}

.b_head #cssmenu > ul > li:hover {
    border-bottom: 1px solid #333 !important;
}

.submit p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

 header.show{
            background: transparent;
        }
header.show.scroll_in {
    background: #33333363;
    display: flex;
}
        
       
header nav#cssmenu {
    padding-top: 5px;
    padding-bottom: 15px;
}
header.show.scroll_in {
    top: 0;
    position: fixed;
}

.button-wrapper .button {
    padding: 0;
}

button.button.submit:hover p {
    color: #fff;
}
.text {
    z-index: 99999;}
.scroll_in.b_head #cssmenu > ul > li > a {
    color: #fff !important;
}

.scroll_in.b_head #cssmenu > ul > li:hover {
    border-bottom: 1px solid #fff !important;
}

span.file-holder {
    position: relative;
}
.tab-content h3 {
    margin-top: 0;
    width: 85%;
}

.featured_project button.button.submit {
    position: relative;
    width: auto;
}
form button.button.submit {
    position: relative;
}
@media (min-width: 768px) and (max-width: 980px) {
  
    .kpis .kpis-wrapper .kpis-item {
    width: 50%;
    float: left;
                margin-bottom: 20px;
}
    section.kpis.sec_padding {
    padding: 0 !important;
}
    .kpis-wrapper.container {
    display: block;
}
    .buildings-item {
    height: 35vw;
}
    .availability-wrapper .swiper-wrapper {
    display: block;
}
        .availability .swiper.fit-content .swiper-slide {
        height: fit-content;
        width: 50%;
        float: left;
        padding: 10px;
    }
    .availability .swiper-slide.aos-init.aos-animate:first-child {
     padding-left: unset; 
}
.buildings-item {
     aspect-ratio: unset; 
}
    .featured_project .text {
    display: block;
        height: 70vh;
}
    .featured_project .owl-carousel .owl-item {
    height: 70vh;
}
    section.sec_padding.featured_project {
    padding-bottom: 0 !important;
}
    section.newsletter.sec_padding {
    padding-top: 0 !important;
}
    .vm_div .image-wrapper {
    text-align: left;
    margin-bottom: 60px;
}
    .keymessage-detail {
    padding-bottom: 40px;
}

}

.page-loader {
    background: url(../images/loader.gif) center center no-repeat #fff;
    bottom: 0;
    background-size: 200px;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999999999999999999999;
}
.alert {
    line-height: normal;
}


form select {
    word-wrap: normal;
    width: 100%;
    color: #333333b8;
    padding: 10px;
    border: none;
    position: relative;
    z-index: 1;
    border: none;
    border-bottom: 1px solid;
    outline: none;
    background-color: inherit;
    padding: 13px 10px;
    width: 100%;
    border-color: #33333373;
}