@font-face {
  font-family: "TL-demi";
  src: url("fnt-demi.eot");
  src: url("fnt-demi.eot?#iefix") format("embedded-opentype"),
    url("fnt-demi.woff2") format("woff2"), url("fnt-demi.woff") format("woff"),
    url("fnt-demi.ttf") format("truetype"),
    url("fnt-demi.svg#fnt-demi") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TL";
  src: url("fnt.eot");
  src: url("fnt.eot?#iefix") format("embedded-opentype"),
    url("fnt.woff2") format("woff2"), url("fnt.woff") format("woff"),
    url("fnt.ttf") format("truetype"), url("fnt.svg#fnt-demi") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
} 
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}
a {
  color: #D71F27;
  text-decoration: none;
}
a:focus, a:hover {
  color: inherit;
}
a.red-link{
  color: #D71F27;
  text-decoration: none;
  font-family: 'TL-demi'!important;
}
a.red-link:hover{
  text-decoration: underline;
}

body {
  font-family: "TL", sans-serif!important;
  font-weight: 300;
  overflow-y: scroll;
  background: #333;
  color: #fff;
}


/* Desktop Nav */

.nav-container {
  height: 66px;
  /*z-index: 99999;*/
  z-index: 1050;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav-container nav {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 8px;
  height: 100%;
}

nav .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  height: 66px;
}

nav .desktop-nav li a {
  color: #b3a369;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 400ms;
}

nav .desktop-nav li a.active{
  color: #d5d5d5;
}

nav .desktop-nav li a:hover {
  color: #ffffff;
}

.link-logo {
  background: url("../images/timelooper-logo-new.png");
  display: block;
  background-position: center;
  height: 107px;
  width: 165px;
  background-repeat: no-repeat;
  opacity: 1 !important;
}

.link-close {
  background: url("../images/close-icon.svg");
  display: block;
  background-position: center;
  background-size: 17px;
  height: 66px;
  width: 20px;
  background-repeat: no-repeat;
}

/* Overlay */

.overlay.show {
  position: fixed;
  background: rgba(0, 0, 0, 0.48);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
}

/* Desktop Nav Animation */

.desktop-nav li {
  transition: all 400ms ease;
  /*max-width: 85px;*/
  text-align: center;
}

.desktop-nav li.logo {
  transition: all 400ms ease;
  max-width: 165px;
  margin-top: 20px;
}
.desktop-nav.hide li {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.hp-link-xplore-cultural-preservation{
  max-width: 142px !important;
}
/* Overlay Animation */

.overlay {
  transition: all 400ms ease;
}

/* Navigation Menu Items Transition Delay */

.desktop-nav li:nth-of-type(1),
.desktop-nav.hide li:nth-of-type(10) {
  transition-delay: 0ms;
}

.desktop-nav li:nth-of-type(2),
.desktop-nav.hide li:nth-of-type(9) {
  transition-delay: 30ms;
}

.desktop-nav li:nth-of-type(3),
.desktop-nav.hide li:nth-of-type(8) {
  transition-delay: 60ms;
}

.desktop-nav li:nth-of-type(4),
.desktop-nav.hide li:nth-of-type(7) {
  transition-delay: 90ms;
}

.desktop-nav li:nth-of-type(5),
.desktop-nav.hide li:nth-of-type(6) {
  transition-delay: 120ms;
}

.desktop-nav li:nth-of-type(6),
.desktop-nav.hide li:nth-of-type(5) {
  transition-delay: 150ms;
}

.desktop-nav li:nth-of-type(7),
.desktop-nav.hide li:nth-of-type(4) {
  transition-delay: 180ms;
}

.desktop-nav li:nth-of-type(8),
.desktop-nav.hide li:nth-of-type(3) {
  transition-delay: 210ms;
}

.desktop-nav li:nth-of-type(9),
.desktop-nav.hide li:nth-of-type(2) {
  transition-delay: 240ms;
}

.desktop-nav li:nth-of-type(10),
.desktop-nav.hide li:nth-of-type(1) {
  transition-delay: 270ms;
}

/* Hidden Items */

.mobile-nav {
  display: none;
}

/* Media Queries */

@media (max-width: 1100px) {
  .nav-container nav {
    width: 100%;
    padding: 0 32px;
  }
}

@media (max-width: 992px) {
  .nav-container .desktop-nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0vh;
    background: #333;
    justify-content: start;
    overflow: hidden;
    z-index: -1;
    /*transition: all 1000ms ease; */
    transition: all 0.7s cubic-bezier(0.55, 0, 0.1, 1);
  }

  .nav-container.active .desktop-nav {
    height: 100vh;
  }

  .nav-container .desktop-nav li {
    width: 100%;
    padding: 0 32px;
    max-width: 100%!important;
    text-align: left;
  }

  .nav-container .desktop-nav li:first-child {
    margin-top: 120px;
  }

  .nav-container .desktop-nav .link-logo {
    display: none;
  }

  .nav-container .desktop-nav li a {
    padding: 16px 0;
    display: inline-block;
    border-bottom: 1px solid #616161;
    width: 100%;
    font-size: 17px;
    transform: translateY(-80px);
    opacity: 0;
    transition: all 700ms ease;
  }

  .nav-container.active .desktop-nav li a {
    transform: translateY(0);
    opacity: 1;
  }

  /* Mobile Nav */

  nav .mobile-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    list-style: none;
  }

  nav .menu-icon-container {
    width: 20px;
    height: 55px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  nav .menu-icon {
    position: relative;
    width: 100%;
  }

  nav .menu-icon .line-1,
  nav .menu-icon .line-2 {
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    transition-property: transform, top;
    transition-delay: 0ms, 160ms;
    transition-duration: 200ms;
  }

  nav .menu-icon .line-1 {
    top: -4px;
  }

  nav .menu-icon .line-2 {
    top: 4px;
  }

  .nav-container.active nav .menu-icon-container .menu-icon .line-1 {
    top: 0;
    transform: rotateZ(45deg);
    transition-property: top, transform;
    transition-delay: 0ms, 160ms;
    transition-duration: 200ms;
  }

  .nav-container.active nav .menu-icon-container .menu-icon .line-2 {
    top: 0;
    transform: rotateZ(-45deg);
    transition-property: top, transform;
    transition-delay: 0ms, 160ms;
    transition-duration: 200ms;
  }

  /* Nav Move Up */

  .nav-container nav.move-up {
    margin-top: -40px;
  }

  /* Desktop Nav Move Down */

  nav .desktop-nav.move-down li:first-child {
    margin-top: 150px;
  }

  nav .desktop-nav.move-down li {
    opacity: 0;
    pointer-events: none;
  }

  /* Nav Animation */

  .nav-container nav {
    transition: all 400ms ease;
  }

  .link-logo {
    height: 58px;
    width: 110px;
    background-size: contain;
  }
  .nav-container {
    height: 55px;
  }
}

.nav-pad {
  height: 66px;
  background: #ffffff;
}
.home-page {
  padding: 0;
}

.home-page .jumbotron {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  min-height: 624px;
  border-radius: 0 !important;
  margin: 0px;
  padding: 0;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.home-page .jumbotron .text-container-bottom {
  bottom: 30px;
  position: absolute;
  color: #fff;
}
.home-page .jumbotron .text-container-center {
  top: 50%;
  transform: translateY(-50%);
}
.home-page .jumbotron .text-container-bottom h1 {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 1), -5px 1px 10px rgba(0, 0, 0, 1);
}
.home-page .jumbotron .text-container-bottom p {
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 1), -5px 1px 10px rgba(0, 0, 0, 1);
}
.home-page .jumbotron .text-container-bottom span {
  position: absolute;
  right: 0;
  background: #b3a369;
  padding: 25px 35px 45px 35px;
  color: #ffffff;
  bottom: 15px;
  font-size: 16px;
  font-family: "TL-demi";
  border-bottom-left-radius: 17px;
  border-top-left-radius: 17px;
  -webkit-box-shadow: 45px 16px 0px 0px rgb(51 51 51);
  -moz-box-shadow: 45px 16px 0px 0px rgba(51,51,51,1);
  box-shadow: 45px 16px 0px 0px rgb(51 51 51);
}
.home-page .jumbotron .text-container-bottom span:after {
  position: absolute;
  left: 50%;
  top: 50px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 23px;
  height: 22px;
  content: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 23 22' style='enable-background:new 0 0 23 22;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23ffffff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M22.5,9.7l-9.2-9.2c-0.7-0.7-1.8-0.7-2.5,0c-0.7,0.7-0.7,1.8,0,2.5L17,9.3L1.8,9.2c-0.5,0-0.9,0.2-1.3,0.5 C0.2,10,0,10.5,0,11c0,1,0.8,1.8,1.8,1.8l15.2,0l-6.2,6.2c-0.3,0.3-0.5,0.8-0.5,1.3c0,0.5,0.2,0.9,0.5,1.3c0.7,0.7,1.8,0.7,2.5,0 l9.2-9.2C23.2,11.6,23.2,10.4,22.5,9.7z'/%3E%3C/svg%3E%0A");
}
.home-page .jumbotron .text-container-bottom span.hp-button-red {
  background: #D71F27;
}
.home-page .jumbotron.col-md-12 .col-md-12 span {
  font-size: 21px;
  font-family: "TL-demi";
  position: relative;
}

.home-page .jumbotron .text-container-bottom span.hp-button-red-reverse{
  border-bottom-right-radius: 17px;
      border-top-right-radius: 17px;
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      margin-left: -15px;
      background: #d92727;
      -webkit-box-shadow: -45px 16px 0px 0px rgb(51 51 51);
      -moz-box-shadow: -45px 16px 0px 0px rgba(51,51,51,1);
      box-shadow: -45px 16px 0px 0px rgb(51 51 51);
      top: 40px;
}
.home-page .jumbotron h1 {
  font-size: 62px;
  font-family: "TL-demi";
  font-weight: 900;
  margin: 0;
}
.home-page .jumbotron .text-container-bottom h1 {
  font-size: 50px;
  font-family: "TL";
  font-weight: inherit;
  max-width: 660px;
}
@media (max-width: 1333px) {
  .home-page .jumbotron .text-container-bottom h1 {
    font-size: 30px;
    max-width: 300px;
  }
}
.home-page .jumbotron p {
  font-size: 31px;
  margin-bottom: 0;
}
.home-page .jumbotron .text-container-bottom p {
  font-size: 20px;
  font-weight: inherit;
  margin-bottom: 0;
}
.home-page .jumbotron .text-container-center p {
  max-width: 600px;
}
.home-page .jumbotron.col-md-12 .col-md-12 {
  padding-top: 30px;
}

.jumbo-story-building {
  color: white;
  background-image: url("../images/timelooper-story-building-platform.jpg");
  color: #333;
  background-clip: padding-box;
  border-bottom: 6px solid transparent;
}
.jumbo-xplore-distance {
  color: white;
  background-image: url("../images/timelooper-xplore-distance.jpg");
  color: #333;
  background-clip: padding-box;
  border-bottom: 12px solid transparent;
  border-right: 6px solid transparent;
}
.jumbo-xplore-trails {
  color: white;
  background-image: url("../images/timelooper-xplore-trails.jpg");
  color: #333;
  background-clip: padding-box;
  border-bottom: 12px solid transparent;
  border-left: 6px solid transparent;
}
.jumbo-cultural-preservation {
  color: white;
  background-image: url("../images/timelooper-cultural-preservation.jpg");
  color: #333;
  background-clip: padding-box;
  border-bottom: 12px solid transparent;
  border-left: 6px solid transparent;
  background-position: left center !important;
}
.jumbo-xplore-for-teachers {
  color: white;
  background-image: url("../images/timelooper-xplore-for-teachers.jpg");
  color: #333;
  background-clip: padding-box;
  border-bottom: 12px solid transparent;
  border-right: 6px solid transparent;
}
.jumbo-exhibit-design {
  color: white;
  background-image: url("../images/timelooper-exhibit-design.jpg");
  color: #333;
  background-clip: padding-box;
  border-bottom: 12px solid transparent;
  background-position: 76% center !important;
}
.page-link:hover .jumbotron {
}

@media (max-width: 992px) {
  .mobile-break {
    display: none;
  }
  .home-page .jumbotron .text-container-bottom {
    bottom: 50px;
  }
  .nav-pad {
    height: 55px;
  }
  .jumbo-xplore-distance,
  .jumbo-xplore-trails,
  .jumbo-xplore-for-teachers,
  .jumbo-cultural-preservation,
  .jumbo-exhibit-design {
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
  }
  .home-page .jumbotron {
    min-height: 400px;
    padding: 0;
  }
  .home-page .jumbotron .text-container-bottom span {
    position: relative;
    right: 20px;
    background: #b3a369;
    padding: 10px 39px 10px 15px;
    bottom: inherit;
    font-size: 16px;
    font-family: "TL-demi";
    border-bottom-right-radius: 17px;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    top: 14px;
    -webkit-box-shadow: -45px 16px 0px 0px rgb(51 51 51);
    -moz-box-shadow: -45px 16px 0px 0px rgba(51,51,51,1);
    box-shadow: -45px 16px 0px 0px rgb(51 51 51);
  }
  .home-page .jumbotron .text-container-bottom span:after {
    position: absolute;
    left: 106px;
    top: 11px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
  }
  .home-page .jumbotron .text-container-bottom span.hp-button-red-reverse {
    top: 14px;
    font-size: 16px;
    padding: 10px 39px 10px 15px;
    right: 10px;
    left: 0;
  }
  .home-page .jumbotron .text-container-bottom.text-container-center {
    padding: 0 10px;
    width: 100%;
    bottom: 50px;
    top: inherit;
    transform: inherit;
  }
  .home-page .jumbotron .text-container-bottom h1 {
    font-size: 30px;
    max-width: 100%;
  }
  .home-page .jumbotron .text-container-bottom p {
    font-size: 15px;
  }
  .home-page .jumbotron p {
    font-size: 20px;
  }
  .home-page .jumbotron h1 {
    font-size: 40px;
  }
}
/*footer*/
.footer {
  padding-bottom: 30px;
  padding-top: 30px;
  background: #2b2b2b;
  min-height: 281px;
}
.footer h4 {
  color: #b3a369;
}
.footer ul {
  list-style: none;
  padding: 0px;
}
.footer ul li {
  padding: 1px 0px;
}
.footer ul a {
  color: rgba(255, 255, 255, 0.8);
}
.footer ul a:hover {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer .download-app .app-store {
  margin-bottom: 20px;
}
.footer .social-links {
  text-align: right;
  padding-right: 30px;
  margin-top: 15px;
}
.footer .social-links img {
  max-width: 33px;
}
.tl-cr {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .footer .social-links,
  .footer .download-qr {
    text-align: center;
  }
  .footer .download-qr img {
    margin: 0 auto;
  }
  .footer .social-links {
    padding-right: 0;
  }
  .footer .download-app .row {
    margin-right: 0;
    margin-left: 0;
  }
  .footer .footer-logo {
    max-width: 190px;
    margin-bottom: 15px;
  }
  .footer .download-app .app-store {
    margin-bottom: 11px;
  }
}
/*footer end */

input,
div,
span,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.dvcenter {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* xplore distance*/
.center-grid {
  height: 100%;
  text-align: center;
}
section.fs {
  position: relative;
  height: 100vh;
  width: 100vw;
  max-width: 100%;
}
section h3 {
  font-size: 44px;
  font-family: "TL-demi";
}
.text-red-80 {
  font-size: 79px;
  font-family: "TL-demi";
  color: #D71F27;
}
.text-red-50 {
  font-size: 50px;
  font-family: "TL-demi";
  color: #D71F27;
}
.text-red {
  font-family: "TL-demi";
  color: #D71F27;
}
.text-red-26 {
  color: #D71F27;
  font-size: 26px;
}
.text-black-26 {
  color: #000000;
  font-size: 26px;
}
.text-white-80 {
  font-size: 79px;
  font-family: "TL-demi";
  color: #ffffff;
}
.text-gold-80 {
  font-size: 79px;
  font-family: "TL-demi";
  color: #b3a369;
}
.text-white-50 {
  font-size: 50px;
  font-family: "TL-demi";
  color: #ffffff;
}
.text-white-50-light{
  font-size: 50px;
  font-family: "TL";
  color: #ffffff;
}
.text-bold {
  font-weight: bold;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.mb-60 {
  margin-bottom: 60px;
}
.pt-20{
  padding-top: 20px;
}
.mt-30 {
  margin-top: 20px;
}
.pt-40{
  padding-top: 40px !important;
}
.mtb-30 {
  margin: 30px 0;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.ptb-40 {
  padding: 40px 0;
}
.ml-28 {
  margin-left: 28px;
}
.pt-45{
  padding-top:45px;
}
.mt-45{
  margin-top: 45px;
}
.mb-45{
  margin-bottom: 45px;
}
.w-100 {
  width: 100%;
  margin: 0;
  padding: 0;
}

.bg-red{
  background: #D71F27;
  color: #fff;
}
.bg-white{
  background: #fff;
  color: #000;
}
.bg-gold{
  background: #b3a369;
  color: #fff;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  background: #333;
}

@media (max-width: 992px) {
  body,
  html {
    overflow-x: hidden;
  }
  /*
  html {
    overflow: hidden;
  }

  body {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }*/

}
.main .scroll-element {
  /*   display: block;
  width: 100%;
  height: 100vh; */
}

.main .scroll-element #anim1,
.main .scroll-element #anim2,
.main .scroll-element #anim3,
.main .scroll-element #anim4 {
  display: block;
  width: 100% !important;
  height: 100vh !important;
  margin: 0 auto;
  /*margin-top: 66px !important;*/
}

.main .copy {
  /*width: 100vw;*/
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  /*   background-color: lightcoral;  */
}
.main .copy-auto {
  width: 100%;
  height: auto;
  padding: 100px 0;
}
.main .copy.red, .main .copy50.red{
  background: #D71F27;
}
.main .copy.white, .main .copy50.white{
  background: #fff;
}
.main .copy.gold, .main .copy50.gold{
  background: #b3a369;
}
@media (max-width: 992px) {
  .main .copy-auto {
    padding: 30px 0;
  }
}
.copy.bg-fwhite {
  background: #f2f2f2;
  /*background-image: url("../images/pins-left.png"),
    url("../images/pins-right.png");
  background-position: left center, right center;
  background-repeat: no-repeat;*/
  color: #333;
}
.copy50.bg-white {
  background: #fff;
  color: #333;
}
.copy.bg-fwhite h3, .copy50.bg-white h3{
  font-size: 26px;
}
.copy.bg-fwhite h2, .copy50.bg-white h2 {
  font-size: 36px;
  font-family: "TL-demi";
}
.bg-black{
  background: #000;
}
.main .copy50 {
  width: 100vw;
  height: 50vh;
  padding: 50px 0;
  display: table;
}

.main .copy h1 {
  display: block;
  text-align: center;
  font-size: 50px;
  color: #111;
  margin: 0;
  padding-top: 10px;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

#container h1 {
  z-index: 9999;
  color: white;
  font-size: 12rem;
  font-weight: 900;
}

.container-hero {
  width: 100%;
  height: 100%;
  /* position: absolute; */
  z-index: 9999;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  position: fixed;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -100%); */
  display: none;
}

.anim-distance-text-1, .anim-distance-text-2, .anim-distance-text-3, .anim-distance-text-4, .anim-distance-text-5, .anim-distance-text-6, .anim-distance-text-7, .anim-distance-text-8, .anim-distance-text-9, .anim-trails-text-1, .anim-trails-text-2, .anim-trails-text-3, .anim-trails-text-4, .anim-trails-text-5 {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* text-shadow: 3px 3px 20px rgb(0 0 0 / 60%), -2px 1px 30px rgb(0 0 0 / 60%); */
  padding: 0;
  margin: 0;
  /*transition: all 1s;*/
  transition: transform 3s ease-in-out;
}
.animation-text {
  opacity: 0;
}

.anim-fadein {
  animation: fadein 0.5s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim-fadeout {
  animation: fadeout 0.5s forwards;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.text-black {
  color: black !important;
  text-shadow: none !important;
}

.video-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.svg-container {
  width: 100% !important;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.svg-container svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  font-weight: 900;
  font-size: 50em;
  font-family: "TL-demi";
}
.svg-container svg text {
  text-anchor: middle;
}
.svg-container svg mask rect {
  /*   fill: rgba(255, 255, 255, 0.8); */
  fill: white;
}
.svg-container svg > rect {
  fill: white;
  -webkit-mask: url(#mask);
  mask: url(#mask);
}

.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  /* 	border: 10px solid black; */
  /*overflow: hidden;*/
}

.video-container video {
  min-height: 100%;
  min-width: 100%;
  height: 150%;
  width: 150%;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}

.svg-container svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.text-44 {
  font-size: 44px;
  font-family: "TL-demi";
}
.text-30 {
  font-size: 30px;
}
.text-white-44-l {
  font-size: 44px;
  text-align: left;
  font-family: "TL-demi";
  margin-bottom: 45px;
}
.text-white-44-c{
  font-size: 44px;
  text-align: center;
  font-family: "TL-demi";
  margin-bottom: 45px;
}
.text-white-28-l {
  font-size: 28px;
  text-align: left;
}
.text-white-21-l {
  font-size: 21px;
  text-align: left;
}
.text-black-44-c {
  font-size: 44px;
  text-align: center;
  font-family: "TL-demi";
  margin-bottom: 45px;
  color: #333333;
}
.button {
  border: none;
  /*padding: 20px 45px;*/
  height: 70px;
  border-radius: 20px;
  font-size: 22px;
  font-family: "TL-demi";
  margin: 10px;
  transition: all 150ms linear;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  max-width: 360px;
  flex-basis: 100%;
  text-align: center;
  display: flex;
  /*flex-direction: column;*/
  justify-content: center;
  /*min-width: 360px;*/
}

.button-red {
  color: #ffffff;
  background: #D71F27;
}
.button-red:hover {
  background: #e02c26;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 250ms linear;
}
.button-red:active, .button-red:focus, .button-gold:active, .button-gold:focus{
  color: #fff;
}
.button-white:active, .button-white:focus, .button-gold-black:active, .button-gold-black:focus{
  color: #333;
}
.button-white-red:active, .button-white-red:focus{
  color: #e02c26;
}
.button-gold {
  color: #ffffff;
  background: #b3a369;
  white-space:normal !important;
}
.button-gold-fix-dsk {
  margin: 0;
  min-width: 360px;
  padding: 20px 45px;
} 
.button-gold:hover {
  background: #ac9c62;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 250ms linear;
}
.button-gold-black {
  color: #333333;
  background: #b3a369;
  white-space:normal !important;
}
.button-gold-black:hover {
  background: #ac9c62;
  color: rgba(51, 51, 51, 0.5);
  text-decoration: none;
  transition: all 250ms linear;
}
.button-white {
  color: #333333;
  background: #ffffff;
}
.button-white:hover {
  background: #e4e4e4;
  color: rgba(51, 51, 51, 0.5);
  text-decoration: none;
  transition: all 250ms linear;
}
.button-white-red {
  color: #D71F27;
  background: #ffffff;
}
.button-white-red:hover {
  background: #e4e4e4;
  color: rgba(224, 44, 38, 0.5);
  text-decoration: none;
  transition: all 250ms linear;
}
.button-black {
  color: #ffffff;
  background: #333333;
}
.button-black:hover {
  background: #292929;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 250ms linear;
}
.button-multi-line{
  white-space: normal !important;
  padding: 11px 17px;
  line-height: 1.1;
}
.button-grp {
  display: flex;
  justify-content: center;
}
.button-grp .button {
  flex-basis: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .main .scroll-element #anim1,
  .main .scroll-element #anim2,
  .main .scroll-element #anim3,
  .main .scroll-element #anim4 {
  margin-top: 66px !important;
}

  .button-grp {
    display: grid;
    justify-content: initial;
  }
  .text-white-28-l {
    font-size: 18px;
  }
  .text-white-21-l {
    font-size: 14px;
    text-align: center;
  }
  .text-white-44-l, .text-white-44-c, .text-black-44-c{
    text-align: center;
    font-size: 28px;
  }
  .button {
    padding: 10px 10px;
    font-size: 18px;
    max-width: 164px;
    min-width: 100%;
    white-space: normal !important;
    margin: 10px 0;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .table-responsive {
    border: none; 
  }
}
.text-36bb {
  font-size: 36px;
  color: #000;
  font-family: "TL-demi";
}
.you-can-xplore {
  display: block;
  font-family: "TL-demi";
}
.animh3, .animh2 {
  opacity: 0;
}
#video-1 {
  opacity: 0;
  width: 100%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 38px;
}
#video-2 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#video-3 {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}
.video3-container {
  margin-top: 36px;
}
.video3-text {
  text-align: left;
  font-size: 17px;
}
.anim-distance-text-1 {
  top: 20% !important;
  font-size: 50px;
  text-align: center;
}
.anim-distance-text-2 {
  font-size: 35px;
  text-align: left;
  font-family: "TL";
}
.anim-distance-text-3 {
  color: #737c83;
  text-align: left;
  font-family: "TL" !important;
  font-size: 36px;
}
.anim-distance-text-4 {
  top: 20% !important;
  text-align: center;
  font-family: "TL-demi";
}
.anim-distance-text-5,
.anim-distance-text-6 {
  text-align: center;
  top: 50% !important;
  margin-left: 250px !important;
  color: #000;
}
.anim-distance-text-7 {
  text-align: center;
  color: rgb(0, 0, 0);
  top: 48% !important;
  /* margin-left: 300px!important; */
  left: 50% !important;
  width: 25% !important;
  transform: initial !important;
}
.anim-distance-text-8 {
  text-align: center;
  color: white;
  font-size: 105px;
  font-family: "TL-demi";
}

.anim-distance-text-8 span.anim-8-span-text {
  font-size: 36px;
  font-family: TL;
  color: rgb(255, 255, 255);
  display: block;
  margin-top: 44px;
}
.anim-distance-text-9 {
  text-align: center;
  top: 20% !important;
}
@media (max-width: 992px) {
  .anim-distance-text-1{
    width: 90%;
    font-size: 51px;
    text-align: left;
    transform: translate(-50%, -10%);
    top:18%;
  }
  .anim-distance-text-2{
    width: 90%;
    font-size: 38px;
    text-align: left;
    top:18%;
    transform: translate(-50%, -10%);
  }
  .anim-distance-text-3{
    width: 90%;
    font-size: 38px;
    text-align: center;
    top:18%;
    transform: translate(-50%, -10%);
    color: #fff;
  }
  .anim-distance-text-4{
    width: 90%;
    font-size: 32px;
    text-align: center;
    top: inherit!important;
    bottom: 20%;
    transform: translate(-50%, 100%);
    color: #fff;
  }
  .anim-distance-text-5, .anim-distance-text-6{
    width: 90%!important;
    font-size: 32px;
    text-align: center;
    top: inherit!important;
    bottom: 20%;
    transform: translate(-50%, 70%)!important;
    margin-left: inherit!important;
  }
  .anim-distance-text-7{
    width: 90%!important;
    font-size: 32px;
    text-align: center;
    top:18%;
    transform: translate(-50%, -10%)!important;
  }
  .anim-distance-text-8 {
    width: 90%;
    font-size: 38px;
    text-align: left;
    top: 18%;
    transform: translate(-50%, -10%);
    color: #fff;
  }
  .anim-distance-text-9 {
    width: 90%;
    font-size: 38px;
    text-align: left;
    top: 18%;
    transform: translate(-50%, -20%);
    color: #fff;
  }
}

.pricing-table {
  background: #fff;
  color: #333333;
}
.pricing-table h3 {
  font-size: 30px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  vertical-align: middle;
}
.checkmark::before {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' width='16' height='12' fill='%23D71F27' viewBox='0 0 16 12'><path d='M5.1,11.4c0,0-4.3-4.5-4.6-4.8c-0.7-0.7-0.7-1.9,0-2.6c0.7-0.7,1.8-0.7,2.5,0L5.7,7C6.1,7.3,6.6,7.3,7,7l6-6.4	c0.7-0.7,1.8-0.7,2.5,0c0.7,0.7,0.7,1.9,0,2.6c-6.6,7-7.8,8.3-7.8,8.3C7,12.2,5.8,12.2,5.1,11.4L5.1,11.4z'/></svg>");
  display: block;
  width: 100%;
  height: 22px;
}
.pricing-table .table {
  font-size: 16px;
  font-family: "TL-demi";
}
.pricing-table .table .text-left {
  font-family: "TL";
  vertical-align: inherit;
}
.pricing-table .mini-desc {
  font-size: 12px;
  font-family: 'TL-demi';
}
.pricing-table .table th {
  font-size: 20px;
  font-family: "TL-demi";
  text-align: center;
}
.pricing-table span{
  font-size: 18px;
  font-family: 'TL';
}
.rate-sheet-text {
  margin-top: 30px;
  font-family: 'TL-demi';
}
@media (max-width: 1200px) {
  .video3-text {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .pricing-table .table th,
  .pricing-table .table {
    font-size: 11px;
  }
  .text-white-80, .text-red-80, .text-gold-80 {
    font-size: 55px;
  }
  .text-white-50, .text-white-50-light, .text-red-50 {
    font-size: 35px;
  }
  .text-44 {
    font-size: 34px;
  }
  .text-30, .pricing-table h3 {
    font-size: 20px;
  }
  .pricing-table span, .pricing-table .mini-desc {
    font-size: 11px;
  }
  .video3-text {
    font-size: 15px;
    margin-top: 33px;
  }
}


/* iframe modal */

#contact{
  padding:10px 0 10px;
}

.contact-text{
  margin:45px auto;
}

.mail-message-area{
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mail-message{
  width: 100%;
  background: rgba(179,163,105, 1) !important;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  margin: 0 auto;
  border-radius: 0;
  position: absolute;
  bottom: 0;
  text-align: center;
  font-size: 16px;
}

.not-visible-message{
  height:0px;
  opacity: 0;
}

.visible-message{
  width: 100%;
  background: rgba(179,163,105, 1) !important;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  margin: 0 auto;
  border-radius: 0;
}

/* Input Styles */

.form{
  width: 100%;
  padding: 15px;
  background:#f8f8f8;
  border:1px solid rgba(0, 0, 0, 0.075);
  margin-bottom:14px;
  color:#333333 !important;
  font-size:13px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form:hover{
  border:1px solid #e02c26;
}

.form:focus{
  color: white;
  outline: none;
  border:1px solid #e02c26;
}

.textarea{
  height: 100px;
  max-height: 100px;
  max-width: 100%;
}
.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal {
  text-align: center;
  padding: 0!important;
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  color: #333333;
}
.modal-open {
  overflow-y:scroll;
  padding: 0 !important;
}
.modal-title {
  text-align: center;
}
/* iframe modal end*/
/*.scaleDown {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  margin-top: 100px;
}*/
.wcag-aa-image {
  margin-top: 24px;
}
.gg-info {
  cursor: pointer;
}
.gg-info:after {
  width: 15px;
  height: 15px;
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'  fill='%23999999' x='0px' y='0px' viewBox='0 0 417 417' style='enable-background:new 0 0 417 417;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M356,61.2C274.6-20.3,142.6-20.4,61.2,61c-81.5,81.4-81.6,213.4-0.2,294.9c81.4,81.5,213.4,81.6,294.8,0.2 C437.3,274.6,437.4,142.6,356,61.2z M208.5,137.9c-18.6,0-33.8-15.1-33.8-33.8c0-18.6,15.1-33.8,33.8-33.8s33.8,15.1,33.8,33.8 C242.3,122.8,227.1,137.9,208.5,137.9z M225.7,346.3h-34.3c-6.6,0-12-5.4-12-12V173.9c0-6.6,5.4-12,12-12h34.3c6.6,0,12,5.4,12,12 v160.4C237.7,340.9,232.3,346.3,225.7,346.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.custom-bullet li {
  display: block;
}

.custom-bullet li:before
{
  content: ">";
  font-size: 9px;
  float: left;
  margin-top: 4px;
  margin-left: -17px;
  color: #CCCCCC;
}

.m0a{
  margin: 0 auto;
}

/*about timelooper*/
.about-timelooper-h2, .cookie-policy-h2{
    margin-bottom: 60px;
    font-size: 60px;
    font-family: 'TL-demi';
    text-align: center;
}
.customer-list h2, .portfolio-samples h2, .cookie-policy h2 {
  font-size: 60px;
  font-family: 'TL-demi';
  text-align: center;
}
.cookie-policy-text {
  text-align: left;
  font-size: 18px;
  width: 100%;
}
.cookie-policy-text a{
  color: #b3a369;
}
.cookie-policy-text ul li{
  margin-left: 36px;
}
.cookie-policy-text p{
  margin: 30px 0;
}

.about-timelooper-img {
  border-radius: 20px;
}
.about-cover-image{
    background-image: url(../images/about-timelooper.jpeg);
    color: #333;
    background-clip: border-box;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    min-height: 624px;
    border-radius: 0 !important;
    margin: 0px;
    padding: 0;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.splide {
  padding: 20px 0;
}

.splide__slide img {
  display: block;
  width: 100%;
  border-radius: 12px;
  transition: transform 400ms;
  transform: scale(0.9);
  transform-origin: center center;
}

.splide .splide__arrow {
  top: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  border-radius: unset;
  width: 50px;
  opacity: 0.9;
  background: none;
}
.splide .splide__arrow svg {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
}
.splide__arrow--next {
  right: -1.6rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.splide__arrow--prev {
  left: -1.6rem;
  -webkit-transform: scaleX(-1) translateY(-50%);
  transform: scaleX(-1) translateY(-50%);
}

.splide--nav>.splide__slider>.splide__track>.splide__list>.splide__slide, .splide--nav>.splide__track>.splide__list>.splide__slide {
  border: none;
  cursor: pointer;
  -webkit-box-shadow: inset 0px 0px 0px 3px transparent;
  -moz-box-shadow: inset 0px 0px 0px 3px transparent;
  border-radius: 10px;
  box-shadow: inset 0px 0px 0px 3px transparent;
}
.splide--nav>.splide__slider>.splide__track>.splide__list>.splide__slide.is-active, .splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
  border: none;
  cursor: pointer;
  -webkit-box-shadow: inset 0px 0px 0px 3px #ff5200;
  -moz-box-shadow: inset 0px 0px 0px 3px #ff5200;
  border-radius: 10px;
  box-shadow: inset 0px 0px 0px 3px #ff5200;
}
.testimonials{
  background: #D71F27;
  margin-top: 60px;
}
.testimonials h2{
  font-size: 60px;
  font-family: 'TL-demi';
  text-align: center;
}
.testimonial-carousel, .customer-list, .portfolio-samples {
  padding-top: 20px;
  padding-bottom: 20px;
}
.splide__arrow svg {
  fill: #D71F27;
}
.testimonial-carousel .splide__slide a{
  color: #fff;
}
.testimonial-carousel .splide__slide a:hover{
  color: #CCCCCC;
}
.testimonial-carousel .splide__slide a::after{
  position: absolute;
  content: '';
  width: 81px;
  height: 81px;
  background: url("../images/icon-play.png") no-repeat;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.testimonial-carousel .splide__slide a span{
  margin-top: 50px;
  display: block;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

#videoModal .modal-dialog {
  width: 800px;
  margin: 30px auto;
  /*transform: translate(0, 50%);*/
}
#videoModal .modal-body {
  position:relative;
  padding:0px;
}
#videoModal .close {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}
#videoModal .modal-content {
  border: none;
}
.about.copy{
  height: auto;
  margin-top: 115px;
  margin-bottom: 50px;
}
.splide .splide__arrow svg {
  margin-top: -80px;
}
.portfolio-samples{
  background: #333;
  color: #fff;
}
.customer-list{
  background: #fff;
  color: #333;
}
.customer-list ul {
  list-style-type: none;
}
.customer-list ul li.customer-list-title{
  font-family: 'TL-demi';
  font-size: 44px;
  border-bottom: solid 1px #333;
  margin-bottom: 12px;
  margin-top: 22px;

}
@media (max-width: 992px) {
  #videoModal .modal-dialog {
    width: 90%;
  }
  .splide .splide__arrows {
    display: none;
  }
  .about-timelooper-h2, .customer-list h2, .portfolio-samples h2 {
    font-size: 42px;
  }
  .about-timelooper-text {
    font-size: 13px;
  }
  .about-cover-image {
    min-height: 300px;
    padding: 0;
  }
  .testimonials h2 {
    font-size: 42px;
  }
  .testimonial-carousel .splide__slide a span {
    margin-top: 38px;
    font-size: 12px;
  }
  .testimonial-carousel .splide__slide a::after {
    width: 61px;
    height: 61px;
    bottom: 39px;
    background-size: 61px 61px;
  }
  .splide .splide__arrow svg {
    margin-top: -80px;
  }
  #videoModal .close {
    position: absolute;
    right: 10px;
    top: -30px;
  }
  .customer-list ul li.customer-list-title {
    font-size: 32px;
  }
}


/*xplore trails*/

.anim-trails-text-1 {
  text-align: center;
  top: 50% !important;
  margin-left: 470px !important;
  color: #fff;
}
.anim-trails-text-2, .anim-trails-text-3 {
  top: 20% !important;
  text-align: center;
  color:#000;
}
.anim-trails-text-4, .anim-trails-text-5 {
  top: 30%;
  left: 77%;
  text-align: left;
  color: #000;
}
.portolio-sample-card {
  max-width: 248px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 60px;
}
.portfolio-store-link {
  margin-left: 0;
  margin-top: 20px;
  float: left;
  margin-right: 12px;
}
.portfolio-qr-link {
  float: left;
  margin-top: 20px;
}
.portolio-sample-card .app-store{
  margin-top: 8px;
}
.portolio-sample-card .google-play{
  margin-top: 13px;
}
.portolio-sample-card h4 {
  font-family: 'TL-demi';
  font-size: 22px;
  min-height: 49px;
}

.portolio-sample-card:after{
  clear: both;
  display: table;
  content: " ";
}
.trails-app-qr {
  max-width: 106px;
  border-radius: 10px;
}
.store-app-icon {
  border-radius: 40px;
}
@media (max-width:1600px ) {
  .anim-trails-text-1 {
     margin-left: 406px !important;
     max-width: 560px;
  }
}
@media (max-width: 992px) {
  .portolio-sample-card {
    margin-bottom: 20px;
  }
  .anim-trails-text-1{
    width: 90%;
    font-size: 32px;
    text-align: left;
    transform: translate(-50%, -10%);
    top: 18%!important;
    margin-left: inherit!important;
  }
  .anim-trails-text-1-mobile{
    width: 90%;
    font-size: 32px;
    text-align: left;
    bottom: 35%;
    transform: translate(-50%, 100%);
    color: #fff;
    left: 50%;
    position: absolute;
  }
  .anim-trails-text-2, .anim-trails-text-3 {
    width: 90%;
    font-size: 32px;
    text-align: left;
    transform: translate(-50%, -10%);
    top:18%;
  }
  .anim-trails-text-4{
    left: 50%;
    width: 90%;
    font-size: 32px;
    text-align: left;
    top: inherit!important;
    bottom: 25%;
    transform: translate(-50%, 100%);
    color: #fff;
  }
  .anim-trails-text-5 {
    left: 50%;
    width: 90%;
    font-size: 32px;
    text-align: left;
    bottom: 25%;
    transform: translate(-50%, 100%);
    color: #fff;
    left: 50%;
    position: absolute;
  }
}

.xplore-for-teachers-video h3 {
  font-size: 29px!important;
}

.scroll-down-animation {
  position: fixed;
  width: 24px;
  height: 24px;
  bottom: 110px;
  display: none;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.scroll-down-container {
  transform: translateX(-50%);
  background: rgba(0,0,0,0.4);
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 66px;
  height: 124px;
  border-radius: 30px;
  margin-left: 15px;
}
.scroll-down-chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: scroll-down-move 3s ease-out infinite;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.scroll-down-chevron:first-child {
  animation: scroll-down-move 3s ease-out 1s infinite;
}

.scroll-down-chevron:nth-child(2) {
  animation: scroll-down-move 3s ease-out 2s infinite;
}

.scroll-down-chevron:before,
.scroll-down-chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.scroll-down-chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.scroll-down-chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes scroll-down-move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.scroll-down-text {
  display: block;
  margin-top: 75px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  opacity: .25;
  animation: scroll-down-pulse 2s linear alternate infinite;
}

@keyframes scroll-down-pulse {
  to {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .scroll-down-animation {
    bottom: 150px;
  }
}
.cookieConsentContainer {
	z-index: 999;
	width: 350px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 30px 30px 30px;
	background: #232323;
	overflow: hidden;
	position: fixed;
    bottom: 30px;
	right: 30px;
}
.cookieConsentContainer .cookieTitle a {
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 22px;
	line-height: 20px;
	display: block;
}
.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 13px;
	line-height: 20px;
	display: block;
	margin-top: 10px;
} .cookieConsentContainer .cookieDesc a {
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	text-decoration: underline;
}
.cookieConsentContainer .cookieButton a {
	display: inline-block;
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	margin-top: 14px;
	background: #000000;
	box-sizing: border-box; 
	padding: 15px 24px;
	text-align: center;
	transition: background 0.3s;
}
.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #b3a369;
}

@media (max-width: 980px) {
	.cookieConsentContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
	}
}
.golden-color {
  color: #b3a369;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 400ms;
}
/*xplore distance*/
.portfolio-sample-timelooper {
  background: #484848!important;
  border-radius: 50px!important;
  margin-top: 50px;
  margin-bottom: 25px;
}

.portfolio-sample-timelooper .portolio-sample-card{
  max-width: 100% !important;
  text-align: center!important;
}
.portfolio-sample-timelooper h4 {
  font-size: 44px !important;
}
.portfolio-sample-timelooper h5 {
  font-size: 28px !important;
}
.portfolio-sample-timelooper-center {
  max-width: 248px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .portfolio-sample-timelooper {
    border-radius: 10px!important;
    margin: 5%;
    width: 90%;
  }
  .portfolio-sample-timelooper h4 {
    font-size: 36px !important;
  }
  .portfolio-sample-timelooper h5 {
    font-size: 22px !important;
  }
}
/*home page aaam*/
.home-page-video {
  height: 624px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}
.home-page-aaam {
  background: #1a1a1a;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.home-page-aaam .mt-30 {
  margin-top: 30px!important;
}
#HPVideo {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.ahp-h1-text {
  text-align: left;
  font-size: 72px;
  text-transform: uppercase;
  margin: 20px 0px;
}
.ahp-h2-text {
  text-align: center;
  font-size: 64px;
  text-transform: uppercase;
  margin: 70px 0px;
  color: #ccc;
}
.ahp-welcome {
  min-height: 455px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  border-radius: 0 !important;
  margin: 0px;
  padding: 0;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background-image: url(../images/aaam-homepage/timelooper-icon.png);
  background-clip: padding-box;
  text-align: center;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ahp-welcome p {
  padding: 0;
  margin: 0;
  line-height: initial;
}
.ahp-welcome-p1 {
  color: #b3a369;
}
.ahp-welcome-p2 {
  color: #d2cab6;
}
.ahp-welcome-p3 {
  color: #ea0029;
}
.ahp-welcome-text-detail{
  color: #d2cab6;
  font-size: 27px;
  margin: 10px 0;
}
.ahp-welcome-text-detail p, .ahp-welcome-text-detail li {
  margin: 20px 0;
}
.ahp-welcome-text-detail ul > li {
  list-style-type: disc;
  margin-left: 27px;
}
.home-page-eeteu{
  font-size: 16px;
  color: #d2cab6;
  padding: 0;
}

.home-page-eeteu h2{
  font-size: 40px;
  color: #ccc;
  padding: 0;
  margin: 35px 0 15px 0px;
}
.home-page-eeteu p {
  color: #b3a369;
  font-size: 19px;
  padding: 0;
}
.home-page-eeteu p.light{
  color: #d2cab6;
}
.home-page-eeteu .media-left {
  padding-right: 30px;
}
.home-page-eeteu .media{
  margin: 25px 0;
}
.home-page-eeteu .media-object {
  text-align: center;
  max-width: 60px;
}
.home-page-eeteu .media-body {

}
.home-page-eeteu .media-heading {
  text-transform: uppercase;
  font-size: 26px;
}
.home-page-eeteu-questions {
  color: #d2cab6;
  text-align: center;
}
.home-page-eeteu-questions .home-page-eeteu-qrinside{
  background: #4d4d4d;
  border-radius: 56px;
  padding: 55px 30px 40px 30px;
  min-height: 412px;
}
.hpiecol {
  min-height: 306px!important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 56px;
  font-size: 23px;
  padding: 32px;
}
.home-page-eeteu-questions .home-page-eeteu-qrinside img{
  padding-bottom: 40px;
  text-align: center;
  margin: 0 auto;
}
.home-page-eeteu-questions .home-page-eeteu-qrinside p span{
  text-decoration: underline;
  font-weight: bold;
}
.home-page-eeteu-questions p{
  text-align: left;
  color: #d2cab6;
  font-size: 20px;

}
.radius-50 {
  border-radius: 50px;
}
.radius-20 {
  border-radius: 20px;
}
.vcenter {
  display: flex;
  align-items: center;
}
.home-page-eeteu-questions .home-page-eeteu-qroutside {
  padding: 20px 10px 20px 10px;
}
.home-page-eeteu-questions .home-page-eeteu-qroutside:first-child {
  padding: 20px 10px 20px 20px
}
.home-page-eeteu-questions .home-page-eeteu-qroutside:last-child {
  padding: 20px 20px 20px 10px;
}

.home-page-eeteu .media:last-child {
  margin-bottom: 20px!important;
}
#videoSoundToggle img {
  max-width: 50px;
}
@media (max-width: 1024px) {
  .home-page-video {
    height: 44vh;
  }
  #HPVideo {
    max-height: 44vh;
  }
  .home-page-aaam .jumbotron  {
    min-height: 44vh!important;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .dvcenter {
    display: inherit;
    vertical-align: inherit;
    float: inherit;
  }
  .hpiecol {
    border-radius: 17px;
    font-size: 13px;
    padding: 8px;
  }
  .home-page-immersive-experiences .col-xs-4 {
    padding: 0px 10px 0px 10px;
  }
  .home-page-immersive-experiences .col-xs-4:first-child {
    padding: 0px 5px 0px 20px;
  }
  .home-page-immersive-experiences .col-xs-4:last-child {
    padding: 0px 20px 0 5px;
  }
  .radius-50 {
    border-radius: 20px;
  }

  .home-page-video {
    height: 30vh;
  }
  .ahp-h1-text {
    font-size: 37px;
  }
  #HPVideo {
    max-height: 30vh;
  }
  .home-page-aaam .jumbotron  {
    min-height: 30vh!important;
    padding: 0;
    font-family: 'TL'!important;
  }
  .home-page-aaam h1, .home-page-aaam h2,.home-page-aaam h3, .home-page-aaam h4, .home-page-aaam p, .home-page-aaam div, .home-page-aaam a, .home-page-aaam span {
    font-family: 'TL'!important;
  }
  .ahp-h2-text {
    font-size: 34px;
    margin: 40px 0px;
  }
  .ahp-welcome {
    min-height: 190px;
  }
  .ahp-welcome-text-detail {
    font-size: 17px;
    margin: 20px 0;
  }
  .home-page-eeteu h2 {
    font-size: 36px;
  }
  .home-page-eeteu {
    font-size: 16px;
  }
  .home-page-eeteu .media-heading {
    font-size: 16px;
  }
  .home-page-eeteu-questions .home-page-eeteu-qroutside {
    padding: 20px 6px 20px 6px;
  }
  .home-page-eeteu-questions .home-page-eeteu-qroutside:first-child {
    padding: 20px 6px 20px 12px;
  }
  .home-page-eeteu-questions .home-page-eeteu-qroutside:last-child {
    padding: 20px 12px 20px 6px;
  }
  .home-page-eeteu-questions .home-page-eeteu-qrinside {
    border-radius: 26px;
    padding: 35px 10px 30px 10px;
    min-height: 351px;
  }
  .home-page-eeteu-questions .home-page-eeteu-qrinside img {
    max-height: 135px;
  }
  .home-page-eeteu-qrinside p {
    font-size: 14px !important;
  }
  .mt-20m {
    margin-top: 20px;
  }
  .mtb-30 {
    margin: 15px 0;
  }
  .mt-30 {
    margin-top: 15px;
  }
  .home-page-eeteu-contact-us {
    text-align: center;
  }
  .home-page-eeteu p {
    font-size: 15px;
  }
  #videoSoundToggle img {
    max-width: 40px;
  }
}
@media screen and (min-width: 808px) and (max-width: 822px) {
  .img-responsive {
    margin: 0 auto;
  }
}

@media (min-width: 1280px) and (max-width: 2000px)  {
  .home-page-video {
    height: 424px;
  }
  .home-page .jumbotron {
    min-height: 424px;
  }
  #HPVideo {
    width: 100%;
  }
}
/*ai page*/
.artificial-intelligence {
  height: auto;
  margin-top: 66px;
  background: #252525;
}

.artificial-intelligence h3 {
  font-size: 25px;
  font-family: 'TL';
}
.artificial-intelligence p {
  padding-top: 20px;
  text-align: left;
  font-size: 17px;
}
.artificial-intelligence .hero-image {
  background: url(../images/ai-museums/01-timelooper-ai-driven-innovations.jpg) no-repeat center center #000000;
  height: 624px;
  position: relative;
  background-size: cover;
}
.artificial-intelligence .hero-text {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #b3a369;
  font-family: 'TL-demi';
}
.artificial-intelligence h1, .artificial-intelligence h2{
  white-space: pre-line;
  color: #fff;
  font-size: 50px;
  font-family: 'TL';
}
.artificial-intelligence h1 span, .artificial-intelligence h2 span{
  color: #ea0029;
  font-family: 'TL-demi';
}
.artificial-intelligence h3{
  color: #ffffff;
}
.artificial-intelligence .radius-30{
  border-radius: 30px;
}
.artificial-intelligence .ai-card-view h3{
  text-align: left;
  margin-top: 0;
}
.artificial-intelligence .ai-card-view {
  clear: both;
  margin-bottom: 60px;
}
.artificial-intelligence .ai-card-view h2{
  margin-bottom: 60px;
  margin-top: 0;
}
.fw-dark-01{
  background: #252525;
  padding-top: 60px;
}
.fw-dark-02{
  background: #1a1a1a;
  padding-top: 60px;
}
.fw-white-01{
  background: #fff;
  padding-top: 60px;
}
.ai-w-churchill{
  text-align: center;
  margin-top: 10px;
}
.ai-w-churchill h3, .ai-w-churchill p{
  text-align: center !important;
}
h3.explore-churchill {
  text-align: center!important;
  color: #b3a369;
  font-weight: normal;
  font-family: "TL";
  text-transform: uppercase;
  white-space: pre-line;
}
h2.ai-contact {
  font-family: 'TL';
  color: #000;
  font-size: 28px;
  white-space: pre-line;
}
h2.ai-contact span {
  color: #000;
}
.modal {
  padding: 0 !important; 
}

.modal .modal-dialog {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.modal .modal-content {
  height: auto;
  min-height: 100%;
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  .artificial-intelligence p {
    text-align: center;
  }
  .artificial-intelligence .radius-30 {
    margin: 0 auto;
  }
  .artificial-intelligence .ai-card-view h3 {
    text-align: center;
  }
}

@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
  .artificial-intelligence h3 {
    font-size: 24px;
  }
  .artificial-intelligence p {
    font-size: 15px;
  }
  .artificial-intelligence .hero-text {
    min-width: 80%;
  }
}
@media screen and (min-width: 808px) and (max-width: 822px) {
  .artificial-intelligence p {
    text-align: center;
  }
  .artificial-intelligence .radius-30 {
    margin: 0 auto;
  }
  .artificial-intelligence .ai-card-view h3 {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .artificial-intelligence .hero-image {
    height: 550px;
    background: url(../images/ai/timelooper-ai-immersive-storytelling.jpg) no-repeat 57% 39% #000000;
    background-size: 310%;
  }
  .artificial-intelligence h1, .artificial-intelligence h2 {
    white-space: inherit;
    font-size: 26px;
  }
  .artificial-intelligence .hero-text {
    top: 22%;
    width: 90%;
  }
  .artificial-intelligence h3 {
    font-size: 18px;
    margin-top: 30px!important;
    margin-bottom: 0;
  }
  .artificial-intelligence {
    margin-top: 30px;
  }
  .artificial-intelligence p {
    font-size: 13px;
  }
  .ai-card-view img {

  }
  .artificial-intelligence .ai-card-view {
    clear: both;
    margin-bottom: 30px;
  }
  .artificial-intelligence .ai-card-view h2 {
    margin-bottom: 30px;
    margin-top: 0;
  }
  .fw-dark-01{
    padding-top: 30px;
  }
  .fw-dark-02{
    padding-top: 30px;
  }
  .fw-white-01{
    padding-top: 30px;
  }
  .artificial-intelligence  .button-grp{
    max-width: 80%;
    margin: 0 auto;
  }
  .artificial-intelligence .mb-60 {
    margin-bottom: 30px;
  }
  .artificial-intelligence .mb-45 {
    margin-bottom: 30px;
  }
  .artificial-intelligence .mb-30m{
    margin-bottom: 30px;
  }
  .artificial-intelligence .pt-20 {
    padding-top: 0;
  }
  .ai-whurchill{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  h3.explore-churchill {
    margin-bottom: 20px;
  }
  .mb-0m{
    margin-bottom: 0!important;
  }
  .ai-w-churchill h3, .ai-w-churchill p {
    text-align: left !important;
  }
}
.download-form-info {
  color: #000000;
  font-size: 20px;
  padding: 10px;
}

.exdehome-h1-text {
  text-align: center;
  font-size: 59px;
  text-transform: uppercase;
  margin: 20px 0px;
}
.exdehome-h1-text span {
  display: block;
  font-size: 59px;
}
.exdehome-welcome-text-detail{
  color: #b3a369;
  font-size: 23px;
  margin: 10px 0;
  text-align: center;
}
.exdehome-museum-experience-image {

}
.exdehome-museum-experience-text p {
  color: #D2CAB6;
  font-size: 16px;
  padding: 0;
  line-height: 32px;
}
.exdehome-timelooper-icon-bg {
  background-image:url('../images/timelooper_icon_white_silhoutte-2.png');
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;
  min-height: 330px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  text-align: center;
  margin: 50px 0;
}
.exdehome-timelooper-icon-bg p{
  width: 100%;
  display: block;
  font-size: 28px;
}
.text-red {
  color: #D71F27;
}
.text-gold {
  color: #b3a369;
}
.text-gray {
  color: #ccc;
}
.text-light-gold {
  color: #D2CAB6;
}
.exdehome-shaping-the-future-of-museums p{
  line-height: 32px;
  font-size: 16px;
}
.exdehome-shaping-the-future-of-museums h2, .exdehome-crafting-complete-museum-solutions h2{
  font-size: 24px; 
}
.exdehome-shaping-the-future-of-museums h3, .exdehome-crafting-complete-museum-solutions h3{
  font-size: 16px; 
}
.exdehome-crafting-complete-museum-solutions p{
  line-height: 32px;
  font-size: 16px;
  color: #D2CAB6;
}
.ptb-40-auto {
  padding-top: 40px;
  padding-bottom: 40px;
}
.pb-20 {
  padding-bottom: 20px;
}
.case-studies-container a:hover span, .case-studies-container a:hover h4{
  color: #D71F27;
}
.exdehome-case-studies {
  font-size: 50px !important;
  font-family: "TL-demi";
  color: #D71F27;
  text-align: center;
}
/* Zoom In #1 */
.case-studies-container a img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.case-studies-container a:hover img{
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

.case-studies-card img{
  width: 100%;
}
.case-studies-card {
    min-height: 510px;
}
.case-studies-card h4{
  font-size: 16px;
  font-weight: bold;
  color: #B3A369;
  height: 30px;
  display: flex;
  align-items: center;
}
.case-studies-card p{
  color: #333333;
  font-size: 12px;
  line-height: inherit;
  margin-top: 10px;
  margin-bottom: 10px;
}
.case-studies-card .link-more {
  font-weight: bold;
  font-size: 16px;
  color: #B3A369;
  display: inline-flex;
  vertical-align: super;
}
.link-more:after{
  display: inline-block;
  content: '';
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  -webkit-mask: url(../images/arrow-2.svg) no-repeat 50% 50%;
  mask: url(../images/arrow-2.svg) no-repeat 50% 50%;
  margin: 0.1em 0 0 0.3em;
  width: 1.3em;
  height: 1.3em;
}
.checkmark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: red;
  stroke-miterlimit: 10;
  stroke-dashoffset: 0;
  margin: 0 auto;
}
.close {
  font-size: 40px;
  opacity: 1 !important;
}
#pdfPage.modal .modal-dialog {
    width: 80%;
    height: auto;
    margin: 0;
    padding: 0;
}
@media (max-width: 992px) {
  .exdehome-h1-text {
    font-size: 24px;
  }
  .exdehome-h1-text span {
    font-size: 24px;
  }
  .exdehome-timelooper-icon-bg {
    min-height: 180px;
    margin: 50px 0;
  }
  .exdehome-museum-experience-text p, .exdehome-shaping-the-future-of-museums p, .exdehome-crafting-complete-museum-solutions p {
    line-height: 26px;
    font-size: 14px;
  }
  .exdehome-case-studies.mb-45 {
    margin-bottom: 25px;
  }
  .case-studies-text {
    line-height: inherit !important;
  }
  .case-studies-card {
    min-height: inherit;
    margin-bottom: 25px;
  }
  .exdehome-case-studies{
    font-size: 30px!important;
  }
  #pdfPage.modal .modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
}



/* ai museums*/

html {
	scroll-behavior: smooth;
}

/* 2. Make nav sticky */
main.artificial-intelligence-museum > nav {
	position: sticky;
	top: 10rem;
  margin-bottom: 3rem;
	align-self: start;
}

/* 3. ScrollSpy active styles (see JS tab for activation) */
.artificial-intelligence-museum .section-nav li.active > a {
	color: #fff;
  font-weight: bold;
}

/* Sidebar Navigation */
.artificial-intelligence-museum .section-nav {
	padding-left: 0;
  padding-right: 10px;
}

.artificial-intelligence-museum .section-nav a {
	text-decoration: none;
	padding: .125rem 0;
	color: #D2CAB6;
	transition: all 50ms ease-in-out; /* 💡 This small transition makes setting of the active state smooth */
}

.artificial-intelligence-museum .section-nav a:hover,
.artificial-intelligence-museum .section-nav a:focus {
	color: #666;
}
.artificial-intelligence-museum h2 {
  text-align: center;
  color: #D71F27;
  font-size: 40px;
  font-weight: bold;
}
.artificial-intelligence-museum h3 {
  color: #B3A369;
  text-align: left;
  margin-top: 0;
  font-size: 23px;
  font-weight: bold;
}
.artificial-intelligence-museum p {
  padding: 10px 0;
  text-align: left;
  font-size: 16px;
}
.artificial-intelligence-museum .radius-30{
  border-radius: 30px;
}
.artificial-intelligence-museum span {
  font-weight: bold;
  color: #B3A369;
}
/** Poor man's reset **/
* {
	box-sizing: border-box;
}

.artificial-intelligence-museum ul, .artificial-intelligence-museum ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
.artificial-intelligence-museum li {
	margin-left: 0.5rem;
}

/** page layout **/
main.artificial-intelligence-museum {
	display: grid;
	grid-template-columns: 15em 1fr;
	max-width: 100em;
	width: 100%;
	margin: 0 auto;
}

/** enlarge the sections for this demo, so that we have a long scrollable page **/
.artificial-intelligence-museum section {
	padding-bottom: 2rem;
}
.artificial-intelligence-museum .section-nav a.ai-m-cat-name {
  font-size: 16px;
  font-weight: bold;
  color: #B3A369;
  margin-top: 10px;
  display: block;
}

.artificial-intelligence-museum ol li ul li {
  list-style-type: disc;
  font-size: 12px;
  margin-left: 16px;
}
.artificial-intelligence-museum section{
  scroll-margin: 80px 0 0 0;
}

.artificial-intelligence-museum-header {
  height: auto;
  margin-top: 66px;
  background: #252525;
}
.artificial-intelligence-museum-header .hero-image {
  background: url(../images/ai-museums/01-timelooper-ai-driven-innovations.jpg) no-repeat center center #000000;
  height: 624px;
  position: relative;
  background-size: cover;
}
.artificial-intelligence-museum-header .hero-text {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #b3a369;
  font-family: 'TL-demi';
  text-shadow: -1px 2px 1px rgba(0,0,0,0.34);
}
.artificial-intelligence-museum-header h3{
  color: #ffffff;
  font-size: 25px;
  font-family: 'TL';
}
.artificial-intelligence-museum-header h1 {
  white-space: pre-line;
  color: #fff;
  font-size: 50px;
  font-family: 'TL';
}
@media (max-width: 992px) {
  .artificial-intelligence-museum .section-nav {
    display: none;
  }
  main.artificial-intelligence-museum {
    display: block;
    grid-template-columns: inherit;
    max-width: inherit;
  }
  .artificial-intelligence-museum-header {
    margin-top: 55px;
  }
  .artificial-intelligence-museum h2 {
    font-size: 34px;
  }
  .artificial-intelligence-museum p {
    font-size: 15px;
  }
  .artificial-intelligence-museum h3 {
    font-size: 21px;
  }
  .artificial-intelligence-museum-header .hero-image {
    height: 430px;
    background: url(../images/ai-museums/01-timelooper-ai-driven-innovations.jpg) no-repeat 41% 39% #000000;
    background-size: 340%;
  }
  .artificial-intelligence-museum-header .hero-text {
    width: 90%;
    top: 23%;
  }
  .artificial-intelligence-museum-header h3 {
    font-size: 20px;
  }
  .artificial-intelligence-museum-header h1 {
    font-size: 31px;
  }
  main.artificial-intelligence-museum {
    width: 90%;
  }  
}

/*destination ai*/
.text-white-50-c {
  font-size: 50px;
  color: #FFFFFF;
}
.httd-hero-image {
  /*background: url(../images/ai-museums/01-timelooper-ai-driven-innovations.jpg) no-repeat center center #000000;*/
  background: url(../images/hospitality-travel/hospitality&travel-top.jpg) no-repeat center center #000000;
  height: 524px;
  position: relative;
  background-size: cover;
  text-align: center;
  max-width: 1600px;
  float: none;
  margin: auto;
}
.card-view {
}
.card-view-icon {
  height: 87px;
  width: 87px;
  margin: -47px auto 0;
  padding: 16px;
  background: #ffffff;
  border-radius: 50px;
}
.card-view-steps {
  letter-spacing: normal;
  font-size: 1.875rem;
  text-transform: none;
  margin: 18px auto 0;
  padding: 5px;
}
.card-view-title {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 700;
  padding: 5px;
  margin: 0;
}
.card-view-text {
  font-style: normal;
  margin: 29px 7px 0;
}
.card-view-container {
  margin-left: 0px;
  margin-right: 0px;
  border: solid 6px #D71F27;
  min-height: 330px;
  border-radius: 20px;
}
.destination-ai .jumbotron {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  min-height: 524px;
  border-radius: 0 !important;
  margin: 0px;
  padding: 0;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: #000000;
}

.destination-ai-h1-text {
  text-align: center;
  font-size: 48px;
  text-transform: uppercase;
  margin: 20px 0px;
}
.destination-ai-h1-text span {
  display: block;
  font-size: 78px;
}
.destination-ai-welcome-text-detail {
  color: #b3a369;
  font-size: 23px;
  margin: 10px 0;
  text-align: center;
}


@media (max-width: 992px) {
  .httd-hero-image {
    height: 320px;
    background: url(../images/hospitality-travel/hospitality&travel-top.jpg) no-repeat 43% 39% #000000;
    background-size: 240%;
  }
  .card-view-container {
    min-height: 250px;
  }
  .text-white-30-c {
    font-size: 19px;
    margin-bottom: 0;
  }
  .text-white-50-c {
    font-size: 30px;
    color: #FFFFFF;
  }
  .destination-ai-h1-text {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin: 20px 0px;
  }
  .destination-ai-h1-text span {
    display: block;
    font-size: 38px;
  }
  .destination-ai-welcome-text-detail {
    color: #b3a369;
    font-size: 13px;
    margin: 10px 0;
    text-align: center;
  }
  .destination-ai .jumbotron {
    height: auto;
    min-height: auto;
  }
}