@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap");
body,
html {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 1px;
}

* {
  outline: none;
}

@-webkit-keyframes growSlow {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes growSlow {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

#loader .logo {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  background: url("../assets/icons/Capgemini_Logo_Blue_RGB.png") no-repeat;
  background-size: contain;
  -webkit-clip-path: ellipse(100% 100% at 50% 50%);
          clip-path: ellipse(100% 100% at 50% 50%);
}

#loader div {
  background: #ececec;
}

#loader svg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}

#loader svg #animate-svg {
  width: 100%;
  min-height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
}

#loader svg:nth-child(1) {
  z-index: 3;
}

#loader svg:nth-child(2) {
  z-index: 2;
}

#loader svg:nth-child(3) {
  z-index: 1;
}

#loader svg:nth-child(4) {
  z-index: 0;
}

@media (max-width: 575.98px) {
  #loader svg {
    height: 120%;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9;
  padding-top: 20px;
  pointer-events: none;
}

header .container-fluid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
}

header .container-fluid .logo {
  max-width: 250px;
  padding-left: 1.5em;
  z-index: 999;
  pointer-events: visible;
}

header .container-fluid .logo img {
  width: 100%;
}

@media (max-width: 575.98px) {
  header .container-fluid .logo {
    padding-left: .3em;
  }
}

header .container-fluid .userLabel {
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  padding-right: 1.5em;
}

header .container-fluid #menu-icon-container {
  position: absolute;
  left: 0;
  bottom: -3em;
  width: 40px;
  height: 20px;
  margin-left: 1.5em;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  z-index: 9;
  pointer-events: visible;
}

header .container-fluid #menu-icon-container div {
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .container-fluid #menu-icon-container div:nth-child(2) {
  width: 75%;
  background: #95e616;
}

header #menu-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-clip: padding-box;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  pointer-events: visible;
  -webkit-clip-path: ellipse(0% 0% at 0% 0%);
          clip-path: ellipse(0% 0% at 0% 0%);
}

header #menu-list .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 2em 75px 400px;
}

header #menu-list .container-fluid .menu-column {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  color: #fff;
  -webkit-clip-path: ellipse(0% 0% at 25% 50%);
          clip-path: ellipse(0% 0% at 25% 50%);
  pointer-events: visible;
}

header #menu-list .container-fluid .menu-column .menu-sub-header {
  position: relative;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 5px;
  cursor: pointer;
  padding: 0.25em 0.45em;
  color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header #menu-list .container-fluid .menu-column .menu-sub-header:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #95e616;
  -webkit-clip-path: polygon(calc(0% + 5px) calc(0% + 5px), calc(100% - 5px) calc(0% + 5px), calc(100% - 5px) calc(100% - 5px), calc(0% + 5px) calc(100% - 5px));
          clip-path: polygon(calc(0% + 5px) calc(0% + 5px), calc(100% - 5px) calc(0% + 5px), calc(100% - 5px) calc(100% - 5px), calc(0% + 5px) calc(100% - 5px));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header #menu-list .container-fluid .menu-column .menu-sub-header:hover {
  color: white;
  background: #0070ad;
  border-radius: 20px;
}

header #menu-list .container-fluid .menu-column .logout-sub-header {
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: lighter;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.25em 0.45em;
  color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header #menu-list .container-fluid .menu-column .logout-sub-header:hover {
  text-decoration: underline;
  color: #95e616;
}

header #menu-list .container-fluid .menu-column .menu-column-list {
  padding: 0;
  margin: 0;
  margin-top: 25px;
  padding-left: 0.25em;
  list-style-type: none;
}

header #menu-list .container-fluid .menu-column .menu-column-list li {
  margin-bottom: 15px;
}

header #menu-list .container-fluid .menu-column .menu-column-list li a {
  position: relative;
  padding: 5px;
  text-decoration: none;
  color: #ffffff;
}

header #menu-list .container-fluid .menu-column .menu-column-list li a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #95e616;
  -webkit-clip-path: polygon(calc(0% + 5px) calc(0% + 5px), calc(100% - 5px) calc(0% + 5px), calc(100% - 5px) calc(100% - 5px), calc(0% + 5px) calc(100% - 5px));
          clip-path: polygon(calc(0% + 5px) calc(0% + 5px), calc(100% - 5px) calc(0% + 5px), calc(100% - 5px) calc(100% - 5px), calc(0% + 5px) calc(100% - 5px));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header #menu-list .container-fluid .menu-column .menu-column-list li a:hover:before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header #menu-list .container-fluid .menu-footer {
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  opacity: 0;
  position: absolute;
  bottom: 50px;
  left: 400px;
}

header #menu-list .container-fluid .menu-footer a {
  font-size: 0.8em;
  text-decoration: none;
  color: #fff;
  text-transform: lowercase;
  font-weight: lighter;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 5em;
}

header #menu-list .container-fluid .menu-footer a:hover {
  text-decoration: underline;
  color: #95e616;
}

@media (max-width: 575.98px) {
  header {
    height: 100vh;
    padding-top: 0;
  }
  header .container-fluid {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .container-fluid .logo {
    max-width: 160px;
  }
  header .container-fluid .userLabel {
    font-size: 0.9em;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  header .container-fluid #menu-icon-container {
    bottom: -1em;
    width: 30px;
  }
  header #menu-list {
    height: 100vh;
    overflow-y: scroll;
  }
  header #menu-list .container-fluid {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1em;
    padding-top: 120px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header #menu-list .container-fluid .menu-column {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    margin-bottom: 1.3em;
  }
  header #menu-list .container-fluid .menu-column .logout-sub-header {
    padding-left: 10px;
  }
}

.container {
  max-width: 1700px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 1850px;
  margin: 0 auto;
}

.chat-bubble {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  min-width: 150px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  pointer-events: none;
  -webkit-clip-path: ellipse(0 0 at 50% 30%);
          clip-path: ellipse(0 0 at 50% 30%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 15px;
  text-transform: uppercase;
  color: #0070ad;
}

@media (max-width: 575.98px) {
  .chat-bubble {
    display: none;
  }
}

.chat-bubble:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: -1;
}

.chat-bubble.chat-bubble-top {
  top: calc(-100% - 15px);
  left: 50%;
}

.chat-bubble.chat-bubble-top:before {
  top: 0;
  left: 0;
  background: url("../assets/img/chat-bubble.png") no-repeat;
  background-size: contain;
}

.chat-bubble.chat-bubble-bottom {
  top: 100%;
  left: 50%;
  padding-top: 28px;
}

.chat-bubble.chat-bubble-bottom:before {
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url("../assets/img/chat-bubble.png") no-repeat;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background-size: contain;
}

.pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-size: contain;
  background-position-y: top;
  -webkit-transform: translate(15px, -15px);
          transform: translate(15px, -15px);
  z-index: 1;
  opacity: 0.5;
}

.pattern .triangle-pattern g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.home-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slick-list {
  padding-bottom: 3.5em;
}

#home-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#home-page-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.404);
  z-index: 1;
}

#home-page-bg .slick-list,
#home-page-bg .slick-track {
  height: 100%;
}

#home-page-bg img {
  position: relative;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex-box {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3em;
  padding-top: 55px;
}

@media (max-width: 575.98px) {
  .flex-box {
    padding: 1em;
    padding-top: 6em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.slider-for {
  -webkit-box-flex: 0.35;
      -ms-flex: 0.35;
          flex: 0.35;
  overflow: hidden;
}

.slider-for .city-desc {
  padding-bottom: 50px;
}

.slider-for .city-desc .header {
  font-size: 3.2em;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.slider-for .city-desc p.desc {
  color: white;
  text-decoration: none;
}

.slider-for .city-desc .cta {
  width: 150px;
  height: 40px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0070ad;
  border-radius: 20px;
  cursor: pointer;
  -webkit-clip-path: circle(0%);
          clip-path: circle(0%);
  text-decoration: none;
}

.slider-for .city-desc .cta p {
  margin-right: 10px;
  font-size: 18px;
  font-weight: bold;
}

.slider-for .city-desc .cta svg #Path_80 {
  fill: #95e616;
}

@-webkit-keyframes ctaClipPath {
  0% {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  50% {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  100% {
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
  }
}

@keyframes ctaClipPath {
  0% {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  50% {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  100% {
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
  }
}

@-webkit-keyframes paraReveal {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes paraReveal {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@-webkit-keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.slider-for .city-desc .fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

.slider-for .city-desc.slick-active {
  -webkit-animation-name: fadeInUpSD;
          animation-name: fadeInUpSD;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 1;
}

.slider-for .city-desc.slick-active .header {
  -webkit-animation-name: paraReveal;
          animation-name: paraReveal;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
}

.slider-for .city-desc.slick-active .desc {
  -webkit-animation-name: fadeInLeftSmall;
          animation-name: fadeInLeftSmall;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.slider-for .city-desc.slick-active .cta {
  -webkit-animation-name: ctaClipPath;
          animation-name: ctaClipPath;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.slider-for .city-desc.slick-active .cta p {
  -webkit-animation-name: paraReveal;
          animation-name: paraReveal;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.slider-for .city-desc.slick-active .cta svg {
  -webkit-animation-name: fadeInLeftSmall;
          animation-name: fadeInLeftSmall;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@media (max-width: 575.98px) {
  .slider-for {
    width: 100vw;
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
  }
  .slider-for .city-desc {
    padding: 0 1em;
    margin-top: 2.3em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .slider-for .city-desc .header {
    font-size: 2.2em;
  }
  .slider-for .city-desc .desc {
    font-size: 0.9em;
  }
}

.slider-nav-wrapper {
  position: relative;
  -webkit-box-flex: 0.65;
      -ms-flex: 0.65;
          flex: 0.65;
  overflow: hidden;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  z-index: 1;
}

.slider-nav-wrapper .slider-nav .slider-item {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-right: 25px;
  overflow: hidden;
  border-radius: 15px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 1s;
  transition: all 1s;
  margin-bottom: 60px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

.slider-nav-wrapper .slider-nav .slider-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slider-nav-wrapper .slider-nav .slider-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.slider-nav-wrapper .slider-nav .slider-item .caption {
  position: absolute;
  bottom: 15%;
  left: -2px;
  width: 80%;
  height: 40px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-nav-wrapper .slider-nav .slider-item .caption:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background: #0070ad;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.slider-nav-wrapper .slider-nav .slider-item .caption p {
  margin: 0;
  padding-left: 2em;
  color: white;
  z-index: 1;
}

.slider-nav-wrapper .slider-nav .slider-item.slick-current {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slider-nav-wrapper .slider-nav .slider-item.slick-current .caption:before {
  width: 100%;
}

.slider-nav-wrapper .slider-nav .slider-item.slick-current:before {
  background: rgba(0, 0, 0, 0);
}

.slider-nav-wrapper .slider-nav .slider-item:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

.slider-nav-wrapper .slider-nav .slider-item:hover:before {
  background: rgba(0, 0, 0, 0.1);
}

.slider-nav-wrapper .slider-nav .slider-item:hover.slick-current {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slider-nav-wrapper .slider-nav .slider-item:hover.slick-current .caption:before {
  width: 100%;
}

.slider-nav-wrapper .slider-nav .slider-item:hover.slick-current:before {
  background: rgba(0, 0, 0, 0);
}

.slider-nav-wrapper .slider-nav .slick-prev,
.slider-nav-wrapper .slider-nav .slick-next {
  top: calc(100% - 10px);
  left: 0%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.53);
  z-index: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.slider-nav-wrapper .slider-nav .slick-prev:before,
.slider-nav-wrapper .slider-nav .slick-next:before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%) scale(1);
          transform: translate(-50%) scale(1);
  width: 10px;
  height: 100%;
  background: url("../assets/icons/prev-arrow.png") no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0.65;
  z-index: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.slider-nav-wrapper .slider-nav .slick-prev:hover,
.slider-nav-wrapper .slider-nav .slick-next:hover {
  border: 1px solid #ffffff;
}

.slider-nav-wrapper .slider-nav .slick-prev:hover::before,
.slider-nav-wrapper .slider-nav .slick-next:hover::before {
  opacity: 1;
  -webkit-transform: translate(-100%) scale(1.1);
          transform: translate(-100%) scale(1.1);
}

.slider-nav-wrapper .slider-nav .slick-next {
  left: 100px;
}

.slider-nav-wrapper .slider-nav .slick-next:before {
  background: url("../assets/icons/next-arrow.png") no-repeat;
  background-size: contain;
  background-position: center center;
}

.slider-nav-wrapper .slider-nav .slick-next:hover:before {
  -webkit-transform: translate(0%) scale(1.1);
          transform: translate(0%) scale(1.1);
}

.slider-nav-wrapper .slider-nav .slick-dots {
  pointer-events: none;
}

.slider-nav-wrapper #slider-no {
  position: absolute;
  bottom: 20px;
  right: 20%;
  height: auto;
  font-size: 2em;
  font-weight: bold;
  color: #95e616;
}

.slider-nav-wrapper #slider-no:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0%;
  width: 200px;
  -webkit-transform: translateX(-55px);
          transform: translateX(-55px);
  height: 2px;
  background-color: #ffffff;
  z-index: 1;
}

.slider-nav-wrapper #slider-no:after {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  right: 0%;
  width: 50px;
  height: 50px;
  background-color: #0070ad;
  z-index: 1;
  background: url("../assets/img/Pulse-1s-200px.svg") no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-260px);
          transform: translateX(-260px);
}

@media (max-width: 575.98px) {
  .slider-nav-wrapper {
    width: 100vw;
    -webkit-box-flex: .5;
        -ms-flex: .5;
            flex: .5;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .slider-nav-wrapper .slider-nav .slider-item {
    max-width: 150px;
  }
  .slider-nav-wrapper .slider-nav .slider-item .caption p {
    padding-left: 0.5em;
  }
  .slider-nav-wrapper .slider-nav .slick-next {
    top: unset;
    bottom: 0;
    width: 30px;
    height: 30px;
  }
  .slider-nav-wrapper .slider-nav .slick-prev {
    top: unset;
    bottom: 0;
    font-size: 1em;
    left: 1em;
    width: 30px;
    height: 30px;
  }
  .slider-nav-wrapper #slider-no {
    right: 1em;
    font-size: 1.5em;
    bottom: 2em;
  }
  .slider-nav-wrapper #slider-no:before {
    width: 30px;
    -webkit-transform: translateX(-35px);
            transform: translateX(-35px);
  }
  .slider-nav-wrapper #slider-no:after {
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    -webkit-transform: translateX(-65px);
            transform: translateX(-65px);
  }
}

@-webkit-keyframes moveRight {
  from {
    -webkit-transform: translateX(-235px);
            transform: translateX(-235px);
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
    background-color: #0070ad;
  }
  to {
    -webkit-transform: translateX(-55px);
            transform: translateX(-55px);
    -webkit-clip-path: circle(50%);
            clip-path: circle(50%);
    background-color: #95e616;
  }
}

@keyframes moveRight {
  from {
    -webkit-transform: translateX(-235px);
            transform: translateX(-235px);
    -webkit-clip-path: circle(75%);
            clip-path: circle(75%);
    background-color: #0070ad;
  }
  to {
    -webkit-transform: translateX(-55px);
            transform: translateX(-55px);
    -webkit-clip-path: circle(50%);
            clip-path: circle(50%);
    background-color: #95e616;
  }
}

.location-root-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.location-root-page .slider-for {
  -webkit-box-flex: 0.65;
      -ms-flex: 0.65;
          flex: 0.65;
  margin-right: 15%;
}

.location-root-page .slider-for .city-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.location-root-page .slider-for .city-desc .location-img-wrapper {
  -webkit-box-flex: 0.45;
      -ms-flex: 0.45;
          flex: 0.45;
  max-width: 500px;
}

.location-root-page .slider-for .city-desc .location-img-wrapper img {
  width: 100%;
  border-radius: 15px;
}

.location-root-page .slider-for .city-desc .location-about-wrapper {
  -webkit-box-flex: 0.55;
      -ms-flex: 0.55;
          flex: 0.55;
  padding-left: 1.5em;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list {
  position: relative;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item {
  width: 50px;
  height: 50px;
  margin-right: 40px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item a {
  height: 100%;
  width: 100%;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item a svg {
  width: 40px;
  height: 40px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item a svg path {
  z-index: 9;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  fill: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item a img {
  width: 30px;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item a.small img {
  width: 25px;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item:hover a img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.video360 a svg #noun_circle_arrows_239715 {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.video360 a:hover svg #noun_circle_arrows_239715 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.video360 a:hover svg #Path_2049 {
  fill: #95e616;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.location a:hover svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.location a:hover svg #Path_1998 {
  fill: #95e616;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.gallery a:hover svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.gallery a:hover svg #square-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  fill: #95e616;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.gallery a:hover svg #square-2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  fill: #95e616;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.gallery a:hover svg #square-4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  fill: #95e616;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item.gallery a:hover svg #square-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
  fill: #95e616;
}

.location-root-page .slider-for .city-desc .location-about-wrapper .icon-list .icon-item:hover .chat-bubble {
  -webkit-clip-path: ellipse(150% 150% at 50% 30%);
          clip-path: ellipse(150% 150% at 50% 30%);
}

.location-root-page .slider-for .city-desc.slick-active {
  -webkit-animation-name: fadeInUpSD;
          animation-name: fadeInUpSD;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 1;
}

.location-root-page .slider-for .city-desc.slick-active .location-img-wrapper {
  -webkit-animation-name: ctaClipPath;
          animation-name: ctaClipPath;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.location-root-page .slider-for .city-desc.slick-active .location-about-wrapper .header {
  -webkit-animation-name: paraReveal;
          animation-name: paraReveal;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.location-root-page .slider-for .city-desc.slick-active .location-about-wrapper .desc {
  -webkit-animation-name: fadeInLeftSmall;
          animation-name: fadeInLeftSmall;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.location-root-page .slider-for .city-desc.slick-active .location-about-wrapper .icon-list .icon-item {
  -webkit-animation-name: ctaClipPath;
          animation-name: ctaClipPath;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

@media (max-width: 575.98px) {
  .location-root-page .slider-for {
    width: 100vw;
    -webkit-box-flex: 0.6;
        -ms-flex: 0.6;
            flex: 0.6;
    margin-right: 20px;
  }
  .location-root-page .slider-for .city-desc {
    padding: 0 1em;
    margin-top: 2.3em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .location-root-page .slider-for .city-desc .location-img-wrapper {
    max-width: 280px;
    padding-left: 10px;
  }
  .location-root-page .slider-for .city-desc .location-about-wrapper {
    padding-left: 10px;
  }
  .location-root-page .slider-for .city-desc .header {
    font-size: 2.2em;
  }
  .location-root-page .slider-for .city-desc .desc {
    display: none;
  }
}

.location-root-page .slider-nav-wrapper {
  -webkit-box-flex: 0.35;
      -ms-flex: 0.35;
          flex: 0.35;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  padding-bottom: 100px;
}

.location-root-page .slider-nav-wrapper .slider-nav {
  margin: 0;
  margin-left: 200px;
  padding-top: 1em;
}

.location-root-page .slider-nav-wrapper .slider-nav .slider-item {
  max-width: 250px;
}

.location-root-page .slider-nav-wrapper .slider-nav .slick-prev,
.location-root-page .slider-nav-wrapper .slider-nav .slick-next {
  position: fixed;
  top: 55%;
  left: unset;
  right: 65%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.location-root-page .slider-nav-wrapper .slider-nav .slick-next {
  top: calc(55% + 80px);
  left: unset;
}

.location-root-page .slider-nav-wrapper #slider-no {
  top: calc(50% + 80px);
  right: 80%;
  height: 60px;
}

.location-root-page .slider-nav-wrapper #slider-no:before {
  top: 90%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.location-root-page .slider-nav-wrapper #slider-no:after {
  top: 80%;
  right: 70%;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

@media (max-width: 575.98px) {
  .location-root-page .slider-nav-wrapper {
    width: 100vw;
    -webkit-box-flex: 0.4;
        -ms-flex: 0.4;
            flex: 0.4;
    margin-bottom: 10px;
  }
  .location-root-page .slider-nav-wrapper .slider-nav {
    max-width: 96vw;
    margin-left: 20px;
  }
  .location-root-page .slider-nav-wrapper .slider-nav .slider-item {
    margin-bottom: 20px;
  }
  .location-root-page .slider-nav-wrapper .slider-nav .slider-item .caption p {
    padding-left: 0.5em;
  }
  .location-root-page .slider-nav-wrapper .slider-nav .slick-prev,
  .location-root-page .slider-nav-wrapper .slider-nav .slick-next {
    top: calc(50% + 40px);
    right: 15%;
  }
  .location-root-page .slider-nav-wrapper .slider-nav .slick-next {
    top: calc(50% + 80px);
    right: 15%;
  }
  .location-root-page .slider-nav-wrapper .city-desc {
    padding: 0 1em;
    margin-top: 2.3em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .location-root-page .slider-nav-wrapper .city-desc .header {
    font-size: 2.2em;
  }
  .location-root-page .slider-nav-wrapper .city-desc .desc {
    font-size: 0.9em;
  }
  .location-root-page .slider-nav-wrapper #slider-no {
    top: calc(50% + 40px);
    right: 70%;
  }
  .location-root-page .slider-nav-wrapper #slider-no:after {
    top: 50%;
    right: 100%;
  }
}

#krpanoSWFObject {
  z-index: -1;
}
/*# sourceMappingURL=main.css.map */