body {
  overflow: hidden;
  margin: 0;
  height: 100%;
}

.main-wrapper {
  max-height: 100vh;
  height: 100vh;
  overflow-y: scroll;
  position: relative;
  width: 100%;
  display: none;
  background: #f2f2f2;
}
.main-wrapper.ios-only {
  padding-bottom: calc(env(safe-area-inset-bottom) + 10vh);
}
.main-wrapper.show-this {
  display: block;
}

.ipad-only {
  display: none;
}
@media only screen and (max-width: 1366px) and (max-height: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .ipad-only {
    display: block;
  }
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ipad-only {
    display: block;
  }
}
@media (max-width: 768px) {
  .ipad-only {
    display: none;
  }
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  width: 100%;
  z-index: 1000;
  transition: all 300ms ease;
}
header .navigation .nav-container {
  display: flex;
  height: 120px;
  justify-content: space-between;
  align-items: center;
  transition: all 300ms ease;
}
header .navigation .nav-container .logo {
  width: 33.333%;
}
header .navigation .nav-container .logo img {
  transition: all 300ms ease;
  position: relative;
  width: 200px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  top: 4px;
  filter: invert(100%);
}
header .navigation .nav-container .logo img.invert-logo {
  filter: invert(100%);
}
header .navigation .nav-container .center-text {
  width: 33.333%;
  text-align: center;
}
header .navigation .nav-container .center-text.homepage-only {
  transition: all 1000ms ease;
}
header .navigation .nav-container .center-text p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
  transition: all 300ms ease;
  position: relative;
  opacity: 0;
}
header .navigation .nav-container .center-text p.fade-in-text {
  opacity: 1;
}
header .navigation .nav-container .menu-nav {
  width: 33.333%;
  position: relative;
}
header .navigation .nav-container .menu-nav.homepage-only {
  transition: all 1000ms ease;
}
header .navigation .nav-container .menu-nav .menu-content {
  display: flex;
  justify-content: end;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn {
  transition: all 500ms ease;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn a {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
  background: #ff0049;
  text-decoration: none;
  display: block;
  padding: 13px 25px;
  transition: all 300ms ease;
  border-radius: 8px;
  position: relative;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn a span {
  position: relative;
  z-index: 1;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 auto;
  background: #cc003a;
  transition: all 300ms ease;
  border-radius: 50%;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn a:hover:before {
  opacity: 1;
  width: 100%;
  border-radius: 8px;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn a img {
  display: none;
  position: relative;
  z-index: 0;
}
header .navigation .nav-container .menu-nav .menu-content .download-btn.fade-out {
  opacity: 0;
  filter: blur(5px);
  visibility: hidden;
}
header .navigation .nav-container .menu-nav .menu-content .hamburger-btn {
  margin-left: 20px;
  display: block;
  top: 0;
  width: 47px;
  height: 47px;
  position: relative;
  padding: 0;
  background: #ff0049;
  border-radius: 8px;
  transition: all 300ms ease;
}
header .navigation .nav-container .menu-nav .menu-content .hamburger-btn:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 auto;
  background: #cc003a;
  transition: all 300ms ease;
  border-radius: 10px;
}
header .navigation .nav-container .menu-nav .menu-content .hamburger-btn .hamburger {
  top: 0;
  transform: scale(1);
  padding: 0;
  width: 50px;
  height: 100%;
}
header .navigation .nav-container .menu-nav .menu-content .hamburger-btn .hamburger .hamburger-box {
  width: 50px;
  height: 100%;
  transform: scale(0.5);
}
header .navigation .nav-container .menu-nav .menu-content .hamburger-btn:hover:before {
  opacity: 1;
  width: 100%;
  border-radius: 8px;
}
header .navigation .nav-container .splash-screen-hidden {
  filter: blur(10px);
  opacity: 0;
  visibility: hidden;
}
header.fixed {
  position: -webkit-sticky;
  position: sticky;
}
header.fixed .navigation {
  height: 70px;
  background: #ffffff;
}
header.fixed .navigation .nav-container {
  height: 70px;
}
@media (max-width: 768px) {
  header .navigation .nav-container .logo {
    width: 60%;
  }
  header .navigation .nav-container .logo img {
    width: 200px;
  }
  header .navigation .nav-container .center-text p {
    display: none;
  }
  header .navigation .nav-container .menu-nav .menu-content .download-btn a {
    width: 47px;
    height: 47px;
    padding: 0;
    position: relative;
  }
  header .navigation .nav-container .menu-nav .menu-content .download-btn a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .navigation .nav-container .menu-nav .menu-content .download-btn a span {
    display: none;
  }
}

.table-of-content {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transform: translateY(-4000px);
  visibility: hidden;
  transition: all 300ms ease;
  transition: all 600ms ease;
}
.table-of-content.show-toc {
  transform: translateY(0px);
  visibility: visible;
  overflow-y: scroll;
}
.table-of-content .toc-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 200px;
  padding-bottom: 200px;
  filter: blur(8px);
  transform: translateY(-30px);
  transition: all 800ms ease;
  pointer-events: none;
}
.table-of-content .toc-items.show-toc-items {
  transform: translateY(0px);
  filter: blur(0px);
  pointer-events: auto;
}
.table-of-content .toc-items .items {
  width: 24.7%;
  margin: 3px 0;
  height: 350px;
  border-radius: 8px;
  transition: all 300ms ease;
  position: relative;
}
.table-of-content .toc-items .items:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  margin: 0 auto;
  background: #cc003a;
  transition: all 300ms ease;
  border-radius: 50%;
}
.table-of-content .toc-items .items a {
  outline: 0;
  text-decoration: none;
}
.table-of-content .toc-items .items a .content {
  padding: 20px;
  margin-top: 50px;
  height: 100%;
  position: relative;
}
.table-of-content .toc-items .items a .content p {
  font-family: Inter, sans-serif;
  font-style: normal;
  color: #000000;
  margin: 0;
  transition: all 300ms ease;
}
.table-of-content .toc-items .items a .content p.title {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
}
.table-of-content .toc-items .items a .content p.desc {
  font-family: Tiempos, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  margin-top: 10px;
}
.table-of-content .toc-items .items a .content img {
  position: absolute;
  right: 20px;
  bottom: 0;
  opacity: 0;
  transition: all 300ms ease;
  transform: translateY(50px);
  z-index: 1;
}
.table-of-content .toc-items .items:hover {
  background: #ff0049;
}
.table-of-content .toc-items .items:hover:before {
  opacity: 1;
  z-index: 0;
  width: 100%;
  border-radius: 8px;
}
.table-of-content .toc-items .items:hover a .content p {
  color: #ffffff;
}
.table-of-content .toc-items .items:hover a .content img {
  opacity: 1;
  transform: translateY(0px);
}
.table-of-content .toc-items .items.active {
  background: #ff0049;
  pointer-events: none !important;
}
.table-of-content .toc-items .items.active:before {
  opacity: 1;
  z-index: 0;
  width: 100%;
  border-radius: 8px;
}
.table-of-content .toc-items .items.active a .content p {
  color: #ffffff;
}
.table-of-content .toc-items .items.active a .content img {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 1024px) {
  .table-of-content .toc-items .items {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .table-of-content .toc-items .items {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .table-of-content .toc-items {
    padding-bottom: 50px;
  }
  .table-of-content .toc-items .items {
    height: 100%;
    padding: 20px 0;
  }
  .table-of-content .toc-items .items:before {
    width: 100% !important;
  }
  .table-of-content .toc-items .items a .content {
    margin-top: 0px;
    padding: 20px;
  }
  .table-of-content .toc-items .items a .content .desc {
    width: 100%;
    font-size: 16px;
  }
  .table-of-content .toc-items .items a .content img {
    display: none;
    width: 100px;
    height: 100px;
  }
}

.main-banner {
  height: 100vh;
  width: 100%;
  position: relative;
  background: #ffffff;
  opacity: 0;
}
.main-banner.show-this {
  opacity: 1;
}
.main-banner .content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
}
.main-banner .content .center-content {
  position: relative;
}
.main-banner .content .center-content .page-name-responsive {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  transition: all 1000ms ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  color: #000000;
  margin-bottom: 30px;
}
.main-banner .content .center-content h1 span {
  display: block;
  padding: 5px 40px;
  width: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 70px;
  line-height: 125%;
}
.main-banner .content .center-content h1 span.first-line {
  color: #ffffff;
  background: #000000;
  position: relative;
  transform: translateY(200px);
}
.main-banner .content .center-content h1 span.first-line.first-line-animate {
  -webkit-animation-name: firstline;
          animation-name: firstline;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes firstline {
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1) translateY(0px);
  }
  100% {
    transform: scale(0.95, 1) translateY(-10px) rotate(-3deg);
  }
}
@keyframes firstline {
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1) translateY(0px);
  }
  100% {
    transform: scale(0.95, 1) translateY(-10px) rotate(-3deg);
  }
}
.main-banner .content .center-content h1 span.second-line {
  color: #ffffff;
  background: #000000;
  position: relative;
  transform: translateY(110px) scale(0.8);
}
.main-banner .content .center-content h1 span.second-line.second-line-animate {
  -webkit-animation-name: secondline;
          animation-name: secondline;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes secondline {
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1) translateY(0px);
  }
  100% {
    transform: scale(0.95, 1) translateY(5px) rotate(1deg);
  }
}
@keyframes secondline {
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1) translateY(0px);
  }
  100% {
    transform: scale(0.95, 1) translateY(5px) rotate(1deg);
  }
}
.main-banner .content .center-content h1 span.third-line {
  color: #ffffff;
  background: #ff0049;
  z-index: 1;
  position: relative;
}
.main-banner .content .center-content h1 span.third-line.third-line-animate {
  -webkit-animation-name: thirdline;
          animation-name: thirdline;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes thirdline {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-1.5deg);
  }
}
@keyframes thirdline {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-1.5deg);
  }
}
.main-banner .content .center-content h1 span.fourth-line {
  color: #ffffff;
  background: #000000;
  position: relative;
  transform: translateY(-100px) scale(0.8);
}
.main-banner .content .center-content h1 span.fourth-line.fourth-line-animate {
  -webkit-animation-name: fourthline;
          animation-name: fourthline;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fourthline {
  25% {
    transform: scale(0.9, 1.1) scale(1);
  }
  50% {
    transform: scale(1.1, 0.9) scale(1);
  }
  75% {
    transform: scale(0.95, 1) translateY(0px) scale(1);
  }
  100% {
    transform: scale(0.95, 1) translateY(10px) rotate(2deg) scale(1);
  }
}
@keyframes fourthline {
  25% {
    transform: scale(0.9, 1.1) scale(1);
  }
  50% {
    transform: scale(1.1, 0.9) scale(1);
  }
  75% {
    transform: scale(0.95, 1) translateY(0px) scale(1);
  }
  100% {
    transform: scale(0.95, 1) translateY(10px) rotate(2deg) scale(1);
  }
}
.main-banner .content .center-content .play-reel-btn {
  position: absolute;
  background: #ff0049;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transform: scale(0);
  transition: all 300ms ease;
  display: block;
  z-index: 1;
}
.main-banner .content .center-content .play-reel-btn:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 auto;
  background: #cc003a;
  transition: all 300ms ease;
  border-radius: 50%;
}
.main-banner .content .center-content .play-reel-btn img {
  display: inline-block;
  margin: 0;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 4px;
  padding-right: 5px;
  z-index: 1;
}
.main-banner .content .center-content .play-reel-btn span {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.main-banner .content .center-content .play-reel-btn.play-reel-1 {
  top: -20px;
  left: 50px;
}
.main-banner .content .center-content .play-reel-btn.play-reel-2 {
  bottom: -64px;
  right: 0px;
}
.main-banner .content .center-content .play-reel-btn.jiggle {
  -webkit-animation-name: jiggle;
          animation-name: jiggle;
  -webkit-animation-duration: 2000ms;
          animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@-webkit-keyframes jiggle {
  15% {
    transform: scale(1) rotate(-3deg);
  }
  30% {
    transform: scale(1) rotate(3deg);
  }
  45% {
    transform: scale(1) rotate(-3.6deg);
  }
  60% {
    transform: scale(1) rotate(2.4deg);
  }
  75% {
    transform: scale(1) rotate(-1.2deg);
  }
}
@keyframes jiggle {
  15% {
    transform: scale(1) rotate(-3deg);
  }
  30% {
    transform: scale(1) rotate(3deg);
  }
  45% {
    transform: scale(1) rotate(-3.6deg);
  }
  60% {
    transform: scale(1) rotate(2.4deg);
  }
  75% {
    transform: scale(1) rotate(-1.2deg);
  }
}
.main-banner .content .center-content .play-reel-btn.jiggle-2 {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
.main-banner .content .center-content .play-reel-btn:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.main-banner .content .center-content .play-reel-btn:hover:before {
  opacity: 1;
  width: 100%;
  border-radius: 10px;
}
.main-banner .content .center-content .play-reel-btn.scale-up-animation {
  -webkit-animation-name: scaleup;
          animation-name: scaleup;
  -webkit-animation-duration: 2000ms;
          animation-duration: 2000ms;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  transform: scale(1);
}
@-webkit-keyframes scaleup {
  0% {
    transform: scale(0);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  30% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes scaleup {
  0% {
    transform: scale(0);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  30% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
}
.main-banner .content .center-content .play-reel-btn.scale-up {
  transform: scale(1);
}
@media (max-width: 768px) {
  .main-banner .content .center-content .page-name-responsive {
    position: relative;
  }
  .main-banner .content .center-content .page-name-responsive.fade-in {
    visibility: visible;
    opacity: 1;
  }
  .main-banner .content .center-content h1 {
    transform: scale(1.1);
  }
  .main-banner .content .center-content h1 span {
    font-weight: 400;
    font-size: 28px;
    line-height: 125%;
    padding: 5px 20px;
  }
  .main-banner .content .center-content h1 span.first-line {
    transform: translateY(95px);
  }
  @-webkit-keyframes firstline {
    25% {
      transform: scale(0.9, 1.1);
    }
    50% {
      transform: scale(1.1, 0.9);
    }
    75% {
      transform: scale(0.95, 1) translateY(0px);
    }
    100% {
      transform: scale(0.95, 1) translateY(0px) rotate(-3deg);
    }
  }
  @keyframes firstline {
    25% {
      transform: scale(0.9, 1.1);
    }
    50% {
      transform: scale(1.1, 0.9);
    }
    75% {
      transform: scale(0.95, 1) translateY(0px);
    }
    100% {
      transform: scale(0.95, 1) translateY(0px) rotate(-3deg);
    }
  }
  .main-banner .content .center-content h1 span.second-line {
    transform: translateY(45px) scale(0.8);
  }
  .main-banner .content .center-content h1 span.fourth-line {
    transform: translateY(-40px) scale(0.8);
  }
  @-webkit-keyframes fourthline {
    25% {
      transform: scale(0.9, 1.1) scale(1);
    }
    50% {
      transform: scale(1.1, 0.9) scale(1);
    }
    75% {
      transform: scale(0.95, 1) translateY(0px) scale(1);
    }
    100% {
      transform: scale(0.95, 1) translateY(0px) rotate(2deg) scale(1);
    }
  }
  @keyframes fourthline {
    25% {
      transform: scale(0.9, 1.1) scale(1);
    }
    50% {
      transform: scale(1.1, 0.9) scale(1);
    }
    75% {
      transform: scale(0.95, 1) translateY(0px) scale(1);
    }
    100% {
      transform: scale(0.95, 1) translateY(0px) rotate(2deg) scale(1);
    }
  }
  .main-banner .content .center-content .play-reel-btn {
    padding: 7px 8px 10px 10px;
  }
  .main-banner .content .center-content .play-reel-btn img {
    padding-right: 0;
  }
  .main-banner .content .center-content .play-reel-btn .play-reel-text {
    display: none;
  }
  .main-banner .content .center-content .play-reel-btn.play-reel-1 {
    z-index: 1;
    left: 35px;
    top: 20px;
  }
  .main-banner .content .center-content .play-reel-btn.play-reel-2 {
    z-index: 1;
    bottom: -48px;
    right: 35px;
  }
}

.showreel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  visibility: hidden;
  opacity: 0;
  transition: all 800ms ease;
}
.showreel-overlay.overlay-active {
  z-index: 10;
  opacity: 1;
  visibility: visible;
}
.showreel-overlay .iframe-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(20px);
  transition: all 1000ms ease;
}
.showreel-overlay .iframe-content.iframe-active.unblur {
  opacity: 1;
  filter: blur(0px);
}
.showreel-overlay .iframe-content iframe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 800px;
  height: 500px;
}
.showreel-overlay .iframe-content.vertical-iframe iframe {
  height: 75vh;
  width: 450px;
}
@media (max-width: 768px) {
  .showreel-overlay .iframe-content iframe {
    width: 90%;
    margin: 0 auto;
  }
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  transition: all 600ms ease;
}
.splash-screen .bg {
  background-size: cover;
  width: 100%;
  height: 100vh;
  transition: all 1500ms ease;
}
.splash-screen .bg .splash-screen-pop-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  background: #ffffff;
  width: 280px;
  opacity: 1;
  visibility: visible;
  border-radius: 10px;
  transition: all 300ms ease;
  transform-origin: left;
}
.splash-screen .bg .splash-screen-pop-up.blur {
  filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05) translate(-50%, -50%);
}
.splash-screen .bg .splash-screen-pop-up .content {
  padding: 25px;
}
.splash-screen .bg .splash-screen-pop-up .content p {
  font-family: Inter, sans-serif;
  font-style: normal;
  text-align: center;
  color: #000000;
  margin: 0;
}
.splash-screen .bg .splash-screen-pop-up .content p.title {
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.408px;
  margin-bottom: 5px;
}
.splash-screen .bg .splash-screen-pop-up .content p.desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.078px;
}
.splash-screen .bg .splash-screen-pop-up .accept-btn {
  background: #ff0049;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
}
.splash-screen .bg .splash-screen-pop-up .accept-btn:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 auto;
  background: #cc003a;
  transition: all 300ms ease;
  border-radius: 50%;
}
.splash-screen .bg .splash-screen-pop-up .accept-btn span {
  font-family: Inter, sans-serif;
  padding: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.408px;
  color: #ffffff;
  display: block;
  position: relative;
  z-index: 1;
}
.splash-screen .bg .splash-screen-pop-up .accept-btn:hover:before {
  opacity: 1;
  width: 100%;
  border-radius: 0%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.splash-screen .bg .splash-screen-video {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 300ms ease;
}
.splash-screen.remove-bg {
  visibility: hidden;
}
.splash-screen.remove-bg .bg {
  opacity: 0;
  transform: scale(3);
  filter: blur(400px);
}

.slider-section {
  background: #f2f2f2;
  padding: 50px 0;
}
.slider-section .gen-z-slider {
  overflow: hidden;
  border-radius: 20px;
}
.slider-section .gen-z-slider .slick-list {
  border-radius: 20px;
}
.slider-section .gen-z-slider.slick-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 30px;
}
.slider-section .gen-z-slider.slick-slider .slick-dots li {
  display: block;
  margin-top: 7px;
}
.slider-section .gen-z-slider.slick-slider .slick-dots li:first-child {
  margin-top: 0;
}
.slider-section .gen-z-slider.slick-slider .slick-dots li button {
  width: 13px;
  height: 13px;
}
.slider-section .gen-z-slider.slick-slider .slick-dots li button:before {
  content: "";
  opacity: 1;
  width: inherit;
  height: inherit;
  background: #e6e6e6;
  border-radius: 50%;
  transition: all 500ms ease;
}
.slider-section .gen-z-slider.slick-slider .slick-dots li.slick-active button:before {
  background: #ff0049;
}
.slider-section .gen-z-slider a {
  text-decoration: none;
  outline: none;
}
.slider-section .gen-z-slider a.slick-slide {
  border: none !important;
}
.slider-section .gen-z-slider a .slider-content {
  height: 650px;
  width: 100%;
  border: none !important;
}
.slider-section .gen-z-slider a .slider-content .slider-flex {
  display: flex;
  height: 100%;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc,
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail {
  width: 50%;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #ffffff;
  transition: all 800ms ease;
  flex-direction: column;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc p {
  margin: 0;
  width: 80%;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc p.sub-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc p.main-title {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 125%;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc p.content-title {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc .action-button {
  background: #ff0049;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 300ms ease;
  position: relative;
  display: block;
  outline: 0;
  text-decoration: none;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc .action-button:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: 0 auto;
  background: #cc003a;
  transition: all 300ms ease;
  border-radius: 50%;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc .action-button span {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .desc .action-button:hover:before {
  opacity: 1;
  width: 100%;
  border-radius: 10px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail {
  position: relative;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 1;
  width: 300px;
  height: auto;
  background: #ffffff;
  border-radius: 12px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .title {
  background: #000000;
  padding: 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .title p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container {
  padding: 15px;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options {
  display: flex;
  padding: 10px;
  width: auto;
  justify-content: flex-start;
  flex-direction: row;
  border: solid 1px #e6e6e6;
  border-radius: 50px;
  align-items: center;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options:first-child {
  margin-top: 0;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options .percentage-bar {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options .alphabet {
  width: 30px;
  height: 30px;
  background: #000000;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options .alphabet span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options .percentage {
  margin-left: 10px;
  position: relative;
  z-index: 1;
}
.slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section .poll-content .options-container .poll-options .percentage span {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #4d4d4d;
}
.slider-section .gen-z-slider a .slider-content.blur .slider-flex .desc {
  filter: blur(10px);
}
.slider-section .gen-z-slider a .slider-content.disable-blur .slider-flex .desc {
  filter: blur(0px) !important;
}
.slider-section .gen-z-slider.desktop-only .slider-content {
  width: 100% !important;
}
@media only screen and (max-width: 1366px) and (max-height: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .slider-section .gen-z-slider {
    overflow: initial;
    height: 650px !important;
  }
  .slider-section .gen-z-slider.slick-slider .slick-dots {
    flex-direction: row;
    height: 30px;
    right: 0;
    left: 0;
    top: unset;
    bottom: -55px;
    width: 100%;
  }
  .slider-section .gen-z-slider.slick-slider .slick-dots li {
    margin: 0;
  }
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .slider-section .gen-z-slider {
    overflow: initial;
    height: 750px !important;
  }
  .slider-section .gen-z-slider.slick-slider .slick-dots {
    flex-direction: row;
    height: 30px;
    right: 0;
    left: 0;
    top: unset;
    bottom: -55px;
    width: 100%;
  }
  .slider-section .gen-z-slider.slick-slider .slick-dots li {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .slider-section .gen-z-slider {
    overflow: initial;
    height: 750px !important;
  }
  .slider-section .gen-z-slider.slick-slider .slick-dots {
    flex-direction: row;
    height: 30px;
    right: 0;
    left: 0;
    top: unset;
    bottom: -55px;
    width: 100%;
  }
  .slider-section .gen-z-slider.slick-slider .slick-dots li {
    margin: 0;
  }
  .slider-section a .slider-content {
    height: 750px !important;
  }
  .slider-section a .slider-content .slider-flex {
    flex-direction: column-reverse;
  }
  .slider-section a .slider-content .slider-flex .desc,
.slider-section a .slider-content .slider-flex .thumbnail {
    width: 100% !important;
  }
  .slider-section a .slider-content .slider-flex .thumbnail {
    height: 300px;
  }
  .slider-section a .slider-content .slider-flex .thumbnail .desc {
    height: 100%;
  }
  .slider-section a .slider-content .slider-flex .poll-section {
    display: none;
  }
}
@media (max-width: 768px) {
  .slider-section .gen-z-slider {
    height: 600px !important;
  }
  .slider-section .gen-z-slider a .slider-content {
    height: 600px !important;
  }
  .slider-section .gen-z-slider a .slider-content .slider-flex .desc p.sub-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    width: 90%;
    margin-bottom: 15px;
    margin-top: -20px;
  }
  .slider-section .gen-z-slider a .slider-content .slider-flex .desc p.main-title {
    font-size: 26px;
    line-height: 125%;
    width: 90%;
    margin-bottom: 15px;
  }
  .slider-section .gen-z-slider a .slider-content .slider-flex .desc p.content-title {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    width: 90%;
    margin-bottom: 15px;
  }
  .slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail {
    height: 250px;
  }
  .slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    -o-object-position: 50% 30%;
       object-position: 50% 30%;
  }
  .slider-section .gen-z-slider a .slider-content .slider-flex .thumbnail .poll-section {
    display: none;
  }
}

.content-grid {
  background: #f2f2f2;
  padding: 30px 0;
}
.content-grid.homepage-padding {
  padding: 90px 0 30px 0;
}
@media (max-width: 768px) {
  .content-grid.homepage-padding {
    padding: 40px 0 30px 0;
  }
}
.content-grid p {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}

.subpage-content h2 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 45px;
}
.subpage-content p {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin-top: 30px;
}
.subpage-content .call-screen {
  margin: 60px auto;
  position: relative;
  padding: 30px 0 50px 0;
}
.subpage-content .call-screen .call-screen-flex {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 700px;
}
.subpage-content .call-screen .call-screen-flex .call-screen-container {
  width: auto;
  text-align: right;
  padding: 0 50px;
  cursor: pointer;
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content {
  width: 100%;
  height: 100%;
  position: relative;
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-banner {
  position: absolute;
  top: 50px;
  left: 0;
  width: auto;
  height: auto;
  z-index: 1;
  transition: all 600ms ease;
  display: inline-block;
  margin-left: 0px;
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-banner.slide-right {
  margin-left: -60px;
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-banner.headshake-animation {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-name: headShake;
          animation-name: headShake;
}
@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18% {
    transform: translateX(5px) rotateY(7deg);
  }
  31% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18% {
    transform: translateX(5px) rotateY(7deg);
  }
  31% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-image {
  display: inline-block;
  width: 400px;
  height: inherit;
  transform: translateX(-90px);
  transition: all 600ms ease;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-image.slide-left {
  transform: translateX(0px);
}
.subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.subpage-content .call-screen .call-screen-flex .desc-container {
  width: 50%;
  padding: 30px;
}
.subpage-content .call-screen .call-screen-flex .desc-container .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.subpage-content .call-screen .call-screen-flex .desc-container .desc p {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}
@media (max-width: 992px) {
  .subpage-content .call-screen {
    margin: auto;
  }
  .subpage-content .call-screen .call-screen-flex {
    flex-direction: column;
    height: auto;
  }
  .subpage-content .call-screen .call-screen-flex .call-screen-container,
.subpage-content .call-screen .call-screen-flex .desc-container {
    width: 100%;
  }
  .subpage-content .call-screen .call-screen-flex .call-screen-container {
    text-align: center;
    padding: 30px 0;
  }
  .subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-banner {
    right: 0;
    top: 20px;
    margin-left: unset;
    margin: 0 auto;
  }
  .subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-banner.slide-right {
    margin-left: unset;
    margin: 0 auto;
  }
  .subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-image {
    transform: translateX(0);
  }
  .subpage-content .call-screen .call-screen-flex .call-screen-container .call-content .call-image.slide-left {
    transform: translateX(0);
  }
  .subpage-content .call-screen .call-screen-flex .desc-container {
    padding: 10px 0 30px 0;
  }
  .subpage-content .call-screen .call-screen-flex .desc-container .desc p {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
  }
}
.subpage-content h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}
.subpage-content p {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
}

.sub-banner {
  display: flex;
  background: #ffffff;
}
.sub-banner .desc,
.sub-banner .image {
  width: 50%;
  height: 100vh;
}
.sub-banner .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sub-banner .desc h1,
.sub-banner .desc p {
  font-family: Tiempos, serif;
  text-align: center;
  width: 60%;
  font-style: normal;
  display: block;
  margin: 0;
  color: #000000;
  transition: all 1300ms ease;
  filter: blur(10px);
}
.sub-banner .desc h1.unblur,
.sub-banner .desc p.unblur {
  filter: blur(0px);
}
.sub-banner .desc h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 125%;
}
.sub-banner .desc p {
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
  margin-top: 20px;
}
.sub-banner .desc p.page-name-responsive {
  display: none;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  margin-bottom: 15px;
}
.sub-banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .sub-banner {
    flex-direction: column;
  }
  .sub-banner .desc,
.sub-banner .image {
    width: 100%;
  }
  .sub-banner .desc {
    height: 600px;
    padding: 180px 0 100px 0;
  }
  .sub-banner .desc p,
.sub-banner .desc h1 {
    width: 95%;
  }
  .sub-banner .desc h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 125%;
  }
  .sub-banner .desc p {
    margin-top: 10px;
  }
  .sub-banner .desc p.page-name-responsive {
    display: block;
  }
  .sub-banner .image {
    height: 600px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .sub-banner .image {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .sub-banner .image img {
    -o-object-position: 50% 30%;
       object-position: 50% 30%;
  }
}

.number-grid {
  background: #f2f2f2;
  padding: 50px 0;
}
.number-grid .grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all 800ms ease;
}
.number-grid .grid-container .grid-col {
  width: 30%;
  padding: 30px 0;
}
.number-grid .grid-container .grid-col.hide-column {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.number-grid .grid-container .grid-col span,
.number-grid .grid-container .grid-col sup {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 125%;
  color: #000000;
}
.number-grid .grid-container .grid-col sup {
  font-size: 35px;
  position: relative;
  top: -20px;
}
.number-grid .grid-container .grid-col sup.in-symbol {
  top: -15px;
}
.number-grid .grid-container .grid-col p {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}
.number-grid .grid-container.four-grid .grid-col {
  width: 48%;
}
@media (max-width: 768px) {
  .number-grid {
    padding: 20px 0;
  }
  .number-grid .grid-container {
    justify-content: space-between;
  }
  .number-grid .grid-container .grid-col {
    width: 45%;
  }
  .number-grid .grid-container.four-grid .grid-col {
    width: 45%;
  }
}

.quote-section {
  margin: 80px 0;
}
.quote-section .quote-content .left-text {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}
.quote-section .quote-content .right-text {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: right;
  color: #000000;
  margin: 0;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .quote-section {
    margin: 50px 0;
  }
  .quote-section .quote-content .left-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
  }
  .quote-section .quote-content .right-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
  }
}

.case-study-section {
  margin-top: 100px;
  margin-bottom: 30px;
}
.case-study-section .case-study-content {
  background: #ffffff;
  padding: 30px;
  position: relative;
}
.case-study-section .case-study-content .overlay-title {
  margin-top: -50px;
}
.case-study-section .case-study-content .overlay-title p {
  margin: 0;
}
.case-study-section .case-study-content .overlay-title p span {
  background: #000000;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 10px;
}
.case-study-section .case-study-content .desc h2,
.case-study-section .case-study-content .desc h3,
.case-study-section .case-study-content .desc p {
  font-family: Tiempos, serif;
  font-style: normal;
  line-height: 150%;
  color: #000000;
}
.case-study-section .case-study-content .desc h2 {
  font-weight: 700;
  font-size: 26px;
  color: #ff0049;
  margin: 0;
  margin-top: 20px;
  margin-bottom: -10px;
}
.case-study-section .case-study-content .desc h3 {
  font-weight: 400;
  font-size: 20px;
  margin: 0;
}
.case-study-section .case-study-content .desc p {
  font-weight: 300;
  font-size: 18px;
}
@media (max-width: 768px) {
  .case-study-section {
    margin-top: 130px;
    margin-bottom: 0;
  }
  .case-study-section .case-study-content {
    padding: 0;
  }
  .case-study-section .case-study-content .overlay-title {
    text-align: center;
    position: relative;
    top: -20px;
  }
  .case-study-section .case-study-content .desc {
    padding: 0 30px 30px 30px;
  }
  .case-study-section .case-study-content .desc h2 {
    margin-top: 0;
    text-align: center;
  }
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 2000px;
}

.container-grid {
  width: 60%;
  margin: 0 auto;
  max-width: 2000px;
}
.container-grid.container-grid-slider {
  width: 80%;
}
@media (max-width: 1180px) {
  .container-grid.container-grid-slider {
    width: 90%;
  }
}
@media (max-width: 1180px) {
  .container-grid {
    width: 90%;
  }
}

.contact-us-link,
.generic-link {
  text-decoration: none;
  color: #ff0049;
  transition: all 300ms ease;
  outline: none;
}
.contact-us-link:hover,
.generic-link:hover {
  color: #cc003a;
}

footer {
  background: #f2f2f2;
}
footer.fixed-footer {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  width: 100%;
  background: none;
}
footer.fixed-footer .footer {
  background: none;
}
@media (max-width: 768px) {
  footer.fixed-footer {
    display: none;
  }
}

.footer {
  background: #f2f2f2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0;
  width: 95%;
  position: relative;
  z-index: 2;
}
.footer .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
}
.footer .content .content-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.footer .content .content-container.mobile {
  display: none;
}
.footer .content .content-container .left {
  width: 33.333%;
}
.footer .content .content-container .left .logo img {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
  margin-bottom: 30px;
  display: none;
}
.footer .content .content-container .left .text p {
  margin: 0;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #000000;
}
.footer .content .content-container .middle {
  width: 33.333%;
  text-align: center;
}
.footer .content .content-container .middle ul {
  margin: 0;
  margin-left: -40px;
  position: relative;
}
.footer .content .content-container .middle ul li {
  display: inline-block;
  list-style: none;
}
.footer .content .content-container .middle ul li a {
  outline: 0;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #000000;
  text-decoration: none;
}
.footer .content .content-container .middle ul li a:hover {
  text-decoration: none;
}
.footer .content .content-container .middle ul li span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #000000;
  padding: 0 3px;
  position: relative;
  top: -1px;
}
.footer .content .content-container .right {
  width: 33.333%;
  text-align: right;
}
.footer .content .content-container .right ul {
  margin: 0;
  margin-left: -40px;
  position: relative;
}
.footer .content .content-container .right ul li {
  display: inline-block;
  list-style: none;
}
.footer .content .content-container .right ul li a {
  outline: 0;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #000000;
  padding-left: 20px;
  text-decoration: none;
}
.footer .content .content-container .right ul li .footer-tooltip {
  position: absolute;
  background: #ffffff;
  color: #000000;
  border-radius: 10px;
  transition: all 300ms ease;
  padding: 3px 7px;
  top: -22px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: -0.12px;
  opacity: 0;
  visibility: hidden;
}
.footer .content .content-container .right ul li:hover .footer-tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .footer {
    height: 150px;
  }
  .footer .content .content-container.desktop {
    display: none;
  }
  .footer .content .content-container.mobile {
    display: block;
  }
  .footer .content .content-container.mobile .top {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .footer .content .content-container.mobile .top .top-left {
    width: 50%;
  }
  .footer .content .content-container.mobile .top .top-left .logo {
    display: none;
  }
  .footer .content .content-container.mobile .top .top-left .logo img {
    width: 110px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 20px;
    filter: invert(100%);
  }
  .footer .content .content-container.mobile .top .top-right {
    width: 100%;
    padding-bottom: 20px;
    text-align: left;
  }
  .footer .content .content-container.mobile .top .top-right ul {
    margin: 0;
    margin-left: -40px;
    position: relative;
    top: 1px;
  }
  .footer .content .content-container.mobile .top .top-right ul li {
    display: inline-block;
    list-style: none;
    padding-left: 10px;
  }
  .footer .content .content-container.mobile .top .top-right ul li:first-child {
    padding-left: 0;
  }
  .footer .content .content-container.mobile .top .top-right ul li a {
    outline: 0;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #000000;
    text-decoration: none;
  }
  .footer .content .content-container.mobile .top .top-right ul li a:hover {
    text-decoration: none;
  }
  .footer .content .content-container .bottom {
    width: 100%;
  }
  .footer .content .content-container .bottom ul {
    margin: 0;
    margin-left: -40px;
  }
  .footer .content .content-container .bottom ul li {
    display: inline-block;
    list-style: none;
  }
  .footer .content .content-container .bottom ul li a {
    outline: 0;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #000000;
    text-decoration: none;
  }
  .footer .content .content-container .bottom ul li a:hover {
    text-decoration: none;
  }
  .footer .content .content-container .bottom ul li span {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #000000;
  }
  .footer .content .content-container .bottom ul li:first-child {
    padding-left: unset;
  }
  .footer .content .content-container .bottom .text {
    margin: 0;
    margin-top: 20px;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: #000000;
  }
}

.manage-cookie-btn-mobile {
  cursor: pointer;
}

.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element,
.scroll-element div {
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
  z-index: 100;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}/*# sourceMappingURL=custom.css.map */