/*
Theme Name: Mode
Author: Cskills
Version: 1
*/

.landingScreen {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  display: none;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  transition-delay: 1.5s;
}

.loaded .landingScreen {
  opacity: 0;
  visibility: hidden;
}

.logo-explore {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 30px;
  width: 100%;
}

.logo-explore svg {
  overflow: visible;
  width: 100%;
}

#elm1-orange,
#elm1-yellow,
#elm1-pink,
#elm2,
#elm3-pink,
#elm3-yellow,
#elm4,
#elm5-1,
#elm5-2,
#elm5-3 {
  transition: transform 1s cubic-bezier(.34, .51, .71, .9);
  -webkit-transition: transform 1s cubic-bezier(.34, .51, .71, .9);
  -moz-transition: transform 1s cubic-bezier(.34, .51, .71, .9);
  -o-transition: transform 1s cubic-bezier(.34, .51, .71, .9);
}

#elm1-orange {
  transform: translateY(50%) scale(2);
  transform-origin: center;
}

.loaded #elm1-orange {
  transform: translateY(0%) scale(1);
}

#elm1-yellow {
  transform: translateX(-40%) translateY(-80%) scale(2);
  transform-origin: center;
}

.loaded #elm1-yellow {
  transform: translateX(0%) translateY(0%) scale(1);
}

#elm1-pink {
  transform: translateY(-60%) scale(1.5);
  transform-origin: center;
}

.loaded #elm1-pink {
  transform: translateY(0%) scale(1);
}

#elm2 {
  transform: scale(0);
  transform-origin: 80% bottom;
}

.loaded #elm2 {
  transform: scale(1);
}

#logo-text {
  opacity: 0;
  transition: opacity 1.5s ease-in;
  -webkit-transition: opacity 1.5s ease-in;
  -moz-transition: opacity 1.5s ease-in;
  -o-transition: opacity 1.5s ease-in;
  transition-delay: 0.7s;
}

.loaded #logo-text {
  opacity: 1;
}

#elm3-pink {
  transform: translateY(-100%) translateX(-30%) scale(1.5);
  transform-origin: center;
}

.loaded #elm3-pink {
  transform: translateX(0%) translateY(0%) scale(1);
}

#elm3-yellow {
  transform: rotate(110deg) scale(1.5);
  transform-origin: 15% 40%;
}

.loaded #elm3-yellow {
  transform: rotate(0deg) scale(1) translate(0%, 0%);
}

#elm4 {
  transform: translateY(80%) translateX(-70%) scale(2);
  transform-origin: center;
}

.loaded #elm4 {
  transform: translateY(0%) translateX(0%) scale(1);
}

#elm5-1 {
  transform: scale(1.5);
  transform-origin: -10% 10%;
}

.loaded #elm5-1 {
  transform: scale(1);
}

#elm5-2 {
  transform: scale(1.2);
  transform-origin: 0;
}

.loaded #elm5-2 {
  transform: scale(1);
}

#elm5-3 {
  transform: scale(8);
  transform-origin: 0% 17%;
}

.loaded #elm5-3 {
  transform: scale(1);
}

/* landing section animation end */
#page-wrap {
  opacity: 0;
  visibility: hidden;
}

body:not(.introcompleted) #page-wrap {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

body:not(.introcompleted).loaded #page-wrap {
  transition-delay: 1.5s;
}

body.loaded #page-wrap {
  opacity: 1;
  visibility: visible;
}

#page-wrap {
  overflow: hidden;
  width: 100%;
}

body.menuOpen {
  overflow: hidden;
  height: 100%;
}

header {
  position: fixed;
  z-index: 50;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 20px 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header.shrink {
  background-color: #000;
}

header > div {
  max-width: var(--containerwidth);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.home header:not(.shrink) .logoIcon {
  visibility: hidden;
}

.logoIcon {
  width: 70px;
  height: 70px;
  display: inline-block;
}

footer .logoIcon {
  width: 50px;
  height: 50px;
}

.logoIcon img {
  width: 100%;
  height: 100%;
}

#burgurMenu {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#burgurMenu.active {
  right: 8px;
}

.menuIcon {
  position: absolute;
  width: 40px;
  height: 40px;
  display: block;
  z-index: 1;
  cursor: pointer;
  transition: transform .2s ease;
}

.menuIcon span,
.menuIcon span:before,
.menuIcon span:after {
  content: '';
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 50%;
  display: block;
}

.menuIcon span:before {
  top: -11px;
  left: 0px;
}

.menuIcon span:after {
  top: 10px;
  left: 0px;
}

.menuIcon span,
.menuIcon span:before,
.menuIcon span:after {
  transition: all 0.5s ease-in-out;
}

#burgurMenu.active .menuIcon span {
  background-color: transparent;
}

#burgurMenu.active .menuIcon span:before,
#burgurMenu.active .menuIcon span:after {
  top: 0;
}

#burgurMenu.active .menuIcon span:before {
  transform: rotate(135deg);
}

#burgurMenu.active .menuIcon span:after {
  transform: rotate(-135deg);
}


.menu-container {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  overflow-y: auto;
  padding: 0 0px;
  padding-top: 0px;
  padding-top: 100px;
  padding-bottom: 50px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}

.menu-main-menu-container {
  position: relative;
}

.menu-main-menu-container::before {
  content: '';
  position: fixed;
  width: 18vw;
  height: 35vw;
  left: 22vw;
  top: 15vw;
  opacity: 0;
  -webkit-transform: translate(0%, 0%) rotate(20deg);
  -ms-transform: translate(0%, 0%) rotate(20deg);
  transform: translate(0%, 0%) rotate(20deg);
  /* -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.4s; */
  background: url('images/border-half-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  -moz-animation: borderhalfcircle 50s ease-in-out 2s infinite normal forwards;
  -webkit-animation: borderhalfcircle 50s ease-in-out 2s infinite normal forwards;
  animation: borderhalfcircle 50s ease-in-out 2s infinite normal forwards;
  animation-delay: 2s;
}

@-moz-keyframes borderhalfcircle {
  0% {
    -moz-transform: translate(0%, 0%) rotate(20deg);
  }

  12.5% {
    -moz-transform: translate(15%, -5%) rotate(25deg);
  }

  25% {
    -moz-transform: translate(25%, -20%) rotate(30deg);
  }

  37.5% {
    -moz-transform: translate(35%, -5%) rotate(25deg);
  }

  50% {
    -moz-transform: translate(15%, -20%) rotate(20deg);
  }

  62.5% {
    -moz-transform: translate(0%, -5%) rotate(15deg);
  }

  75% {
    -moz-transform: translate(-10%, 5%) rotate(10deg);
  }

  87.5% {
    -moz-transform: translate(5%, 10%) rotate(15deg);
  }

  100% {
    -moz-transform: translate(0%, 0%) rotate(20deg);
  }
}

@-webkit-keyframes borderhalfcircle {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(20deg);
  }

  12.5% {
    -webkit-transform: translate(15%, -5%) rotate(25deg);
  }

  25% {
    -webkit-transform: translate(25%, -20%) rotate(30deg);
  }

  37.5% {
    -webkit-transform: translate(35%, -5%) rotate(25deg);
  }

  50% {
    -webkit-transform: translate(15%, -20%) rotate(20deg);
  }

  62.5% {
    -webkit-transform: translate(0%, -5%) rotate(15deg);
  }

  75% {
    -webkit-transform: translate(-10%, 5%) rotate(10deg);
  }

  87.5% {
    -webkit-transform: translate(5%, 10%) rotate(15deg);
  }

  100% {
    -webkit-transform: translate(0%, 0%) rotate(20deg);
  }
}

@keyframes borderhalfcircle {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(20deg);
    transform: translate(0%, 0%) rotate(20deg);
  }

  12.5% {
    -webkit-transform: translate(15%, -5%) rotate(25deg);
    transform: translate(15%, -5%) rotate(25deg);
  }

  25% {
    -webkit-transform: translate(25%, -20%) rotate(30deg);
    transform: translate(25%, -20%) rotate(30deg);
  }

  37.5% {
    -webkit-transform: translate(35%, -5%) rotate(25deg);
    transform: translate(35%, -5%) rotate(25deg);
  }

  50% {
    -webkit-transform: translate(15%, -20%) rotate(20deg);
    transform: translate(15%, -20%) rotate(20deg);
  }

  62.5% {
    -webkit-transform: translate(0%, -5%) rotate(15deg);
    transform: translate(0%, -5%) rotate(15deg);
  }

  75% {
    -webkit-transform: translate(-10%, 5%) rotate(10deg);
    transform: translate(-10%, 5%) rotate(10deg);
  }

  87.5% {
    -webkit-transform: translate(5%, 10%) rotate(15deg);
    transform: translate(5%, 10%) rotate(15deg);
  }

  100% {
    -webkit-transform: translate(0%, 0%) rotate(20deg);
    transform: translate(0%, 0%) rotate(20deg);
  }
}

.menu-container::before {
  animation: name duration timing-function delay iteration-count direction fill-mode;
  content: '';
  position: fixed;
  width: 20vw;
  height: 20vw;
  left: 3vw;
  top: -5vw;
  opacity: 0;
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  /* -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.4s; */
  background: url('images/border-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  -moz-animation: bordercircle 40s ease-in-out 2s infinite normal forwards;
  -webkit-animation: bordercircle 40s ease-in-out 2s infinite normal forwards;
  animation: bordercircle 40s ease-in-out 2s infinite normal forwards;

  animation-delay: 2s;
}


@-moz-keyframes bordercircle {
  0% {
    -moz-transform: translate(0%, 0%);
  }

  12.5% {
    -moz-transform: translate(-15%, 15%);
  }

  25% {
    -moz-transform: translate(-20%, 25%);
  }

  37.5% {
    -moz-transform: translate(-5%, 15%);
  }

  50% {
    -moz-transform: translate(-15%, 5%);
  }

  62.5% {
    -moz-transform: translate(10%, -15%);
  }

  75% {
    -moz-transform: translate(-10%, 5%);
  }

  87.5% {
    -moz-transform: translate(5%, 10%);
  }

  100% {
    -moz-transform: translate(0%, 0%);
  }
}

@-webkit-keyframes bordercircle {
  0% {
    -webkit-transform: translate(0%, 0%);
  }

  12.5% {
    -webkit-transform: translate(-15%, 15%);
  }

  25% {
    -webkit-transform: translate(-20%, 25%);
  }

  37.5% {
    -webkit-transform: translate(-5%, 15%);
  }

  50% {
    -webkit-transform: translate(-15%, 5%);
  }

  62.5% {
    -webkit-transform: translate(10%, -15%);
  }

  75% {
    -webkit-transform: translate(-10%, 5%);
  }

  87.5% {
    -webkit-transform: translate(5%, 10%);
  }

  100% {
    -webkit-transform: translate(0%, 0%);
  }
}

@keyframes bordercircle {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  12.5% {
    -webkit-transform: translate(-15%, 15%);
    transform: translate(-15%, 15%);
  }

  25% {
    -webkit-transform: translate(-20%, 25%);
    transform: translate(-20%, 25%);
  }

  37.5% {
    -webkit-transform: translate(-5%, 15%);
    transform: translate(-5%, 15%);
  }

  50% {
    -webkit-transform: translate(-15%, 5%);
    transform: translate(-15%, 5%);
  }

  62.5% {
    -webkit-transform: translate(10%, -15%);
    transform: translate(10%, -15%);
  }

  75% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }

  87.5% {
    -webkit-transform: translate(5%, 10%);
    transform: translate(5%, 10%);
  }

  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}

.menu-container::after {
  content: '';
  position: fixed;
  width: 50vw;
  height: 50vw;
  right: -25vw;
  bottom: -25vw;
  opacity: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /* -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.4s; */
  background: url('images/border-multiple-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: bordermulticircle 10s linear 2s infinite normal forwards;
  animation: bordermulticircle 10s linear 2s infinite normal forwards;
  animation-delay: 2s;
}

@-moz-keyframes bordermulticircle {

  0%,
  98% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  48%,
  53% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@-webkit-keyframes bordermulticircle {

  0%,
  98% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  48%,
  53% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes bordermulticircle {

  0%,
  98% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  48%,
  53% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

body.menuOpen .menu-container::before,
body.menuOpen .menu-container::after,
.menu-main-menu-container::before {
  opacity: 1;
}

body.menuOpen .menu-container {
  opacity: 1;
  visibility: visible;
}

ul.mainMenu {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

ul.mainMenu > li {
  margin: 0px;
  padding: 0 50px 20px 50px;
  opacity: 0;
  position: relative;
}

ul.mainMenu li:last-child {
  padding-bottom: 0px;
}

ul.mainMenu li a {
  text-decoration: none;
  color: #fff;
  font-family: 'matterbold';
  font-size: 65px;
  line-height: 1.0615384615384615;
  text-transform: uppercase;
}

.no-touch ul.mainMenu li a:hover {
  color: #FED900;
  text-decoration: none;
}

ul.mainMenu li.current-menu-item > a,
ul.mainMenu li.current-page-ancestor a {
  color: #FED900;
}

.subMenuTrigger {
  position: absolute;
  right: 0px;
  top: 20px;
  width: 35px;
  height: 35px;
  cursor: pointer;

}

.subMenuTrigger svg {
  height: 100%;
  width: 100%;
}

.subMenuTrigger path {
  transition: 0.45s all;
}

.subMenuTrigger path.circle {
  fill: transparent;
}

.subMenuTrigger path.circle2 {
  fill: #fff;
}

.subMenuTrigger path.line {
  stroke: #fff;
}

.subMenuTrigger:hover path.circle,
ul.mainMenu li.on .subMenuTrigger path.circle {
  fill: var(--yellow);
}

.subMenuTrigger:hover path.circle2,
ul.mainMenu li.on .subMenuTrigger path.circle2 {
  fill: var(--yellow);
}

.subMenuTrigger:hover path.line,
ul.mainMenu li.on .subMenuTrigger path.line {
  stroke: #000000;
}



ul.mainMenu li ul.sub-menu {
  margin: 0px;
  display: none;
  list-style: none;
  padding: 15px 0px 10px 0px;
}

ul.mainMenu li ul.sub-menu li a {
  font-size: 40px;
  line-height: 1.125;
  font-family: 'matterlight';
}

body.menuOpen ul.mainMenu > li {
  -webkit-animation: showMenu 0.4s ease-in-out forwards;
  -moz-animation: showMenu 0.4s ease-in-out forwards;
  -ms-animation: showMenu 0.4s ease-in-out forwards;
  animation: showMenu 0.4s ease-in-out forwards;
}

body.menuOpen ul.mainMenu li:nth-child(1) {
  animation-delay: 0.30s;
}

body.menuOpen ul.mainMenu li:nth-child(2) {
  animation-delay: 0.40s;
}

body.menuOpen ul.mainMenu li:nth-child(3) {
  animation-delay: 0.50s;
}

body.menuOpen ul.mainMenu li:nth-child(4) {
  animation-delay: 0.60s;
}

body.menuOpen ul.mainMenu li:nth-child(5) {
  animation-delay: 0.70s;
}

body.menuOpen ul.mainMenu li:nth-child(6) {
  animation-delay: 0.80s;
}

body.menuOpen ul.mainMenu li:nth-child(7) {
  animation-delay: 0.90s;
}

body.menuOpen ul.mainMenu li:nth-child(8) {
  animation-delay: 1s;
}

@keyframes showMenu {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
}

@-webkit-keyframes showMenu {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
}

.homeLogo {
  width: 280px;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  display: block;
}

.homeLogo img {
  width: 100%;
  height: auto;
}

.HeroBanner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.HeroBanner img {
  object-position: top center;
}

.HeroBanner .playIcon {
  position: absolute;
  z-index: 11;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  padding: 20px;
  height: max(150px, min(150px + (200 - 150) * ((100vw - 1263px) / (1920 - 1263)), 200px));
  width: max(150px, min(150px + (200 - 150) * ((100vw - 1263px) / (1920 - 1263)), 200px));
  cursor: pointer;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
}
.HeroBanner .playIcon path {-webkit-transition: 0.35s ease;-o-transition: 0.35s ease;transition: 0.35s ease;}
.HeroBanner .playIcon path.circle {
  fill: rgba(0, 0, 0, 0.4);
}
.HeroBanner .playIcon:hover path.triangle  {
  opacity: 0.7;
}
.HeroBanner.played .playIcon {
  opacity: 0;
  pointer-events: none;
}
.HeroBanner .bannerVideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
  -webkit-transition-delay: 0.75s;
       -o-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.HeroBanner .bannerVideo .videoBox {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 100%;
  z-index: 0;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
}
.HeroBanner .bannerVideo .videoBox > div{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: relative;
  width: 100%;
  z-index: 1;
  height: 100%;
  pointer-events: none;
}
.HeroBanner .bannerVideo .videoBox > div iframe {
  width: 100vw;
  height: 80.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: all;
}

.HeroBanner .bannerVideo ~ .imageHolder > div {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.HeroBanner .bannerVideo ~ .imageHolder > div img {
  -webkit-transform: unset !important;
      -ms-transform: unset !important;
          transform: unset !important;
}
.HeroBanner.played .imageHolder{
  pointer-events: none;
}
.HeroBanner.played .imageHolder > div {
  opacity: 0;
}
.HeroBanner .bannerVideo ~ .leftPart,
.HeroBanner .bannerVideo ~ .rightPart { -webkit-transition: 0.5s ease; -o-transition: 0.5s ease; transition: 0.5s ease; }
.HeroBanner.played .leftPart,
.HeroBanner.played .rightPart {
  /* opacity: 0; */
  pointer-events: none;
}
.leftPart,
.rightPart {
  position: absolute;
  width: 43vh;
  height: 101%;
  top: -1px;
  pointer-events: none;
}

.leftPart img,
.rightPart img {
  position: absolute;
  height: 100%;
}

.leftPart,
.rightPart img {
  left: 0;
}

.rightPart,
.leftPart img {
  right: 0;
}

.textCTARow {
  padding: 220px 220px;
  position: relative;
}

.imageTextCTARow_Home1 .textCTARow {
  padding-left: 100px;
  padding-right: 100px;
}

.textCTARow .circle {
  position: absolute;
  width: 19vw;
  height: 19vw;
  left: -20%;
  top: calc(50% - 100px);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  -webkit-backface-visibility: hidden;
}

.textCTARow.animated .circle {
  -webkit-animation: moveright 1.5s cubic-bezier(.16, .84, .44, 1) forwards, floatelm 6s linear 2s infinite normal forwards, ;
  animation: moveright 1.5s cubic-bezier(.16, .84, .44, 1) forwards, floatelm 6s linear 2s infinite normal forwards;
  -webkit-animation: moveright 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
  animation: moveright 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
}

@-moz-keyframes moveright {
  0% {
    left: -20%;
  }

  100% {
    left: -10%;
  }
}

@-webkit-keyframes moveright {
  0% {
    left: -20%;
  }

  100% {
    left: -10%;
  }
}

@keyframes moveright {
  0% {
    left: -20%;
  }

  100% {
    left: -10%;
  }
}

@-moz-keyframes floatelm {

  0%,
  98% {
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }

  48%,
  53% {
    -webkit-transform: translate(2%, -58%);
    -ms-transform: translate(2%, -58%);
    transform: translate(2%, -58%);
  }
}

@-webkit-keyframes floatelm {

  0%,
  98% {
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }

  48%,
  53% {
    -webkit-transform: translate(2%, -58%);
    -ms-transform: translate(2%, -58%);
    transform: translate(2%, -58%);
  }
}

@keyframes floatelm {

  0%,
  98% {
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }

  48%,
  53% {
    -webkit-transform: translate(2%, -58%);
    -ms-transform: translate(2%, -58%);
    transform: translate(2%, -58%);
  }
}

.ylines {
  position: absolute;
  z-index: -1;
  width: 15vw;
  height: 30vw;
  max-width: 260px;
  max-height: 530px;
  right: -20%;
  opacity: 0;
  bottom: 0%;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s opacity;
  -o-transition: 2s opacity;
  transition: 2s opacity;
  /* transition-delay: 0.2s; */
}

.textCTARow.animated .ylines {
  right: 0%;
  opacity: 1;
}

/* home page textCTARow end */
.textCTARow > div.centerBlock {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 23px;
  line-height: 1.2608695652173914;
  letter-spacing: -0.23px;

}

.textCTARow > div h2,
.textCTARow > div h1 {
  margin-bottom: 40px;
  text-transform: uppercase;
}

.textCTARow > div h5 {
  margin-bottom: 0px;
  text-transform: uppercase;
}

.textCTARow > div .primaryBtn {
  margin-top: 45px;
}

.fullWidthImgRow {
  background-color: rgba(256, 168, 185, 0.2);
  max-height: 98vh;
  overflow: hidden;
}

.fullWidthImgRow img {
  width: 100%;
  height: auto;
}

.textCTARow .oSquare {
  position: absolute;
  width: 15vw;
  height: 15vw;
  left: 0%;
  opacity: 0;
  bottom: 0;
  -webkit-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  transform-origin: center;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);

}

.textCTARow.animated .oSquare {
  -webkit-transform: translateX(-16%) rotate(0deg);
  -ms-transform: translateX(-16%) rotate(0deg);
  transform: translateX(-16%) rotate(0deg);
  opacity: 1;
}

.textCTARow .yTraingle {
  position: absolute;
  z-index: -1;
  width: 26vw;
  height: 26vw;
  right: -50%;
  top: calc(50% - 100px);
  opacity: 0;
  -webkit-transform: translate(0%, -50%) rotate(-40deg);
  -ms-transform: translate(0%, -50%) rotate(-40deg);
  transform: translate(0%, -50%) rotate(-40deg);
  transform-origin: center;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-transition: right 1.5s linear;
  transition: right 1.5s linear;
}

.textCTARow.animated .yTraingle {
  opacity: 1;
  right: -5%;
  /* -webkit-animation: Trainglemoveright 1.5s cubic-bezier(.16,.84,.44,1) forwards, yTraingle 6s linear 2s infinite normal forwards;
  animation: Trainglemoveright 1.5s cubic-bezier(.16,.84,.44,1) forwards, yTraingle 6s linear 2s infinite normal forwards */
}

@-moz-keyframes Trainglemoveright {
  0% {
    right: -50%;
  }

  100% {
    right: -5%;
  }
}

@-webkit-keyframes Trainglemoveright {
  0% {
    right: -50%;
  }

  100% {
    right: -5%;
  }
}

@keyframes Trainglemoveright {
  0% {
    right: -50%;
  }

  100% {
    right: -5%;
  }
}

@-moz-keyframes yTraingle {

  0%,
  98% {
    -webkit-transform: translate(0%, -70%) rotate(-40deg);
    -ms-transform: translate(0%, -70%) rotate(-40deg);
    transform: translate(0%, -70%) rotate(-40deg);
  }

  48%,
  53% {
    -webkit-transform: translate(5%, -65%) rotate(-45deg);
    -ms-transform: translate(5%, -65%) rotate(-45deg);
    transform: translate(5%, -65%) rotate(-45deg);
  }
}

@-webkit-keyframes yTraingle {

  0%,
  98% {
    -webkit-transform: translate(0%, -70%) rotate(-40deg);
    -ms-transform: translate(0%, -70%) rotate(-40deg);
    transform: translate(0%, -70%) rotate(-40deg);
  }

  48%,
  53% {
    -webkit-transform: translate(5%, -65%) rotate(-45deg);
    -ms-transform: translate(5%, -65%) rotate(-45deg);
    transform: translate(5%, -65%) rotate(-45deg);
  }
}

@keyframes yTraingle {

  0%,
  98% {
    -webkit-transform: translate(0%, -70%) rotate(-40deg);
    -ms-transform: translate(0%, -70%) rotate(-40deg);
    transform: translate(0%, -70%) rotate(-40deg);
  }

  48%,
  53% {
    -webkit-transform: translate(5%, -65%) rotate(-45deg);
    -ms-transform: translate(5%, -65%) rotate(-45deg);
    transform: translate(5%, -65%) rotate(-45deg);
  }
}

.textCTARow .greenLeaf {
  position: absolute;
  right: -50%;
  top: -30%;
  width: 42vw;
  height: 30vw;
  opacity: 0;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  transform: rotate(20deg);
}

.textCTARow.animated .greenLeaf {
  opacity: 1;
  /* -webkit-animation: greenLeafmoveright 1.5s cubic-bezier(.16,.84,.44,1) forwards, greenLeaf 6s linear 2s infinite normal forwards;
  animation: greenLeafmoveright 1.5s cubic-bezier(.16,.84,.44,1) forwards, greenLeaf 6s linear 2s infinite normal forwards; */
  -webkit-animation: greenLeafmoveright 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
  animation: greenLeafmoveright 1.5s cubic-bezier(.16, .84, .44, 1) forwards;

}

@-moz-keyframes greenLeafmoveright {
  0% {
    right: -50%;
  }

  100% {
    right: -15%;
  }
}

@-webkit-keyframes greenLeafmoveright {
  0% {
    right: -50%;
  }

  100% {
    right: -15%;
  }
}

@keyframes greenLeafmoveright {
  0% {
    right: -50%;
  }

  100% {
    right: -15%;
  }
}

@-moz-keyframes greenLeaf {

  0%,
  98% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@-webkit-keyframes greenLeaf {

  0%,
  98% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes greenLeaf {

  0%,
  98% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

/* home imageTextCTARow end */
.eventRow {
  background-color: rgba(256, 168, 185, 0.3);
  padding: 235px 50px;
}

.eventRow .blueArrowWrap {
  display: block;
  position: absolute;
  left: -10%;
  width: 36vw;
  height: 16vw;
  max-width: 690px;
  max-height: 300px;
  top: -8.5vw;
  bottom: auto;
  overflow: hidden;
}

.eventRow .blueArrowWrap img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
}

.eventRow > div {
  /* max-width: var(--containerwidth); */
  max-width: 1500px;
  padding: 0px 40px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.eventRow > div .bgcaption {
  display: block;
  position: absolute;
  z-index: 0;
  top: -4vw;
  height: 17vw;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.eventSlider {
  opacity: 0;
  visibility: hidden;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

.eventSlider.loaded {
  opacity: 1;
  visibility: visible;
}

.eventSlider .slick-arrow {
  top: 420px;
}

.eventRow h2 {
  z-index: 1;
  position: relative;
  margin-top: 60px;
  margin-bottom: 20px;
}

.eventBlock {
  padding: 40px 40px 50px 40px;
  height: 100%;
  position: relative;
  display: flex !important;
  flex-direction: column;
}

.eventBlock a {
  text-decoration: none;
  display: block;
  height: 100%;
  position: relative;
}

.eventBlock .textBlock a {
  display: inline-block;
  text-decoration: underline;
}

.eventBlock h5 {
  text-transform: uppercase;
  font-family: 'matterbold';
  margin-bottom: 30px;
}

.eventBlock .imageBlock {
  max-width: 320px;
  width: 100%;
  position: relative;
  margin: 0 auto 40px auto;
  border-radius: 100%;
  overflow: hidden;
  background-color: rgba(256, 168, 185, 0.2);
}

.eventBlock .imageBlock .imageHolder,
.eventBlock .imageBlock .imageHolder img {
  border-radius: 100%;
  overflow: hidden;
}

.eventBlock .textBlock {
  max-width: 260px;
  margin: 0 auto;
}

.eventBlock .metadate {
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'matterbold';
  /* position: absolute;
  bottom: 20px;
    width: 90%;
  left: 50%;
  transform: translateX(-50%);
  right: 0; */
  text-align: center;
  margin-top: auto;
  padding: 15px 0 0;
}

/* home page css end */
.page-template-template-availability-workspace-php .HeroBanner,
.page-template-template-availability-leisure-retail .HeroBanner {
  background-color: var(--darkblue);
  padding-bottom: 100px;
}

.HeroBanner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-template-template-availability-workspace-php .HeroBanner::before,
.page-template-template-availability-leisure-retail .HeroBanner::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: -50%;
  left: -50%;
  width: 32vw;
  height: 65vw;
  transform: rotate(45deg) translate(0%, 0%);
  background: url('images/yellow-half-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
}

.page-template-template-availability-workspace-php .HeroBanner.animated::before,
.page-template-template-availability-leisure-retail .HeroBanner.animated::before {
  -webkit-animation: herohalfcirclemove 1.5s cubic-bezier(.16, .84, .44, 1) forwards, herohalfcircle 7s linear 2s infinite normal forwards;
  animation: herohalfcirclemove 1.5s cubic-bezier(.16, .84, .44, 1) forwards, herohalfcircle 7s linear 2s infinite normal forwards;
}

@-moz-keyframes herohalfcirclemove {
  0% {
    top: -50%;
    left: -50%;
  }

  100% {
    top: -25%;
    left: -15%;
  }
}

@-webkit-keyframes herohalfcirclemove {
  0% {
    top: -50%;
    left: -50%;
  }

  100% {
    top: -25%;
    left: -15%;
  }
}

@keyframes herohalfcirclemove {
  0% {
    top: -50%;
    left: -50%;
  }

  100% {
    top: -25%;
    left: -15%;
  }
}

@-webkit-keyframes herohalfcircle {

  0%,
  98% {
    -webkit-transform: translate(0%, 0%) rotate(45deg);
    -ms-transform: translate(0%, 0%) rotate(45deg);
    transform: translate(0%, 0%) rotate(45deg);
  }

  48%,
  53% {
    -webkit-transform: translate(5%, -5%) rotate(55deg);
    -ms-transform: translate(5%, -5%) rotate(55deg);
    transform: translate(5%, -5%) rotate(55deg)
  }
}

@keyframes herohalfcircle {

  0%,
  98% {
    -webkit-transform: translate(0%, 0%) rotate(45deg);
    -ms-transform: translate(0%, 0%) rotate(45deg);
    transform: translate(0%, 0%) rotate(45deg);
  }

  48%,
  53% {
    -webkit-transform: translate(5%, -5%) rotate(55deg);
    -ms-transform: translate(5%, -5%) rotate(55deg);
    transform: translate(5%, -5%) rotate(55deg)
  }
}

.HeroBanner .centerBlock {
  padding: 20px 50px;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.25px;
  text-align: center;
  font-family: 'matterregular';
  max-width: 990px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.HeroBanner .centerBlock h1 {
  margin-bottom: 40px;
}

.HeroBanner.communityTopBanner .centerBlock {
  max-width: 700px;
}

.textCTARow .centerBlock p {
  padding-bottom: 20px;
}

.HeroBanner.leisureRetail .centerBlock p,
.HeroBanner.workspaceTopBanner .centerBlock p {
  max-width: 590px;
  margin: 0 auto;
}

.textCTARow.locationImageText .centerBlock p {
  max-width: 925px;
  margin: 0 auto;
}

.HeroBanner.esgTopBanner .centerBlock p {
  max-width: 550px;
  margin: 0 auto;
}

.HeroBanner.locationTopBanner .centerBlock {
  max-width: 860px;
}

.HeroBanner .oSquare {
  position: absolute;
  width: 45vw;
  height: 45vw;
  right: -22%;
  opacity: 0;
  bottom: -20%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  transform-origin: center;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);

}

.HeroBanner.animated .oSquare {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.nextScroll {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  z-index: 3;
  left: 50%;
  bottom: 22%;
  ;
  transform: translateX(-50%);
}

.nextScroll svg path.fillpath {
  -webkit-transition: fill .5s ease-in-out;
  transition: fill .5s ease-in-out;
  -o-transition: fill .5s ease-in-out;
  transition: fill .5s ease-in-out;
}

.nextScroll:hover svg path.fillpath {
  fill: #fff;
}

.heroTab {
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 0px;
  display: flex;
  justify-content: space-between;
}

.heroTab > div {
  width: calc(50% - 1px);
}

.heroTab > div a {
  display: block;
  cursor: pointer;
  padding: 30px 20px;
  font-family: 'matterregular';
  font-size: 41px;
  line-height: 1.1219512195121952;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.heroTab > div a:hover {
  background-color: #f54d9d
}

.heroTab > div a.active {
  background-color: var(--pink);
  pointer-events: none;
}

.ImgRowWithPopup {
  background-color: rgba(256, 168, 185, 0.2);
  height: 95vh;
  max-height: 65vw;
  overflow: hidden;
}

.framelink {
  cursor: pointer;
  display: block;
}

.vricon {
  /* position: absolute;
  left: 8%;
  top: 18%;
  z-index: 10;
  width: 20vw;
  max-width: 130px; */


  width: max(80px, min(80px + (160 - 80) * ((100vw - 360px) / (1920 - 360)), 160px));
  height: max(80px, min(80px + (160 - 80) * ((100vw - 360px) / (1920 - 360)), 160px));
  background: transparent url('images/360-rotate.svg') no-repeat center center;
  background-size: contain;
  position: absolute;
  z-index: 3;
  opacity: 1;
  display: inline-block;
  border-radius: 50%;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
  left: 5%;
  top: 5%;

}

.vricon::before {
  /* content: ""; */
  width: 100%;
  height: 100%;
  display: inline-block;
  background: url('images/360-view-border.svg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: rotatering 8s 0s linear infinite;
  -moz-animation: rotatering 8s 0s linear infinite;
  -ms-animation: rotatering 8s 0s linear infinite;
  animation: rotatering 8s 0s linear infinite;
  animation-delay: 1s;
}


@keyframes rotatering {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotatering {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.vrTourpopup {
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0%;
  transition: all .5s ease-in-out;
  z-index: 111111;
  overflow: hidden;
  opacity: 0;
}

.vrTourpopup.active {
  right: 0;
  opacity: 1
}

.vrTourpopup .closeIcon {
  z-index: 10;
  cursor: pointer
}

.closeIcon {
  position: absolute;
  right: 90px;
  top: 25px;
  margin: auto;
  background: url('images/close-icon.svg') no-repeat center center;
  background-size: auto;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  opacity: 0
}

.iframeContainer {
  width: 100%;
  height: 100%;
  clear: both;
  overflow: hidden;
  opacity: 0
}

.iframeContainer iframe {
  width: 100%;
  height: 100%
}

.vrTourpopup .vrLoader {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 120px;
  height: 120px;
  /* background: url('images/rotate360-icon.svg'); */
  /* background: url('images/rotate360-icon.svg'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70px auto;
  animation: ripple1 0.7s linear infinite;
  border-radius: 50%;
  cursor: pointer;
  animation: ripple1 0.7s linear infinite;
  border-radius: 50%
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 205, 178, .3), 0 0 0 5px rgba(107, 205, 178, .3), 0 0 0 15px rgba(107, 205, 178, .3)
  }

  100% {
    box-shadow: 0 0 0 5px rgba(107, 205, 178, .3), 0 0 0 15px rgba(107, 205, 178, .3), 0 0 0 30px rgba(107, 205, 178, 0)
  }
}

@keyframes ripple1 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .3), 0 0 0 5px rgba(255, 255, 255, .3), 0 0 0 15px rgba(255, 255, 255, .3)
  }

  100% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .3), 0 0 0 15px rgba(255, 255, 255, .3), 0 0 0 30px rgba(255, 255, 255, 0)
  }
}

.sheduleArea {
  background-color: rgba(106, 187, 216, 0.3);
  padding: 100px 50px 200px 50px;
}

.sheduleArea > div.centerBlock {
  max-width: var(--containerwidth);
  margin: 0 auto;
  width: 100%;
}

.sheduleArea > div.centerBlock h2 {
  margin-bottom: 80px;
  text-align: center;
}

.sheduleArea > div.centerBlock > div {
  padding: 100px 0;
  text-align: center;
  margin: 0px auto 100px auto;
}

.sheduleArea > div.centerBlock .col_1_1 {
  width: 100%;
  max-width: calc(var(--containerwidth) - 20px);
}

.sheduleArea > div.centerBlock .col,
.positionRelative {
  position: relative;
}

.buildingBlock {
  padding: 0 30px 0 90px;
}

.sheduleArea > div.centerBlock .col.buildingInfo {
  padding: 0 0 0 30px;
}

.blueprintBatch {
  position: absolute;
  bottom: -5vw;
  left: -5vw;
  z-index: 2;
  max-width: 300px;
  max-height: 300px;
  width: 16vw;
  height: 16vw;
  display: block;
  transition: none !important;
}

.buildingBlock img {
  width: 100%;
  height: auto;
}

.buildingInfo table {
  text-transform: uppercase;
  margin-bottom: 0px;
}

.buildingInfo table tr th {
  font-size: 18px;
  letter-spacing: 0.42px;
  line-height: 0.8571428571428571;
  font-family: 'matterbold';
  font-weight: normal;
  color: #000000;
  vertical-align: bottom;
  padding: 8px 10px 10px 12px;
  border: none;
}
.buildingInfo table tr th:nth-child(1) {
  width: 40%;
}
.buildingInfo table tr th:nth-child(2),
.buildingInfo table tr th:nth-child(3),
.buildingInfo table tr th:nth-child(4) {
  width: 20%;
}
.buildingInfo table tr th sup {
  font-size: 12px;
  line-height: 1.2;
  display: block;
}

.buildingInfo table tr td {
  padding: 8px 10px 10px 12px;
  border-bottom: 1px solid #48A3DC;
  transition: 0.5s ease;
  font-size: 14px;
  letter-spacing: 0.42px;
  font-family: 'matterbold';
  font-weight: normal;
  color: #48A3DC;
  line-height: 1.2;
}
.buildingInfo table tr.available td {
  background: #48A3DC;
  border-bottom: 1px solid #D1E6F0;
  color: #fff;
}
.buildingInfo table tr.available:hover td,
.buildingInfo table tr.available.active td  {
  background-color: #F9C2CE;
  border-bottom: 1px solid #48A3DC;
  color: #000;
}
/* .buildingInfo table tr:nth-child(2):not(.available) td {
  color: #FF007A;
} */
.buildingInfo table tr.totalRow td {
  border-bottom: 0px;
  color: #000;
  font-family: 'matterbold';
  font-weight: normal;
  letter-spacing: 0.54px;
  font-size: 18px;
  line-height: 0.8571428571428571;
  border: none;
}

.buildingInfo table tr:not(.available) {
  pointer-events: none;
}

.buildingInfo table tr.available {
  cursor: pointer;
}

.buildingInfo table tr.available:hover {
  background-color: rgba(106, 187, 216, 0.5);
}
.buildingInfo table tr.disablePointer {
  pointer-events: none;
}
/* 
.buildingInfo table tr th:last-child,
.buildingInfo table tr td:last-child {
  text-align: right;
} */

.occupiertext {
  text-align: center !important;
}

/* sheduleofarea css end */
.fancybox-button--play,
.fancybox-button--thumbs {
  display: none !important
}

.floorplanWrapper {
  padding: 0px 50px 0px 50px;
  width: 100%;

  margin: 0 auto;
}

.floorplanWrapper h2 {
  text-align: center;
  margin-bottom: 40px;
}

.floorplanWrapper .greenLeaf {
  position: absolute;
  right: -50%;
  bottom: -12vw;
  width: 42vw;
  height: 30vw;
  opacity: 0;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;max-width: 900px;pointer-events: none;
}

.floorplanWrapper.animated .greenLeaf {
  -webkit-animation: greenLeafmove 1.5s linear forwards, greenLeaf 6s linear 2s infinite normal forwards;
  animation: greenLeafmove 1.5s linear forwards, greenLeaf 6s linear 2s infinite normal forwards;
  -webkit-animation: greenLeafmove 1.5s linear forwards;
  animation: greenLeafmove 1.5s linear forwards;
}

@-moz-keyframes greenLeafmove {
  0% {
    right: -50%;
    opacity: 0;
  }

  100% {
    right: -25%;
    opacity: 1;
  }
}

@-webkit-keyframes greenLeafmove {
  0% {
    right: -50%;
    opacity: 0;
  }

  100% {
    right: -25%;
    opacity: 1;
  }
}

@keyframes greenLeafmove {
  0% {
    right: -50%;
    opacity: 0;
  }

  100% {
    right: -25%;
    opacity: 1;
  }
}

.planSlide {
  display: flex !important;
  height: 100%;
}

.floorSlider {
  width: 100%;
  margin: 0 auto;
}

.floorSlider .slick-prev.slick-arrow {
  left: 27%;
}

.floorSlider .slick-next.slick-arrow {
  right: 0px;
}

.floorSlider .slick-list {
  overflow: visible;
}

.floorSlider .slick-arrow {
  width: 60px;
  height: 120px;
  z-index: 2;
}

.planSlide .floorText {
  width: 27%;
  text-align: left;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  padding-bottom: 37px;
}
.planSlide .floorText .mapLegends, .floorImage .mapLegends{padding:10px 0 15px;
margin-top: auto;position: relative;
}
.planSlide .floorText .mapLegends img, .floorImage .mapLegends img{max-width: 250px;width: 100%;height: auto;}
.floorImage .mapLegends {display: none;}
.floorSize {
  display: flex;
  padding-bottom: 20px;
  flex-direction: column;
  font-size: 30px;
  line-height: 1.2666666666666666;
  /* text-transform: uppercase; */
  /* font-family: 'matterbold'; */
  color: var(--green);
}

.floorText .floorSize:last-child {
  margin-bottom: 20px;
}
.floorplanInfo p {
  padding-bottom: 0;
}
.floorplanInfo {
  font-size: 20px;
  line-height: 1.15;
  padding-bottom: 20px;
}
.floorplanInfo p {
  padding-bottom: 0;
}
.floorplanInfo table tr td,.floorplanInfo table tr th {
  padding: 0 10px 5px 0px;
  border: none; vertical-align: baseline; line-height: 1;
  font-size: 20px;
  line-height: 1.15;}
.planSlide .floorText h2 {
  font-size: 63px;
  line-height: 1.0793650793650793;
  letter-spacing: -0.63px;
  color: var(--pink);
  position: relative;
  display: inline-block;
  padding-bottom: 0px;
  margin-bottom: 35px !important;
  text-align: left !important;
}
.planSlide .floorText h2 span {color: #000000;}
.planSlide .floorText h5.type {
  font-size: 27px;
  line-height: 1.185185185185185;
  letter-spacing: 0px;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-family: 'matterbold';
}

.bottomlegend {
  display: flex;
  align-items: flex-end;
}

.legends {
  width: 28%;
}

.btnWrap {
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.floorplanWrapper .bottomlegend .btnWrap {
  gap: 10px 20px;
  padding-left: max(4px, min(4px + (104 - 4) * ((100vw - 1263px) / (1720 - 1263)), 104px));
}
.floorplanWrapper .bottomlegend .downloadCenter,
.floorplanWrapper .bottomlegend .btnWrap  {
  padding-left: max(128px, min(128px + (240 - 128) * ((100vw - 1263px) / (1920 - 1263)), 240px));
}
.btnWrap .spaceplanbtn,
.btnWrap .floorplanbtn {
  /* margin-left: 20px !important; */
  cursor: pointer;
}

.btnWrap .floorplanbtn.active,
.btnWrap .spaceplanbtn.active {
  display: none !important;
}

.btnWrap.btnActive .spaceplanbtn,
.btnWrap.btnActive .floorplanbtn {
  background-color: var(--green);
  border-color: var(--green);
}

.btnWrap.btnActive .spaceplanbtn:hover,
.btnWrap.btnActive .floorplanbtn:hover {
  color: #ffffff;
}

.bottomlegend ul.planLegends {
  margin: 0px 0px 55px 0px;
  padding: 0px;
  list-style: none;
}

.bottomlegend ul.planLegends li {
  padding: 5px 0px 5px 23px;
  position: relative;
  font-size: 18px;
  line-height: 1.2222222222222223;
}

.bottomlegend ul.planLegends li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: transparent;
  border: 1px solid var(--pink);
}

.bottomlegend ul.planLegends li.one::before {
  background-color: var(--yellow);
}

.retailArea .bottomlegend ul.planLegends li.one::before {
  background-color: var(--orange);
}

.bottomlegend ul.planLegends li.two::before {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 45%, rgba(186, 186, 189, 1) 45%, rgba(186, 186, 189, 1) 100%);
}

.note {
  color: var(--pink);
  font-size: 14px;
  line-height: 1.5714285714285714;
  letter-spacing: -0.28px;
  margin-bottom: 16px;
}

.planSlide .floorImage {
  width: 73%;
  height: 100%;
  /* min-height: 70vh;
  max-height: 70vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  
  flex-direction: column;
}
.planSlide .floorImage .spaceplanBtn
.planSlide .floorImage .spaceplanImg {
  display: none;
}

.planSlide .floorImage {
  height: 100%;
}

.floorplanImg,
.spaceplanImg {
  height: 100%;
  position: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}

.planSlide .floorImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.planSlide .floorplanImg a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.planSlide .floorImage .floorplanImg a:not(.notPopup)::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  -moz-transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  -o-transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  left: 0px;
  top: 0px;
  background: url('images/zoom-in.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  opacity: 0;
  /* background-color: rgb(255 244 233 / 40%); */
}

.planSlide .floorImage .floorplanImg a:not(.notPopup)::after {
  content: '';
  width: 80px;
  height: 80px;
  position: absolute;
  border: 2px solid #008f3e;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  -moz-transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  -o-transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.planSlide .floorImage:hover a:not(.notPopup)::before,
.planSlide .floorImage:hover a:not(.notPopup)::after {
  opacity: 0.85;
}

.planSlide .floorImage a.notPopup,
.planSlide .floorImage a.notPopup {
  pointer-events: none;
}

.floorImage img {
  display: block;
  margin: 0 auto;
}
.spaceplanBtnBox {
  padding-top: 20px;
  margin-top: auto;
  padding-left: max(128px, min(128px + (240 - 128) * ((100vw - 1263px) / (1920 - 1263)), 240px));
  width: 100%;
}
.fancybox-caption .planInfo p {
  padding-bottom: 14px;
}

.overlayScreen {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 111111;
  background-color: #b3dbeb;
}




.executiveSummary {
  background-color: #000;
  padding: 200px 30px;
}

.executiveSummary .col_1_1_1_1 {
  max-width: calc(var(--containerwidth) - 40px);
  width: 100%;
  justify-content: center;
}

.executiveSummary h2 {
  color: var(--pink);
  text-align: center;
}

.executiveSummary .col_1_1_1_1 .col {
  width: 25%;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
}

.executiveSummary .col_1_1_1_1 .col .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 150px;
  margin: 0 auto 10px auto;
}

.executiveSummary .col_1_1_1_1 .col .icon img {
  object-fit: contain;
}

.executiveSummary .col_1_1_1_1 .col h6 {
  font-size: 23px;
  line-height: 1.1304347826086956;
  font-family: 'matterlight';
  letter-spacing: 0px;
  margin-bottom: 30px;
}

.viewflythrough {
  background-color: var(--pink);
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.viewflythrough:hover {
  background-color: var(--darkblue)
}

.viewflythrough span {
  padding: 30px 50px;
  font-size: 41px;
  line-height: 1.1219512195121952;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
}

.gallerySlider {
  opacity: 0;
  visibility: hidden;
  padding: 75px 0px;
}

.gallerySlider.loaded {
  opacity: 1;
  visibility: visible;
}

.gallerySlider .slick-arrow {
  top: auto;
  bottom: 60px;
  transform: none;
}

.gallerySlider .slick-arrow.slick-prev {
  left: 9%;
}

.gallerySlider .slick-arrow.slick-next {
  right: 9%;
}

.gallerySlider .slick-list {
  margin: 0 0 0 -60%;
  width: calc(220%);
}

.gallerySlider .slick-slide {
  padding: 0px 45px;
  height: 100%;
  opacity: 1;
}

.gallerySlider .slick-slide > div {
  position: relative;
  margin-bottom: 20px;
}

.gallerySlider .slick-slide > div h6 {
  font-size: 18px;
  line-height: 1.2222222222222223;
  letter-spacing: 0.54px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'matterregular';
  color: #000;
  padding: 45px 50px 20px 45px;
  height: 110px;
  overflow: hidden;
  margin: 0px;
}

.gallerySlider .slick-slide > div .imageBlock {
  position: relative;
  width: 100%;
  padding-top: 55%;
  overflow: hidden;
  background-color: rgba(256, 168, 185, 0.2);
}

.gallerySlider .slick-slide > div .imageBlock img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modeStudio {
  padding: 200px;
  background-color: var(--blue);
}

.modeStudio .centerBlock {
  text-align: center;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.modeStudio .centerBlock h2,
.modeStudio .centerBlock > img {
  margin-bottom: 60px;
  max-width: 100%;
}

.modeStudio .centerBlock .textBlock {
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  font-size: 23px;
  line-height: 1.2608695652173914;
  letter-spacing: -0.23px;
}
.modeStudio .centerBlock .primaryBtn {
  margin-top: 60px;
}

.modeStudio .popCircle {
  display: block;
  position: absolute;
  left: -40%;
  width: 20vw;
  height: 20vw;
  max-width: 377px;
  max-height: 377px;
  top: 60px;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);

}

.modeStudio .popCircle.animated {
  opacity: 1;
  left: -10%
}

.modeStudio .yelloCircle {
  display: block;
  position: absolute;
  right: 5vw;
  z-index: 0;
  width: 20vw;
  height: 20vw;
  max-width: 392px;
  max-height: 392px;
  bottom: 7vw;
  opacity: 0;
  transform: scale(0) translate(0, 0%);
  -webkit-backface-visibility: hidden;
}

@-moz-keyframes ycircle {

  0%,
  98% {
    -webkit-transform: scale(1) translate(0%, 0%);
    -ms-transform: scale(1) translate(0%, 0%);
    transform: scale(1) translate(0%, 0%);
  }

  48%,
  53% {
    -webkit-transform: scale(1) translate(5%, -10%);
    -ms-transform: scale(1) translate(5%, -10%);
    transform: scale(1) translate(5%, -10%);
  }
}

@-webkit-keyframes ycircle {

  0%,
  98% {
    -webkit-transform: scale(1) translate(0%, 0%);
    -ms-transform: scale(1) translate(0%, 0%);
    transform: scale(1) translate(0%, 0%);
  }

  48%,
  53% {
    -webkit-transform: scale(1) translate(5%, -10%);
    -ms-transform: scale(1) translate(5%, -10%);
    transform: scale(1) translate(5%, -10%);
  }
}

@keyframes ycircle {

  0%,
  98% {
    -webkit-transform: scale(1) translate(0%, 0%);
    -ms-transform: scale(1) translate(0%, 0%);
    transform: scale(1) translate(0%, 0%);
  }

  48%,
  53% {
    -webkit-transform: scale(1) translate(5%, -10%);
    -ms-transform: scale(1) translate(5%, -10%);
    transform: scale(1) translate(5%, -10%);
  }
}

@-moz-keyframes ycirclemove {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes ycirclemove {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ycirclemove {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.modeStudio .yelloCircle.animated {
  opacity: 1;
  -webkit-animation: ycirclemove 1.5s cubic-bezier(.16, .84, .44, 1) forwards, ycircle 6s linear 2s infinite normal forwards;
  animation: ycirclemove 1.5s cubic-bezier(.16, .84, .44, 1) forwards, ycircle 6s linear 2s infinite normal forwards;
  /* -webkit-animation: ycirclemove 1.5s cubic-bezier(.16,.84,.44,1) forwards;
  animation: ycirclemove 1.5s cubic-bezier(.16,.84,.44,1) forwards; */
}

.modeStudio .pinksquare {
  display: block;
  position: absolute;
  left: -40%;
  width: 12.5vw;
  height: 12.5vw;
  bottom: 0px;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);

}

.modeStudio .pinksquare.animated {
  opacity: 1;
  left: 10%
}

/* workspace end here */
.retailArea {
  background-color: var(--lightyellow);
  padding: 200px 50px 200px 50px;
}
.retailArea .textColIntro {
  margin-bottom: 100px;
}
.retailArea > div.centerBlock {
  padding-left: max(0px, min(0px + (50 - 0) * ((100vw - 1820px) / (1920 - 1820)), 50px));
  padding-right: max(0px, min(0px + (50 - 0) * ((100vw - 1820px) / (1920 - 1820)), 50px));
  margin: 0 auto;
  width: 100%;
}

.textColIntro {
  margin-bottom: 200px;
}

.retailArea .textColIntro .textBlock {
  font-size: 23px;
  line-height: 1.2608695652173914;
}
.retailArea .textColIntro .centerBlock h2 {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.retailArea .textColIntro .textBlock { justify-content: center; }
.retailArea .textColIntro .textBlock .col {max-width: 650px;}

.retailArea .ringcircle {
  display: block;
  position: absolute;
  left: -30%;
  width: 27vw;
  height: 27vw;
  top: -7vw;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all;
  -o-transition: 2s all;
  transition: 2s all;
  transition-delay: 0.2s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.retailArea .ringcircle.animated {
  opacity: 1;
  /* -webkit-animation: bordermulticircle 6s linear 2s infinite normal forwards;
  animation: bordermulticircle 6s linear 2s infinite normal forwards;
  animation-delay: 2s; */
  left: -9.5%;
}

.textColIntro .bluearrowrightWrap {
  display: block;
  position: absolute;
  right: -20%;
  width: 32vw;
  height: 16vw;
  max-height: 300px;
  max-width: 600px;
  top: -50px;
  bottom: auto;
  overflow: hidden;
}

.textColIntro .bluearrowrightWrap img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0px;
}

.textColIntro .centerBlock {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.textColIntro .centerBlock img {
  margin-bottom: 40px;
  max-width: 390px;
}

.textColIntro .centerBlock h5 {
  font-size: 30px;
  line-height: 1.1666666666666667;
  letter-spacing: 0.3px;
  font-family: 'matterregular';
  margin-bottom: 60px;
  text-align: center;
}

.textColIntro .col_1_1 .col {
  padding: 0px 30px;
  text-align: center;
  flex-grow: 1;
}

.floorplanWrapper .triangle {
  position: absolute;
  z-index: 1;
  right: -50%;
  bottom: -20vw;
  width: 20vw;
  height: 20vw;
  opacity: 0;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  transition: opacity 0.5s linear, right 0.75s ease-in;
}

.floorplanWrapper.animated .triangle {
  opacity: 1;
  right: -10%;
  /* -webkit-animation: movetriangle 1.5s cubic-bezier(.16,.84,.44,1) forwards, triangle 6s linear 2s infinite normal forwards;
  animation: movetriangle 1.5s cubic-bezier(.16,.84,.44,1) forwards, triangle 6s linear 2s infinite normal forwards */
}

@-moz-keyframes movetriangle {
  0% {
    right: -50%;
  }

  100% {
    right: -10%;
  }
}

@-webkit-keyframes movetriangle {
  0% {
    right: -50%;
  }

  100% {
    right: -10%;
  }
}

@keyframes movetriangle {
  0% {
    right: -50%;
  }

  100% {
    right: -10%;
  }
}

@-moz-keyframes triangle {

  0%,
  98% {
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }
}

@-webkit-keyframes triangle {

  0%,
  98% {
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }
}

@keyframes triangle {

  0%,
  98% {
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }
}

.modeStudio .rgrcircle {
  display: block;
  position: absolute;
  right: -40%;
  left: auto;
  width: 20vw;
  height: 20vw;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);
}

.modeStudio .rgrcircle.animated {
  opacity: 1;
  right: -7%;
  left: auto;
}

.modeStudio .centerBlock .redcircle {
  display: block;
  position: absolute;
  left: -12vw;
  width: 15vw;
  height: 15vw;
  bottom: -7vw;
  opacity: 0;
  transform: scale(0) translate(0, 0%);
  -webkit-backface-visibility: hidden;
}

@-moz-keyframes movemoderedcircle {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes movemoderedcircle {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes movemoderedcircle {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-moz-keyframes moderedcircle {

  0%,
  98% {
    -webkit-transform: scale(1) translate(0%, 0%);
    -ms-transform: scale(1) translate(0%, 0%);
    transform: scale(1) translate(0%, 0%);
  }

  48%,
  53% {
    -webkit-transform: scale(1) translate(5%, -10%);
    -ms-transform: scale(1) translate(5%, -10%);
    transform: scale(1) translate(5%, -10%);
  }
}

@-webkit-keyframes moderedcircle {

  0%,
  98% {
    -webkit-transform: scale(1) translate(0%, 0%);
    -ms-transform: scale(1) translate(0%, 0%);
    transform: scale(1) translate(0%, 0%);
  }

  48%,
  53% {
    -webkit-transform: scale(1) translate(5%, -10%);
    -ms-transform: scale(1) translate(5%, -10%);
    transform: scale(1) translate(5%, -10%);
  }
}

@keyframes moderedcircle {

  0%,
  98% {
    -webkit-transform: scale(1) translate(0%, 0%);
    -ms-transform: scale(1) translate(0%, 0%);
    transform: scale(1) translate(0%, 0%);
  }

  48%,
  53% {
    -webkit-transform: scale(1) translate(5%, -10%);
    -ms-transform: scale(1) translate(5%, -10%);
    transform: scale(1) translate(5%, -10%);
  }
}

.modeStudio .centerBlock .redcircle.animated {
  opacity: 1;
  /* -webkit-animation: movemoderedcircle 1.5s linear forwards, moderedcircle 6s linear 2s infinite normal forwards;
  animation: movemoderedcircle 1.5s linear forwards, moderedcircle 6s linear 2s infinite normal forwards; */
  -webkit-animation: movemoderedcircle 1.5s linear forwards;
  animation: movemoderedcircle 1.5s linear forwards;
}

.modeStudio .bluearrowrightWrap {
  display: block;
  position: absolute;
  left: -3%;
  width: 32vw;
  height: 16vw;
  max-height: 300px;
  max-width: 600px;
  top: 0px;
  bottom: auto;
  overflow: hidden;
}

.modeStudio .bluearrowrightWrap img {

  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
}

.modeStudio .centerBlock .textBlock table {
  width: 90% !important; margin: 20px auto 0;
}
.modeStudio .centerBlock .textBlock table td, .modeStudio .centerBlock .textBlock table th {
  /* border: none !important; */
}
.modeStudio .centerBlock .textBlock table sup { font-size: 55%; }
.modeStudio .centerBlock .textBlock table tr td, .modeStudio .centerBlock .textBlock table tr th {
  padding: 8px 0; height: auto !important;
}
.modeStudio .centerBlock .textBlock table tr td:first-child, 
.modeStudio .centerBlock .textBlock table tr th:first-child {
  text-align: left;
}
.modeStudio .centerBlock .textBlock table tr td:last-child, 
.modeStudio .centerBlock .textBlock table tr th:last-child {
  text-align: right;
}
.modeStudio .centerBlock .textBlock table tfoot td,
.modeStudio .centerBlock .textBlock table thead td, 
.modeStudio .centerBlock .textBlock table tr th {
  font-family: 'matterbold';
}
.modeStudio .centerBlock .textBlock table tfoot td,
.modeStudio .centerBlock .textBlock table tfoot th {
  border: none !important;
}

/* availabilty pages end here */
.page-template-template-esg-php .HeroBanner {
  background-color: var(--green);
}

.HeroBanner .blueleaf {
  position: absolute;
  z-index: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: rotate(-15deg) scale(1);
  -webkit-animation: blueleaf 16s linear 2s infinite normal forwards;
  animation: blueleaf 16s linear 2s infinite normal forwards;
}

@-moz-keyframes blueleaf {

  0%,
  98% {
    -webkit-transform: rotate(-15deg) scale(1);
    -ms-transform: rotate(-15deg) scale(1);
    transform: rotate(-15deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-10deg) scale(1.1);
    -ms-transform: rotate(-10deg) scale(1.1);
    transform: rotate(-10deg) scale(1.1);
  }
}

@-webkit-keyframes blueleaf {

  0%,
  98% {
    -webkit-transform: rotate(-15deg) scale(1);
    -ms-transform: rotate(-15deg) scale(1);
    transform: rotate(-15deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-10deg) scale(1.1);
    -ms-transform: rotate(-10deg) scale(1.1);
    transform: rotate(-10deg) scale(1.1);
  }
}

@keyframes blueleaf {

  0%,
  98% {
    -webkit-transform: rotate(-15deg) scale(1);
    -ms-transform: rotate(-15deg) scale(1);
    transform: rotate(-15deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-10deg) scale(1.1);
    -ms-transform: rotate(-10deg) scale(1.1);
    transform: rotate(-10deg) scale(1.1);
  }
}

.esgCommitment {
  background-color: #fff;
  padding: 200px 30px;
}

.esgCommitment .col_1_1_1 {
  max-width: calc(var(--containerwidth) - 40px);
  width: 100%;
  max-width: 1440px;
}

.esgCommitment h2 {
  text-align: center;
}

.esgCommitment .col_1_1_1 .col {
  width: 33.33%;
  padding: 20px;
  color: #000;
  text-align: center;
}

.esgCommitment .col_1_1_1 .col .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 150px;
  margin: 0 auto 5px auto;
}

.esgCommitment .col_1_1_1 .col .icon img {
  object-fit: contain;
}

.esgCommitment .col_1_1_1 .col h6 {
  font-size: 23px;
  line-height: 1.2608695652173914;
  font-family: 'matterlight';
  letter-spacing: 0px;
  margin-bottom: 15px;
}

.esgCommitment .col_1_1_1 .col p {
  font-size: 20px;
  line-height: 1.25;
  max-width: 345px;
  margin: 0 auto;
}

.buildingHotspots {
  background-color: var(--lightpink);
  padding: 100px 30px;
}

.buildingHotspots .redhalf {
  position: absolute;
  left: -50%;
  top: 20%;
  width: 20vw;
  height: 25vw;
  max-width: 475px;
  max-height: 370px;
  transform: rotate(-15deg) scale(1);
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.buildingHotspots .redhalf.animated {
  transform: rotate(-75deg) scale(1);
  -webkit-animation: moveredhalf 1.75s linear forwards, redhalf 8s linear 2s infinite normal forwards;
  animation: moveredhalf 1.75s linear forwards, redhalf 8s linear 2s infinite normal forwards;
}

@-moz-keyframes moveredhalf {
  0% {
    left: -40%;
    top: 20%;
  }

  100% {
    left: -6%;
    top: -17%;
  }
}

@-webkit-keyframes moveredhalf {
  0% {
    left: -40%;
    top: 20%;
  }

  100% {
    left: -6%;
    top: -17%;
  }
}

@keyframes moveredhalf {
  0% {
    left: -40%;
    top: 20%;
  }

  100% {
    left: -6%;
    top: -17%;
  }
}

@-moz-keyframes redhalf {

  0%,
  98% {
    -webkit-transform: rotate(-75deg) scale(1);
    -ms-transform: rotate(-75deg) scale(1);
    transform: rotate(-75deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-85deg) scale(1.1);
    -ms-transform: rotate(-85deg) scale(1.1);
    transform: rotate(-85deg) scale(1.1);
  }
}

@-webkit-keyframes redhalf {

  0%,
  98% {
    -webkit-transform: rotate(-75deg) scale(1);
    -ms-transform: rotate(-75deg) scale(1);
    transform: rotate(-75deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-85deg) scale(1.1);
    -ms-transform: rotate(-85deg) scale(1.1);
    transform: rotate(-85deg) scale(1.1);
  }
}

@keyframes redhalf {

  0%,
  98% {
    -webkit-transform: rotate(-75deg) scale(1);
    -ms-transform: rotate(-75deg) scale(1);
    transform: rotate(-75deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-85deg) scale(1.1);
    -ms-transform: rotate(-85deg) scale(1.1);
    transform: rotate(-85deg) scale(1.1);
  }
}

.buildingHotspots .col_1_1 {
  max-width: var(--containerwidth);
  width: 100%;
  margin: 0 auto;
  align-items: center;
  padding: 0 50px;
}

.buildingHotspots .col_1_1 .col {
  width: 50%;
  padding: 20px;
  text-align: center;
  font-size: 23px;
  line-height: 1.2608695652173914;
}

.buildingHotspots .col_1_1 .col:nth-child(1) {
  padding-right: 7vw;
}

.buildingHotspots .col_1_1 .col h2 {
  margin-bottom: 40px;
}

.hotspotImg {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.hotspotImg img {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
}

.hotspotArea {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
}

.hotspotArea > span {
  position: absolute;
  cursor: pointer;
}

.hotspotArea > span::before {
  content: '';
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  background: url('images/plus-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #ffe5ea;
  border-radius: 100%;
  z-index: 1;
}

.spotname {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  bottom: 100px;
  background: #fff;
  border-radius: 44px;
  color: #000;
  font-size: 23px;
  line-height: 1.2608695652173914;
  letter-spacing: 0.23px;
  right: -40px;
  padding: 20px 25px;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(.16, .84, .44, 1);
  -webkit-transition: all 0.5s cubic-bezier(.16, .84, .44, 1);
  -moz-transition: all 0.5s cubic-bezier(.16, .84, .44, 1);
  transition-delay: 0s;
  -o-transition: all 0.5s cubic-bezier(.16, .84, .44, 1);
}

.spotname::after {
  content: '';
  display: block;
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 50px;
  height: 65px;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hotspotArea > span:hover .spotname {
  transform: scale(1);
  opacity: 1;
}

.buildingHotspots .blueSquare {
  position: absolute;
  width: 15vw;
  height: 15vw;
  left: 7%;
  opacity: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  transform-origin: center;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);

}

.buildingHotspots .blueSquare.animated {
  -webkit-transform: translate(-10%, 7.5vw) rotate(0deg);
  -ms-transform: translate(-10%, 7.5vw) rotate(0deg);
  transform: translate(-10%, 7.5vw) rotate(0deg);
  opacity: 1;
}

.economyPrinciple {
  padding: 200px 14vw 0px 14vw;
}

.economyPrinciple h2 {
  text-align: center;
  padding: 0px 50px;
}

.economyPrinciple .col_1_1_1 {
  max-width: 1320px;
  padding: 0px 20px;
  margin: 110px auto 10px auto;
  width: 100%;
}

.economyPrinciple .col_1_1_1 .col {
  padding: 30px 15px;
  text-align: center;
  font-size: 23px;
  line-height: 1.2608695652173914;
  letter-spacing: -0.23px;
}

.economyPrinciple .col_1_1_1 .col p:last-of-type {
  padding: 0px;
}

.economyImg {
  max-width: 1180px;
  margin: -4vw auto 0px auto;
  width: 100%;
  position: relative;
  padding-top: max(676px, min(676px + (745 - 676) * ((100vw - 1650px) / (2560 - 1650)), 745px));
}

.economyImg::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: -20%;
  width: 40vw;
  height: 7vw;
  background: url('images/economy-patch.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.economyImg img {
  position: absolute;
  left: 20px;
  top: 0px;
  width: 130%;
}

.economyPrinciple .yellowarrow {
  width: 30vw;
  height: 60vw;
  max-width: 580px;
  max-height: 1160px;
  position: absolute;
  z-index: -1;
  top: -18vw;
  left: -16%;
}

.economyPrinciple .greenLeaf {
  position: absolute;
  right: -20%;
  top: -20%;
  width: 35vw;
  height: 25vw;
  opacity: 0;
  transform: rotate(-35deg);
  /* -webkit-transform-style: preserve-3d; */
}

.economyPrinciple .greenLeaf.animated {
  /* -webkit-animation: moveecogreenLeaf 1.5s cubic-bezier(.16,.84,.44,1) forwards, ecogreenLeaf 6s linear 2s infinite normal forwards;
  animation: moveecogreenLeaf 1.5s cubic-bezier(.16,.84,.44,1) forwards, ecogreenLeaf 6s linear 2s infinite normal forwards; */
  -webkit-animation: moveecogreenLeaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
  animation: moveecogreenLeaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
}

@-moz-keyframes moveecogreenLeaf {
  0% {
    right: -20%;
    opacity: 0;
  }

  100% {
    right: -15%;
    opacity: 1;
  }
}

@-webkit-keyframes moveecogreenLeaf {
  0% {
    right: -20%;
    opacity: 0;
  }

  100% {
    right: -15%;
    opacity: 1;
  }
}

@keyframes moveecogreenLeaf {
  0% {
    right: -20%;
    opacity: 0;
  }

  100% {
    right: -15%;
    opacity: 1;
  }
}

@-moz-keyframes ecogreenLeaf {

  0%,
  98% {
    -webkit-transform: rotateX(180deg) rotate(45deg);
    -ms-transform: rotateX(180deg) rotate(45deg);
    transform: rotateX(180deg) rotate(45deg);
  }

  48%,
  53% {
    -webkit-transform: rotateX(180deg) rotate(40deg);
    -ms-transform: rotateX(180deg) rotate(40deg);
    transform: rotateX(180deg) rotate(40deg);
  }
}

@-webkit-keyframes ecogreenLeaf {

  0%,
  98% {
    -webkit-transform: rotateX(180deg) rotate(45deg);
    -ms-transform: rotateX(180deg) rotate(45deg);
    transform: rotateX(180deg) rotate(45deg);
  }

  48%,
  53% {
    -webkit-transform: rotateX(180deg) rotate(40deg);
    -ms-transform: rotateX(180deg) rotate(40deg);
    transform: rotateX(180deg) rotate(40deg);
  }
}

@keyframes ecogreenLeaf {

  0%,
  98% {
    -webkit-transform: rotateX(180deg) rotate(45deg);
    -ms-transform: rotateX(180deg) rotate(45deg);
    transform: rotateX(180deg) rotate(45deg);
  }

  48%,
  53% {
    -webkit-transform: rotateX(180deg) rotate(40deg);
    -ms-transform: rotateX(180deg) rotate(40deg);
    transform: rotateX(180deg) rotate(40deg);
  }
}

.esgSummary {
  padding: 200px 150px;
  background-color: var(--lightpink);
  overflow: hidden;
}

.esgSummary .centerBlock {
  max-width: calc(var(--containerwidth) - 300px);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -0.5px;
  color: var(--darkblue);
  font-family: 'matterbold';
  line-height: 1.3;
}

.esgSummary .centerBlock span {
  /* color: var(--pink); */
  display: inline-block;
  background-color: transparent;
  opacity: 0;
  transition: opacity 0s linear;
  transition-delay: 0.6s;
}

.esgSummary .centerBlock span {
  background-image: linear-gradient(var(--pink), var(--pink));
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.esgSummary .centerBlock span.animated {
  opacity: 1;
  animation: hightlight 1s forwards;
  animation-delay: 0.5s;
}

@keyframes hightlight {
  0% {
    background-size: 0%;
  }

  100% {
    background-size: 100%;
  }
}

/* .esgSummary .centerBlock span:nth-child(odd) {
  -webkit-animation: colurchangetextodd 3s linear infinite normal forwards;
  animation: colurchangetextodd 3s linear infinite normal forwards;
}

.esgSummary .centerBlock span:nth-child(even) {
  -webkit-animation: colurchangetexteven 3s linear infinite normal forwards;
  animation: colurchangetexteven 3s linear infinite normal forwards;
  } */


@-moz-keyframes colurchangetextodd {

  0%,
  10%,
  100% {
    color: var(--darkorange);
  }

  30%,
  40% {
    color: var(--pink);
  }

  60%,
  70% {
    color: var(--yellow);
  }
}

@-webkit-keyframes colurchangetextodd {

  0%,
  10%,
  100% {
    color: var(--darkorange);

  }

  30%,
  40% {
    color: var(--pink);
  }

  60%,
  70% {
    color: var(--yellow);
  }
}

@keyframes colurchangetextodd {

  0%,
  10%,
  100% {
    color: var(--darkorange);

  }

  30%,
  40% {
    color: var(--pink);
  }

  60%,
  70% {
    color: var(--yellow);
  }
}

@-moz-keyframes colurchangetexteven {

  0%,
  10%,
  100% {
    color: var(--pink);
  }

  30%,
  40% {
    color: var(--yellow);
  }

  60%,
  70% {
    color: var(--darkorange);
  }
}

@-webkit-keyframes colurchangetexteven {

  0%,
  10%,
  100% {
    color: var(--pink);
  }

  30%,
  40% {
    color: var(--yellow);
  }

  60%,
  70% {
    color: var(--darkorange);
  }
}

@keyframes colurchangetexteven {

  0%,
  10%,
  100% {
    color: var(--pink);
  }

  30%,
  40% {
    color: var(--yellow);
  }

  60%,
  70% {
    color: var(--darkorange);
  }
}

.esgSummary .centerBlock sub {
  line-height: 25px;
  font-size: 25px;
}

.esgSummary .greenLeaf {
  position: absolute;
  left: -10%;
  bottom: -40%;
  width: 35vw;
  height: 25vw;
  opacity: 0;
  /* z-index: -1; */
  transform: rotateX(180deg) rotate(-45deg);
  /* -webkit-transform-style: preserve-3d; */
}

.esgSummary .greenLeaf.animated {
  -moz-animation: moveesgSummarygreenLeaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards, esgSummarygreenLeaf 6s linear 2s infinite normal forwards;
  -webkit-animation: moveesgSummarygreenLeaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards, esgSummarygreenLeaf 6s linear 2s infinite normal forwards;
  animation: moveesgSummarygreenLeaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards, esgSummarygreenLeaf 6s linear 2s infinite normal forwards
}

@-moz-keyframes moveesgSummarygreenLeaf {
  0% {
    bottom: -40%;
    opacity: 0;
  }

  100% {
    bottom: -10%;
    opacity: 1;
  }
}

@-webkit-keyframes moveesgSummarygreenLeaf {
  0% {
    bottom: -40%;
    opacity: 0;
  }

  100% {
    bottom: -10%;
    opacity: 1;
  }
}

@keyframes moveesgSummarygreenLeaf {
  0% {
    bottom: -40%;
    opacity: 0;
  }

  100% {
    bottom: -10%;
    opacity: 1;
  }
}

@-moz-keyframes esgSummarygreenLeaf {

  0%,
  98% {
    -moz-transform: rotateX(180deg) rotate(-45deg);
  }

  48%,
  53% {
    -moz-transform: rotateX(180deg) rotate(-40deg);
  }
}

@-webkit-keyframes esgSummarygreenLeaf {

  0%,
  98% {
    -webkit-transform: rotateX(180deg) rotate(-45deg);
  }

  48%,
  53% {
    -webkit-transform: rotateX(180deg) rotate(-40deg);
  }
}

@keyframes esgSummarygreenLeaf {

  0%,
  98% {
    -webkit-transform: rotateX(180deg) rotate(-45deg);
    transform: rotateX(180deg) rotate(-45deg);
  }

  48%,
  53% {
    -webkit-transform: rotateX(180deg) rotate(-40deg);
    transform: rotateX(180deg) rotate(-40deg);
  }
}

/* esg page cs end here */
.page-template-template-download-contacts-php,
.page-template-default,
.single {
  background-color: var(--lightpink);
}

.contactHero {
  text-align: center;
  padding: 150px 20px 60px 20px;
}

.single .pageContent {
  min-height: 40vh;
}

.TabContentWrapper {
  min-height: 60vh;
  padding: 0px 50px;
}

.TabContentWrapper::after {
  content: '';
  height: 100vh;
  width: 50vh;
  max-height: 1050px;
  max-width: 820px;
  position: absolute;
  z-index: -1;
  top: -8vw;
  right: 22%;
  background: url('images/yellow-half-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  -webkit-animation: yellowhalf 6s linear 1s infinite normal forwards;
  animation: yellowhalf 6s linear 1s infinite normal forwards;
}

@-moz-keyframes yellowhalf {

  0%,
  98% {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(50deg) scale(1.1);
    -ms-transform: rotate(50deg) scale(1.1);
    transform: rotate(50deg) scale(1.1);
  }
}

@-webkit-keyframes yellowhalf {

  0%,
  98% {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(50deg) scale(1.1);
    -ms-transform: rotate(50deg) scale(1.1);
    transform: rotate(50deg) scale(1.1);
  }
}

@keyframes yellowhalf {

  0%,
  98% {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(50deg) scale(1.1);
    -ms-transform: rotate(50deg) scale(1.1);
    transform: rotate(50deg) scale(1.1);
  }
}

.TabContent {
  display: none;
  max-width: var(--containerwidth);
  margin: 0 auto;
  padding: 0 50px 0px 50px;
}
.TabContent > .col_1_1 {justify-content: center;}
.TabContent .col {
  padding: 10px;
}

.TabContent .col .contactBlock {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #000;
  padding: 10px 0px;
}

.TabContent .col .contactBlock .partnerLogo {
  width: 220px;

  padding: 10px 10px 10px 0px;
}

.partnerLogo a {
  display: inline-block;
}

.partnerLogo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  height: 100%;
}

.partnerLogo img,
footer img {
  max-width: 100%;
}

.TabContent .col .contactBlock ul {
  margin: 0px 0px 30px 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  width: calc(100% - 220px)
}

.TabContent .col .contactBlock ul li {
  width: 50%;
  padding: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.TabContent .col .contactBlock ul li a {
  display: inline-block;
  text-decoration: none;
}

.TabContent .col .contactBlock ul li a:hover {
  color: var(--pink)
}

.TabContent .col .contactBlock b,
.TabContent .col .contactBlock strong {
  font-family: 'matterregular';
  font-size: 25px;
  line-height: 1.16;
  padding-bottom: 10px;
  display: inline-block;
}

.TabContent .col.downloads > div {
  border-top: 1px solid #000;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 20px 0px;
}

.downloadList {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.TabContent .col.downloads > div h6 {
  width: 220px;
  padding-right: 10px;
  font-size: 27px;
  line-height: 1.1481481481481481;
}


.TabContent .col.downloads > div div a {
  margin: 0px 2vw 10px 0px;
}

/* contact page end here */
.page-template-template-community-php .HeroBanner {
  background-color: var(--green);
}

.HeroBanner .blueline {
  position: absolute;
  left: -20px;
  height: auto;
  width: 50vw;
}

.HeroBanner .redtriangle {
  position: absolute;
  right: -3%;
  top: 10%;
  width: 45vw;
  height: 45vw;
  max-width: 930px;
  max-height: 930px;
  transform: rotate(-42deg);
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
  -webkit-animation: herotriangle 18s linear 2s infinite normal forwards;
  animation: herotriangle 18s ease-in-out 2s infinite normal forwards
}

@-moz-keyframes herotriangle {
  0% {
    -moz-transform: translate(0%, 0%) rotate(-42deg);
  }

  20% {
    -moz-transform: translate(-10%, 10%) rotate(-30deg);
  }

  40% {
    -moz-transform: translate(0%, 20%) rotate(-20deg);
  }

  60% {
    -moz-transform: translate(10%, 10%) rotate(-39deg);
  }

  80% {
    -moz-transform: translate(5%, -5%) rotate(-52deg);
  }

  99%,
  100% {
    -moz-transform: translate(0%, 0%) rotate(-42deg);
  }
}

@-webkit-keyframes herotriangle {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(-42deg);
  }

  20% {
    -webkit-transform: translate(-10%, 10%) rotate(-30deg);
  }

  40% {
    -webkit-transform: translate(0%, 20%) rotate(-20deg);
  }

  60% {
    -webkit-transform: translate(10%, 10%) rotate(-39deg);
  }

  80% {
    -webkit-transform: translate(5%, -5%) rotate(-52deg);
  }

  99%,
  100% {
    -webkit-transform: translate(0%, 0%) rotate(-42deg);
  }
}

@keyframes herotriangle {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(-42deg);
    transform: translate(0%, 0%) rotate(-42deg);
  }

  20% {
    -webkit-transform: translate(-10%, 5%) rotate(-30deg);
    transform: translate(-10%, 5%) rotate(-30deg);
  }

  40% {
    -webkit-transform: translate(0%, 10%) rotate(-20deg);
    transform: translate(0%, 10%) rotate(-20deg);
  }

  60% {
    -webkit-transform: translate(10%, 10%) rotate(-39deg);
    transform: translate(10%, 10%) rotate(-39deg);
  }

  80% {
    -webkit-transform: translate(5%, -5%) rotate(-52deg);
    transform: translate(5%, -5%) rotate(-52deg);
  }

  99%,
  100% {
    -webkit-transform: translate(0%, 0%) rotate(-42deg);
    transform: translate(0%, 0%) rotate(-42deg);
  }
}

.whatsOn {
  background-color: var(--lightpink);
  padding: 200px 20px 170px 20px;
}

.whatsOn h2 {
  text-align: center;
}

.communityslider {
  max-width: max(1100px, min(1100px + (1450 - 1100) * ((100vw - 1263px) / (1536 - 1263)), 1450px));
  margin: 50px auto 0 auto;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity .3s cubic-bezier(.16, .84, .44, 1);
  -moz-transition: opacity .3s cubic-bezier(.16, .84, .44, 1);
  -o-transition: opacity .3s cubic-bezier(.16, .84, .44, 1);
  transition: opacity .3s cubic-bezier(.16, .84, .44, 1);
  transition-timing-function: cubic-bezier(0.16, 0.84, 0.44, 1);
}

.communityslider.slick-initialized {
  opacity: 1;
}

h5.month-link {
  margin-bottom: 30px;
  opacity: 0;
  text-transform: uppercase;
}

.slick-current h5.month-link {
  opacity: 1;
}

.communityslider .eventBlock .metadate {
  position: relative;
  bottom: auto;
  padding: 0;
}

.communityslider .eventBlock {

  padding: 40px 80px 40px 80px
}

.communityslider .eventBlock .textBlock {
  max-width: 530px;
  margin-bottom: 0;
}

.communityslider .eventBlock .imageBlock {
  max-width: 470px;
}

.communityslider .slick-track {
  align-items: flex-start;
}

.communityslider .slick-arrow {
  top: 20px;
}

.communityslider .slick-prev.slick-arrow {
  left: calc(50% - 185px);
  background-image: url('images/previous-pink-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 32px;
}

.communityslider .slick-next.slick-arrow {
  right: calc(50% - 185px);
  background-image: url('images/next-pink-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 32px;
}



.multicircle {
  position: absolute;
  right: -3%;
  top: -7.5vw;
  max-width: 545px;
  width: 30vw;
  height: 25vw;
  transform: rotate(0deg);
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;
}

.multicircle.animated {
  -webkit-animation: multicircle 6s linear 1s infinite normal forwards;
  animation: multicircle 6s linear 1s infinite normal forwards
}

@-moz-keyframes multicircle {

  0%,
  98% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@-webkit-keyframes multicircle {

  0%,
  98% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@keyframes multicircle {

  0%,
  98% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

.whatsOn .col_1_1 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

.whatsOn .eventBlock {
  width: 50%;
  text-align: center;
}

/* community page end here */
.page-template-template-location-php .HeroBanner {
  background-color: var(--darkorange);
}

.HeroBanner .multicolorcircle {
  position: absolute;
  left: -70%;
  right: auto;
  top: -35vw;
  width: 77vw;
  height: 77vw;
  max-width: 1470px;
  max-height: 1470px;
}

.HeroBanner.animated .multicolorcircle {
  left: -34vw;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);
}

.HeroBanner .square {
  position: absolute;
  right: -50%;
  bottom: 12%;
  width: 30vw;
  height: 30vw;
  max-width: 575px;
  max-height: 575px;
  -webkit-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  -o-transition: 2s all cubic-bezier(.16, .84, .44, 1);
  transition: 2s all cubic-bezier(.16, .84, .44, 1);
}

.HeroBanner.animated .square {
  right: -5%;
}

.theArea .googletab {
  padding: 25px 20px;
  text-align: center;
  background-color: var(--yellow);
}

.theArea .mapimg img {
  width: 100%
}

.theArea .zoomingIcon {
  position: absolute;
  right: 20px;
  top: 20px;
  text-align: center;
  z-index: 11
}

.theArea .zoomingIcon button {
  display: block;
  background-color: transparent;
  padding: 22px;
  font-size: 0;
  line-height: 0;
  min-width: auto;
  position: relative;
  border: none;
}

.theArea .zoomingIcon button::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 50%;
  z-index: -1;
}

.theArea .zoomingIcon button.zoomOut {
  /* border-top: 1px solid #fff */
}

.theArea .zoomingIcon svg {
  width: 25px;
  height: 25px;
  position: absolute;
  left: calc(50% - -1px);
  top: 50%;
  transform: translate(-50%, -50%);
}

.theArea .midContainer {
  display: flex;
  background-color: #F9FAEE;
}

.theArea .midContainer .mapHolding {
  width: calc(100% - 480px);
  position: relative;
  /* max-height: 37vw; */
}

.theArea .midContainer .mapHolding::before {
  content: "";
  display: block;
  padding-top: 52.1%;
}

.theArea .midContainer .mapHolding .zoomPan {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.theArea .midContainer .pointerTabbingmain {
  width: 480px;

  background-color: #F9FAEE;

}

.mappointer > div {
  display: none;

}

.mappointer > div > span {
  background: #000;
  border: 2px solid #6ABBD8;
}

.mappointer > div > span {
  position: absolute;
  cursor: pointer;
  width: max(20px, min(20px + (30 - 20) * ((100vw - 1263px) / (1920 - 1263)), 30px));
  height: max(20px, min(20px + (30 - 20) * ((100vw - 1263px) / (1920 - 1263)), 30px));
  font-size: 0;
  line-height: 0;
  z-index: 10;
  border-radius: 50%;
  color: #6ABBD8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-2px);
  padding: 0 0 2px 0;
}

.mappointer > div > span b {
  font-size: max(8px, min(8px + (14 - 8) * ((100vw - 1263px) / (1920 - 1263)), 14px));
  line-height: 0;
  font-weight: 400;
  font-weight: inherit;
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.pointerlistmain > div {
  display: none;

}

/* .pointerlistmain>div.active, .mappointer>div.active,
.mappointer>div:first-child {
  display: block;
} */
.tooltipster-base {
  z-index: 10 !important;
}

.pointerTab {
  background-color: #F9FAEE;
  padding: 40px;
  height: 100%;
  overflow: auto;
  /* max-height: 35vw; */
}

.tabAccoordion {
  margin-bottom: 25px;
}

.pointerTab h4 {
  cursor: pointer;
  padding-right: 25px;
  font-size: 30px;
  line-height: 1.1666666666666667;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.pointerTab .tabAccoordion.active h4 {
  /* pointer-events: none; */
  color: var(--green);
}

.pointerTab h4::after {
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  width: 0;
  height: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #000;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  transition: all .2s ease;
}

.pointerTab .tabAccoordion.active h4::after {
  transform: translateY(-50%) rotate(90deg);
}

.pointerTab > .tabAccoordion.firstActive > div {
  display: block;
}

.pointerTab > .tabAccoordion ol {
  list-style: none;
  counter-reset: my-awesome-counter;
}

.pointerTab > .tabAccoordion ol li {
  counter-increment: my-awesome-counter;
  break-inside: avoid-column;
}

.pointerTab > .tabAccoordion ol li::before {
  content: counter(my-awesome-counter) ". ";
  position: absolute;
  left: 0;
}

.pointerTab > .tabAccoordion.active ol {
  padding: 0 0;
}

.pointerTab > .tabAccoordion.active ol li {
  color: var(--green);
}

.pointerTab > .tabAccoordion.active ol li.active {
  color: var(--pink);
}

.tabList {
  display: none;
  max-height: 20vw;
  overflow: auto;
}

.tabList ol li {
  font-size: 23px;
  line-height: 1.3043478260869565;
  letter-spacing: 0.23px;
  cursor: pointer;
  position: relative;
  padding: 5px 0 5px 35px;
}

.page-template-template-location-php .textCTARow {
  background-color: var(--lightpink)
}

.page-template-template-location-php .textCTARow .redleaf {
  position: absolute;
  right: -30%;
  top: -7%;
  transform: rotate(45deg);
  width: 42vw;
  height: 30vw;
  max-width: 650px;
  max-height: 320px;
  opacity: 0;
  /* -webkit-transform-style: preserve-3d; */
  -webkit-backface-visibility: hidden;

}

.page-template-template-location-php .textCTARow .redleaf.animated {

  /* -webkit-animation: moveredleaf 1.5s cubic-bezier(.16,.84,.44,1) forwards, redleaf 6s linear 2s infinite normal forwards;
  animation: moveredleaf 1.5s cubic-bezier(.16,.84,.44,1) forwards, redleaf 6s linear 2s infinite normal forwards; */
  -webkit-animation: moveredleaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
  animation: moveredleaf 1.5s cubic-bezier(.16, .84, .44, 1) forwards;
}

@-moz-keyframes moveredleaf {
  0% {
    opacity: 0;
    right: -30%;
  }

  100% {
    opacity: 1;
    right: -8%;
  }
}

@-webkit-keyframesmoveredleaf {
  0% {
    opacity: 0;
    right: -30%;
  }

  100% {
    opacity: 1;
    right: -8%;
  }
}

@keyframes moveredleaf {
  0% {
    opacity: 0;
    right: -30%;
  }

  100% {
    opacity: 1;
    right: -8%;
  }
}

@-moz-keyframes redleaf {

  0%,
  98% {
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
  }
}

@-webkit-keyframes redleaf {

  0%,
  98% {
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
  }
}

@keyframes redleaf {

  0%,
  98% {
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  48%,
  53% {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
  }
}

.cityHighlights {
  padding: 200px 0px 200px 0px;
  text-align: center;
}

.cityHighlights h2 {
  margin-bottom: 20px;
  padding: 0px 30px
}

.cityHighlights .scrollcontainer {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  padding-left: 100px;
  width: 100%;
  padding-top: 80px;
  text-align: left;
  overflow: hidden;
  cursor: grab;
  /* cursor: url('images/dragger-curser.svg') 60 60, url('images/dragger-curser.svg') 60 60, default; */
}

.cityHighlights .scrollcontainer::before {
  content: '';
  width: 7vw;
  height: 7vw;
  max-width: 120px;
  max-height: 120px;
  position: absolute;
  left: 200px;
  top: 90px;
  background: url('images/dragger-curser.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.touch .cityHighlights .scrollcontainer {
  overflow: auto;
  overflow-y: hidden;
}

.imgTxtSet1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.cityHighlights .scrollcontainer h5 {
  font-size: 18px;
  line-height: 1.2222222222222223;
  text-transform: uppercase;
  letter-spacing: 0.54px;
  padding: 7px 0px;
  margin: 0px;
}

.imgTxtSet1 .image1 {
  position: relative;
}

.imgTxtSet1 .image1 .imageBlock {
  position: relative;

}

.cityHighlights .imageBlock {
  position: relative;
}

.cityHighlights .imageBlock img {
  position: absolute;
  left: 0px;
  top: 0px;
}

.imgTxtSet1 .image2 {
  position: relative;
  z-index: -1;
  margin-left: -2%;
}

.imgTxtSet1 .image2 .imageBlock {
  position: relative;

}

.imgTxtSet1 .textImage {
  position: relative;
  padding: 0px 80px;
}

.imgTxtSet1 .textImage::after {
  content: '';
  display: block;
  width: 16vw;
  height: 20vw;
  left: -10%;
  position: absolute;
  bottom: -6%;
  z-index: -1;
  -webkit-transform: rotate(-75deg) scale(1);
  -ms-transform: rotate(-75deg) scale(1);
  transform: rotate(-75deg) scale(1);
  background: url('images/orange-half.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.imgTxtSet1 .textImage::after {
  -webkit-animation: orangehalf 6s linear 1s infinite normal forwards;
  animation: orangehalf 6s linear 1s infinite normal forwards;
}

@-moz-keyframes orangehalf {

  0%,
  98% {
    -webkit-transform: rotate(-75deg) scale(1);
    -ms-transform: rotate(-75deg) scale(1);
    transform: rotate(-75deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-70deg) scale(1.1);
    -ms-transform: rotate(-70deg) scale(1.1);
    transform: rotate(-70deg) scale(1.1);
  }
}

@-webkit-keyframes orangehalf {

  0%,
  98% {
    -webkit-transform: rotate(-75deg) scale(1);
    -ms-transform: rotate(-75deg) scale(1);
    transform: rotate(-75deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-70deg) scale(1.1);
    -ms-transform: rotate(-70deg) scale(1.1);
    transform: rotate(-70deg) scale(1.1);
  }
}

@keyframes orangehalf {

  0%,
  98% {
    -webkit-transform: rotate(-75deg) scale(1);
    -ms-transform: rotate(-75deg) scale(1);
    transform: rotate(-75deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-70deg) scale(1.1);
    -ms-transform: rotate(-70deg) scale(1.1);
    transform: rotate(-70deg) scale(1.1);
  }
}

.imgTxtSet1 .textImage .textBlock {
  padding-bottom: 30px;
  max-width: 380px;
}

.imgTxtSet1 .image3 {
  width: 100%;
}

.imgTxtSet1 .bottomlogo {
  margin-top: 5px;
}

.imgTxtSet1 .image3 .imageBlock,
.imgTxtSet2 .image1 .imageBlock,
.imgTxtSet2 .image2 .imageBlock {
  position: relative;
  padding-top: 75%;
}

.imgTxtSet1 .statTxt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: 3%;
  right: -40%;
  width: 420px;
}

.statTxt div.number {
  color: var(--pink);
  font-family: 'matterbold';
  font-size: 15vw;
  line-height: 11vw;
}

.statTxt h5.text {
  font-size: 30px;
  line-height: 1.1666666666666667;
  letter-spacing: 0.9px;

  text-transform: uppercase;
  font-family: 'matterregular';
}

.imgTxtSet2 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  position: relative;
}

.imgTxtSet2::before {
  content: '';
  width: 30vw;
  height: 15vw;
  position: absolute;
  z-index: -1;
  top: 20%;
  left: -7%;
  background: url('images/yellow-left-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.imgTxtSet2 .image1 {
  width: 45vh;
}

.imgTxtSet2 .image2 {
  width: 70vh;
  z-index: -2;
  position: relative;
  margin-left: -5%;
  align-self: center;
}

.imgFigureTxt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.imgTxtSet2 .group1 {
  display: flex;
  align-items: flex-start;
  margin-left: -7%;
  margin-top: -3%;
  position: relative;
  z-index: 1;
}

.imgTxtSet2 .group1 .image3 {
  width: 28vh;
}

.imgTxtSet2 .group1 .image3 .imageBlock {
  padding-top: 135%
}

.imgTxtSet2 .group1 .image3 h5 {
  text-align: right;
}

.imgTxtSet2 .group1 .statTxt {
  margin-left: -6%;
  margin-top: -5%;
  align-self: flex-start;
  z-index: 1;
  width: 40vh;
}

.imgTxtSet2 .group1 .statTxt div.number {
  color: var(--darkblue);
}

.imgTxtSet2 .group1 .statTxt .text {
  padding: 30px 0px 0px 25%;
  max-width: 380px;
}

.imgTxtSet2 .group2 {
  display: flex;
  align-items: flex-start;
  margin-left: -7%;
  margin-top: 3%;
  position: relative;
  z-index: 1;
}

.imgTxtSet2 .group2::before {
  content: '';
  z-index: 1;
  display: block;
  position: absolute;
  left: -8%;
  top: -8%;
  width: 7vw;
  height: 7vw;
  background: url('images/red-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.imgTxtSet2 .group2::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: redcircle 4s linear 1s infinite normal forwards;
  animation: redcircle 4s linear 1s infinite normal forwards;
}

@-moz-keyframes redcircle {

  0%,
  98% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  48%,
  53% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@-webkit-keyframes redcircle {

  0%,
  98% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  48%,
  53% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes redcircle {

  0%,
  98% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  48%,
  53% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.imgTxtSet2 .group2 .statTxt {
  margin-left: -7%;
  margin-top: -5%;
  align-self: flex-start;
  z-index: 1;
  flex-grow: 1;
}

.imgTxtSet2 .group2 .statTxt div.number {
  color: var(--yellow);
}

.imgTxtSet2 .group2 .statTxt .text {
  padding: 30px 0px 0px 20%;
  max-width: 100%;
}

.imgTxtSet2 .group2 .image4 {
  width: 45vh;
}

.imgTxtSet2 .group2 .image4 .imageBlock {
  padding-top: 75%
}

.imgTxtSet3 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-left: -7%;
  position: relative;
}

.imgTxtSet3::before {
  content: '';
  z-index: 1;
  display: block;
  position: absolute;
  left: -27%;
  top: 2%;
  width: 20vw;
  height: 20vw;
  max-width: 340px;
  max-height: 340px;
  background: url('images/pink-traingle.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.imgTxtSet3::before {
  -webkit-transform: rotate(-35deg) scale(1);
  -ms-transform: rotate(-35deg) scale(1);
  transform: rotate(-35deg) scale(1);
  -webkit-animation: pinktriangle 4s linear 1s infinite normal forwards;
  animation: pinktriangle 4s linear 1s infinite normal forwards;
}

@-moz-keyframes pinktriangle {

  0%,
  98% {
    -webkit-transform: rotate(-35deg) scale(1);
    -ms-transform: rotate(-35deg) scale(1);
    transform: rotate(-35deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-30deg) scale(1.1);
    -ms-transform: rotate(-30deg) scale(1.1);
    transform: rotate(-30deg) scale(1.1);
  }
}

@-webkit-keyframes pinktriangle {

  0%,
  98% {
    -webkit-transform: rotate(-35deg) scale(1);
    -ms-transform: rotate(-35deg) scale(1);
    transform: rotate(-35deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-30deg) scale(1.1);
    -ms-transform: rotate(-30deg) scale(1.1);
    transform: rotate(-30deg) scale(1.1);
  }
}

@keyframes pinktriangle {

  0%,
  98% {
    -webkit-transform: rotate(-35deg) scale(1);
    -ms-transform: rotate(-35deg) scale(1);
    transform: rotate(-35deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(-30deg) scale(1.1);
    -ms-transform: rotate(-30deg) scale(1.1);
    transform: rotate(-30deg) scale(1.1);
  }
}

.imgTxtSet3 .image1 {
  width: 50vh;
}

.imgTxtSet3 .image1 .imageBlock {
  padding-top: 135%;
}

.imgTxtSet3 .image2 {
  width: 45vh;
  margin-top: 5vh;
  margin-bottom: 0px;
}

.imgTxtSet3 .image2 .imageBlock {
  padding-top: 75%;
}

.imgTxtSet3 .statTxt {
  align-self: center;
  position: relative;
  z-index: 1;
}

.imgTxtSet3 .textImage {
  align-self: center;
  margin-left: -5%;
  position: relative;
  z-index: 1
}

.imgTxtSet3 .textImage::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -17%;
  right: -10%;
  width: 35vw;
  height: 24vw;
  max-width: 670px;
  max-height: 335px;
  background: url('images/yellow-leaf.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  -webkit-transform: rotate(35deg) scale(1);
  -ms-transform: rotate(35deg) scale(1);
  transform: rotate(35deg) scale(1);
  -webkit-animation: yellowleaf 4s linear 1s infinite normal forwards;
  animation: yellowleaf 4s linear 1s infinite normal forwards;
}

@-moz-keyframes yellowleaf {

  0%,
  98% {
    -webkit-transform: rotate(35deg) scale(1);
    -ms-transform: rotate(35deg) scale(1);
    transform: rotate(35deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(32deg) scale(1.1);
    -ms-transform: rotate(32deg) scale(1.1);
    transform: rotate(32deg) scale(1.1);
  }
}

@-webkit-keyframes yellowleaf {

  0%,
  98% {
    -webkit-transform: rotate(35deg) scale(1);
    -ms-transform: rotate(35deg) scale(1);
    transform: rotate(35deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(32deg) scale(1.1);
    -ms-transform: rotate(32deg) scale(1.1);
    transform: rotate(32deg) scale(1.1);
  }
}

@keyframes yellowleaf {

  0%,
  98% {
    -webkit-transform: rotate(35deg) scale(1);
    -ms-transform: rotate(35deg) scale(1);
    transform: rotate(35deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(32deg) scale(1.1);
    -ms-transform: rotate(32deg) scale(1.1);
    transform: rotate(32deg) scale(1.1);
  }
}

.imgTxtSet3 .statTxt div.number {
  color: var(--green);
}

.imgTxtSet3 .statTxt .text {
  padding: 30px 0px 0px 25%;
  max-width: 380px;
}

.imgTxtSet4 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.imgTxtSet4 .image1 {
  width: 55vh;
  margin-top: 3vh;
}

.imgTxtSet4 .image1 .imageBlock {
  padding-top: 75%;
}

.imgTxtSet4 .textImage {
  position: relative;
}

.imgTxtSet4 .textImage .statTxt {
  display: flex;
  align-items: center;
}

.imgTxtSet4 .textImage .statTxt div.number {
  color: #FDA8B9;
}

.imgTxtSet4 .image2 {
  width: 40vh;
  position: absolute;
  top: -15%;
  right: -25%;
  align-self: flex-start;
}

.imgTxtSet4 .image2 .imageBlock {
  padding-top: 75%;
}

.imgTxtSet4 .image3 {
  width: 30vh;
  margin-left: 7%;
  align-self: flex-end;
}

.imgTxtSet4 .image2 h5 {
  text-align: center;
}

.imgTxtSet4 .image3 .imageBlock {
  padding-top: 135%;
}

.imgTxtSet4 .image4 {
  width: 70vh;
  align-self: center;
  margin-top: -5vh;
  margin-left: -10%;
  z-index: -1;
  position: relative;
}

.imgTxtSet4 .image4::after {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  left: -51%;
  width: 35vw;
  height: 24vw;
  max-width: 740px;
  max-height: 360px;
  background: url('images/green-leaf.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  -webkit-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  -webkit-animation: grleaf 4s linear 1s infinite normal forwards;
  animation: grleaf 4s linear 1s infinite normal forwards;
}

@-moz-keyframes grleaf {

  0%,
  98% {
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(3deg) scale(1.1);
    -ms-transform: rotate(3deg) scale(1.1);
    transform: rotate(3deg) scale(1.1);
  }
}

@-webkit-keyframes grleaf {

  0%,
  98% {
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(3deg) scale(1.1);
    -ms-transform: rotate(3deg) scale(1.1);
    transform: rotate(3deg) scale(1.1);
  }
}

@keyframes grleaf {

  0%,
  98% {
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }

  48%,
  53% {
    -webkit-transform: rotate(3deg) scale(1.1);
    -ms-transform: rotate(3deg) scale(1.1);
    transform: rotate(3deg) scale(1.1);
  }
}

.imgTxtSet4 .image4 h5 {
  text-align: right;
}

.imgTxtSet4 .image4 .imageBlock {
  padding-top: 75%;
}

.imgTxtSet4 > .statTxt {
  align-self: flex-start;
  display: flex;
  align-items: flex-end;
  margin-left: -5%;
  margin-top: 0%;
  z-index: 1;
  position: relative;
}

.imgTxtSet4 > .statTxt div.number {
  color: var(--orange);
}






.connection {
  background-color: #000;
  padding: 200px 50px;
}

.connection .centerBlock {
  max-width: calc(var(--containerwidth) - 80px);
  width: 100%;
  margin: 0 auto;
}

.connection .centerBlock h2 {
  color: var(--pink);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.connection .centerBlock .col_1_1_1_1 {
  justify-content: center;
}

.connection .centerBlock .col_1_1_1_1 .col {
  padding: 20px;
  color: #fff;
}

.connection .centerBlock .col_1_1_1_1 .col .icon {
  position: relative;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 220px;
}

.connection .centerBlock .col_1_1_1_1 .col .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.connection .centerBlock .col_1_1_1_1 .col h4 {
  font-size: 23px;
  line-height: 1.3043478260869565;
  letter-spacing: 0.69px;
  font-family: 'matterlight';
  text-align: center;
}

.labelnote {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.5714285714285714;
  letter-spacing: -0.28px;
  color: var(--pink);
}

.labelnote img {
  max-width: 420px;
}

.elizabethLine {
  background-color: #fff;
  padding: 200px 50px;
  text-align: center;
}

.elizabethLine .centerBlock {
  max-width: calc(var(--containerwidth) - 80px);
  width: 100%;
  margin: 0 auto;
}

.elizabethLine .centerBlock h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

@-moz-keyframes elmappear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes elmappear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes elmappear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.elizabethLine svg #elizabethElm1,
.elizabethLine svg #elizabethElm2,
.elizabethLine svg #elizabethElm3,
.elizabethLine svg #elizabethElm4,
.elizabethLine svg #elizabethElm5,
.elizabethLine svg #elizabethElm6,
.elizabethLine svg #elizabethElm7,
.elizabethLine svg #elizabethElm8,
.elizabethLine svg #elizabethElm9,
.elizabethLine svg #elizabethElm10,
.elizabethLine svg #elizabethElm11,
.elizabethLine svg #elizabethElm12,
.elizabethLine svg #elizabethElm13 {
  opacity: 0;
  transform: translateY(20px);
  transform-origin: center;
}

.elizabethLine .animated svg #elizabethElm1,
.elizabethLine .animated svg #elizabethElm2,
.elizabethLine .animated svg #elizabethElm3,
.elizabethLine .animated svg #elizabethElm4,
.elizabethLine .animated svg #elizabethElm5,
.elizabethLine .animated svg #elizabethElm6,
.elizabethLine .animated svg #elizabethElm7,
.elizabethLine .animated svg #elizabethElm8,
.elizabethLine .animated svg #elizabethElm9,
.elizabethLine .animated svg #elizabethElm10,
.elizabethLine .animated svg #elizabethElm11,
.elizabethLine .animated svg #elizabethElm12,
.elizabethLine .animated svg #elizabethElm13 {
  -webkit-animation: elmappear 0.8s linear forwards;
  animation: elmappear 0.8s linear forwards
}

.elizabethLine .animated svg #elizabethElm2 {
  animation-delay: 1s;
}

.elizabethLine .animated svg #elizabethElm3,
.elizabethLine .animated svg #elizabethElm4 {
  animation-delay: 1.2s;
}

.elizabethLine .animated svg #elizabethElm5 {
  animation-delay: 1.4s;
}

.elizabethLine .animated svg #elizabethElm6 {
  animation-delay: 1.6s;
}

.elizabethLine .animated svg #elizabethElm7 {
  animation-delay: 1.8s;
}

.elizabethLine .animated svg #elizabethElm8 {
  animation-delay: 2s;
}

.elizabethLine .animated svg #elizabethElm9 {
  animation-delay: 2.2s;
}

.elizabethLine .animated svg #elizabethElm10 {
  animation-delay: 2.4s;
}

.elizabethLine .animated svg #elizabethElm11 {
  animation-delay: 2.6s;
}

.elizabethLine .animated svg #elizabethElm12,
.elizabethLine .animated svg #elizabethElm13 {
  animation-delay: 2.8s;
}

/* location page css end here */
.pageHero {
  text-align: center;
  padding: 150px 50px 100px 50px;
}

.pageContent {
  padding: 0px 50px 50px 50px;
}

.pageContent .centerBlock {
  max-width: calc(var(--containerwidth) - 80px);
  margin: 0 auto;
}

.error404 {
  background-color: var(--lightpink)
}

.error404 .pageContent {
  padding-top: 10vh;
  min-height: 80vh;
}

.pagenotfound {
  text-align: center;
  padding: 0px 40px;
  overflow: visible;
  margin: 15vh auto 40px auto;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pagenotfound svg {
  width: 100%;
}

.pagenotfound a {
  font-weight: 600;
}

.pagenotfound h2 {
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

#error-404-img {
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

#loupe {
  animation: bounceInUp 2s ease forwards;
}

#ombre-loupe {
  animation: fadeIn 2s 3s ease forwards;
}

#_x34_-gauche,
#_x34_-droite,
#ombre-loupe,
#decorations {
  opacity: 0;
}

#_x34_-gauche,
#_x34_-droite {
  animation: fadeIn 2s ease forwards;
}

#_x34_-gauche {
  animation-delay: 1s;
}

#_x34_-droite {
  animation-delay: 2s;
}

#decorations {
  transform-origin: 45% 35%;
  animation: fadeIn 2s ease forwards, rotate-grow 50s linear infinite alternate;
  animation-delay: 4s;
}

@-webkit-keyframes rotate-grow {
  from {
    -webkit-transform: rotate(0) scale(.8);
    transform: rotate(0) scale(.8);
  }

  to {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

@keyframes rotate-grow {
  from {
    -webkit-transform: rotate(0) scale(.8);
    transform: rotate(0) scale(.8);
  }

  to {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* footer css start */
footer {
  background-color: #000;
  padding: 40px 50px;
  color: #fff;
}

footer > div {
  max-width: calc(var(--containerwidth) - 80px);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

footer > div > div {
  width: 33.33%;
  font-size: 16px;
  line-height: 1.5625;
}

footer a {
  display: inline-block;
  position: relative;
}

footer > div > div:nth-child(2) {
  text-align: center;
}

footer > div > div:nth-child(3) {
  text-align: right;
}

footer > div small {
  text-transform: uppercase;
  font-family: 'matterregular';
  padding-bottom: 12px;
  display: block;
}

ul.footerMenu {
  margin: 0px 0px 15px 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
}

ul.footerMenu li {
  padding: 2px 0px;
}

ul.footerMenu li a {
  padding: 3px 0px;
  font-size: 15px;
  line-height: 1.3333333333333333;
  color: #fff;
  text-decoration: none;
}

.no-touch ul.footerMenu li a:hover {
  color: var(--yellow);
}

.cky-consent-container {
  opacity: 0;
}

body:not(.introcompleted).loaded .cky-consent-container {
  animation: appearcookie 1s forwards;
  animation-delay: 2.5s;
}

body.introcompleted.loaded .cky-consent-container {
  animation: appearcookie 1s forwards;
  animation-delay: 1.2s;
}

@keyframes appearcookie {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.cky-title {
  display: none !important
}

.cky-notice-des p {
  padding-bottom: 15px;
  color: #000 !important;
}

.cky-notice-btn-wrapper {
  display: flex;
  justify-content: center;
}

.cky-notice-btn-wrapper button {
  min-width: auto;letter-spacing: 0.75px;
}

.cky-btn {
  font-size: 14px !important;
  line-height: 1.2857142857142858 !important;
  border-radius: 30px !important;
  background: #fff !important;
  color: var(--pink) !important;
  font-family: 'matterregular';
  font-weight: normal !important;
  text-transform: uppercase !important;
  border: 2px solid var(--pink) !important;
  letter-spacing: 0.75px;
}

.cky-prefrence-btn-wrapper + div {
  display: none !important
}

.cky-btn.cky-btn-accept {
  background: var(--pink) !important;
  color: #fff !important;
  border: 2px solid var(--pink) !important;
}

.cky-accordion-header .cky-accordion-btn,
.cky-btn-close {
  min-width: auto;
}

@media (max-width: 576px) {

  .cky-prefrence-btn-wrapper,
  .cky-notice-btn-wrapper {
    flex-direction: row !important;
  }

  .cky-prefrence-btn-wrapper .cky-btn,
  .cky-notice-btn-wrapper .cky-btn {
    width: auto !important;
  }
}

/* END screen media */
@media print {
  .do-not-print {
    display: none;
  }

  #comments {
    page-break-before: always;
  }

  body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4;
    word-spacing: 1.1pt;
    letter-spacing: 0.2pt;
    font-family: Garamond, "Times New Roman", serif;
    color: #000;
    background: none;
    font-size: 12pt;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Helvetica, Arial, sans-serif;
  }

  h1 {
    font-size: 19pt;
  }

  h2 {
    font-size: 17pt;
  }

  h3 {
    font-size: 15pt;
  }

  h4,
  h5,
  h6 {
    font-size: 12pt;
  }

  code {
    font: 10pt Courier, monospace;
  }

  blockquote {
    margin: 1.3em;
    padding: 1em;
  }

  img {
    display: block;
    margin: 1em 0;
  }

  a img {
    border: none;
  }

  table {
    margin: 1px;
    text-align: left;
  }

  th {
    border-bottom: 1px solid #333;
    font-weight: bold;
  }

  td {
    border-bottom: 1px solid #333;
  }

  th,
  td {
    padding: 4px 10px 4px 0;
  }

  caption {
    background: #fff;
    margin-bottom: 2em;
    text-align: left;
  }

  thead {
    display: table-header-group;
  }

  tr {
    page-break-inside: avoid;
  }

  a {
    text-decoration: none;
    color: black;
  }
}

/* END print media */





/* elizabeth css start */

.elizabethResponsive svg,
.elizabethDesk svg {
  height: auto;
  width: 100%
}

.elizabethResponsive > div {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

#ez-line-purple,
#_38min,
#_15min,
#_11mins,
#_9min,
#building,
#walk1,
#walk2,
#_6min,
#_10min,
#_8min,
#elz-line {
  opacity: 0;
  transition: opacity 0.4s linear;
}

.animated #ez-line-purple,
.animated #_38min,
.animated #_15min,
.animated #_11mins,
.animated #_9min,
.animated #building,
.animated #walk1,
.animated #walk2,
.animated #_6min,
.animated #_10min,
.animated #_8min,
.animated #elz-line {
  opacity: 1;
}


.animated #elz-line {
  transition-delay: 0.8s;
}

#ez-line-purple {
  transition-delay: 0.8s;
}

#_38min {
  transition-delay: 1s;
}

#_15min {
  transition-delay: 1.5s;
}

#_11mins {
  transition-delay: 2s;
}

#_9min {
  transition-delay: 2.5s;
}

#walk1 {
  transition-delay: 3s;
}

#building {
  transition-delay: 3.5s;
}

#walk2 {
  transition-delay: 4s;
}

#_6min {
  transition-delay: 4.4s;
}

#_8min {
  transition-delay: 5.2s;
}

#_10min {
  transition-delay: 5.2s;
}

#_38mindown,
#_11mindown,
#walk1down,
#walk2down,
#_8minsdown {
  transform: translateY(-30px);
  opacity: 0;
  transition: opacity 1s ease .4s, transform 1s ease .4s;
}

.animated #_38mindown,
.animated #_11mindown,
.animated #walk1down,
.animated #walk2down,
.animated #_8minsdown {
  transform: translateY(0px);
  opacity: 1;
}

#_38mindown {
  transition-delay: 1.2s;
}

#_11mindown {
  transition-delay: 2.2s;
}

#walk1down {
  transition-delay: 3.2s;
}

#walk2down {
  transition-delay: 4.2s;
}

#_8minsdown {
  transition-delay: 5.3s;
}



#_15minup,
#_9minup,
#_6minup,
#_10minup {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 1s ease .2s, transform 1s ease .2s;
}

.animated #_15minup,
.animated #_9minup,
.animated #_6minup,
.animated #_10minup {
  opacity: 1;
  transform: translateY(0);
}

#_15minup {
  transition-delay: 1.9s;
}

#_9minup {
  transition-delay: 2.7s;
}

#_6minup {
  transition-delay: 4.7s;
}

#_10minup {
  transition-delay: 5.5s;
}


#blackline1,
#blackline2 {
  stroke-dasharray: 1200;
  stroke-dashoffset: 0;
  opacity: 0;
}

.animated #blackline1,
.animated #blackline2 {
  animation: dash 4s linear forwards;
  animation-delay: 0.8s;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1200;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}


#Path_4728,
#Line_117,
#Path_4728-2,
#Line_117-2 {
  stroke-dasharray: 173;
  stroke-dashoffset: 0;
  opacity: 0;
}

.animated #Path_4728,
.animated #Line_117,
.animated #Path_4728-2,
.animated #Line_117-2 {

  animation: dash1 1s linear forwards;
  animation-delay: 4.6s;
}

@keyframes dash1 {
  0% {
    stroke-dashoffset: 173;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

#Path_4727,
#Line_116,
#Path_4727-2,
#Line_116-2 {
  stroke-dasharray: 173;
  stroke-dashoffset: 0;
  opacity: 0;
}

.animated #Path_4727,
.animated #Line_116,
.animated #Path_4727-2,
.animated #Line_116-2 {
  animation: dash2 1s linear forwards;
  animation-delay: 5.6s;
}

@keyframes dash2 {
  0% {
    stroke-dashoffset: 173;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* elizabeth cs end */

.jarallax::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 38.2%;
}

.jarallax .imgloader {
  display: none;
}

.jarallax img {
  /* -o-transition: all .8s linear;
-moz-transition: all .8s linear;
  -webkit-transition: all .8s linear;
  transition: all .8s linear; */
}

.touch .jarallax img {
  height: 100% !important;
  position: absolute !important;
  transform: unset !important;
  margin: 0 !important;
}

.spanBtnBox {
  display: inline-block;
}



/* 
.cityHighlights2 {
width: 100%;height: 100%;

  overflow: hidden;
}

.cityHighlights2 {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.cityHighlights2 .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.cityHighlights2 .swiper-scrollbar .swiper-scrollbar-drag {
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background: rgba(0, 0, 0, 0.4);
}
.cityHighlights2 .swiper-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.cityHighlights2 .swiper-slide {
  height: 100%;
  width: auto;

  display: flex;
  justify-content: center;
  align-items: center;

} */


.cityHighlights .swiper-container {
  overflow: visible;
}

.cityHighlights .swiper-container .imgTxtSet1 {
  padding-left: 100px;
}

.cityHighlights .swiper-container .imgTxtSet4 {
  padding-right: 100px;
}

.cityHighlights .swiper-container .swiper-slide {
  width: auto !important;
  text-align: left;
}

.cityHighlights .swiper-scrollbar {
  display: none;
}


.cityHighlights > h2 {
  margin-bottom: 60px;
}

.cityHighlights .swiper {
  overflow: visible;
}
.locationSliderWrapper {
  position: relative;
  cursor: url("images/dragger.svg") 60 60, url("images/dragger.svg") 60 60, default;
}
.touch .locationSliderWrapper {
  position: relative;
  cursor: default;
}
.locationCursor {
  position: absolute;
  height: auto;
  width: 148px;
  left: -75px;
  cursor: none;
  display: none;
  pointer-events: none;
  z-index: 20;
}

.cityHighlights .swiper .slideBoxFirst {
  padding-left: max(50px, min(50px + (100 - 50) * ((100vw - 1820px) / (1920 - 1820)), 100px));
}

.cityHighlights .swiper .slideBoxFourth {
  padding-right: max(50px, min(50px + (100 - 50) * ((100vw - 1820px) / (1920 - 1820)), 100px));
}

.cityHighlights .swiper .swiper-slide {
  width: auto;
  text-align: left;
}

.cityHighlights .swiper .swiper-slide:nth-child(2) {
  z-index: -1;
}

.slideBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: 'matterregular';
}

.slideBoxFirst .image1 {
  padding-top: 300px;
  position: relative;
}

.slideBoxFirst .image1 svg {
  position: absolute;
  top: 130px;
  left: 70px;
  height: auto;
  width: 148px;
}
.no-touch .slideBoxFirst .image1 svg { display: none; }
.slideBox p {
  padding-bottom: 18px;
  text-transform: uppercase;
}

.slideBox .imageBlock {
  margin-bottom: 16px;
  background-color: #FDA8B9;
}

.slideBoxFirst .image2 {
  margin-left: -30px;
  padding-top: 100px;
  z-index: -1;
}

.slideBoxFirst .textImage {
  padding-left: 80px;
  padding-right: 100px;
  padding-top: 100px;
  position: relative;
}

.slideBoxFirst .textImage .image3 {
  position: relative;
}

.slideBoxFirst .textImage .image3::after {
  content: '';
  display: block;
  width: 366px;
  height: 483px;
  left: -109px;
  top: 62px;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(-75deg) scale(1);
  -ms-transform: rotate(-75deg) scale(1);
  transform: rotate(-75deg) scale(1);
  background: url('images/orange-half.svg');
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.slideBoxFirst .textImage .textBlock {
  max-width: 375px;
  font-family: 'matterlight';
  padding-bottom: 70px;
  text-transform: unset;
}
.slideBoxFirst .textImage .textBlock p {text-transform: unset;}

.slideBoxFirst .textImage .statTxt {
  position: absolute;
  right: -213px;
  top: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slideBoxFirst .textImage .statTxt .text {
  padding-top: 120px;
  padding-left: 5px;
}

.slideBoxSecond .image1 {
  padding-top: 100px;
  z-index: 1;
}

.slideBoxSecond .image1::before {
  content: '';
  width: 589px;
  height: 294px;
  position: absolute;
  z-index: -1;
  top: 210px;
  left: -7%;
  background: url('images/yellow-left-arrow.svg');
  background-repeat: repeat;
  background-size: auto;
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.slideBoxSecond .image2 {
  padding-top: 200px;
  margin-left: -95px;
  z-index: -1;
}

.slideBoxSecond .imgFigureTxt {
  margin-left: -95px;
}

.slideBoxSecond .imgFigureTxt .group1 {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slideBoxSecond .imgFigureTxt .group1 .image3 p {
  text-align: right;
}

.slideBoxSecond .imgFigureTxt .group1 .statTxt {
  padding-left: 45px;
  z-index: 1;
}

.slideBoxSecond .imgFigureTxt .group1 .statTxt h3 {
  margin: -100px 0 30px -100px;
}

.slideBoxSecond .imgFigureTxt .group2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 40px;
}

.slideBoxSecond .imgFigureTxt .group2 .statTxt {
  padding-left: 45px;
  z-index: 1;
}

.slideBoxSecond .imgFigureTxt .group2 .statTxt h3 {
  margin: -100px 0 30px -120px;
  padding-right: 80px;
}

.slideBoxSecond .imgFigureTxt .group2::before {
  /* content: ''; */
  z-index: 1;
  display: block;
  position: absolute;
  left: -8%;
  top: -8%;
  width: 124px;
  height: 124px;
  background: url('images/red-circle.svg');
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.slideBoxThird .textImage {
  margin-left: -86px;
  z-index: 1;
  padding-top: 105px;
}

.slideBoxThird > .image1 {
  position: relative;
}

.slideBoxThird > .image1::before {
  content: '';
  z-index: 1;
  display: block;
  position: absolute;
  left: -34%;
  top: 0%;
  width: 319px;
  height: 319px;
  max-width: 340px;
  max-height: 340px;
  background: url('images/pink-traingle.svg');
  background-repeat: repeat;
  background-size: auto;
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-60deg) scale(1);
  -ms-transform: rotate(-60deg) scale(1);
  transform: rotate(-60deg) scale(1);
  -webkit-animation: pinktriangle 12s linear 1s infinite normal forwards;
  animation: pinktriangle 12s linear 1s infinite normal forwards;

}

@-moz-keyframes pinktriangle {

  0%,
  99% {
    -moz-transform: rotate(-60deg) scale(1);
  }

  49%,
  51% {
    -moz-transform: rotate(-80deg) scale(0.9);
  }
}

@-webkit-keyframes pinktriangle {

  0%,
  99% {
    -webkit-transform: rotate(-60deg) scale(1);
  }

  49%,
  51% {
    -webkit-transform: rotate(-80deg) scale(0.9);
  }
}

@keyframes pinktriangle {

  0%,
  99% {
    -webkit-transform: rotate(-60deg) scale(1);
    transform: rotate(-60deg) scale(1);
  }

  49%,
  51% {
    -webkit-transform: rotate(-80deg) scale(0.9);
    transform: rotate(-80deg) scale(0.9);
  }
}

.slideBoxThird .textImage .statTxt {
  padding-left: 25px;
  padding-bottom: 30px;
}

.slideBoxThird .textImage .image2::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -17%;
  right: -10%;

  background: url('images/yellow-leaf.svg');
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  -webkit-transform: rotate(15deg) scale(1);
  -ms-transform: rotate(15deg) scale(1);
  transform: rotate(15deg) scale(1);
  -webkit-animation: yellowleaf 8s linear 1s infinite normal forwards;
  animation: yellowleaf 8s linear 1s infinite normal forwards;
  width: 691px;
  height: 467px;
  bottom: -100px;
  right: 80px;
}

@-moz-keyframes yellowleaf {

  0%,
  99% {
    -moz-transform: rotate(15deg) scale(1);
  }

  49%,
  51% {
    -moz-transform: rotate(32deg) scale(1.1);
  }
}

@-webkit-keyframes yellowleaf {

  0%,
  99% {
    -webkit-transform: rotate(15deg) scale(1);
  }

  49%,
  51% {
    -webkit-transform: rotate(32deg) scale(1.1);
  }
}

@keyframes yellowleaf {

  0%,
  99% {
    -webkit-transform: rotate(15deg) scale(1);
    transform: rotate(15deg) scale(1);
  }

  49%,
  51% {
    -webkit-transform: rotate(32deg) scale(1.1);
    transform: rotate(32deg) scale(1.1);
  }
}

.slideBoxThird .textImage .statTxt .text {
  padding-left: 135px;
}

.slideBoxFourth .textImage {
  padding-left: 85px;
  position: relative;
  padding-right: 125px;
  padding-top: 150px;
  z-index: 2;
}

.slideBoxFourth .textImage .image2 {
  position: absolute;
  top: 0;
  right: 0;
}

.slideBoxFourth .textImage .statTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -20px;
}

.slideBoxFourth .textImage2 {
  position: relative;
  padding-left: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
}

.slideBoxFourth .textImage2 .image3 {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 470px;
}

.slideBoxFourth .textImage2 .image3 .imageBlock {
  z-index: 1;
}

.slideBoxFourth .textImage2 .image3::after {
  content: '';
  display: block;
  position: absolute;
  top: -51%;
  left: -100%;
  width: 676px;
  height: 454px;
  background: url('images/green-leaf.svg');
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  -webkit-transform: rotate(-55deg) scale(1) rotateX(180deg);
  -ms-transform: rotate(-55deg) scale(1) rotateX(180deg);
  transform: rotate(-55deg) scale(1) rotateX(180deg);
  -webkit-animation: grleaf 8s linear 1s infinite normal forwards;
  animation: grleaf 8s linear 1s infinite normal forwards;
}

@-moz-keyframes grleaf {

  0%,
  99% {
    -moz-transform: rotate(-55deg) scale(1) rotateX(180deg);
  }

  49%,
  51% {
    -moz-transform: rotate(-45deg) scale(1.1 rotateX(180deg));
  }
}

@-webkit-keyframes grleaf {

  0%,
  99% {
    -webkit-transform: rotate(-55deg) scale(1) rotateX(180deg)
  }

  49%,
  51% {
    -webkit-transform: rotate(-45deg) scale(1.1) rotateX(180deg);
  }
}

@keyframes grleaf {

  0%,
  99% {
    -webkit-transform: rotate(-55deg) scale(1) rotateX(180deg);
    transform: rotate(-55deg) scale(1) rotateX(180deg);
  }

  49%,
  51% {
    -webkit-transform: rotate(-45deg) scale(1.1) rotateX(180deg);
    transform: rotate(-45deg) scale(1.1) rotateX(180deg);
  }
}

.slideBoxFourth .textImage2 .image4 p {
  text-align: right;
}

.slideBox h3 {
  font-size: 302px;
  line-height: 0.9;
  margin: 0;
  padding: 0;
}

.slideBoxFirst .textImage h3 {
  color: #FF007A;
}

.slideBoxSecond .imgFigureTxt .group1 h3 {
  color: var(--darkblue);
}

.slideBoxSecond .imgFigureTxt .group2 h3 {
  color: var(--yellow);
}

.slideBoxThird h3 {
  color: var(--green);
}

.slideBoxFourth .textImage h3 {
  color: #FDA8B9;
}

.slideBoxFourth .textImage2 h3 {
  color: var(--orange);
}

.slideBoxFourth .textImage2 .statTxt {
  z-index: 1;
}

.slideBoxFourth .textImage2 .statTxt h3 {
  margin: -140px 0 -70px -100px;
}

.slideBoxFourth .textImage2 .statTxt .text {
  padding-left: 25px;
}

.cityHighlights .imageBlock {
  padding-top: 0 !important;
}

.portraitImg::before {
  content: "";
  width: 100%;
  padding-top: 132.32%;
  display: block;
}

.portraitImgSm {
  width: 328px;
}

.portraitImgLg {
  width: 533px;
}

.landscapeImg::before {
  content: "";
  width: 100%;
  padding-top: 75.6%;
  display: block;
}

.landscapeImgSm {
  width: 434px;
}

.landscapeImgLg {
  width: 705px;
}

.landscapeImg2 {
  width: 725px;
}

.landscapeImg2::before {
  content: "";
  width: 100%;
  padding-top: 73.56%;
  display: block;
}

.landscapeImg3 {
  width: 799px;
}

.landscapeImg3::before {
  content: "";
  width: 100%;
  padding-top: 66.76%;
  display: block;
}


@media (max-width:1600px) {
  .slideBox h3 {
    font-size: 260px;
  }

  .statTxt h5.text {
    font-size: 27px;
  }

  .slideBoxFirst .image1 svg {
    top: 120px;
    left: 60px;
    width: 118px;
  }

  .portraitImgSm {
    width: 295px;
  }

  .portraitImgLg {
    width: 480px;
  }

  .landscapeImgSm {
    width: 390px;
  }

  .landscapeImgLg {
    width: 634px;
  }

  .landscapeImg2 {
    width: 652px;
  }

  .landscapeImg3 {
    width: 719px;
  }

  .slideBoxFirst .image1 {
    padding-top: 265px;
  }

  .slideBoxFirst .image2 {
    padding-top: 85px;
  }

  .slideBoxFirst .textImage {
    padding-top: 82px;
    padding-left: 70px;
    padding-right: 85px;
  }

  .slideBoxSecond .image1 {
    padding-top: 85px;
  }

  .slideBoxSecond .image2 {
    padding-top: 180px;
    margin-left: -80px;
  }

  .slideBoxSecond .imgFigureTxt .group2 {
    margin-top: 30px;
  }

  .slideBoxThird .textImage {
    padding-top: 90px;
  }

  .slideBoxFourth .textImage2 .image3 {
    top: 410px;
  }

  .slideBoxFirst .textImage .image3::after {
    width: 336px;
    height: 431px;
    left: -109px;
    top: 54px;
  }

  .slideBoxFirst .textImage .statTxt {
    right: -198px;
    top: 421px;
  }

  .slideBoxFirst .textImage .textBlock {
    padding-bottom: 60px;
  }

  .slideBoxSecond .image1::before {
    width: 529px;
    height: 264px;
    top: 192px;
  }

  .slideBoxSecond .imgFigureTxt {
    margin-left: -80px;
  }

  .slideBoxSecond .imgFigureTxt .group2 .statTxt,
  .slideBoxSecond .imgFigureTxt .group1 .statTxt {
    padding-left: 40px;
  }

  .slideBoxSecond .imgFigureTxt .group1 .statTxt h3 {
    margin: -88px 0 25px -90px;
  }

  .slideBoxSecond .imgFigureTxt .group2 .statTxt h3 {
    margin: -90px 0 25px -110px;
    padding-right: 65px;
  }

  .slideBoxThird > .image1::before {
    left: -32%;
    top: 0%;
    width: 275px;
    height: 274px;
  }

  .slideBoxThird .textImage {
    margin-left: -75px;
  }

  .slideBoxThird .textImage .image2::before {
    width: 591px;
    height: 397px;
    bottom: -80px;
    right: 60px;
  }

  .slideBoxFourth .textImage {
    padding-left: 70px;
    padding-right: 105px;
  }

  .slideBoxFourth .textImage2 {
    padding-left: 70px;
  }

  .slideBoxFourth .textImage2 {
    padding-left: 62px;
    padding-top: 95px;
  }

  .slideBoxFourth .textImage2 .image3::after {
    top: -57%;
    left: -93%;
    width: 615px;
    height: 414px;
  }

  .slideBoxFourth .textImage2 .statTxt h3 {
    margin: -125px 0 -65px -81px;
  }

  .slideBoxSecond .imgFigureTxt .group2::before {
    width: 110px;
    height: 110px;
  }
}

@media (max-width:1440px) {
  .slideBox {
    font-size: 16px;
    line-height: 1.222;
  }

  header {
    padding: 15px 50px;
  }

  .logoIcon {
    width: 58px;
    height: 58px;
  }

  .slideBoxFirst .image1 svg {
    top: 70px;
    left: 45px;
    width: 108px;
  }

  .portraitImgSm {
    width: 222px;
  }

  .portraitImgLg {
    width: 362px;
  }

  .landscapeImgSm {
    width: 295px;
  }

  .landscapeImgLg {
    width: 447px;
  }

  .landscapeImg2 {
    width: 493px;
  }

  .landscapeImg3 {
    width: 543px;
  }

  .slideBox h3 {
    font-size: 200px;
  }

  .statTxt h5.text {
    font-size: 24px;
  }

  .slideBoxFirst .textImage .textBlock {
    max-width: 300px;
    padding-bottom: 50px;
  }

  .slideBoxFirst .textImage .bottomlogo img {
    height: auto;
    width: 135px;
  }

  .slideBoxFourth .textImage2 .statTxt h3 {
    margin: -90px 0 -45px -60px;
  }

  .slideBoxThird .textImage {
    margin-left: -65px;
    padding-top: 70px;
  }

  .slideBoxSecond .imgFigureTxt .group2 .statTxt h3 {
    margin: -70px 0 10px -95px;
    padding-right: 40px;
  }

  .slideBoxSecond .imgFigureTxt .group1 .statTxt h3 {
    margin: -60px 0 15px -80px;
  }

  .slideBoxFirst .textImage .statTxt {
    right: -175px;
    top: 343px;
  }

  .slideBoxFirst .textImage .statTxt .text {
    padding-top: 80px;
  }

  .slideBoxFirst .textImage .image3::after {
    width: 202px;
    height: 256px;
    left: -72px;
    top: 72px;
  }

  .slideBoxFirst .textImage {
    padding-top: 52px;
    padding-left: 45px;
    padding-right: 65px;
  }

  .slideBoxSecond .image1::before {
    width: 398px;
    height: 199px;
    top: 151px;
    left: -7%;
  }

  .slideBoxThird .textImage .image2::before {
    width: 442px;
    height: 293px;
    bottom: -70px;
    right: 30px;
  }

  .slideBoxFourth .textImage2 .image3::after {
    width: 457px;
    height: 310px;
    top: -58%;
    left: -104%;
  }

  .slideBox p {
    padding-bottom: 13px;
  }

  .slideBox .imageBlock {
    margin-bottom: 10px;
  }

  .slideBoxThird > .image1::before {
    left: -23%;
    top: -3%;
    width: 170px;
    height: 170px;
  }

  .slideBoxThird .textImage .statTxt {
    padding-bottom: 20px;
  }

  .slideBoxSecond .image2 {
    margin-left: -55px;
  }

  .slideBoxSecond .imgFigureTxt {
    margin-left: -60px;
  }

  .slideBoxSecond .imgFigureTxt .group2::before {
    width: 90px;
    height: 90px;
  }

  .slideBoxFourth .textImage {
    padding-left: 60px;
    padding-right: 85px;
    padding-top: 100px;
  }

  .slideBoxFirst .image1 {
    padding-top: 190px;
  }

  .slideBoxFirst .image2 {
    padding-top: 55px;
    margin-left: -22px;
  }

  .slideBoxSecond .image1 {
    padding-top: 55px;
  }

  .slideBoxSecond .image2 {
    padding-top: 125px;
  }

  .slideBoxFourth .textImage2 {
    padding-top: 70px;
    padding-left: 60px;
  }

  .slideBoxFourth .textImage2 .image3 {
    top: 310px;
  }

  .slideBoxFourth .textImage h3 {
    line-height: 0.8;
  }

  .slideBoxFourth .textImage .text {
    padding-top: 10px;
  }

  .slideBoxThird .textImage .statTxt .text {
    padding-left: 80px;
  }
}

@media (max-width:767px) {

  .cityHighlights .swiper .slideBoxFirst {
    padding-left: 20px;
  }

  .cityHighlights .swiper .slideBoxFourth {
    padding-right: 20px;
  }
}


@media (orientation: landscape) and (max-height:525px),
(max-width:525px) {
  .cityHighlights > h2 {
    margin-bottom: 40px;
  }

  .slideBoxFirst .image1 svg {
    top: 100px;
    left: 50px;
    width: 90px;
  }

  .portraitImgSm {
    width: 222px;
  }

  .portraitImgLg {
    width: 362px;
  }

  .landscapeImgSm {
    width: 294px;
  }

  .landscapeImgLg {
    width: 479px;
  }

  .landscapeImg2 {
    width: 493px;
  }

  .landscapeImg3 {
    width: 543px;
  }

  .slideBox h3 {
    font-size: 140px;
  }

  .statTxt h5.text {
    font-size: 20px;
  }

  .slideBoxFirst .image1 {
    padding-top: 200px;
  }

  .slideBoxFirst .textImage {
    padding-left: 40px;
    padding-right: 40px;
  }

  .slideBoxFirst .textImage .textBlock {
    padding-bottom: 40px;
    padding-right: 30px;
  }

  .slideBoxFirst .textImage .bottomlogo img {
    width: 100px;
  }

  .slideBoxSecond .image2 {
    margin-left: -50px;
  }

  .slideBoxSecond .imgFigureTxt {
    margin-left: -50px;
  }

  .slideBoxSecond .imgFigureTxt .group1 .statTxt {
    padding-left: 35px;
  }

  .slideBoxSecond .imgFigureTxt .group2 .statTxt {
    padding-left: 35px;
    padding-right: 20px;
  }

  .slideBoxThird > .image1::before {
    left: -16%;
    top: -1%;
    width: 130px;
    height: 130px;
  }

  .slideBoxThird .textImage {
    margin-left: -40px;
  }

  .slideBoxThird .textImage .image2::before {
    width: 412px;
    height: 263px;
  }

  .slideBoxThird .textImage .statTxt {
    margin-bottom: 0;
    padding-left: 10px;
  }

  .slideBoxThird .textImage .statTxt .text {
    padding-left: 65px;
  }

  .slideBoxFourth .textImage {
    padding-left: 40px;
    padding-right: 60px;
  }

  .slideBoxFourth .textImage2 {
    padding-top: 70px;
    padding-left: 40px;
  }

  .slideBoxFourth .textImage2 .image3::after {
    width: 420px;
    height: 263px;
    top: -40%;
  }

  .slideBoxFourth .textImage2 .statTxt h3 {
    margin: -56px 0 -30px -50px;
  }

  .slideBoxFourth .textImage2 .statTxt .text {
    padding-left: 15px;
  }

  .slideBoxSecond .imgFigureTxt .group2 .statTxt h3 {
    margin: -70px 0 15px -70px;
    padding-right: 50px;
  }

  .slideBoxSecond .imgFigureTxt .group1 .statTxt h3 {
    margin: -50px 0 15px -63px;
  }

  .slideBoxFirst .textImage .statTxt {
    right: -150px;
    top: 380px;
  }

  .slideBoxFirst .textImage .statTxt .text {
    padding-top: 65px;
    padding-left: 0;
  }

  .slideBoxSecond .image1::before {
    width: 380px;
    height: 190px;
    top: 190px;
    left: -5%;
  }

  .slideBoxFirst .textImage .image3::after {
    width: 170px;
    height: 216px;
    left: -70px;
    top: 86px;
  }

  .slideBoxFourth .textImage2 .image3 {
    top: 310px;
  }
}

.page-template-default.page .pageContent .centerBlock {
  max-width: 1200px;
}
.desclaimer {
  display: block;
  text-align: left;
  color: var(--pink);
  padding-top: 5px;
}
table ~ .desclaimer {
  padding-left: 12px;
}

/* download form css start */
.downloadForm {padding: 65px 30px 0;}
.downloadForm .gform_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.downloadForm .gform_wrapper .gform_heading h2 { padding-bottom: 10px; }
.downloadForm .gform_wrapper .gform_heading .gform_required_legend, .downloadForm .gform_wrapper .gform_validation_errors ,
.downloadForm .gform_wrapper .gform_heading .gform_description {display: none;}
.downloadForm .gform_wrapper form {
  max-width: 860px;
  margin: 0 auto;
}
.downloadForm .gform_wrapper .gfield label {
  
  font-size: 14px;
  font-family: 'matterbold';
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.downloadForm .gform_wrapper input {
  background: transparent !important;
  border-radius: 0 !important;
  border: 1px solid #000 !important;
  color: #000 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  padding: 10px 18px !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  height: auto !important;
}
.downloadForm .gform_wrapper .gfield {
  text-align: left;position: relative;
}
.downloadForm .gform_wrapper .gfield .ginput_container [type="checkbox"]{
display: inline-block;position: absolute;left: 0;top: 0;width: 0;height: 0;opacity: 0;visibility: hidden;
}
.downloadForm .gform_wrapper .gfield .ginput_container [type="checkbox"] + label {
  position: relative;
  padding: 3px 0 0 40px;
  margin: 0;
  font-size: 14px;
  font-family: 'matterbold';
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  cursor: pointer;
}
.downloadForm .gform_wrapper .gfield .ginput_container [type="checkbox"] + label span {
  color: var(--pink);
}
.downloadForm .gform_wrapper .gfield .ginput_container [type="checkbox"] + label::before {
  content: "";
  width: 28px;height: 28px;display: inline-block;
  position: absolute;left: 0;top: 0;border: 1px solid #000;
}
.downloadForm .gform_wrapper .gfield .ginput_container [type="checkbox"] + label::after {
  content: "";
  width: 16px;
  height: 8px;
  display: inline-block;
  position: absolute;
  left: 7px;
  top: 7px;
  border: 1px solid #000;
  border-right: none;
  border-top: none;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.downloadForm .gform_wrapper .gfield .ginput_container [type="checkbox"]:checked + label::after { opacity: 1; }
.downloadForm .gform_wrapper .gform_footer {
  padding-top: 10px;
}
.downloadForm .gform_wrapper .gform_footer .gform_button {
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.3333333333333333 !important;
  letter-spacing: 1.8px !important;
  font-family: 'matterregular' !important;
  text-decoration: none !important;
  margin: 0 !important;
  padding: 13px 30px !important;
  min-width: 240px !important;
  border-radius: 30px !important;
  display: inline-block !important;
  background-color: #FF007A !important;
  border: 0 !important;
  cursor: pointer !important;
  text-align: center !important;
  text-transform: uppercase !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -moz-transition: all 0.75s !important;
  -webkit-transition: all 0.75s !important;
  transition: all 0.75s !important;
  border: 2px solid #FF007A !important;
}
.downloadForm .gform_wrapper .gform_footer .gform_button:hover {
  background-color: transparent !important;
  color: #FF007A !important;
}
.downloadForm .formDownloadBtns {
  max-width: 860px;
  margin: 0 auto; 
  margin: 0 auto;
  display: flex;flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #000;
  margin-top: 50px;
  padding: 20px 0 0;
}
.downloadForm .formDownloadBtns a {
  flex: auto;
}
.downloadForm .formDownloadBtns a.locked {
  background-color: transparent;
  color: #FF007A ;pointer-events: none;cursor: no-drop;color: #7B7B7B;border-color: #7B7B7B;
}
/* .downloadForm .formDownloadBtns a:hover {pointer-events: all;cursor: pointer;} */
.downloadForm .gform_wrapper .gfield_error input {
  border-color: red !important;
}
.downloadForm .gform_wrapper .gfield_validation_message {display: none !important;}
.downloadForm .gform_wrapper .gfield.gfield_error .ginput_container [type="checkbox"] + label::before {

  border-color: red;
}
.gform_confirmation_message p {
  color: #FF007A;font-size: 33px;letter-spacing: 3.3px;
  text-transform: uppercase;
}
@media screen and (min-width: 0px) and (max-width:1536px) { 
  .downloadForm {
    padding: 70px 30px 0;
  }
  .downloadForm .gform_wrapper form, .downloadForm .formDownloadBtns {
    max-width: 750px; }
    .downloadForm .gform_wrapper .gform_footer .gform_button  {
      font-size: 16px !important;
      letter-spacing: 1.6px !important;
      padding: 10px 18px !important;
      min-width: 225px !important;
    }
    
.gform_confirmation_message p {font-size: 28px;letter-spacing: 2.8px;}
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .gform_confirmation_message p {font-size: 20px;letter-spacing: 2px;}
  .downloadForm {
    padding: 65px 0 0;
  }
  
.downloadForm .formDownloadBtns { margin-top: 30px;}
.downloadForm .gform_wrapper .gform_footer {
  padding-top: 0;margin: 0;
}
.contactHero h1 {
  font-size: 40px;
  letter-spacing: -0.65px;
}
}
@media screen and (min-width: 0px) and (max-width: 480px)  {
  .downloadForm { padding: 30px 0 0; }
  .downloadForm .gform_wrapper .gform_heading h2 {
    padding-bottom: 10px;
    margin-bottom: 25px;
  }
}

@media (orientation: landscape) and (max-height:525px), (max-width:525px) {
  .downloadForm .gform_wrapper .gform_footer .gform_button {
    font-size: 15px !important;
        line-height: 22px !important;
        letter-spacing: 0.6px !important;
        padding: 8px 15px !important;
        min-width: 190px !important;
  }
}

.popup360Slider {
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0%;
  transition: all .5s ease-in-out;
  z-index: 111111;
  overflow: hidden;
  opacity: 0;
}
.popup360Slider.active {
  right: 0;
  opacity: 1;
}
.popup360Slider .sliderBox360,
.popup360Slider .sliderBox360 .slick-list,
.popup360Slider .sliderBox360 .slick-list .slick-track,
.popup360Slider .sliderBox360 .slick-list .slick-track .slick-slide,
.popup360Slider .sliderBox360 .slick-list .slick-track .slick-slide .item,
.popup360Slider .sliderBox360 .slick-list .slick-track .slick-slide .item .box360 {
  height: 100%;
}
.popup360Slider .sliderBox360 .slick-list .slick-track .slick-slide iframe {
  width: 100%;
  height: 100%;
} 
.popup360Slider .sliderBox360 .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 60px;

}
.popup360Slider .sliderBox360 .slick-arrow.slick-prev {
  left: 20px;
}
.popup360Slider .sliderBox360 .slick-arrow.slick-next {
 right: 20px;
}
.popup360Slider .sliderBox360Close {
  position: absolute;
  right: 80px;
  top: 25px;
  margin: auto;
  background: url('images/close-icon.svg') no-repeat center center;
  background-size: auto;
  background-size: auto;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  z-index: 2;
  cursor: pointer;
}
.popup360Slider .slick-slide.slick-current { opacity: 1; }
.popup360Slider .vrLoader {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: black;
  opacity: 1;
  transition: 0.75s ease;
  transition-delay: 2s;
}

.popup360Slider.active .vrLoader {
  opacity: 0;
  pointer-events: none;
}
.popup360Slider .vrLoader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 120px;
  height: 120px;
  animation: ripple1 0.7s linear infinite;
  border-radius: 50%;
  cursor: pointer;
  animation: ripple1 0.7s linear infinite;
  border-radius: 50%;
}
@media (max-width : 991px) {
  .popup360Slider .sliderBox360 .slick-arrow.slick-next {
    right: 15px;
  }
  .popup360Slider .sliderBox360 .slick-arrow.slick-prev {
    left: 15px;
  }
  .popup360Slider .vrLoader::after {
    width: 90px;
    height: 90px;
  }
}
@media (max-width : 590px) {
  .popup360Slider .sliderBox360Close {
    right: 65px;
    top: 19px;
  }
  .popup360Slider .sliderBox360 .slick-arrow.slick-next {
    right: 5px;
  }
  .popup360Slider .sliderBox360 .slick-arrow.slick-prev {
    left: 5px;
  }
  .popup360Slider .vrLoader::after {
    width: 70px;
    height: 70px;
  }
}