@charset "UTF-8";

@font-face {
  font-family: "Gotham Pro";
  src: url("../css/fonts/GothamPro-Black.eot");
  src: url("../css/fonts/GothamPro-Black.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/GothamPro-Black.woff2") format("woff2"),
    url("../css/fonts/GothamPro-Black.woff") format("woff"),
    url("../css/fonts/GothamPro-Black.ttf") format("truetype"),
    url("../css/fonts/GothamPro-Black.svg#GothamPro-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("../css/fonts/GothamPro-Bold.eot");
  src: url("../css/fonts/GothamPro-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/GothamPro-Bold.woff2") format("woff2"),
    url("../css/fonts/GothamPro-Bold.woff") format("woff"),
    url("../css/fonts/GothamPro-Bold.ttf") format("truetype"),
    url("../css/fonts/GothamPro-Bold.svg#GothamPro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("../css/fonts/GothamPro-Medium.eot");
  src: url("../css/fonts/GothamPro-Medium.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/GothamPro-Medium.woff2") format("woff2"),
    url("Gotham-fonts/GothamPro-Medium.woff") format("woff"),
    url("../css/fonts//GothamPro-Medium.ttf") format("truetype"),
    url("../css/fonts/GothamPro-Medium.svg#GothamPro-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("../css/fonts/GothamPro-Light.eot");
  src: url("../css/fonts/GothamPro-Light.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/GothamPro-Light.woff2") format("woff2"),
    url("../css/fonts/GothamPro-Light.woff") format("woff"),
    url("../css/fonts/GothamPro-Light.ttf") format("truetype"),
    url("../css/fonts/GothamPro-Light.svg#GothamPro-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("../css/fonts/GothamPro.eot");
  src: url("../css/fonts/GothamPro.eot?#iefix") format("embedded-opentype"),
    url("../css/fonts/GothamPro.woff2") format("woff2"),
    url("../css/fonts/GothamPro.woff") format("woff"),
    url("../css/fonts/GothamPro.ttf") format("truetype"),
    url("../css/fonts/GothamPro.svg#GothamPro") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #093b92;
  z-index: 99;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
  font-family: "Gotham Pro", sans-serif;
}

button {
  border: none;
  background: none;
  outline: none;
}

/* LAYOUT
------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  height: 100%;
}

figure {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  cursor: pointer;
}

video {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  opacity: 0;
}
/* div#video-area {
  z-index: 9;
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
} */

svg:not(:root) {
  overflow: hidden;
}

/******** css start here *********/
.play-button {
    color: #3D85C6;
    z-index: 10;
    font-size: 28rem;
    line-height: 1.14em;
    cursor: pointer;
    position: absolute;
    top: 76%;
    left: 94%;
    height: 55rem;
    width: 55rem;
    pointer-events: none;
}
.open-popup .play-button {
  right: 90rem;
}

button.play-button:hover {
  background-image: url(../images/play-pause-button.svg) !important;
  border-radius: 40rem;
  background-size: 82% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
}

.play-button:focus {
  outline: none;
}

.frames {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
}

#main {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
}

.root {
  font-size: 0.052086vw;
}

.f-main {
  position: absolute;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8, 0.8);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.play-button.play-on-click {
  pointer-events: visible;
}

.play-button:before {
    content: " ";
    background-image: url(../images/play-img.svg);
    position: absolute;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    width: 55rem;
    height: 55rem;
}

button.play-button.play-on-click:hover img {
  display: none;
}

.play-button.play-on-click:before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-image: unset;
}

p {
  font-family: "Gotham Pro", sans-serif;
  color: #333333;
  font-weight: normal;
  font-size: 8rem;
  line-height: 10rem;
  margin-bottom: 0rem;
}

a:hover,
a:focus {
  text-decoration: none;
}

.middle-align {
  vertical-align: middle;
  display: table-cell;
  text-align: center;
}

body {
  overflow: hidden;
  background-color: #DCCFC4;
}

img {
  width: 100%;
}
/* play audio */

#player-container {
  position: absolute;
  left: 17.5%;
  z-index: 9999;
  padding-top: 3rem;
}
.home-header #player-container {
  left: 13.5%;
}
audio#my_audio,
audio#click-sound {
  display: none;
}

.click-area {
  z-index: 9;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#canvas-popup {
  /* position: absolute;
  top: 0; */
  background-color: #ffffffcf;
}

#canvas-zoom_in {
  position: absolute !important;
  top: 0 !important;
  width: 100% !important;
  height: auto !important;
}
/* canvas {
  display: flex;
} */
/* #canvas-hotspot {
  position: absolute !important;
  top: 0 !important;
  width: 100% !important;
  height: auto !important;
} */
/* CSS for the modal dialog */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  overflow: hidden;
}

.modal-content {
  position: relative;
  height: 100%;
}

/* CSS for the close button */
.close, .img-close {
    position: absolute;
    cursor: pointer;
    z-index: 999;
    opacity: 1;
    transition: 0.3s ease;
    width: 54.15rem;
    height: 54.15rem!important;
}
.img-close {
    transform: scale(0.61);
    bottom: 1%;
    right: 3%;
    z-index: 99999 !important;
}
.close img, .img-close img{
    position: relative;
}
.play-img, .play-img img {
  width: 75rem;
  height: 75rem;
}

button#popup-button {
  border: none;
  background: white;
  outline: none;
  position: absolute;
  top: 10%;
  font-size: 20rem;
  z-index: 999;
}
/* .vertical #replay-button {
  left: 40.5%;
} */
#replay-button {
  left: 10%;
  width: 55rem;
  height: 55rem;
  top: 90%;
}

/* popup screen end ************************************************/

#frames.move-top {
  z-index: 9;
}

/* zoom in css*/
#zoom-item {
  width: 66%;
  height: 66%;
  float: left;
  overflow: hidden;
  display: none;
}

.zoomItem {
  position: absolute;
  animation: fadeIn linear 1.4s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/* hotspot points css start*/

.BornHS__Wrapper .BornHS__Input {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  width: 0;
  z-index: -1;
}

.BornHS__Wrapper .BornHS__Input,
.BornHS__Wrapper .BornHS__Label {
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  transition: all 300ms ease !important;
  width: fit-content !important;
}

.BornHS__Modal__Input.button-purple .BornHS__Label {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.main-page .top-logos {
  height: 90rem;
}
#click-play {
  display: none;
}

.BornHS__Wrapper .BornHS__Label {
  width: fit-content !important;
}

.BornHS__Wrapper.BornHS__Blur .BornHS__Input {
  display: none;
}

.BornHS__Wrapper.BornHS__Blur .BornHS__Input,
.BornHS__Label {
  opacity: 0.5;
  pointer-events: none;
}

.BornHS__Wrapper.BornHS__Blur .BornHS__Input:checked {
  display: inline-block;
}

.BornHS__Wrapper.BornHS__Blur .BornHS__Input:checked,
.BornHS__Label {
  opacity: 1;
  pointer-events: auto;
}

.BornHS__Modal,
.BornHS__Wrapper {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

body.noScroll,
html.noScroll body {
  margin-right: 0px;
  overflow-x: hidden !important;
}

.noScroll {
  overflow: hidden !important;
}

.box-text {
  display: none;
  position: absolute;
  bottom: 0%;
  padding: 10rem;
  background-color: #ffffff45;
  width: 100%;
}

.box-text p,
.box-text h3 {
  color: #ffffff;
}

h3.head-boxes {
  font-family: "Gotham Pro", sans-serif;
  font-size: 12rem;
  margin-bottom: 5rem;
}

/* .hotspot-area {
  width: 50rem;
  height: 50rem;
  background-color: red;
  color: #ffffff;
} */

.BornHS__Modal__Input {
  position: absolute;
  left: 21%;
  top: 33%;
}

.open-hotspot .play-button {
  transform: scale(0.5003);
  top: -7rem;
  right: 35rem;
}

.BornHS__Wrapper.wrapper-index {
  z-index: 99;
}

#bg-background {
  position: absolute;
  top: 0;
}
/* .click-area {
  background-color: #00000080;
} */
div#frames {
  top: 50%;
  transform: translate(0, -50%);
  z-index: 9;
  overflow: hidden;
}
.vertical .img-close {
  right: 37%;
}
#canvas-activ {
  background-color: #000000;
}
/* web page for navigation */
.container {
  max-width: 1680rem;
  width: 100%;
  padding-top: 40rem;
  padding-bottom: 40rem;
  padding-left: 0;
  padding-right: 0;
}
.heading-inner h1 {
  font-size: 48rem;
  font-weight: 500;
  line-height: 1.1em;
}

h1 {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 900;
  font-size: 64rem;
  line-height: 72rem;
  color: #151515;
  margin-bottom: 30rem;
  font-weight:500;
}

.select-use-case {
    width: 100%;
    display: flex; 
    flex-wrap: wrap;
}
.in-box:hover {
  -webkit-box-shadow: 0px 5px 27px -15px rgb(0 0 0 / 35%);
  -moz-box-shadow:0px 5px 27px -15px rgba(0, 0, 0, 0.35);
  box-shadow:0px 5px 27px -15px rgb(0 0 0 / 35%);
  transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
}
.in-box {
  width: 33% !important;
  margin-right: 5rem;
  padding: 20rem 20rem 25rem 20rem;
  margin-bottom: 15rem;
  cursor: pointer;
}
.in-box .img-left {
  border: 0rem solid #cdcdcd;
}
.in-box h6 {
  color: #3D85C6;
  letter-spacing: 0.2rem;
  font-size: 18rem;
  line-height: 23rem;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  margin-top: 20rem;
  margin-bottom: 15rem;
}
a.explore-btn.explore-home {
  z-index: 2;
  display: inline-flex;
  font-size: 20rem;
  font-weight: 500;
}
.in-box .explore-btn {
  font-size: 18rem;
}
.explore-btn:hover {
  color: #3ccf4e;
  transition: .2s ease-in;
}
.explore-btn {
  color: #ffffff !important;
  border-radius: 1rem;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  display: inline-block;
  font-size: 20rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.explore-btn.explore-home:hover {
  transition: 0.3s ease-in-out;
  background-color: #3D86C6 !important;
}

.explore-btn {
  background: #3D86C6 !important;
  padding: 10rem 20rem;
  color: #ffffff !important;
  border-radius: 2rem;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  display: inline-block;
  margin-top: 25rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.bottom-ar {
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
  position: relative;
}
.in-box:hover .explore-btn::before {
  background-position: 32rem -32rem;
  transition: all 0.2s ease-in;
}
a.explore-btn.explore-home img {
  width: auto !important;
}
.card-title {
  text-decoration: none;
  background-size: 0 1.4rem;
  background-position: 0 95%;
  -webkit-transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s!important;
  -moz-transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s!important;
  -o-transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s!important;
  transition: background-size .25s cubic-bezier(.785,.135,.15,.86) 0s!important;
  background-image: linear-gradient(to right,#3CCF4E 0,#3CCF4E 100%)!important;
  padding: 0 0 1rem;
  background-repeat: no-repeat;
  cursor: pointer;
}

img.arrow-white {
  width: auto;
  padding-left: 18rem;
  position: relative;
}
h5.card-title {
  font-size: 20rem;
  line-height: 27rem;
  font-family: 'Gotham Pro', sans-serif;
  color: #151515;
  margin-bottom: 0rem;
  font-weight: 400;
}
.top-logos {
  position: relative;
  top: 0;
  z-index: 9;
  height: 80rem;
  vertical-align: middle;
  align-items: center;
  display: flex;
}
.explore-btn.explore-home:hover {
  transition: 0.3s ease-in-out;
  background-color: #216CAE !important
}
.row {
  margin-right: 0px;
  margin-left: 0px;
}
/* .owl-nav{
  justify-content: space-between;
  position: relative;
  display: flex;
  width: 100%;
}
.owl-nav button {
  background-color: #ea7a26;
  width: 55rem;
  height: 55rem;
  vertical-align: middle;
  display: flex;
  color: #fff;
  font-size: 60rem;
  justify-content: center;
  border: 1px solid #ea7a26;
  border-radius: 35rem;
  transition: all 0.3s ease-in-out;
}
.owl-nav button:hover {
  background-color: #fff;
  color: #ea7a26;
}
.owl-nav button:focus {
outline: 0px;
}
.owl-nav span {
  font-family: 'Gotham Pro', sans-serif;
  line-height: 0.68em;
  font-weight: 300;
}
.owl-nav button.owl-prev {
  padding-right: 10rem;
}
.owl-nav button.owl-next {
  padding-left: 10rem;
} */
.heading-inner {
  padding-left: 0rem;
  /* border-bottom: 1px solid #727272; */
  /* margin-bottom: 30rem; */
}

header {
  border-bottom: 1px solid #eeecec;
  padding-left: 40rem;
  padding-right: 40rem;
  width: 100%;
  z-index: 99;
  background: linear-gradient(180deg, #000000 -62.05%, rgba(0, 0, 0, 0.305887) 17.81%, rgba(0, 0, 0, 0) 104.92%);
}


.in-anime {
  animation: animeIn;
  animation-duration: 0.8s;
  visibility: visible;
}
@keyframes animeIn {
  0% {
    opacity: 0;
    transform: scale3d(.8, .8, .8);
}

50% {
    opacity: 1;
}
}
.home-video {
  overflow-y: scroll;
}
.heading-inner span{
    color: #3ccf4e!important;
}
/* web page for navigation ends*/

/***************** hotspots start **********************/
.hotspot-area {
  z-index: 9;
  cursor: pointer;
  display: flex;
}
.hotspot-area p {
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  border-radius: 50rem;
  padding: 0px;
  cursor: pointer;
  margin-left: 0rem;
  color: #ffffff;
  padding: 8rem 16rem;
  font-size: 14rem;
  line-height: 1.3em;
  display: flex;
  padding-left: 40rem;
  font-family: "Gotham Pro";
  position: absolute;
  left: -2%;
}
.hotspot-area img {
  z-index: 2;
   cursor: pointer;
}
#bg-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 27.5%;
  margin: auto;
  z-index:99;
}
#text-container {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
#text-container p {
  background-color: #ffffff;
  width: 15%;
  height: fit-content;
  border-color: transparent;
  box-shadow: rgb(214 214 214 / 83%) 2px 2px 5px 2px;
  -webkit-box-shadow: rgb(214 214 214 / 83%) 2px 2px 5px 2px;
  -moz-box-shadow: rgba(214, 214, 214, 0.83) 2px 2px 5px 2px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20rem 15rem;
  text-align: left;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-name: trans-in;
  font-size: 14rem;
  line-height: 1.3em;
  z-index: 99;
  transform-origin: center;
}
#text-image {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
#text-image p {
    /* background-color: #ffffff; */
    width: 100%;
    height: fit-content;
    -moz-box-shadow: rgba(214, 214, 214, 0.83) 2px 2px 5px 2px;
    border-radius: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: 17%;
    padding: 20rem 15rem;
    text-align: left;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-name: trans-in;
    color: #fff;
    font-size: 16rem;
    line-height: 1.3em;
    z-index: 99;
    transform-origin: center;
}
@keyframes trans-in {
  0% {
    opacity: 0;
    transform: scale3d(0.7, 0.7, 0.7);
}

100% {
    opacity: 1;
}
}
img.crs-btn {
position: absolute;
right: 1%;
width: 35rem;
cursor: pointer;
z-index: 99999;
background: #fff;
margin-top: 8rem;
top: -5%;
}
.crs-btn{
display: none;
}
/***************** hotspots end **********************/
/***************** textarea start **********************/
.text-area {
position: absolute;
}
.link-area {
cursor: pointer;
position: absolute;
z-index: 9;
}
/***************** textarea end **********************/

/***************** Link iframe popup **********************/
#iframe-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(0 0 0 / 80%);
display: none;
z-index: 99;
}

#popup-iframe {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
height: 80%;
border: 0px;
}

#close-iframe {
position: absolute;
top: 20rem;
right: 15rem;
width: 50rem;
cursor: pointer;
border-radius: 50rem;
background-color: #f47d32;
padding: 15rem;
transition: 0.3s ease-in;
}
#close-iframe:hover {
background-color: #c45a18;
}
/***************** Link iframe popup end**********************/
/***************** Subtitle**********************/
.subtitle-area {
  position: absolute;
  z-index: 9;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  margin: auto !important;
  left: 0 !important;
  right: 0;
  padding: 0px !important;
  text-align: center;
}
/***************** Subtitle end**********************/
/***************** Image**********************/
.image-area {
position: absolute;
}
#bg-background {
opacity: 0;
}
/***************** Image end**********************/
/*****************Video in video**********************/
.picture-area video {
opacity: 1;
width: 100%;
height: 100%;
}

.picture-area {
position: absolute;
}
/*****************Video in video end**********************/

/*****************Video questions**********************/
.question-area {
transition: all 0.3s ease-in-out ;
animation: fade 0.7s;
}
.question-area p {
  font-size: 24rem;
  line-height: 1.2em;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 600;
}
.question-area ul {
  padding-left: 5rem;
  padding-top: 15rem;
}
.question-area ul li {
  font-size: 18rem;
  line-height: 1.4em;
  margin-bottom: 8rem;
  vertical-align: middle;
  display: flex;
}
.question-area ul li {
  list-style: none;
}
.question-area ul li label {
  padding-left: 15rem;
  cursor: pointer;
}
.question-area input[type="radio"] {
  width: 22rem !important;
  height: 22rem !important;
  cursor: pointer;
}
button.next-btn {
  font-size: 20rem;
  line-height: 1.2em;
  font-weight: 600;
  position: absolute;
  right: 20rem;
  bottom: 20rem;
  cursor: pointer;
  color:#fff;
  background-color: #ea7a26;
  padding: 10rem 20rem;
  border-radius: 2rem;
  transition: all 0.3s ease-in-out;
}
button.next-btn:hover {
  background: #dc6d19;
}
button:focus {
  outline: 0px dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
}
.form-area {
  position: absolute;
  background-color: #ffffff;
  display: grid;
  z-index: 9;
}
#user-info-form label {
  font-size: 20rem;
  line-height: 1.2em;
  color: #000000;
}
#user-info-form input {
  width: 100%;
  padding: 5rem 10rem;
  font-size: 20rem;
  line-height: 1.2em;
  margin-bottom: 10rem;
  margin-top: 10px;
  border: 1px solid #9E9E9E;
}
#user-info-form input::placeholder {
  font-size: 18rem;
}

#user-info-form input:focus {
  outline: 1px dotted;
  outline: 1px auto #ea7a26 !important;
}
#submit-user-info {
  font-size: 20rem;
  background-color: #ea7a26;
  color: #ffffff;
  margin-top: 10rem;
  cursor: pointer;
  border: 0px solid !important;
}
#submit-user-info:hover {
  background: #dc6d19;
}
.next-btn.inactive-btn {
  background-color: #ababab; 
  cursor: not-allowed; 
  pointer-events: none;
}
/*****************Video questions end**********************/

/*shweta's css*/
.top-remote-ar img {
  width: 55rem !important; 
 }
 .top-remote-ar {
   position: absolute;
   left: 14%;
   padding-left: 0rem;
   cursor: pointer;
 }
 .top-main-logo {
   position: absolute;
   right: 0rem;
   cursor: pointer;
 }
 .top-sound  img {
   width: 50rem !important; 
  }
  #player-container #play-pause {
   cursor: pointer;
   text-indent: -999999px;
   height: 60rem;
   width: 60rem;
   background-image: url(../images/audio-off.svg);
   background-color: #fff;
   border-radius: 3rem;
   text-align: center;
   line-height: 45rem;
   background-size: 45rem;
   background-repeat: no-repeat;
   background-position: center;
 }
 
 .pause {
   background-image: url(../images/audio-on.svg) !important;
 }
 
 .play {
   background-image: url(../images/audio-off.svg);
 }
 .top-main-logo img {
  width: 50rem;
}
/* .click-area{
background-color: rgb(0 0 0 / 55%);
} */
 .click-area.click-btn:before {
  content: "";
  background-image: url(../images/click.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 72rem;
  height: 84rem;
  background-size: contain;
  top: 100%;
  left: 50%;
}
 div#click_2:after,div#click_3:after,div#click_5:after,div#click_41:after, div#click_43:after, div#click_45:after,div#click_54:after,div#click_56:after,div#click_70:after{
   display: none;
 }
 .main-home {
  padding-left: calc((100% - 1600px) / 2) !important;
  width: 100%;
}
.main-con {
  padding-top: 90rem;
  padding-right: 17%;
}
.main-con p {
  font-size: 28rem;
  line-height: 38rem;
  font-family: "Gotham Pro", sans-serif;
  padding-bottom: 20rem;
}
.main-con h5 {
  font-size: 32rem;
  color: #3D85C6;
  line-height: 42rem;
  padding-bottom: 20rem;
}
.home-video video {
  height: 100%;
  width: 100%;
  opacity: 1;
}
.es-heading h2 {
  font-size: 36rem;
  color: #3D85C6;
  line-height: 44rem;
  padding-bottom:50rem !important;
  font-weight: 500;
}
.es-heading {
  padding-right: 25% !important;
}
.inner-head h3 {
  font-size: 26rem;
  font-weight: 500;
  line-height: 32rem;
  color: #1E1E1E;
  padding-bottom: 20rem;
}
.es-subtitle h5 {
  font-size: 18rem;
  line-height: 24rem;
  color: #000000;
  font-weight: 500;
  padding: 20rem 0 10rem 0;
}
.box-area {
  padding-bottom: 15rem;
  padding-left: 0rem;
  padding-right: 0rem;
  margin-bottom:15rem;
}
h6.es-smtext {
  font-size: 14rem;
  line-height: 20rem;
  font-weight: 500;
  color: #3D86C6;
}
.es-coltext .es-subtitle h5 {
  padding: 7rem 0 10rem 0;
}
.half-area.left.cf {
  padding-bottom: 40rem;
}
.es-subtitle h5:hover {
  color: #3D86C6;
  font-weight: 700;
  text-decoration: underline;
}
.es-coltext .es-subtitle h5 {
  font-weight: 400;
}
.es-coltext .es-subtitle h5:hover {
  font-weight: 700;
}
#back_btn{
  z-index: 10;
  position: absolute;
  cursor: pointer;
  bottom: 16.5%;
  right: 120rem;
  width: fit-content;
  background-color: #EA7926;
  padding: 6rem 15rem;
  border-radius: 3rem;
  border: 1px solid #EA7926;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}
#back_btn:hover{
  background-color: #ffffff;
  color: #EA7926;
  border: 1px solid #EA7926;
}
#back_btn:hover a{
  color: #EA7926;
}
div#back_btn a {
  font-size: 20rem;
  color: #ffffff;
  line-height: 27rem;
  font-family: 'Gotham Pro', sans-serif;

}
.es-col1 {
  padding-left: 0;
  border-right: 1px solid #E1E1E1;
  padding-right: 60rem;
}
.listText li {
  font-size: 16rem;
  line-height: 24rem;
  font-weight: 400;
  padding-bottom: 40rem
}
.listText li a{
  color: #000000;
}
.listText li a:hover{
  color: #3D86C6;
  font-weight: 700;
  text-decoration: underline;
}
.listText ul {
  padding-left: 20rem !important;
}
.listText li::marker {
  font-size: 25rem;
  color: #3D86C6;
}
.es-col2 .col-md-12.col-sm-12.inner-head, .es-col3 .col-md-12.col-sm-12.inner-head {
  padding-left: 0;
}
.select-cases .es-heading h2 {
  padding-bottom: 30rem !important;
}
.es-col2 {
  padding: 0 60rem 0rem 60rem;
  border-right: 1px solid #E1E1E1;
}
.es-col2 .col-md-12.iconText, .es-col3 .col-md-12.listText
 {
  padding: 0;
}
.es-col3 {
  padding: 0 60rem 0rem 60rem;
  border-right: 1px solid #E1E1E1;
}
.es-heading.col-md-12 {
  padding-left: 0px !important;
}
.inner-box:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.inner-box img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease
}
.inner-box{
  overflow: hidden;
}
.click-area:hover::after {
 opacity: 0;
}
.click-area.back-style:hover .follower__circle {
  opacity: 0;
}

.follower, .followerPlay {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  cursor: none;
  transition: transform .2s ease-out;
  z-index: 9999;
}
.click-area .follower .follower__circle {
  border: 0 solid transparent;
  color: #000;
  font-family: 'biennale black',Sans-serif;
  font-weight: 700;
}
.follower .follower__circle, .followerPlay .follower__circlePlay {
  transform: translate(-50%,-50%);
  width: 110rem;
  height: 100rem;
  border: 1px solid transparent;
  transition: width .2s ease-out,height .2s ease-out;
  font-size: 0!important;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: transparen;
}
.follower__circle {
  opacity: 0;
}
.click-area:hover .follower__circle {
  opacity: 0;
}

.custom-cursor {
  position: absolute;
  pointer-events: none; /* Allow mouse events to pass through */
}
.click-area:hover:after {
  background-image: none; 
}
#click_7:after,#click_8:after{
 right: -10%;
}
.click-area.clickhover:after{
  display: none;
}
#player-container #play-pause:hover, .top-remote-ar:hover {
  animation: zoom-in-zoom-out 1.5s infinite !important;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
}
50% {
    transform: scale(1.09, 1.09);
}
100% {
    transform: scale(1, 1);
}
} 
.suc-btn {
  font-size: 18rem !important;
  line-height: 26rem !important;
}
.skip-c:before {
  content: " ";
  background-image: url(../images/skip.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 50rem;
  height: 65rem;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  /* border-radius: 3rem; */
}
.skip-c:hover::before {
  content: " ";
  background-image: url(../images/skip-hover.svg);
}
.back-style:before {
  content: " ";
  background-image: url(../images/back-color.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 60rem;
  height: 60rem;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  /* border-radius: 3rem; */
}
.back-style:hover::before {
  content: " ";
  background-image: url(../images/back-hover.svg);
}
.back-style:after,.skip-c:after {
  display: none;
}
.back-style {
  top: 77.5% !important;
  right: 112rem !important;
  left: unset !important;
  cursor: pointer;
}
.es-col1 .col-md-12.col-sm-12.inner-head {
  padding-left: 0 !important;
}
.box-area:hover {
  transform: translate3d(1px, 0px, 1px, 0px);
  box-shadow: 0px 7px 20px -6px rgb(0 0 0 / 25%);
  transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
}
.jv-inner-box {
    padding: 0 15rem 0 15rem;
}
.gif-img {
  display: none;
}
.in-box:hover .gif-img {
  display: block;
}
.in-box:hover .img-left {
  display: none;
}
#video-hov {
  opacity: 1 !important;
  position: relative;
}
.remote-ar-logo {
  width: 235rem;
  left: 0;
  position: relative;
}
.remote-ar-logo.inner-pg {
  left: 0px;
}
.tab-pane {
  width: 645rem;
  position: relative;
  left: -4%;
}
.jv-tav-con li.nav-item a {
  font-size: 18rem;
  line-height: 27rem;
  background-color: #3D86C6;
  margin: 5rem 9rem;
  border-radius: 3rem;
  color: #ffffff;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border: 0px solid !important;
  cursor: pointer;
  padding: 10rem 15rem;

}
.jv-tav-con li.nav-item:first-child a {
  margin-left: 0px !important;
}

.jv-tav-con .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: 0px solid !important;
}
.jv-tav-con li.nav-item a:hover {
  background-color: #F47D32;
  color: #ffffff;
}
 .nav-link.active {
  background-color: #F47D32 !important;
  color: #ffffff !important;
}
.nav-tabs {
  border-bottom: 0px solid #dee2e6 !important;
}
.jv-tav-con {
  width: 700rem;
  margin: auto;
  margin-top: 5% !important;
}
.text-area {
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.use1, .use2, .use3 {
  display: none;
}

.click-area.yes-click:hover {
  border-radius: 6rem;
  box-shadow: 0 0 20rem 5rem #B0B320 inset, 0 0 3rem 7rem #E1E5AC;
}
.click-area.no-click:hover {
  border-radius: 6rem;
  box-shadow: 0 0 20rem 5rem #E65D4D inset, 0 0 3rem 7rem #F1BCBC;
}
.click-area.blue-click:hover {
  border-radius: 6rem;
  box-shadow:0 0 20rem 4rem #F2F2F3 inset, 0 0 3rem 7rem #3D85C660;
}
.usersnap{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.main-con a.explore-btn.explore-home{
  z-index: 99;
  position: relative;
}
#feedbackButton {
  font-size: 20rem;
  position: fixed;
  right: -34rem;
  top: 50%;
  z-index: 99999999;
  background: #f47d32;
  padding: 10px;
  transform: rotate(270deg);
  color: #ffffff;
  cursor: pointer;
  font-family: "Gotham Pro", sans-serif;
}
#feedbackButton.feedback-btn {
  right: -68rem;
  top: 52%;
}
.home-btn {
  background-image: url(../images/home.svg) !important;
  border-radius: 40rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  transition: 0.2s ease-in;
}
.home-btn:hover {
  background-image: url(../images/home-hover.svg) !important;
}

.full-screen-btn {
  background-image: url(../images/full.svg) !important;
  border-radius: 40rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  left: 6.2%;
  top: 90%;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  position: absolute;
  width: 55rem;
  height: 55rem;
  transition: 0.2s ease-in;
}
.full-screen-btn:hover {
  background-image: url(../images/full-hover.svg) !important;
}
.full-screen-btn:focus {
  outline: 0px dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
}
#replay-button .replay-hov {
  opacity: 0;
  transition: 0.2s ease-in;
}
#replay-button:hover .replay-hov {
  opacity: 1;
}
#replay-button:hover .replay {
  opacity: 0;
}
.button-r {
  position: absolute;
}
.disable {
  opacity: 0.5;
  pointer-events: none;
}
.back-btn {
  background-image: url(../images/back.svg) !important;
  border-radius: 40rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  transition: 0.2s ease-in;
}
.next-btn {
  background-image: url(../images/next.svg) !important;
  border-radius: 40rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  transition: 0.2s ease-in;
}
.back-btn:hover {
  background-image: url(../images/back-hov.svg) !important;
}
.next-btn:hover {
  background-image: url(../images/next-hov.svg) !important;
}

/***** index css***/
#retail-index {
  padding: 30rem 40rem 30rem 40rem;
}
.retail-index h2 {
  font-size: 128rem;
  color: #ffffff;
  line-height: 1.2em;
  font-family: "Gotham Pro", sans-serif;
  font-weight: 300;
 text-transform: uppercase;
}
.retail-index h3 {
  margin-top: 20rem;
  margin-bottom: 50rem;
  font-size: 34rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2em;
}
.retail-index a {
  border: 1px solid #EA7926;
  border-radius: 50rem;
  padding: 5rem 20rem;
  color:unset;
}
#retail-index .container.mt-5 {
  max-width: 100%;
  padding-left: 0;
}
.col-md-6.lft-img {
  padding: 0;
}

#retail-index .card {
  background-image: url(../images/card-bg-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  padding: 120rem 80rem;
  border-radius: 80rem;
  background-color: unset;
  transition: 0.5s;
  height: 100%;
  left: -30rem;
    width: 104%;
}
p.card-text {
  font-size: 38rem;
    color: #ffffff;
    line-height: 1.2em;
    padding-right: 90rem;
}
img.card-icon {
  width: 140rem;
}
.logo-right img {
  max-width: 50rem;
}
img.card-icon {
  margin-bottom: 25rem;
}
.retail-h2 {
  position: relative;
}
img.retail-arrow-icon {
  width: 40rem !important;
  position: absolute;
  top: 58rem;
  left: 272rem;
}
button.btn.btn-primary.reatil-circle-btn {
  font-size: 18rem;
  line-height: 1.2em;
  font-family: 'Gotham Pro', sans-serif;
  padding: 37rem 15rem;
  border-radius: 50%;
  background-color: #3D86C6;
  font-weight: 500;
  position: absolute;
  top: -70rem;
  right: -70rem;
  animation: ripple 2.5s linear infinite;
  transition: all 0.7s ease;
}
button.btn.btn-primary.reatil-circle-btn:hover {
  background-color: #ffffff;
  color: #3D86C6;
  /* transform: scale(1.2); */
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(61,134,198, 0.5),
      0 0 0 5px rgba(61,134,198, 0.5);
  }
  50% {
    box-shadow: 0 0 0 0 rgba(61,134,198, 0.5),
      0 0 0 16px rgba(61,134,198, 0.5);
  }
    100% {
    box-shadow: 0 0 0 0 rgba(61,134,198, 0.5),
      0 0 0 5px rgba(61,134,198, 0.5);
  }
}
.card-body {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.col-md-6.index-right {
  padding: 0 !important;
  position: relative;;
}
/* #retail-index .card:hover {
  background-image: url(../images/card-bg-hover-img.png);
  background-size: cover;
  background-repeat: no-repeat;
} */
.lft-img video {
  opacity: 1;
  width: 100%;
  position:unset;
  border-radius: 36rem;
}
.lft-inner h4 {
  font-size: 32rem;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20rem;
}
.lft-inner h2, .slide-eleven h2 {
  font-size: 52rem;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 400;
  margin: 15rem 0 30rem 0;
  text-transform: uppercase;
}
.slide-four {
  padding: 100rem 40rem 0rem;
}
.col-md-6.lft-col {
  padding: 0 120rem 0 0 !important;
}
.lft-inner p {
  font-size: 28rem;
  line-height: 1.3em;
  color: #ffffff;
  margin: 0rem 0;
  font-weight: 400;
}
.rgt-inner video, .slide-twelve video {
  position: unset;
  opacity: 1;
  width: 100%;
}
.lft-col {
  padding-right: 80rem;
}
.action-btn button a {
  font-size: 24rem;
  line-height: 1.2em;
  color: #ffffff;
  background-color: #3D86C6;
  padding: 15rem 60rem 15rem 30rem;
  position: relative;
}
.action-btn {
  margin-top: 80rem;
}
.col-md-6.rgt-inner {
  padding: 0;
}
.action-btn button a::after {
  content: " ";
  background-image: url(../images/white-arrow-right.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 40rem;
  height: 40rem;
  top: 17rem;
  right: 10rem;
}
.slide-text h3 {
  font-size: 40rem;
  text-transform: uppercase;
  line-height: 1.2em;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40rem !important;
}
.slide-text p {
  font-size: 24rem;
  line-height: 1.2em;
  font-weight: 400;
  margin: 10rem 0;
  color: #ffffff;
}
.slide-ten-inner {
  max-width: 1480rem;
  margin: 0 auto;
}
.slide-text {
  margin-bottom: 30rem;
}
.row.uc-row1 .col-md-6,  .row.uc-row2 .col-md-6{
  padding: 10rem 10rem 10rem 10rem;
}
.slide-eleven {
  padding: 20rem 50rem 50rem;
}
.text-card-inner h4 {
  font-size: 32rem;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20rem;
}
.text-card-inner p {
  font-size: 20rem;
  line-height: 1.4em;
  color: #ffffff;
  margin: 10rem 0;
  padding-right: 40%;
}
.text-card {
  background-color: #191919;
  padding: 30rem;
  border-radius: 25rem;
  height: 285rem;
}
.text-card-img img {
  width: 160rem;
  position: absolute;
  top: 40%;
  right: 7%;
}
.text-card-img {
  text-align: right;
}

.row.ele-row2 {
  margin-top: 30rem;
}
.slide-twelve {
  padding: 40rem 50rem;
}
.end-rgt-div {
  padding: 40rem;
  height: 100%;
}
.end-rgt-div h4 {
  font-size: 24rem;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
}
.slide-twelve .col-md-7, .slide-twelve .col-md-5 {
  padding: 0;
}
.end-rgt-div h2 {
  font-size: 48rem;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 400;
  margin: 40rem 0;
}
.email-div img {
  width: 38rem;
  padding-right: 10rem;
  margin-top: -7rem;
}
.end-rgt-div p {
  font-size: 22rem;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 500;
}
.end-screen-row{
  background-color: #191919;
  align-items: center;
  border-radius: 8rem;
}
.slide-three{
  padding: 40rem 40rem;
}
.list-box h4 {
  font-size: 32rem;
  line-height: 1.2em;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 15rem;
  position: relative;
  padding-left: 65rem;
}
.list-box h4:before {
  content: '';
  background-image: url(../images/customer-challenges.svg);
  width: 50rem;
  height: 50rem;
  position: absolute;
  left: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  top: -5rem;
}
.list-box2 h4:before {
  background-image: url(../images/retailers-challenges.svg);
}
.list-item li {
  font-size: 30rem;
  line-height: 1.2em;
  color: #ffffff;
  padding: 7rem 0;
  font-weight: 400;
}
ul.list-item {
  padding-left: 100rem;
}
.list-box2 {
  margin-top: 50rem;
}
.para-text p {
  font-size: 30rem;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
}
.para-text h4 {
  font-size: 32rem;
  line-height: 1.4em;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15rem;
}
.para-text {
  width: 35%;
  position: absolute;
}
.right-in .para-text {
  right: 2.3%;
}
.left-in .para-text {
 left: 2.3%;
 width: 33%;
}
#text_13 .para-text, #text_12 .para-text, #text_14 .para-text  {
  right: 2.3%;
 }
#click_12, #click_285 {
  background-image: url(../images/see-it.svg) !important;
  border-radius: 0rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  transition: 0.2s ease-in;
}
#click_12:hover,  #click_285:hover{
  background-image: url(../images/see-it-hov.svg) !important;
}
.email-div a {
  color: #ffffff;
}
.uc-row1 video,  .uc-row2 video{
  opacity: 1;
  width: 100%;
  position:unset;
}
#click_1,#click_325 {
  background-image: url(../images/explore.svg) !important;
  border-radius: 0rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  transition: 0.2s ease-in;
}
#click_1:hover,#click_325:hover  {
  background-image: url(../images/explore-hov.svg) !important;
}
#click_36:before{  
  top: 40% !important;
  left: 73% !important;
  }
.mf-div .list-box p {
  font-size: 30rem;
  line-height: 1.4em;
  color: #ffffff;
  font-weight: 400;
  margin: 10rem 0;
}
.mf-div .list-box h4:before {
  content: '';
  background-image: none;
}
.mf-div .list-box h4 {
  padding-left: 0;
}
.mf-div  ul.list-item {
  padding-left: 30rem;
}
#click_55 {
  background-image: url(../images/dot.svg) !important;
  border-radius: 0rem;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  z-index: 9;
  font-size: 0px;
  transition: 0.2s ease-in;
}
.rgt-inner video {
  width: 100%;
  object-fit: cover;
  height: 85%;
  border-radius: 8rem;
}
.slide-ten {
  max-width: 1320rem;
  justify-content: center;
  margin: auto;
}
.slide-ten .uc-row1 video, .slide-ten .uc-row2 video {
  opacity: 1;
  width: 100%;
  position: unset;
  height: 270rem;
  object-fit: cover;
  border-radius: 12rem;
}
@keyframes slideRightToLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.right-in {
  animation: slideRightToLeft 1.1s ease-in-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.right-in-img {
  animation: slideRightimg 1.1s ease-in-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
@keyframes slideRightimg {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideLeftToRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.left-in{
  animation: slideLeftToRight 1.1s ease-in-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.animate-fadeInUp {
  animation: fade-in-up30 1s linear forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.action-btn.animate-fadeInUp {
  animation-delay: 0.5s !important;
  opacity: 0;
  animation: fade-in-up 1s ease-in-out forwards;
}
#click_285 {
  animation-delay: 0.5s !important;
  opacity: 0;
  animation: fade-in-up 1s ease-in-out forwards;
}
@keyframes fade-in-up {
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  10% {
    transform: translateY(70rem);
    opacity: 0;

  }
}
@keyframes fade-in-up30 {
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  10% {
    transform: translateY(30rem);
    opacity: 0;

  }
}
.email-div p{
  transition: all 0.3s ease-in-out;
  }
.email-div:hover p{
text-decoration: underline;
}
.text-card:hover {
  background-color: #232323;
  transition: all 0.3s ease-in-out;
}

.animate-textUp {
  animation: fade-in-up30 0.5s linear forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.slide-twelve video {
  border-radius: 8rem;
}
@keyframes text-up {
  100% {
    transform: translate(0rem, 0rem);
    opacity: 1;
  }

  75% {
    transform: translate(5rem, 2rem);
    opacity: 0.75;

  }

  50% {

    transform: translate(10rem, 5rem);
    opacity: 0.5;
  }

  25% {
    transform: translate(20rem, 8rem);
    opacity: 0.25;

  }

  0% {
    transform: translate(30rem, 10rem);
    opacity: 0;

  }
}
.slide-eleven h2{
  padding: 0 15rem;
}

.slide-ten .slide-text h3 {
  margin-bottom: 20rem !important;
}
.slide-ten .slide-text {
  margin-bottom: 20rem;
  padding: 0 10rem;
}
.fullscreen-mode .full-screen-btn {
    background-image: url(../images/full-act.svg) !important;
}
.fullscreen-mode .full-screen-btn:hover {
  background-image: url(../images/full-act-hover.svg) !important;
}
#text_22 .slide-three {
  width: 38%;
}
.mf-div {
  margin-top: 20rem;
}
#click_296::before {
  left: 69%;
}
#text_27 .para-text {
  width: 25%;
}
.para-text.para-text-full {
  width: 100%;
  top: 80rem;
  padding: 120rem 185rem 0rem;
}
#text_30 .para-text.para-text-full {
  padding: 50rem 185rem 0rem;
}
#text_31 .para-text {
  width: 28%;
}
#video-area {
  opacity: 0; 
  transition: opacity 0.5s ease-in-out; 
}

#video-area.video-transition {
  opacity: 1; 
}
.video-hidden {
  display: none;
}
#click-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease-in-out;
}