@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;
}

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;
} */
.root {
  font-size: 0.047359vw;
}
.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;
  /* background: #00000050; */
}

#canvas-popup {
  background-color: #ffffffcf;
}

#canvas-zoom_in {
  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;
}
#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;
}

.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;
}
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;
}
.bottom-ar {
  display: flex;
  vertical-align: middle;
  justify-content: space-between;
  position: relative;
}
.top-logos {
  position: relative;
  top: 0;
  z-index: 9;
  height: 80rem;
  vertical-align: middle;
  align-items: center;
  display: flex;
}
.row {
  margin-right: 0px;
  margin-left: 0px;
}
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", sans-serif;
  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;
}
@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**********************/

.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.click-btn:before {
  content: "";
  background-image: url(../images/click.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 66rem;
  height: 77rem;
  background-size: contain;
  top: 75%;
  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%;
}
#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;

}
.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-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;
}
.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;
}
.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;
}
.gif-img {
  display: none;
}
#video-hov {
  opacity: 1 !important;
  position: relative;
}
.remote-ar-logo {
  width: 210rem;
  left: 0;
  position: relative;
}
.remote-ar-logo.inner-pg {
  left: 0px;
}
.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***/
@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;
  }
}
.bottom-in-img {
  animation: slideBottomimg 1.1s ease-in-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
@keyframes slideBottomimg {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(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;

  }
}
.animate-textUp {
  animation: fade-in-up30 0.5s linear forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@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;

  }
}
#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;
}
/*****/
.intro-text-div h2 {
  font-size: 64rem;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 30rem 0;
  text-transform: uppercase;
  position: relative;
  padding-right: 4%;
}

.intro-text-div  h4 {
  font-size: 34rem;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 50rem;
}
.intro-card {
  background-color: #ffffff;
  border-radius: 12rem;
  transition: background-color 0.5s ease;
  cursor: pointer;
}
.intro-card-inner img {
  border-radius: 12rem;
}
.intro-card-inner h4 {
  font-size: 20rem;
  color: #3D86C6;
  font-weight: 500;
  width: 73%;
  line-height: 1.3em;
}
.intro-card:hover {
  background-color: #3D86C6;
}
.intro-card:hover .intro-card-inner h4 {
  color: #ffffff;
}
.col.into-card-outer {
  padding: 0 7rem 0 7rem;
}
.row.intro-row1 .col:first-child {
  padding-left: 0;
}
.row.intro-row1 .col:last-child{
  padding-right: 0;
}
.intro-text-inner img {
  width: 40rem;
}
img#intro-img-hide {
  display: none;
}
.intro-card:hover img#intro-img-hide {
  display: block;
}
.intro-card:hover img#intro-img-show {
  display:none;
}
.intro-hvr-box img#intro-img-hide {
  display: block !important;
}
.intro-hvr-box img#intro-img-show {
  display:none !important;
}
.intro-text-inner {
  display: flex;
  justify-content: space-between;
  padding: 25rem;
  min-height: 103rem;
}
#intro-slide {
  padding: 30rem 40rem 30rem 40rem;
}
.intro-hvr-box {
  background-color: #3D86C6 !important;
}
.intro-hvr-box .intro-card-inner h4 {
  color: #ffffff !important;
}
#click_1::before, #click_2::before, #click_3::before, #click_4::before,#click_5::before {
  background-image: unset;
}
.intro-text-div h2:before {
  content: '';
  background-image: url(../images/network-icon.gif);
  width: 100rem;
  height: 70rem;
  position: absolute;
  background-repeat: no-repeat;
  left: 33.4%;
  top: -60rem;
  background-size: 100%;
}
.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: 30%;
}
#scenario-one-slide2 {
  left: 2.3%;
  width: 24%;
}
#scenario2-slide1 {
  left: 2.3%;
  width: 27%;
}
p.para-text-next {
  padding-top: 25rem;
}
#scenario3-slide1,  #scenario3-slide2{
  top: 18%;
  width: 28%;
  right: 3.2%;
}
.para-text.para-text-full {
  width: 100%;
  top: 0rem;
  padding: 0rem 310rem 0rem;
}
div#scenario4-slide1 {
  top: 28%;
  width: 32%;
}
#scenario4-slide2 {
  padding: 0rem 310rem 0rem;
    top: 40rem;
}
#scenario4-slide3 {
  top: 0rem;
  padding: 0rem 310rem 0rem;
}
#scenario4-slide4 {
  top: 130rem;
  padding: 0rem 310rem 0rem;
}
#scenario4-slide5 {
  top: 110rem;
  padding: 0rem 310rem 0rem;
}
#scenario5-slide1, #scenario5-slide2, #scenario5-slide3 {
  top: 130rem;
  padding: 0rem 310rem 0rem;
}
#scenario1-slide3 {
  width: 27%;
  left: 5.2%;
  top: 32%;
}
#scenario1-slide4 {
  top: 110rem;
  padding: 0rem 315rem 0rem;
}
#scenario1-slide5 {
  top: 180rem;
  padding: 0rem 310rem 0rem;
}
#scenario1-slide6 {
  width: 26%;
  top: 43%;
}
.intro-card-img {
  overflow: hidden;
  border-radius: 12rem;
}
.intro-card-inner img {
  max-width: 100%;
  transition: all 1s ease;
  border-radius: 12rem;
}
.intro-hvr-box .intro-card-inner 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);
}
.end-screen-outer h2 {
  font-size: 40rem;
  line-height: 1.3em;
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 20rem 0;
}
.row.end-outer-row {
  width: 100% !important;
  padding: 40rem 50rem;
}
.end-screen-outer h6 {
  font-size: 30em;
  line-height: 1.4em;
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 30rem 0;
}
.end-outer-row .col-md-6 {
  padding-right: 325rem;
  padding-left: 0;
}
.conn-discover a {
  font-size: 24rem;
  font-weight: 500;
  line-height: 1.4em;
  color: #ffffff;
  padding: 15rem 60rem 15rem 25rem;
  background-color: #3D86C6;
  position: relative;
}
.conn-discover {
  margin-top: 60rem;
}
.conn-discover a::after {
  content: '';
  background-image: url('../images/white-arrow-right.svg');
  width: 28rem;
  height: 28rem;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  margin-left: 10rem;
  transition: background-color 0.3s ease;
  top: 16rem;
}
.conn-discover a:hover {
  background-color: #1A5C97;
}
#click_16:before {
  top: 76%;
  left: 84%;
}
#click_21:before {
  background-image: url(../images/click-blue.svg);
  top: 35%;
  left: 88%;
}
#click_30:before{
  background-image: url(../images/click-blue.svg);
  top: 79%;
  left: 53%;
}
#click_37:before{
  top: 75%;
  left: 75%;
}
#click_53:before {
  background-image: url(../images/click-blue.svg);
}
.conn-discover a::after {
  /* display: inline-block;
  margin-right: 6rem; */
  transition: transform 0.5s ease;
}
.conn-discover a:hover::after {
  transform: translateX(6rem);
}