/* Slider */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.vbox-overlay {
  --vbox-tools-color: #fff;
  --vbox-title-background: #101010;
  --vbox-title-width: "auto";
  --vbox-title-radius: 0;
  --vbox-share-background: #101010;
  --vbox-share-width: "auto";
  --vbox-share-radius: 0;
  --vbox-padding: 0;
  --vbox-max-width: 100% ;
}

.vbox-overlay *,
.vbox-overlay :after,
.vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.vbox-overlay * {
  backface-visibility: visible;
}

.vbox-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share,
.vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn,
button.vbox-link-btn,
button.vbox-link-btn:active,
button.vbox-link-btn:focus,
button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 40px;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next,
.vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover,
.vbox-prev:hover {
  opacity: 1;
}

.vbox-next span,
.vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  transform: rotate(-135deg);
}

.vbox-next span {
  transform: rotate(45deg);
  right: 10px;
}

.vbox-inline,
.venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio::before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio: 100%;
  max-width: min(var(--vbox-max-width), 100vh - 60px);
}

.venoratio-4x3.vbox-child.venoratio {
  --vb-aspect-ratio: calc(3 / 4 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 4 / 3);
}

.venoratio-16x9.vbox-child.venoratio {
  --vb-aspect-ratio: calc(9 / 16 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 16 / 9);
}

.venoratio-21x9.vbox-child.venoratio {
  --vb-aspect-ratio: calc(9 / 21 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 21 / 9);
}

.venoratio-full {
  --vb-aspect-ratio: calc(100vh - 60px) ;
}

.vbox-child.vbox-inline,
.vbox-child.venoratio {
  width: 1000px;
  max-width: 98%;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: var(--vbox-max-width);
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.vbox-child .bio-img img {
  opacity: 0;
}

.vbox-child .bio-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vbox-fit .vbox-child img,
.vbox-fit .vbox-child.venoratio {
  max-height: calc(100vh - 60px);
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size: 40px;
  --sk-color: #333 ;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  100%, 80% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  0%, 100% {
    transform: scale(1);
  }
}
.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1);
  }
}
.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%, 100%, 40% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%, 100%, 80% {
    transform: scale(0.3);
  }
  40% {
    transform: scale(1);
  }
}
.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-swing-dot {
  0%, 100% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1);
  }
}
.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%, 100%, 39% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%, 100%, 70% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%, 90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance: calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*
 * jQuery FlexSlider v2.7.2
 * https://www.woocommerce.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: "flexslider-icon";
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  width: 100%;
  height: 100%;
}

.flexslider .slides img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  background: #fff;
  position: relative;
  zoom: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.flexslider .slides {
  zoom: 1;
  width: 100%;
  height: 100%;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none;
  }
}
.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 52px;
  height: 26px;
  margin: 0;
  position: absolute;
  top: 25%;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.flex-direction-nav a.flex-next {
  background-image: url(/images/svg/next-flex.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}

.flex-direction-nav .flex-prev {
  background-image: url(/images/svg/prev-flex.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  -moz-user-select: none;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
  --light-blue: #BAF0FF;
  --blue: #4d94d3;
  --dark-blue: #69AFD5;
  --darker-blue: #1F4B87;
  --navy: #062b48;
  --orange: #f36d26;
  --white: #ffffff;
  --black: #000000;
  --old-green: #1B5F75;
  --purple: #374364;
  --green: #0A6669;
  --header-height: 58px;
  --xlarge: 120px;
  --large: 80px;
  --medium: 40px;
  --small: 20px;
  --xsmall: 6px;
}

.clear,
* html .clearfix,
*:first-child + html .clearfix {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.grid_1 {
  width: 6.5%;
}

.grid_2 {
  width: 15%;
}

.grid_3 {
  width: calc(25% - 24px);
  margin-right: 32px;
  margin-bottom: 32px;
}
.grid_3:nth-child(4n) {
  margin-right: 0;
}
.grid_3.mb0 {
  margin-bottom: 0;
}
.grid_3.mr0 {
  width: 25%;
  margin-right: 0;
}

.grid_4 {
  width: calc(33.333% - 20px);
  margin-right: 30px;
  margin-bottom: 30px;
}
.grid_4:nth-child(3n) {
  margin-right: 0;
}
.grid_4.mb0 {
  margin-bottom: 0;
}
.grid_4.mr0 {
  width: 33.3333333333%;
  margin-right: 0;
}

.grid_5 {
  width: 40.5%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 57.5%;
}

.grid_8 {
  width: 64%;
}

.grid_9 {
  width: 74.5%;
}

.grid_10 {
  width: 83%;
}

.grid_11 {
  width: 91.5%;
}

.grid_12 {
  width: 100%;
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: flex;
  position: relative;
}

a {
  text-decoration: none !important;
  cursor: pointer;
  color: var(--black);
}

img {
  display: block;
  border: none;
  max-width: 100%;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

html {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5em;
  color: var(--black);
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: var(--white);
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  line-height: 1.5em;
  /* identical to box height */
  letter-spacing: -0.880954px;
}
h1 span {
  display: block;
}

h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5em;
  /* identical to box height */
  letter-spacing: -0.56381px;
  color: var(--navy);
}
h2.small {
  font-size: 26px;
}
h2.xsmall {
  font-size: 22px;
}
h2 span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: -0.317143px;
  margin-bottom: var(--small);
  text-transform: uppercase;
}

h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  /* identical to box height */
  letter-spacing: -0.38762px;
  padding-bottom: var(--);
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: -0.317143px;
}

.btn {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: -0.281905px;
  border: 1px solid var(--white);
  width: -moz-max-content;
  width: max-content;
  padding: 8px 24px;
  text-transform: uppercase;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn.fadeIn {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn.bg-white {
  background-color: var(--white);
  color: var(--blue);
}
.btn.bg-blue {
  background-color: var(--blue);
  color: var(--white);
  border: 1px solid var(--white);
}
.btn.bg-light-blue {
  background-color: var(--bg-light-blue);
  color: var(--white);
}
@media (hover: hover) {
  .btn.bg-light-blue:hover {
    background-color: var(--white);
    color: var(--navy);
    border: 1px solid var(--white);
  }
}
.btn.black {
  border: 1px solid var(--black);
}
@media (hover: hover) {
  .btn.black:hover {
    background-color: var(--blue);
    color: var(--white);
  }
}
@media (hover: hover) {
  .btn:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
  }
}
.btn.fadeIn {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  padding: 0 var(--medium);
}
header .logo {
  display: flex;
}
header .logo svg {
  height: 24px;
  width: auto;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  z-index: 2;
}
header nav > * {
  display: flex;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
header nav > *:nth-child(2) {
  justify-content: flex-start;
}
header nav > *:nth-child(3) {
  justify-content: center;
}
header nav > *:last-child {
  justify-content: flex-end;
}
header nav .slogan {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
header nav .space {
  color: var(--white);
  padding: 0 4px;
  font-weight: 400;
}
header nav .country {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}
header menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  margin-left: auto;
  list-style: none;
  z-index: 3;
  margin-left: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
header menu li {
  margin: 0 var(--xsmall);
  width: -moz-max-content;
  width: max-content;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
header menu li a {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  padding-left: 4px;
  border-left: 4px solid transparent;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
header menu li a:hover {
  border-left: 4px solid var(--orange);
}
header menu li a.active {
  border-left: 4px solid var(--orange);
}
header._bg {
  background-color: var(--white);
}
header._bg .logo svg path {
  fill: var(--black) !important;
}
header._bg .logo svg polygon {
  fill: var(--black) !important;
}
header._bg nav .country,
header._bg nav .space,
header._bg nav .slogan {
  color: var(--black);
  text-align: center;
}
header._bg menu li a {
  color: var(--black);
}
header #nav-toggle {
  z-index: 10;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  display: none;
}
header #nav-toggle span {
  height: 1px;
  width: 100%;
  background: var(--white);
  content: "";
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
header #nav-toggle.active {
  justify-content: center;
}
header #nav-toggle.active span {
  background-color: var(--white) !important;
}
header #nav-toggle.active span:first-child {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform-origin: 40%;
}
header #nav-toggle.active span:nth-child(2n) {
  opacity: 0;
}
header #nav-toggle.active span:last-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform-origin: 50%;
}
header.fadeIn {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

footer {
  padding: var(--medium);
  position: relative;
  z-index: 2;
  background-color: var(--white);
}
footer .footer-logo {
  width: 140px;
  padding-bottom: var(--medium);
}
footer .title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.66em;
  letter-spacing: -0.264286px;
  color: var(--black);
  margin-bottom: var(--xsmall);
  text-transform: uppercase;
}
footer .footer-menu > div {
  margin-right: 7vw;
}
footer .footer-menu > div a {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.66em;
  color: var(--black);
  text-transform: uppercase;
}
footer .footer-menu > div:last-child {
  margin-right: 0;
}
footer .acknowledge {
  font-size: 12px;
}

.register input,
.register label,
.register select,
.register textarea {
  margin: 0;
  padding: 0 0 var(--xsmall) 0;
  margin-bottom: var(--small);
  width: 100%;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  text-align: left;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
.register input.b_submit,
.register label.b_submit,
.register select.b_submit,
.register textarea.b_submit {
  border: 0;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin-bottom: 0;
}
@media (hover: hover) {
  .register input.b_submit:hover,
  .register label.b_submit:hover,
  .register select.b_submit:hover,
  .register textarea.b_submit:hover {
    color: var(--blue);
  }
}
.register textarea {
  min-width: 100%;
  max-width: 100%;
}
.register select {
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
  background-image: url(/images/svg/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: 100% center;
}
.register select option {
  padding: 7px 5px;
  background: #fff;
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
  color: var(--black);
}
.register #upload-resume {
  position: relative;
  width: 100%;
  display: flex;
}
.register #upload-resume label {
  position: absolute;
}
.register #upload-resume input {
  padding-left: 130px;
}
.register .privacy {
  font-size: 12px;
  margin-top: 50px;
}
.register .privacy a {
  color: var(--black);
  text-decoration: underline !important;
}
.register .chk_holder {
  margin: 10px auto 0 auto;
  color: #fff;
}
.register #chkInternational {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  line-height: 25px;
  width: 20px;
  text-align: left;
}
.register #chkInternational + label {
  background: url("/images/buttons/uncheck.png") no-repeat left center;
  color: var(--black);
  padding: 2px 0 2px 26px;
}
.register #chkInternational:checked + label {
  background: url("/images/buttons/check.png") no-repeat left center;
}
.register input:-webkit-input-placeholder,
.register textarea:-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
}
.register input::-webkit-input-placeholder,
.register textarea::-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
}
.register input:-moz-placeholder,
.register textarea:-moz-placeholder {
  color: var(--black);
  opacity: 1;
}
.register input::-moz-placeholder,
.register textarea::-moz-placeholder {
  color: var(--black);
  opacity: 1;
}
.register input:-ms-input-placeholder,
.register textarea:-ms-input-placeholder {
  opacity: 1;
}
.register input:focus::-webkit-input-placeholder,
.register textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
.register input:focus:-moz-placeholder,
.register textarea:focus:-moz-placeholder {
  opacity: 0.5;
}
.register input:focus::-moz-placeholder,
.register textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
.register input:focus:-ms-input-placeholder,
.register textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}
.register ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #525252;
  clear: both;
}
.register li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}
.register ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100% !important;
  margin-bottom: 0;
}
.register li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}
.register li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: var(--black);
  cursor: default;
  border: 1px solid #525252;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}
.register div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
}
.register div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
}
.register div.token-input-dropdown-project ul li {
  background-color: #fff;
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}
.register div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: #fff;
}
.register div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #fff;
}
.register div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}
.register div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: #fff;
}
.register ul.parsley-errors-list.filled,
.register ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 105%;
}
.register ul.parsley-errors-list.filled li,
.register ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

main {
  display: block;
  position: relative;
}

section {
  display: block;
  width: 100%;
  position: relative;
}
section.landing {
  height: 100vh;
  height: 100svh;
  min-height: 450px;
  overflow: hidden;
}
section.landing > .column {
  background-color: rgba(0, 0, 0, 0.3);
}
section.landing .my-video-pop-up {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  padding: var(--xsmall) var(--medium);
  border: 1px solid var(--orange);
  background-color: var(--orange);
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  margin-top: 100px;
}
section.landing.dark-layer::before {
  z-index: 2;
}
section.landing .title2 {
  font-weight: 400;
  letter-spacing: 0.2em;
}
section.landing iframe {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100vw;
  min-height: 110vh;
  background-position-x: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
  aspect-ratio: 16/9;
}
section.landing.half {
  height: 65vh;
}

.loop-video {
  height: 50vh;
  max-height: 500px;
}
.loop-video iframe {
  position: fixed;
  width: auto;
  height: auto;
  min-width: 100vw;
  min-height: 110vh;
  background-position-x: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 0;
  aspect-ratio: 16/9;
}

#page-careers #team-member-container .team-member {
  border-right: var(--small) solid var(--white);
}
#page-careers .vbox-child.vbox-inline,
#page-careers .vbox-child.venoratio {
  background-color: var(--blue) !important;
}

#page-careers .g8,
#page-projects .g8 {
  max-height: 90vh;
  overflow-y: auto;
  /* For WebKit browsers (Chrome, Edge, Safari) */
}
#page-careers .g8::-webkit-scrollbar,
#page-projects .g8::-webkit-scrollbar {
  width: 6px;
  /* Adjust thickness */
}
#page-careers .g8::-webkit-scrollbar-thumb,
#page-projects .g8::-webkit-scrollbar-thumb {
  background-color: var(--navy);
  /* Thumb (draggable part) color */
  border-radius: 6px;
}
#page-careers .g8::-webkit-scrollbar-track,
#page-projects .g8::-webkit-scrollbar-track {
  background: #ddd;
  /* Track color */
}

.container {
  display: block;
  position: relative;
  max-width: 1360px;
  width: calc(100% - var(--large));
  margin-left: auto;
  margin-right: auto;
}
.container.medium {
  max-width: 1030px;
}
.container.small {
  max-width: 768px;
}
.container.xlarge {
  max-width: 2000px;
}
.container.enq {
  max-width: 768px;
}

.mw400 {
  max-width: 400px;
}

.dark-layer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.tint {
  background-color: rgba(0, 0, 0, 0.3);
}

.lazy-fade {
  opacity: 0;
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
}
.lazy-fade.fadeIn {
  opacity: 1;
}

.sticky {
  position: sticky;
}
.sticky.top {
  top: var(--header-height);
}

#search-box-holder {
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  padding-bottom: var(--small);
  background: var(--white);
}

#search-box {
  background-color: var(--white);
  position: sticky;
  top: var(--header-height);
  z-index: 2;
}
#search-box h3 {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  /* identical to box height */
  letter-spacing: -0.281905px;
}
#search-box p {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  /* identical to box height */
  letter-spacing: -0.281905px;
}
#search-box select {
  margin-right: 20px;
  padding: 6px;
  min-width: 200px;
  font-size: 14px;
  height: 36px;
}
#search-box select option {
  background-color: var(--blue);
  color: white;
  font-size: 14px;
  border-top: 10px solid red;
}
#search-box button.btn {
  font-size: 14px;
  padding: 6px;
  width: 100px;
  line-height: initial;
  height: 36px;
  cursor: pointer;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  text-transform: initial;
}

.space {
  margin: 0 4px;
  padding: 0;
}

#search-keys-holder a.active {
  font-weight: 700;
}

.image-holder {
  overflow: hidden;
  height: -moz-max-content;
  height: max-content;
}
.image-holder img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-details-holder {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  min-height: 140px;
}

#projectContent a:hover .project-details-holder {
  background-color: var(--blue);
}

.bbw {
  border-bottom: 1px solid var(--white);
  margin-bottom: var(--small);
}

.fs {
  font-size: 12px;
}

#project-snapshot p {
  color: var(--white);
  display: flex;
  font-weight: 300;
  font-size: 14px;
}
#project-snapshot .title {
  display: block;
  min-width: 120px;
  font-family: "Poppins", sans-serif;
}

.agent {
  margin-right: var(--medium);
}
.agent img {
  width: 150px;
}
.agent:last-child {
  margin-right: 0;
}

#map {
  margin: var(--large) auto;
  height: 50vh;
}

.social-meida {
  width: -moz-max-content;
  width: max-content;
}
.social-meida img {
  width: 30px;
}

#preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 1000;
  flex-direction: column;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  pointer-events: none;
  padding: var(--small);
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
#preloader .preloader-logo {
  width: 600px;
  max-width: 94%;
  margin-bottom: 30px;
  transition-delay: 0.5s;
}
#preloader .property {
  width: 400px;
  transition-delay: 0.8s;
}
#preloader img,
#preloader svg {
  opacity: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#preloader.step1 img {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
#preloader.step2 img {
  opacity: 0;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}
#preloader.step2 img.property {
  transform: translateY(-300%);
  -webkit-transform: translateY(-300%);
  -moz-transform: translateY(-300%);
  -ms-transform: translateY(-300%);
  -o-transform: translateY(-300%);
}
#preloader.step3 {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.title2 {
  text-transform: uppercase;
  font-weight: 300;
  font-style: normal;
}

.people-name {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: -0.458096px;
}
.people-name.small {
  font-size: 15px;
}

.icon-holder {
  width: 40px;
}
.icon-holder svg path,
.icon-holder img {
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.icon-holder.h30 svg,
.icon-holder.h30 img {
  height: 40px;
  width: auto;
  display: block;
}

.icon-holder-new {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-max-content;
  width: max-content;
}
.icon-holder-new span {
  display: flex;
  width: 80px;
  border-bottom: 1px solid var(--white);
}
.icon-holder-new svg {
  width: 30px;
  height: 30px;
}

#page-ourservices .icon-holder svg,
#page-careers .icon-holder svg {
  height: 40px;
}

#what-we-do .grid_3,
#key-stats .grid_3 {
  border-right: 1px solid var(--white);
  width: 25%;
  padding: var(--small) var(--medium);
  margin-bottom: 15px;
  margin-right: 0;
}
#what-we-do .grid_3:last-child,
#key-stats .grid_3:last-child {
  border-right: 0 none;
}

#floating-box {
  z-index: 2;
  box-shadow: 0px 0px 10px 9px rgba(0, 0, 0, 0.5);
  transition: 0.05s ease-in-out !important;
  -webkit-transition: 0.05s ease-in-out !important;
  -moz-transition: 0.05s ease-in-out !important;
  -ms-transition: 0.05s ease-in-out !important;
  -o-transition: 0.05s ease-in-out !important;
}

.br1w {
  border-right: 1px solid var(--white);
}

#marquee {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  overflow: hidden;
}
#marquee > div {
  display: flex;
  justify-content: space-around;
  min-width: 100vw;
}
#marquee > div div {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: space-around;
}

.p-mb ul {
  list-style: none;
}
.p-mb ul li {
  position: relative;
  padding-left: 15px;
}
.p-mb ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 5px;
}
.p-mb p {
  margin-bottom: 10px;
}
.p-mb p:last-child {
  margin-bottom: 0;
}

/* Define keyframes for the marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Apply the marquee animation to the .marquee elements */
.marquee {
  white-space: nowrap;
  overflow: hidden;
  /*Change10stoadjustthespeed*/
  animation: marquee 40s linear infinite;
  -webkit-animation: marquee 40s linear infinite;
}

/* Style for the client logos */
.clients-logo {
  height: 80px;
  margin-right: 40px;
  /* Adjust spacing between logos */
}

#clients-logo-table {
  flex-wrap: wrap;
}
#clients-logo-table img {
  width: 20%;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: var(--medium);
}

.team-member {
  width: calc(20% - 20px);
  margin-right: 25px;
  margin-bottom: var(--medium);
}
.team-member:nth-child(5n) {
  margin-right: 0;
}

span.location {
  font-size: 12px;
}

#location-filter .active,
#sector-filter .active {
  font-weight: 500;
}

#text-animation-holder {
  width: -moz-max-content;
  width: max-content;
  border-left: 10px solid var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
#text-animation-holder h1 {
  margin-left: var(--small);
  padding: var(--small) 0;
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.icon-scroll {
  width: 40px;
  height: 70px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--medium);
  z-index: 2;
  margin: auto;
}

.icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(46px);
  }
}
#TeamList {
  width: 100%;
}

.play-btn {
  position: absolute;
  width: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
}
.play-btn img {
  width: 100px;
}

.pop-up {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 54, 54, 0.8);
  padding: 10%;
  z-index: 999;
}
.pop-up .pop-up-content-holder {
  background-color: var(--black);
  padding: 5%;
  width: 100%;
  max-width: 760px;
}
.pop-up .pop-up-content-holder .logo {
  width: 180px;
}
.pop-up .pop-up-content-holder .space {
  width: 1px;
  height: 100%;
  background-color: var(--white);
  display: block;
  margin: 0 var(--small);
}
.pop-up .pop-up-content-holder p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
}

.custom-dropdown {
  position: relative;
  min-width: 270px;
  cursor: pointer;
  margin-right: 20px;
  padding-right: 10px;
}

.selected {
  padding: 10px;
  background: white;
  color: var(--black);
  border: 1px solid #ccc;
  font-size: 14px;
  height: 36px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(/images/svg/arrowdown.svg);
  background-position: 94% center;
  background-repeat: no-repeat;
  background-size: 10px;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--blue, #007bff);
  display: none;
  position: absolute;
  width: 100%;
  z-index: 10;
  overflow-y: auto;
  border: 1px solid #ccc;
  height: -moz-max-content;
  height: max-content;
  margin-top: 10px;
  width: 100%;
}

.dropdown-list li {
  padding: 8px;
  color: white;
  font-size: 14px;
  background: var(--blue, #007bff);
  width: 100%;
}
.dropdown-list li.active {
  font-weight: 700;
}

.dropdown-list li:hover {
  font-weight: 700;
}

.show {
  display: block;
}

.project-tiles {
  width: 100%;
  display: flex;
  justify-content: space-between;
  row-gap: var(--small);
  margin-bottom: var(--small);
  height: 60vh;
}
.project-tiles:last-child {
  margin-bottom: 0;
}
.project-tiles .g4 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 33.3333333333%;
  height: 100%;
  background-color: var(--black);
}
.project-tiles .g8 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(66.6666666667% - var(--small));
  height: 100%;
  background-color: var(--black);
}
.project-tiles .project-details-wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.project-tiles a:hover .project-details-wrapper {
  background-color: transparent;
}

.g4 {
  width: 33.3333333333%;
}

.g8 {
  width: 66.6666666667%;
}

.d1 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  /* identical to box height */
  letter-spacing: -0.317143px;
  text-transform: uppercase;
}

.d2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5em;
  /* identical to box height */
  letter-spacing: -0.56381px;
}

.d3 {
  font-size: 14px;
  font-weight: 300;
}

#rolling {
  overflow: hidden;
}

.slider-holder {
  max-width: 1360px;
  width: calc(100% - var(--large));
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.position {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: -0.317143px;
  padding-bottom: var(--small);
}
.position.small {
  font-size: 14px;
}

.grabline {
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: -0.317143px;
  padding-bottom: var(--small);
}

.question {
  font-style: normal;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: -0.317143px;
  padding-bottom: var(--xsmall);
  color: var(--white);
}

.answer {
  font-style: normal;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: -0.317143px;
  margin-bottom: var(--small);
  color: var(--white);
}
.answer p {
  margin-bottom: var(--small);
}
.answer p:last-child {
  margin-bottom: 0;
}

.project-sector {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: -0.211429px;
  margin-bottom: var(--xsmall);
  text-transform: uppercase;
}

.project-name {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  /* identical to box height */
  letter-spacing: -0.246667px;
  margin-bottom: var(--xsmall);
}

.project-location {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.211429px;
  margin-top: auto;
}

.guiding-icon {
  width: 80px;
  margin-right: var(--medium);
}
.guiding-icon svg {
  width: 100%;
  height: auto;
}

.ss {
  position: absolute;
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#team-member-container .slick-arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  background-color: var(--white);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
#team-member-container .slick-arrow.slick-next {
  background-image: url(/images/svg/new-right.svg);
  right: 0;
  left: auto;
  transform: translateY(-50%) translateX(calc(120% - var(--small)));
  -webkit-transform: translateY(-50%) translateX(calc(120% - var(--small)));
  -moz-transform: translateY(-50%) translateX(calc(120% - var(--small)));
  -ms-transform: translateY(-50%) translateX(calc(120% - var(--small)));
  -o-transform: translateY(-50%) translateX(calc(120% - var(--small)));
}
#team-member-container .slick-arrow.slick-prev {
  left: 0;
  background-image: url(/images/svg/new-left.svg);
  transform: translateY(-50%) translateX(-120%);
  -webkit-transform: translateY(-50%) translateX(-120%);
  -moz-transform: translateY(-50%) translateX(-120%);
  -ms-transform: translateY(-50%) translateX(-120%);
  -o-transform: translateY(-50%) translateX(-120%);
}

#legal * {
  text-transform: initial;
}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
.contain {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.caption {
  font-size: 14px;
}

.boldest {
  font-weight: 900;
  text-transform: initial;
}

.aspect1by1 {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect2by3 {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect3by2 {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect4by3 {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect16by9 {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.z2 {
  z-index: 2;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg.bottom {
  background-position: bottom;
}
.bg.top {
  background-position: top;
}
.bg.left {
  background-position: left;
}
.bg.para {
  height: 50vh;
  background-attachment: fixed;
}

.center-position {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
}

.row {
  display: flex;
  position: relative;
}
.row.wrap {
  flex-wrap: wrap;
}

.wrap {
  flex-wrap: wrap;
}

.row-reverce {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
}

.column {
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.center-align {
  text-align: center;
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.ma {
  margin: auto;
}

.mta {
  margin-top: auto;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

/*spaces*/
.ptxl {
  padding-top: var(--xlarge);
}

.pbxl {
  padding-bottom: var(--xlarge);
}

.ptl {
  padding-top: var(--large);
}

.pbl {
  padding-bottom: var(--large);
}

.ptm {
  padding-top: var(--medium);
}

.pbm {
  padding-bottom: var(--medium);
}

.pts {
  padding-top: var(--small);
}

.pbs {
  padding-bottom: var(--small);
}

.mbs {
  margin-bottom: var(--small);
}

.mbm {
  margin-bottom: var(--medium);
}

.ptxs {
  padding-top: var(--xsmall);
}

.pbxs {
  padding-bottom: var(--xsmall);
}

.pll {
  padding-left: var(--large);
}

.mll {
  margin-left: var(--large);
}

.prl {
  padding-right: var(--large);
}

.p10 {
  padding: 10%;
}

.plr5 {
  padding-left: 5%;
  padding-right: 5%;
}

.just-mobile {
  display: none;
}

.ofh {
  overflow: hidden;
}

.white {
  color: var(--white);
}

.navy {
  color: var(--navy);
}

.black {
  color: var(--black);
}

.bg-white {
  background-color: var(--white);
}

.bg-ashgray {
  background-color: var(--dark-blue);
}

.bg-black {
  background-color: var(--black);
}

.bg-navy {
  background-color: var(--navy);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.bg-darker-blue {
  background-color: var(--darker-blue);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-blue {
  background-color: var(--blue);
}

.uppercase {
  text-transform: uppercase;
}

.mrs {
  margin-right: var(--small);
}

.plrs {
  padding-left: var(--small);
  padding-right: var(--small);
}

.plrxs {
  padding-left: var(--xsmall);
  padding-right: var(--xsmall);
}

.plrm {
  padding-left: var(--medium);
  padding-right: var(--medium);
}

.desk {
  display: block;
}

@media screen and (max-width: 1280px) {
  .s_grid_3 {
    width: calc(33.333% - 20px);
    margin-right: 30px !important;
    margin-bottom: 30px;
  }
  .s_grid_3:nth-child(3n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 58px;
    --xlarge: 60px;
    --large: 40px;
  }
  .desk {
    display: none !important;
  }
  .para {
    background-attachment: initial;
    height: auto;
    aspect-ratio: 16/9;
  }
  .para .container {
    padding-top: var(--medium) !important;
  }
  .bg.para {
    height: initial;
  }
  .just-mobile {
    display: block;
  }
  .just-mobile.flex, .just-mobile.row {
    display: flex;
  }
  .just-desktop {
    display: none !important;
  }
  .vbox-child.vbox-inline,
  .vbox-child.venoratio {
    max-width: 100%;
    padding: var(--xsmall);
  }
  section {
    overflow: hidden;
  }
  header {
    padding: var(--xsmall) var(--small);
    background-color: var(--navy);
  }
  header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9;
  }
  header #nav-toggle {
    display: flex;
  }
  header menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--navy) !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  header menu li {
    margin-bottom: var(--small);
  }
  header menu li:last-child {
    margin-bottom: 0;
  }
  header menu li a {
    font-size: 24px;
    color: var(--white) !important;
  }
  header.active_nav menu {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
  header._bg #nav-toggle span {
    background: var(--navy);
  }
  #text-animation-holder {
    width: 100%;
  }
  #text-animation-holder h1 {
    font-size: 18px;
  }
  section.landing {
    height: 75vw !important;
    padding-top: var(--header-height);
    min-height: initial;
  }
  section.landing iframe {
    min-width: 100vw;
    min-height: 100vw;
    aspect-ratio: 3/2;
    top: calc(50% + var(--header-height) / 2);
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.landing #text-animation-holder {
    top: calc(50% + var(--header-height) / 2);
    text-align: center;
    border-left: 0 none;
  }
  section.landing #text-animation-holder h1 {
    text-align: center;
    padding: 0;
    margin: auto;
  }
  section.landing h1 {
    font-size: 16px;
  }
  section.landing h1.center-align {
    padding-left: var(--xsmall);
    padding-right: var(--xsmall);
  }
  .property {
    width: 76%;
  }
  #page-home section.landing {
    height: 100%;
  }
  #page-home section.landing h1 {
    font-size: 16px;
    padding: 0 var(--small);
  }
  h3 {
    font-size: 14px;
  }
  .container {
    width: calc(100% - 2 * var(--small));
  }
  .container.m-full-width {
    width: 100%;
  }
  #marquee > div {
    width: initial;
  }
  #marquee > div div {
    width: initial;
  }
  .br1w {
    border-right: 0;
  }
  .marquee {
    /*Change10stoadjustthespeed*/
    animation: marquee 60s linear infinite;
    -webkit-animation: marquee 60s linear infinite;
  }
  #search-box {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #SectorSort {
    margin-bottom: var(--xsmall);
  }
  .team-member {
    width: 100%;
    margin-right: 0;
  }
  footer {
    padding: var(--medium) var(--small) var(--xlarge);
  }
  footer .footer-menu {
    flex-direction: column;
  }
  footer .footer-menu .column {
    margin-bottom: var(--small);
  }
  footer .footer-menu > div:last-child {
    margin: 0 !important;
  }
  #legal,
  .copyright {
    width: -moz-max-content !important;
    width: max-content !important;
    text-align: left;
    margin-top: var(--small);
  }
  .social-meida {
    margin: 0 var(--xsmall) 0 0;
  }
  #clients-logo-table img {
    width: 48%;
  }
  .agent:last-child {
    margin: 0;
  }
  #search-box .bg-black * {
    align-items: flex-start;
  }
  #search-box .bg-black .grid_6 {
    margin-bottom: 10px;
  }
  #search-box .bg-black .grid_6 .mrs {
    margin-right: 0;
  }
  #search-box .bg-black .grid_6:last-child {
    margin-bottom: 0;
  }
  #search-box .bg-black .grid_6 .m-ml0 {
    margin-bottom: 10px;
  }
  #search-box .bg-black .grid_6 .m-ml0:last-child {
    margin-bottom: 0;
  }
  .para {
    background-attachment: initial !important;
  }
  .pop-up {
    padding: 10%;
    height: -moz-max-content;
    height: max-content;
  }
  .pop-up .pop-up-content-holder {
    background-color: var(--black);
    padding: 40px 10px;
    border: 1px solid var(--white);
  }
  .pop-up .pop-up-content-holder .logo {
    width: 120px;
  }
  .pop-up .pop-up-content-holder .space {
    display: none;
  }
  .pop-up .pop-up-content-holder p {
    max-width: 100;
    font-size: 14px;
  }
  .pop-up .pop-up-content-holder h2 {
    font-size: 18px !important;
  }
  .loop-video {
    width: 100%;
    overflow: hidden;
    height: initial;
    max-height: initial;
  }
  .loop-video iframe {
    position: relative;
    width: auto;
    height: 56vw;
    width: 100%;
    min-height: initial;
    background-position-x: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: initial;
    left: initial;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    aspect-ratio: initial;
    z-index: inherit;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .project-tiles {
    width: 100%;
    display: flex;
    justify-content: space-between;
    row-gap: 0;
    margin-bottom: var(--small);
    height: 60vh;
    flex-direction: column;
  }
  .project-tiles .g4 {
    width: 100%;
    height: 100%;
    background-color: var(--black);
  }
  .project-tiles .g8 {
    width: 100%;
    height: 100%;
    background-color: var(--black);
  }
  .project-tiles:first-child .g4 {
    margin-bottom: var(--small);
  }
  .project-tiles:last-child .g8 {
    margin-bottom: var(--small);
  }
  .guiding-icon {
    margin-bottom: var(--small);
  }
  .s_grid_3 {
    margin-right: 0 !important;
  }
  #search-container {
    flex-direction: column;
  }
  #search-container .column {
    margin-bottom: var(--small);
  }
  #search-container .column:last-child {
    margin-bottom: 0;
  }
  #search-box {
    height: 1.5em;
    overflow: hidden;
  }
  #search-box.show {
    height: initial;
  }
  #page-careers #team-member-container .team-member {
    border-right: 0 none;
  }
  #team-member-container {
    padding: 0 var(--medium);
  }
  #team-member-container .slick-arrow.slick-next {
    right: -20px;
  }
  .team-member-pop-up .g4, .team-member-pop-up .g8 {
    width: 100%;
  }
  #page-careers .g8, #page-projects .g8 {
    max-height: initial;
  }
  #team-member-container {
    padding: 20px 0 0 0;
  }
  /* ------------- */
  .m-full-width {
    width: 100% !important;
  }
  .m-ml0 {
    margin-left: 0;
  }
  #what-we-do .grid_3,
  #key-stats .grid_3,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8 {
    width: 100% !important;
    margin-right: 0;
  }
  #what-we-do .grid_3,
  #key-stats .grid_3 {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--white);
    padding-bottom: var(--small);
    margin-bottom: var(--small);
  }
  #what-we-do .grid_3:last-child,
  #key-stats .grid_3:last-child {
    margin-bottom: 0 !important;
    border: 0;
  }
  #what-we-do {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #floating-box {
    flex-direction: column-reverse;
    margin-bottom: var(--large);
    box-shadow: initial;
  }
  .plrm {
    padding-left: var(--small);
    padding-right: var(--small);
  }
  .m-pbxs {
    padding-bottom: var(--xsmall);
  }
  .m-pbm {
    padding-bottom: var(--medium);
  }
  .m-mbm {
    margin-bottom: var(--medium);
  }
  .m-plrs {
    padding-left: var(--small);
    padding-right: var(--small);
  }
  .m-ptl {
    padding-top: var(--large);
  }
  .m-column {
    flex-direction: column;
  }
  .m-align-start {
    align-items: flex-start;
  }
  .m-justify-start {
    justify-content: flex-start;
  }
  .m-justify-center {
    justify-content: center !important;
  }
}/*# sourceMappingURL=style.css.map */