
:root {
    --primary-color: #0052FF;
    --secondary-color: #0A0A0A;
    --text-color: #000;
    --opposite-text-color: #EAEAEA;
    --bg-color: #f5f5f7;
    --glass-bg: rgba(255, 255, 255, .8);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 25px;
    --footer-bg: #000;
    --footer-text: rgba(0, 0, 0, 0.56);
}

[data-theme="dark"] {
    --primary-color: #00A2FF;
    --secondary-color: #EAEAEA;
    --text-color: #EAEAEA;
    --opposite-text-color: #000;
    --bg-color: #121212;
    --glass-bg: rgba(30, 30, 30, 0.8);
    --shadow-color: rgba(255, 255, 255, 0.1);
    --footer-bg: #fff;
    --footer-text: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

@font-face {
  font-family: 'HyperFont';
  src: url('/common/font/AvenirNextCyr-Regular.ttf') format('opentype');
}

body, html {
    font-family: "HyperFont", sans-serif;
    background-color: #fff;
    color: #000;
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 0px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 0px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo img {
    width: 15%;
    padding: 10px;
}

a {
    text-decoration: none;
}

.container {
    filter: grayscale(100%);
    width: 300px;
}

.main_pg_content { 
    padding-top: 60px;
     background-color: #000;
    color: #fff;
}    

.main_pg_content table {
    width: 100%;
    height: 85vh;
}

.main_pg_content table:not(#footer_tbl) tr td {
    width: 50%;
    padding: 10%;
    padding-top: 0;
    padding-bottom: 0;
}

.cta-button {
    padding: 15px 30px;
    font-size: 16px;
    background-color: #ff7a00;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    margin-top: 20px;
}

.half-page-hr {
    width: 50%;
    height: 8px;
    background-color: #ff7a00;
    border: none;
    border-radius: 8px;
}

.hr-left {
    margin-left: 0;
}

.hr-right {
    margin-left: auto;
}

.fade-out-up {
    animation: fadeOutUp 1s forwards;
}

@keyframes fadeOutUp {
    0% {
    opacity: 1;
    transform: translateY(0);
    }
    100% {
    opacity: 0;
    transform: translateY(-50px);
    }
}


ul {
    padding-left: 15px;
}

ol {
    padding: 10px;
    font-size: 14px;
}
ol li {
    margin: 10px 0;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(255,255,255); /* Fallback color */
    background-color: rgba(255,255,255,1); /* Black w/ opacity */
    border: 1 solid #000;
}

.loader-element {
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    z-index: 999999 !important;
    position: absolute;
    top: 25vh;
    left: 43vw;
}

.loader-element div {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 20px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
}

.loader-element div {
    animation: loader-element 1s linear infinite;
    top: 100px;
    left: 100px;
}

.otp-btn {
    margin: auto;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.timer {
    font-size: 12px;
}

.modal-dialog {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.scroll-content {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.active {
    color: #0000EE;
}

.disabled {
    color: black;
    pointer-events: none; /* Prevent clicking */
}

.modal-content {
    background-color: transparent;
    margin-top: 10%;
    margin-left: 10%;
    text-align: center;
    padding: 20px;
    border: 0px solid #000;
    width: 80%;
    height: 20%;
    font-size: 14px;
    color: #000;
}

.wrapper {
    width: 100%;
    position: relative;
    height: 100%;
    /* overflow: hidden; */
    /* margin-top: 20px; */
}

.header {
    width: 30%;
    height: 8vh;
    background-image: url(../../common/images/light_logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    padding-top: 4rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-header {
    width: 100%;
    height: 40vh;
    background-image: url("../../common/images/Emoscape_Logo_01.png");
    background-size: contain;
    display: block;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.main-header {
    display: block;
    margin: auto;
    width: 50%;
}

.login-content {
    width: 90%;
    display: table;
    margin: auto;
    height: calc(100% - 70vh);
    /* min-height: 60%; */
}

.main-content {
    width: 120vmin;
    display: block;
    margin: auto;
    margin-bottom: 5px;
    box-shadow: 0 1px 5px 0 #a7a7a7, 0 3px 2px 0 #ffffff;
    padding: 3%;
    border-radius: 50px;
    min-height: 280px;
    position: relative;
    height: 63vmin;
    min-width: 275px;
}

.login-content p {
    font-size: 4vmin;
    text-align: center;
    font-weight: lighter;
}

.input-wrap {
    width: 100%;
    float: left;
    margin: 1em 0px;
}

.input-wrap input {
    width: 300px;
    height: 1.6em;
    border-radius: 26px;
    border: 1px solid #252424;
    /*padding: 0px 15px;*/
    text-align: center;
    font-size: 1.3rem;
    margin: auto;
    display: block;
}

.input-lebel-wrap {
    width: 300px;
    text-align: center;
    font-size: 1.0rem;
    margin: auto;
    display: block;
    color: #ff0000;
    padding-top: 10px;
}

.button-wrap {
    /* display: block; */
    /* margin: auto; */
    width: 100%;
    float: left;
}

.login-footer {
    float: left;
    width: 100%;
    /* position: absolute; */
    height: 25vh;
    text-align: center;
    vertical-align: middle;
    line-height: 35vh;
    cursor: pointer;
}

.main-footer {
    /*position: absolute;*/
    bottom: 5%;
    text-align: left;
    font-size: 3.3vmin;
    color: #5e5e5f;
    cursor: pointer;
}

.main-footer-loader {
    position: absolute;
    bottom: 3vmin;
    text-align: center;
    width: 80%;
    font-size: 3.5vmin;
    color: #000;
    margin: auto;
    left: 0px;
    right: 0px;
    font-weight: bold;
}

.main-footer-loader span {
    color: #5e5e5e;
}

.button-wrap button {
    display: block;
    margin: auto;
    background: transparent;
    font-size: 1rem;
    border: 0px solid transparent;
    cursor: pointer;
}

.login-footer h3 {
    font-size: 4.5vmin;
    color: #5e5e5f;
    height: 10%;
}

.login-footer h3:hover, .main-footer:hover {
    text-decoration: underline;
}

.main-content div {
    text-align: center;
}

.main-content div h4 {
    font-size: 6vmin;
}

.main-content div h6 {
    font-size: 2.5vmin;
    /*font-weight: lighter;*/
    margin: 15px 0px;
}

.main-content-wrap {
    /* height: 40vmin; */
}

.video-wrap {
    border-radius: 5vmin;
    /* left: 50%; */
    max-height: 95%;
    max-width: 95%;
    /* max-width: 95vmin; */
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    min-height: 95%;
    min-width: auto;
}

.main-content-video {
    width: 70%;
    display: block;
    margin: auto;
    margin-top: 25px;
    box-shadow: 0 0px 0px 0 #a7a7a7, 0 0px 0px 0 #ffffff;
    padding: 0px;
    border-radius: 50px;
    height: 85%;
    position: relative;
}

.main-content-video .main-content-wrap {
    position: relative;
    height: 100%;
}

.video-control {
    position: absolute;
    height: 10vmin !important;
    width: 100%;
    bottom: 2vmin;
    line-height: 70px;
}

.main-content-video div {
    height: 100%;
}

.button.play {
    border-color: transparent transparent transparent #ffffff;
    box-sizing: border-box;
    width: 24px;
    height: 30px;
    border-width: 15px 0px 15px 24px;
    background: transparent;
    margin: 0px 20px;
    outline: 0;
    cursor: pointer;
    position: relative;
    top: -28px;
}

.button.pause {
    width: 45px;
    height: 30px;
    border-style: double;
    border-width: 0px 0px 0px 15px;
    border-color: #ffffff;
    background: transparent;
    position: relative;
    top: -13px;
    outline: 0;
    cursor: pointer;
    /* margin: 0px 20px; */
}

.video-number {
    position: absolute;
    left: -10vmin;
    top: 6%;
    font-size: 18px;
    font-weight: bold;
}

.video-wrapper {
    height: 100%;
    position: relative;
}

#page {
    display: none;
}

#loading {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    /* background-color: rgba(192, 192, 192, 0.5); */
    background-image: url(.../../common/images/loader.gif);
    background-repeat: no-repeat;
    background-position: 50% 18%;
    padding: 6% 0px;
    color: #929292;
    background-size: 31%;
}

/*progressbar*/
.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 15px;
    width: 35vmin;
    margin: 10px 0px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 23px !important;
    border: 1px solid #000;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #8ed796;
    transition: width .6s ease;
    width: 100% !important;
    height: 100% !important;
}

.load-msg {
    margin-top: 20vmin;
}

.text-loader {
    /* width: 70%; */
    display: block;
    margin: auto;
    font-size: 3vmin !important;
    margin-top: 5vmin;
}

.main-content-loader {
    width: 40%;
}

.grey-color {
    color: #929292;
}

.login-content div {
    display: table-cell;
    vertical-align: middle;
}

/* table tr td:nth-child(even) {
    padding-left: 30px;
} */

.main-content div p {
    font-size: 2.5vmin;
}

.video-wrapper-main {
    position: relative;
    height: 100%;
}

.progressbar-wrapper img {
    width: 40vmin;
    margin: 10px 0px;
}

#statusMessage, #status_message_complete {
    font-size: 11px;
    color: #929292;
    word-wrap: break-word;
}

#div_message {
    /*  display: block;
    margin-left: 50%;
    margin-right: auto;
    margin-left: auto !important;
    position: relative;
    width: 100%;*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: absolute;
    width: 100%;
    /*height: 100%;*/
    z-index: 1;
}

#second_tbl {
    margin-top: 3vh; height: 48vh;
}

#third_tbl{
    margin-top: 14vh; 
    height: 64vh;
}

.grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: 65%;
      margin: auto;
      margin-top: 60px;
      margin-bottom: 60px;
    }
    .icon-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .icon-box img {
      width: 150px;
      height: 100px;
      margin-bottom: 10px;
    }
    .label {
      font-size: 16px;
    }

/*#div_message img
{
      position: absolute;
    right: 0px;
    left: 0px;
    margin: auto;
    z-index: 1;
    top: 10px;
}*/

@media (min-height: 721px) and (orientation: landscape) {
    #third_tbl{
    height: 44vh;}

    .container {
        width: 400px;
    }
}

@media only screen and (max-width: 500px) {
    #footer_tbl {
        margin: 0 auto;
    }
    #div_pages {
        height: 600px;
    }
    .main_pg_content table {
        height: 85vh;
    }
    .main_pg_content table:not(#footer_tbl) tr td {
        padding-right: 0;
    }
    .container {
        right: 0;
        bottom: 0;
    }
    .main-content {
        width: 70%;
        display: block;
        margin: auto;
        /*margin-top: -5%;*/
        box-shadow: 0 1px 5px 0 #a7a7a7, 0 3px 2px 0 #ffffff;
        padding: 3%;
        border-radius: 50px;
        min-height: 280px;
        position: relative;
        /* height: 100%; */
        height: 45vmin;
        min-height: 250px;
    }

    .main-content-wrap {
        height: 100%;
        padding: 10px;
    }

    .main-content-video {
        margin-top: 10%;
        padding: 0px;
        height: auto;
        min-height: auto;
        width: 95%;
    }

    .video-wrap { /* transform: translate(-50%, 0%) */
    }

    .video-control {
        /* position: absolute; */
        /* height: 100px !important; */
        /* width: 100%; */
        /* top: 170px; */
        /* line-height: 70px; */
    }

    .video-number {
        position: absolute;
        left: 0px;
        top: 105%;
        font-size: 18px;
        font-weight: bold;
        /* display: block; */
        /* margin: auto; */
        right: 0px;
    }

    .main-content-loader {
        width: 70%;
        height: 280px;
    }

    #loading {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        height: 100%;
        /* background-color: rgba(192, 192, 192, 0.5); */
        background-image: url(../../common/images/loader.gif);
        background-repeat: no-repeat;
        background-position: 50% 15%;
        padding: 6% 0px;
        color: #929292;
        background-size: 170px;
    }

    .progress {
        display: -ms-flexbox;
        /* display: flex; */
        height: 1rem;
        /* overflow: hidden; */
        /* line-height: 0; */
        /* font-size: .75rem; */
        /* background-color: #e9ecef; */
        /* border-radius: 15px; */
        /* width: 60% !important; */
        /* margin: 10px 0px; */
        /* margin: auto; */
        /* margin-top: 17px; */
        /* margin-bottom: 15px; */
        /* height: 18px !important; */
        /* border: 1px solid #000; */
    }

    .progress-bar {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        overflow: hidden;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        background-color: #8ed796;
        transition: width .6s ease;
        width: 100% !important;
        height: 100% !important;
    }

    .main-header {
        margin-top: 10%;
    }

    .main_pg_content table {
      width: 100%;
      padding: 20px;
    }

    #footer_tbl {
        padding-left: 0 !important;
    }

    .main_pg_content table tr {    display: table;  width:100%; height: 100%;   }               
    .main_pg_content table tr td {    display: table-row; text-align: left;}
    
    #second_tbl img {
        width: 300px;
    }
    .img_2 {
        padding-bottom: 30px;
    }

    #third_tbl, #fourth_tbl {
        padding-right: 0;
        margin-top: 5vh;
    }

    #third_tbl img{
        position: static !important;
    }

    h1 {
        font-size: 22px;
    }

    .logo img {
       width: 40%;
    }

    .grid-container {
        width: 85%;
    }
    .icon-box img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }
}

@media only screen and (min-device-width: 480px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .main-content-video {
        margin-top: 2%;
        padding: 0px;
        height: 80%;
        min-height: 80%;
        width: 80%;
    }

    .video-wrapper-main {
        position: relative;
        height: 100%;
    }
}

@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .main-content-video {
        height: auto;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .main-content-video {
        height: auto;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .main-content-video {
        height: auto;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3)and (orientation: landscape) {
    .main-content-video {
        height: 85%;
    }
}
@media only screen and (max-width: 812px) {
    .main-content table {
        font-size: 3vmin;
    }
    .main-content img {
        width: 90px;
    }
}

.main-content div h5 {
    font-size: 3vmin;
    font-weight: lighter;
    margin: 15px 0px;
}

.main-content .align-left, .main-content .align-left .main-content-wrap, .main-content .align-left .main-footer {
    text-align: left;
}

.footer-green {
    color: #187200;
}

.main-content-tour {
    width: 110vmin;
    display: block;
    margin: auto;
    margin-top: 2%;
    box-shadow: 0 1px 5px 0 #a7a7a7, 0 3px 2px 0 #ffffff;
    padding: 3%;
    border-radius: 50px;
    min-height: 200px;
    position: relative;
    height: 45vmin;
    /* min-width: 275px; */
    max-height: auto;
    /* margin-left: 10px; */
}

.tour-started {
    display: flex;
    position: relative;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
}

.left-section {
    width: 50%;
    flex: 1;
    background-image: url(../../common/images/left-image-1.PNG);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.right-section {
    flex: 1;
    height: 100%;
}

.wrap-head-tour {
    height: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.right-section h4 {
    text-align: left;
    font-size: 3vmin !important;
    /* word-spacing: 5px; */
    /* margin: 9px 0px; */
}

.right-section p {
    text-align: left;
    /* word-spacing: 5px; */
    margin: 9px 0px;
    font-size: 2.5vmin;
}

.wrap-head-tour {
    height: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.left-section img, .right-section img {
    height: 100%;
    width: 100%;
}

.align-left, .full-heigth, .content-tour {
    height: 100%;
}

.full-section img {
    height: 55%;
    display: block;
    margin: auto;
}

.full-section {
    width: 100%;
    text-align: left !important;
}

.center-content {
    height: 90%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.full-width {
    width: 90%;
}

.pull-right {
    float: right;
    color: #5e5e5f;
}

.bg-size {
    background-position: center !important;
}

/* UI/UX Code */
#animatedText{
    font-weight: 100;
}

.container-reskin{
    width: 100%;
    font-family: 'HyperFont', sans-serif;
    background-color: #000;
}
/* overflow: hidden; */
/* margin-top: 20px; */
/*background: url("../../common/images/Background-image.png") no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.container-wraper {
    width: 410px;
    display: inline-block;
    margin: 30px 60px;
}
.emoscape-logo {
    width: 60%;
    height: 13vh;
    background-image: url(../../common/images/Emoscape_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 5px;
}
.emoscape-title{
    font-size: 9vmin;
    text-align: left;
    font-weight: bold;
    line-height: 7.5vmin;
    margin: 40px 0 20px;
    font-family: 'helvetica';
    display: block;
}
.emoscape-para{
	font-size: 13px;
    line-height: 14px;
    font-weight: 100;
    margin-bottom: 10px;
    font-family: 'helvetica';
}
.demo-box{
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 25px;
    padding: 22px 20px 20px 20px;
    width: 300px;
    margin: 50px 10px 0px 0	
}
.demo-box .demo-box-title{
	    font-weight: bold;
    font-family: 'helvetica';
    font-size: 2.1rem;
    margin-bottom: 10px;
    display: block;
}
.demo-box .demo-box-btn{
text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background: #000;
    border-radius: 25px;
    width: auto;
    display: inline-block;
    padding: 16px 70px;
}
.demo-box .demo-box-btn h3{
	font-size: 14px;
    color: #fff;
    height: 10%;
    font-weight: 100;
    font-family: 'helvetica';
    width: auto;
}
.Research-Participant-link{
	    text-align: center;
    width: 339px;
    display: block;
}
.Research-Participant-link button{
	background: transparent;
    color: #fff;
    border: 0px solid transparent;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 0.5px;
    padding: 10px 30px;
    border-radius: 25px;
	    font-family: 'helvetica';
}*/

/* The Modal (background) */
/*.modal {
  display: none;*/ /* Hidden by default */
/*position: fixed;*/ /* Stay in place */
/*z-index: 1;*/ /* Sit on top */
/*left: 0;
  top: 0;
  width: 100%;*/ /* Full width */
/*height: 100%;*/ /* Full height */
/*overflow: auto;*/ /* Enable scroll if needed */
/*background-color: rgb(0,0,0);*/ /* Fallback color */
/*background-color: rgba(0,0,0,0.4);*/ /* Black w/ opacity */
/*}*/

/* Modal Content/Box */
/*.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 280px;
    border-radius: 25px;
    text-align: left;
}
.modal-content .modal-header #div_modal_message{
	left: 0px;
    text-align: center;
}*/


/* The Close Button */
/*.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal-body input#user_token::placeholder{
	text-align: center;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.close-modal {
    color: #aaa;
    float: left;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    border: 0;
    display: inline-block;
    width: 100%;
    text-align: right;
    padding: 0;
    position: relative;
}
.emoscape-modal{
	
}
.emoscape-modal .modal-header .modal-title-h1 {
    font-size: 3em;
    font-weight: bold;
    font-family: 'helvetica';
    line-height: 0.8em;
}
.emoscape-modal .modal-body input {
border: 1px solid #ccc;
    border-radius: 25px;
    padding: 10px;
    width: 92%;
    text-align: center;
}
.emoscape-modal .modal-body {
text-align: center;
    margin: 10px 0;
    display: block;
    width: 100%;
}
.emoscape-modal .modal-footer .button-wrap button {
    display: block;
    margin: auto;
    background: #000;
    font-size: 1rem;
    border: 1px solid #000;
    text-decoration: underline;
    cursor: pointer;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-family: 'helvetica';
}
.emoscape-modal .modal-footer {
    display: inline-block;
    width: 100%;
    margin: auto;
}

#redirect-message {
    position: relative;
    top: 20px;
    font-size: 4vmin;
    text-align: center;
    font-weight: lighter;
    font-family: 'helvetica';
}

@media only screen and (max-width: 767px) {
    .container-wraper {
    margin: 30px 20px;
}
	.emoscape-logo {
    background-image: url(../../common/images/Emoscape_black.png);
	    height: 7vh;
}
.container-wraper {
    width: 330px;
    display: inline-block;
    margin: 30px 20px;
}
.emoscape-title {
    font-size: 16vmin;
    line-height: 13.5vmin;
    color: #fff;
}
.emoscape-para {
    font-size: 13px;
    line-height: 14px;
    font-weight: 100;
    margin-bottom: 10px;
    font-family: 'helvetica';
    width: 214px;
    color: #fff;
}
.demo-box {
    background: #fff;
    width: 250px;
    margin: 35px auto 0;
}
.demo-box .demo-box-title {
    font-size: 1.7rem;
}
}*/

.container-reskin {
    /* width: 100%;
    position: relative;
    height: 110vh;
    overflow: hidden; */
    /* margin-top: 20px; */
    /* background: url("../../common/images/what_is_emoscape.jpg") no-repeat center fixed; */
    /* -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; */
    /* filter: brightness(95%); */
}

.hero__title {
    font-size: 4.5rem;
    background: linear-gradient(to right, var(--text-color), #FF2D55);
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.container-wraper {
    width: 400px;
    display: inline-block;
    margin: 30px 60px;
}

.emoscape-logo {
    width: 50%;
    height: 13vh;
    cursor: pointer;
    background-image: url(../../common/images/Emoscape_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.emoscape-title {
    font-size: 8.1vmin;
    text-align: left;
    font-weight: 800;
    line-height: 7.5vmin;
    margin: 40px 0 20px;
    font-family: 'Poppins';
    display: block;
}

.emoscape-para {
    font-size: 12px;
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.demo-box {
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 25px;
    padding: 22px 20px 20px 20px;
    width: 300px;
    margin: 35px 10px 0px 0;
}

.iti__country-list {
    color: #000 !important;
}

.demo-box .demo-box-title {
    font-weight: bold;
    font-family: 'Poppins';
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.demo-box .demo-box-btn {
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background: #000;
    border-radius: 25px;
    width: auto;
    display: inline-block;
    padding: 16px 60px;
}

.demo-box .demo-box-btn h3 {
    font-size: 14px;
    color: #fff;
    height: 10%;
    font-weight: normal;
    font-family: 'Poppins';
    width: auto;
}

.Research-Participant-link {
    text-align: center;
    width: 339px;
    display: block;
}

/* .Research-Participant-link button { */
.button_demo {
    background: transparent;
    color: #dddddd49;
    border: 0px solid transparent;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 0.5px;
    padding: 10px 30px;
    border-radius: 25px;
    font-family: 'Poppins';
    font-size: 10px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 340px;
    border-radius: 25px;
    text-align: left;
}

.modal-content .modal-header #div_modal_message {
    left: 0px;
    text-align: center;
}

#modal-body-error-message, #modal-body-error-message_2 {
    width: 100%;
    font-size: 11px;
    padding-top: 5px;
    color: red;
    font-family: 'Poppins';
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.question_input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.modal-body input#user_token::placeholder {
    text-align: center;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close-modal {
    color: #aaa;
    float: left;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    border: 0;
    display: inline-block;
    width: 100%;
    text-align: right;
    padding: 0;
}

.emoscape-modal .modal-header .modal-title-h1 {
    font-size: 3em;
    font-weight: bold;
    font-family: 'Poppins';
    line-height: 0.8em;
}

.emoscape-modal .modal-body input:not([id*="otp"]) {
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 10px;
    width: 92%;
    text-align: center;
}

.emoscape-modal .modal-body {
    text-align: center;
    margin: 10px 0;
    display: block;
    width: 100%;
}

.emoscape-modal .modal-footer .button-wrap button {
    display: block;
    margin: auto;
    background: #000;
    font-size: 1rem;
    border: 1px solid #000;
    cursor: pointer;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-family: 'Poppins';
}

.emoscape-modal .modal-footer {
    display: inline-block;
    width: 100%;
    margin: auto;
}

@media only screen and (max-width: 950px) and (orientation: landscape) {
    .container-reskin {
        /* overflow: scroll; */
        /* background-position: -410px; */
    }

    .container {
        width: 400px;
    }

    .img_2 {
        width: 300px;
    }
}

@media only screen and (max-width: 767px) {
    .container-wraper {
        margin: 30px 20px;
    }

    .emoscape-logo {
        background-image: url(../../common/images/Emoscape_black.png);
        height: 7vh;
    }

    .container-wraper {
        width: 330px;
        display: inline-block;
        margin: 30px 20px;
    }

    .emoscape-title {
        font-size: 16vmin;
        line-height: 13.5vmin;
        color: #fff;
    }

    .emoscape-para {
        font-size: 13px;
        line-height: 14px;
        font-weight: 100;
        margin-bottom: 10px;
        font-family: 'Poppins';
        width: 214px;
        color: #fff;
    }

    .demo-box {
        background: #fff;
        width: 250px;
        margin: 35px auto 0;
    }

        .demo-box .demo-box-title {
            font-size: 1.5rem;
        }
}

#video {
    transform: rotateY( 180deg );
}

#redirect-message {
    text-align: center;
}

.scroll-img {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    z-index: 9999;
    margin-bottom: 30px;
    margin-left: 48%;
}

/* @media only screen and (orientation: portrait) {

    .device-specific {
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        position: unset !important;
        justify-content: center;
        visibility: visible !important;
    }

    .container-reskin {
        display: none;
    }
}

.device-specific {
    visibility: collapse;
    position: absolute;
} */

.banner {
    width: 100%;
    height: 30px;
    background-color: #000;
    /* border: 3px solid #666; Grey border */
    margin: 0 auto; /* Center alignment */
    overflow: hidden;
    position: absolute;
    /* margin-top: 30px; */
    /* left: 30%; */
}

/* Style the black area inside the banner */
.banner-black-bg {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: relative;
}

/* Style the text element with color */
.banner-text {
    position: absolute;
    top: 0;
    left: 100%;
    font-size: 15px;
    font-weight: bold;
    color: #FBFFFF; 
    white-space: nowrap;
    /* text-shadow: 0 0 5px #fff, 0 0 10px #fff; */
}

/* p {
    color: #000;
    font-size: 12px;
    margin-bottom: 10px;
} */

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-inputs input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid darkgray;
    border-radius: 4px;
    outline: none;
}

.otp-inputs input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.button-container button {
    display: block;
    margin: auto;
    background: #000;
    border: 1px solid #000;
    cursor: pointer;
    color: #fff;
    padding: 10px 10px;
    border-radius: 25px;
    font-family: 'Poppins';
}

.outer_header {
    width: 100%;
    /* Removed fixed positioning */
    /* position: fixed;
    top: 0; */
    left: 0;
    /* Optional: add relative positioning if needed */
    position: relative;

    /* Optional: uncomment if you want a glass effect */
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    box-shadow: 0 4px 20px var(--shadow-color); 
    
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}


.image-wrapper {
    position: relative; /* Ensures the container is positioned normally */
    width: 100%;
    display: flex;
    justify-content: center;
}

.blob-image {
    position: absolute;
    top: 180px; /* Adjust this value to move the image up/down */
    left: 50%;
    transform: translateX(-50%); /* Centers the image */
    max-width: 70%; /* Ensures the image scales well */
    height: auto;
    z-index: 10; /* Makes sure the image is above other elements */
}


.nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.nav__menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav__logo {
    width: 200px;
}

.nav__link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 15px;
    padding: 5px 2px;
    position: relative;
    cursor: pointer;
}

.nav__link:after {
    background: none repeat scroll 0 0 transparent;
    content: "";
    display: block;
    height: 55px; /* Invisible buffer below the nav item */
    bottom: -55px;
    left: 50%;
    position: absolute;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.nav__link:hover:after {
    width: 100%;
    left: 0;
}

.dropdown {
    display: none;
    position: fixed; /* Fixes it relative to the viewport */
    top: 70%; /* Centers it vertically */
    left: 50%; /* Centers it horizontally */
    transform: translate(-50%, -50%); /* Ensures perfect centering */
    background: white;
    padding: 15px;
    width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    opacity: 0;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

.dropdown a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 8px;
}
.dropdown p {
    color: #b3b3b3;
    padding: 8px;
}
.dropdown a:hover {
    background-color: #f2f2f2;
}
/* Fade-in animation from top to down */
.nav__link:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(30px);
}

.nav__settings {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.dark-mode-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

.hero {
    text-align: left;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    padding-top: 0px;
}

.main2 {
    background-image: url('../../common/images/home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    padding: 2rem 0;
    height: 100vh;
    position: relative;
}


video {
    max-width: 100vw;
}

.hero__title {
    font-size: 5.5rem;
    background: linear-gradient(to right, var(--text-color), #FF2D55);
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero__subtitle {
        font-size: 1.6rem;
    line-height: 3rem;
    padding-top: 22.5vh;
    padding-left: 150px;
    font-weight: bold;
    opacity: 0.8;
    color: #fff;
}

.hero__subtitle1 {
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 2.5rem;
    color: #fff;
    line-height: 2.5rem;
    height: 50vh; 
    font-weight: bold;
}

.hero__subtitle2 {
    background-color: #fff;
    line-height: 2.5rem;
    height: 100vh; 
    font-weight: bold;
}

#contact_submit_btn {
    color: #000;
    background-color: #fff;
}
#contact_submit_btn:disabled {
    background-color: #ccc;
}

.about {
    padding: 60px;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }

  .section img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .text {
    flex: 1;
  }

  .text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }


  /* Alternate second section layout */
  .section.alt {
    flex-direction: row-reverse;
  }

  

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.2s;
}

.btn--primary {
    background: var(--text-color);
    color: var(--opposite-text-color);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.btn--primary:hover {
    transform: translateY(-3px);
}

.fa-brands{
    font-size: 18px;
}

.footer {
    width: 100%;
    height: auto;
    padding: 4rem 2rem 4rem 5rem;
    font-size: 0.9rem;
    background-color: var(--footer-bg);
}
.lowest_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    font-size: 0.9rem;
    background-color: #fff;
    color: #000;
}
.lowest_footer a, .lowest_footer p {
    color: #000;
    text-decoration: none;
    padding: 10px;
    padding-left: 0px;
}
.footer a, .footer p {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    padding-left: 0px;
}
.upper_footer {
    display: flex;
    gap: 220px;
}
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: gray;
}

.blob-container {
    position: relative;
    width: 92%;
    height: 460px;
    border-radius: 24px;
    background-color: #ff7e61;
    overflow: hidden;
}

/* General Blob Styles */
.blob {
    position: absolute;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
    animation: move 10s ease-in-out infinite alternate;
    transform-origin: center;
}

/* Different Blob Sizes */
.blob-1 {
    width: 42vmax;
    bottom: 5%;
    left: 10%;
}

.blob-2 {
    width: 40vmax;
    top: 2%;
    right: 5%;
}

.blob-3 {
    width: 32vmax;
    bottom: 5%;
    right: 5%;
}

.blob-4 {
    width: 32vmax;
    top: 20%;
    left: -10%;
}

.pg-container {
    margin-top: 4.8rem;
    width: 100%;
    height: 200px;
    background-color: #ddd;
}

.pg-container p {
    padding: 50px;
    font-size: 30px;
}
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

.carousel-track {
    overflow: hidden;
}

.image-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.image-item {
    flex: 0 0 33.33%; /* Show 3 items at a time */
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.image-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    background-color: #f2f2f2;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    background-color: #f9f9f9;
    border: none;
    border-radius: 5px;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.main_pg_logo{
    width: 200px;
    margin-right: 4vw;
    margin-top: 82vh;
    float: right;
}

.form-wrapper{
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
}
.title{
    font-size: 28px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}
.subtitle{
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}
.contact-form{
    width: 100%;
}

.form-row{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.form-column{
    flex: 1;
    min-width: 250px;
}
.form-label{
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}
.form-input,
.form-textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: border-color 0.3s, transform 0.3s;
}
.form-input:focus,
.form-textarea:focus{
    border-color: #6f6df4;
    outline: none;
    transform: scale(1.02);
}
.form-textarea{
    resize: none;
}
.submit-button{
    display: block;
    width: 40%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin: 0 auto;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.submit-button:hover{
    transform: scale(1.05);
}


@keyframes move {
    0%   { transform: scale(1) translate(0px, 20px); }
    100% { transform: scale(1) translate(var(--rand-x), var(--rand-y)) rotate(var(--rand-rotate)); }
}

@keyframes loader-element {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
}


@media (max-width: 883px) {
    .nav__menu {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 2rem;
        top: 70px;
        background: var(--glass-bg);
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 10px var(--shadow-color);
    }
    .main_pg_logo{
        width: 75px;
        margin-top: 65vh;
        margin-right: 45vw;
    }
    .nav__menu--open {
        display: flex;
    }

    .nav__toggle, .dark-mode-toggle {
        display: block;
    }
    .about {
        padding-top: 40px;
    }
    .main2 {
        width: 100vw;
        background-size: contain;
        transform: scale(2); 
        transform-origin: center;
    }
    .video-text {
        font-size: 13.3px;
        width: 81vw;
    }
    .hero{
        margin-top: 0;
    }
    .hero__subtitle {
        position: relative;
        font-size: 1rem;
        line-height: 2rem;
        padding-top: 190px;
        padding-left: 30vw;
        z-index: 1;
    }
    .hero__subtitle1 {
        font-size: 1.5rem;
    }
    .hero__subtitle2 {
        font-size: 1.5rem;
    }
    /* .footer {
        margin-left: 20%;
    } */
    .lowest_footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem; 
    }
    .title{
        font-size: 24px;
    }
    .subtitle{
        font-size: 14px;
    }
    .form-row{
        flex-direction: column;
    }
    iframe {
        width: 230px;
        height: 150px;
    }
    .footer {
    padding: 2rem 2rem;}
}


@media (max-width: 540px){
    .video-text {
        font-size: 13.3px;
        width: 81vw;
    }
    .title{
        font-size: 20px;
    }
    .subtitle{
        font-size: 12px;
    }
    .form-row{
        flex-direction: column;
        gap: 15px;
    }
    .form-column{
        min-width: 100%;
    }
    .form-label{
        font-size: 12px;
    }
    .form-input,
    .form-textarea{
        padding: 10px;
    }
    .submit-button{
        padding: 10px;
        font-size: 14px;
    }
    .scroll-img {
        margin-bottom: 8px;
        margin-left: 43%;
    }
}

@media (max-width: 884px) and (orientation: landscape) {
    .hero__subtitle {
        padding-top: 0;
    }
    .main2 {
        width: 100vw;
        background-size: contain;
        transform: scale(1); 
        transform-origin: center;
    }
}