:root {
  --marginLeft: 4%;
  --contentHeight: 80vh;
  --footerHeight: 5%;
  --footerFontSize: 0.8rem;
  --footerLogoSize: 90%;
  --pagetitlesize:5rem;
  --pagetitleSUBsize:1.8rem;
  --h1Size: 3.25rem;
  --h2Size: 1.7rem;
  --pSize: 1.4rem;
  --slideShowDescription: 1rem;
  --borderradius: 10px;
  --borderWeight: 3px;
  --titleBorderWeight: 4px;
  --pageTitleCol: var(--accentCol);
  --timeLineh1: 1.1rem;
  --timelineh2: 0.8rem;
  --navBarHeight: 9vh;
  --burgerSize:9vh;
  --burgerStackTop: 36%;
  --burgerWidth: 70%;
  --burgerStackRight: 7px;
  --burgerCol: var(--accentCol);
  --burgerCol_2: var(--tertiary_color);
  --hoverCol: rgb(85, 66, 51);
  --clickedCol: #636fff;
  --burgerItemCol: #63666b;
  --secondary_color: #ebebeb;
  --tertiary_color: rgb(219 53 6);
  --background_color: rgb(218, 198, 157);
  --canvasBackground: linear-gradient(rgb(255, 255, 255) 0%, rgb(235, 235, 235) 30%, rgb(223, 223, 223) 60%); ;
  /*linear-gradient(rgb(245, 245, 245),rgb(216, 216, 216)); */
  
  --burgerItemSize: 0.7vw;
  --accentCol: rgb(255, 222, 80);
  --timingFunction: cubic-bezier(0.98, 0.01, 0.59, 1.49);
}

h1,
h2 {
  font-family: "Changa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

p {
  font-family: "Changa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

body {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  margin: 2%;
  margin-top: 1%;
  justify-content: space-between;  
  background: var(--background_color);
  background-image: url("/assets/bckgrnd.png");  
  background-size: 200px;
  background-position: 100% 0%;
  background-blend-mode: soft-light;
  background-repeat: repeat;
  background-attachment: fixed;
  animation-name: bckgrnd_anim;
  animation-duration: 120s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  /* animation-direction: alternate-reverse; */
  overflow: hidden; 
}

@keyframes bckgrnd_anim {
  0%{
   background-position: 100% 0%;
  }
  /* 25%{
    background-position: 100% 100%;
  }
  50%{
    background-position: 0% 100%;

  }
  75%{
    background-position: 100% 0%;

  } */
  100%{
    background-position: 0% 100%;

  }
  
}
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accentCol);
  border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--hoverCol);
}

.nav {
  /* background-color: pink; */
  width: 100vw;
  /* min-height: var(--navBarHeight); */
  height: fit-content;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  margin-bottom: 1%;
}


.nav>div:nth-of-type(1) {
  /*Header Contailer*/
  /* background-color: skyblue; */
  width: 95%;
}

.nav>div:nth-of-type(1)>h1>a {
  text-decoration: none;
  letter-spacing: -0.07em;
  /* font-size: var(--pagetitlesize); */
  font-size: 8vh;
  display: inline-block;
  margin: 0px;
  margin-right: 1%;
  line-height: 0.9;
  color: var(--pageTitleCol);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: var(--titleBorderWeight) var(--titleBorderWeight) 0 var(--tertiary_color),
    -1px -1px 0 var(--tertiary_color),
    1px -1px 0 var(--tertiary_color),
    -1px 1px 0 var(--tertiary_color),
    1px 1px 0 var(--tertiary_color);
    cursor: pointer;
}

.nav>div:nth-of-type(1)>h2 { 
  letter-spacing: 0.06em; 
  line-height: 1em;
  /* font-size: var(--pagetitleSUBsize); */
  font-size: 3vh; 
  margin: 0px;
  margin-left: 1%;
  line-height: 1;
  color: var(--tertiary_color);
  font-weight: 300;
}

.nav>div:nth-of-type(1)>h2>span {

  --delay: calc((var(--char-index) + 1)*60ms);
  /*here*/
  -webkit-animation: PageTitle_breathe__1Qmss 10s infinite both;
  animation: PageTitle_breathe__1Qmss 10s infinite both;
  -webkit-animation-delay: var(--delay);
  animation-delay: var(--delay);
  /* -webkit-animation-play-state: paused;
  animation-play-state: paused */
}

@keyframes PageTitle_breathe__1Qmss {
  0% {
    font-variation-settings: "wght" 400, "wdth" 500;
    /* letter-spacing: -.07em */
  }

  10% {
    font-variation-settings: "wght" 1000, "wdth" 400;
  }

  20% {
    font-variation-settings: "wght" 400, "wdth" 500;
    /* letter-spacing: -.1em */
  }

  100% {
    font-variation-settings: "wght" 400, "wdth" 500;
    /* letter-spacing: -.07em */
  }
}

div.burger {
  width: var(--burgerSize);
  height: var(--burgerSize);

  /* transition: all 0.5s;
  transition-timing-function: var(--timingFunction); */
  /* border-radius: var(--borderradius); */
  /* overflow: hidden; */

}


div.burger>div.icon {

  background-color: var(--burgerCol_2);
  /* border: solid var(--borderWeight) var(--burgerCol_2);  */
  border-radius: 100%;
  /*var(--borderradius);*/
  /* width: var(--navBarHeight); */
  height: calc(var(--navBarHeight) - var(--burgerStackTop));
  padding-top: var(--burgerStackTop);
  transform: scale(0.6);
  transition: all 0.25s;
}

div.burger>div.icon:hover {
  /* transform:translateY(-5px); */
  cursor: pointer;
  background-color: var(--hoverCol);
  transition: background-color;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div.icon>div {
  width: var(--burgerWidth);
  height: 15%;
  background-color: var(--secondary_color);
  border-radius: 10px;
  margin: auto;

  margin-bottom: 10px;
  /* margin-left:10%; */
  transform: scale(0.8);
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div.icon:hover>div {
  background-color: var(--accentCol);
}

div.burger[data-state="open"]>div.icon>div:nth-of-type(1) {
  transform: rotate(45deg) translateY(6px) translateX(6px) scale(0.8);

}

div.burger[data-state="open"]>div.icon>div:nth-of-type(2) {
  transform: rotate(-45deg) translateY(-6px) translateX(6px) scale(0.8);
}

div.burger>div:not(:first-of-type) {
  background-color: var(--burgerCol_2);
  /* border: solid var(--borderWeight) var(--burgerCol_2); */
  border-radius: var(--borderradius);
  margin-top: 5%;
  /* border-top: none; */
}

div.burger>div:not(:first-of-type):hover {
  background-color: var(--hoverCol);
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div:not(:first-of-type)>a {
  text-transform: uppercase;
  /* color: black;
  font-weight: 400; */
  text-decoration: none;
}

div.burger>div:not(:first-of-type)>a>p {
  margin: 0;
  padding-top: 5%;
  padding-bottom: 5%;
  font-size: var(--burgerItemSize);
  text-align: center;
  color: var(--secondary_color);
  font-weight: 600;
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.burger>div:not(:first-of-type):hover>a>p {
  color: var(--accentCol);
}

div.burger[data-state="closed"]>div:not(:first-of-type) {
  display: none;
}

div.burger[data-state="open"] {
  overflow: visible;
}

div.burger[data-state="open"]>div.icon {
  /* border-top-left-radius:var(--borderradius);
  border-top-right-radius:var(--borderradius); */
}

div.burger[data-state="open"]>div:not(:first-of-type) {
  display: block;
}

div.page {
  /* background-color: pink; */
  height: var(--contentHeight);
  /* max-width:calc(100vw - 12%); */
  /* border:solid var(--borderWeight) var(--tertiary_color);  */
  flex-grow: 1;
  order: 2;
  display: flex;
  overflow: hidden;
  border-radius: var(--borderradius);
  /* padding: 5px; */
}

div.content {
  /* background-color: red; */
  height: 100%;
  order: 2;
  width: 100%;
  overflow: hidden;
}

div.desc>h1 {
  margin: 0;
  width: fit-content;
  /* width: 100%; */
  font-weight: 500;
  padding: 0;
  line-height: 1;
  font-size: 4vh;  
  /* margin-left: var(--marginLeft)!important; */
}

div.desc>h2 {
  margin: 0;
  /* margin-left:var(--marginLeft)!important; */
  /* width: fit-content; */
  width: 100%;
 
}
div.desc>h2:has(div){
  width: fit-content;
}
div.desc>h3 {
  margin: 0;
  display: inline-block;
  width: fit-content;
  /* margin-left:var(--marginLeft)!important; */
  width: 100%;
}

div.desc {
  font-size: var(--pSize);
  font-weight: 200;

}

div.desc>p {

  /* overflow-y: auto;  */
  /* margin-left:var(--marginLeft)!important; */
  width: 100%;
  text-align: left;
   font-weight:360;/* 300; */
  line-height: 1.5;
  /* font-size: var(--pSize); */
  font-size:2.5vh; 
  margin: 0;
}
div.desc>p>strong {
  font-size: var(--h2Size);
  font-weight: 500;
  padding: 0;
    line-height: 1;
}
div.desc>p.feat {
  /* font-size: var(--pSize); */
  margin-bottom: 2%;
  margin-top: 0;
  width: 100%;
}

li {
  list-style-type: "✱";
  /*☍⎎⏣☼▸⬖☂⧨✷✺*/
  padding-left: 1%;
  /* font-size: var(--pSize); */
  font-family: "Changa", sans-serif;
  margin-bottom: 5%;
  font-weight: 300;
  line-height: 1.5;
  font-size: var(--pSize);
}
li>strong{
  font-size: var(--h2Size);
  font-weight: 500;
}
li::marker {
  animation-name: spin;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
a{
  color: var(--burgerCol_2);
}
@keyframes spin {
  0% {
    transform: rotate(0deg) translateY(0px);
  }

  50% {
    transform: rotate(180deg) translateY(0px);
  }

  100% {
    transform: rotate(360deg) translateY(0px);
  }
}

li.highlight {
  color: var(--thirdCol);
}

ul {
  padding-left: 5%;
  margin-top: 0;
  width: 100%;
}

div.content>div>div.desc {
  /* background-color:var(--tertiary_color);  */
  width: 50%;
  flex-basis: auto;
  display: flex;
  flex-direction: row;
  padding-right: 1%;
  gap: 2%;
  /* margin-left: 5px; */
  flex-wrap: wrap;
  align-content: flex-start;
  /* height: 100%; */
  align-items: stretch;
  overflow-y: auto;
  overflow-x: clip;
  border-right: calc(var(--borderWeight) * 5) solid var(--tertiary_color);
}

div.content>div>div.media {
  /* background-color: salmon; */
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
  justify-content: space-between;
  overflow-y: auto;
}

div.media {
  overflow: hidden;
  align-content: center;
}

div.media>img {
  height: auto;
  width: 100%;
  margin: auto;
}

div.media>img.portrait {
  width: auto;
  height: 100%;
}

div.media>video {
  height: auto;
  width: 100%;
  margin: auto;
  margin-top: 2%;
}

div.media>video.portrait {
  height: 100%;
  width: auto;
}

div.media>img:not(:first-of-type) {
  margin-top: 2%;
}

div.media>.pdf {
  height: 100%;
  width: 90%;
  margin: auto;
}

div.media>.youtube {
  height: 90%;
  width: 100%;
  margin: auto;
}

div.media>div.slideshow {
  width: 100%;
  height: 100%;
  background-color: black;
}

div.media>div.slideshow>div:not(div.UI) {
  height: 100%;
  text-align: center;
  display: none;
}

div.media>div.slideshow>div[data-state="0"] {
  display: block !important;
}

div.slideshow>div>img {
  height: 100%;
}

div.slideshow>div.UI {
  /* background-color: red; */
  width: 6.5%;
  height: 4%;
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 2%;
  margin-left: 27%;
  margin-top: 1%;
}

div.slideshow>div.UI>div {
  /* background-color: yellow; */
  height: 100%;
  width: 50%;
  z-index: 2;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.slideshow>div.UI>div:hover {
  /* background-color: red; */
  transform: scale(0.8);
}

div.slideshow>div.description {
  /* background-color: pink; */
  background-color: #0000008a;
  width: 60%;
  height: auto !important;
  position: sticky;
  bottom: 20%;
  margin: auto;
}

div.slideshow>div.description>p {
  font-size: var(--slideShowDescription);
  color: white;
  background-color: #0000007a;
  width: fit-content;
  text-align: center;
  margin: auto;
}

div.UI>div[data-role="forward"] {
  background-image: url("assets/left_arrow.png");
}

div.UI>div[data-role="back"] {
  background-image: url("assets/right_arrow.png");
}

div.slideshow>div>video {
  height: 100%;
  width: auto;
}

div.media>div.card{
  --delay: calc((var(--char-index) + 1)*300ms);
  /*here*/
  /* background-color: var(--secondary_color); */
  display: inline-block;
  font-size: 2em;
  /* border: 0.5px solid black; */
  /* border-left: none;
  border-bottom: none; */
  justify-content: center;
  width: 100%;
  /*fit-content*/
  flex-grow: 1;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
  animation-name: card_warp;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: var(--delay);
  background-size: auto;
  overflow: hidden;
}

div.media>div.card.wide {
  width: 100%;
  overflow: hidden;
}

div.media>div.card.wide:nth-of-type(1) {
  border-bottom: var(--borderWeight) solid var(--tertiary_color);
}

div.desc>div.card, div.desc>h2>div.card{
  background-color: var(--tertiary_color);
  font-size: 2em;
  padding: 2%;
  border: none;
  border-radius: var(--borderradius);
  justify-content: center;
  width: fit-content;
  height: fit-content;
  flex-grow: 1;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
  overflow: hidden;
  /*alt*/
  margin: auto;
  max-width: 60%;
  margin-bottom: 5%; /*latest*/
}
div.desc>h2>div.card{
  margin:0px!important;
  font-size: var(--h2Size)!important;
  padding: 10%;
  width: fit-content!important;
  max-width: 100% !important;
    height: fit-content;
}
div.desc>div.card:nth-of-type(2) {
  /* border-left: 0.5px solid black;; */

}

div.desc>div.card>a>h2, div.desc>h2>div.card>a>h2 {
  /* font-size: 80%; */
  font-size: 3vh;
  margin: 0;
  color: var(--secondary_color);
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.desc>div.card>a>h2, div.desc>h2>div.card>a>h2 {
  white-space: nowrap;
}
div.media>div.card:hover {
  background-color: var(--hoverCol);
  cursor: pointer;
  background-size: cover;
  /* transform: scale(1.1); */
}

div.media>div.card>a>h2 {
  color: black;
  transition: all;
  transition-duration: 0.5s;
  transition-timing-function: var(--timingFunction);

}

div.media>div.card:hover>a>h2 {
  color: var(--accentCol);
  text-shadow: none;

}

div.desc>div.card:hover, div.desc>h2>div.card:hover {
  background-color: var(--hoverCol);
  cursor: pointer;
  /* transform: scale(1.1); */
}

div.desc>div.card:hover>a>h2, div.desc>h2>div.card:hover>a>h2 {
  color: var(--accentCol);
  text-shadow: none;

}

div.card[data-highlight='true'] {
  animation-name: highlight;
  animation-play-state: running;
  animation-duration: 2s;
  animation-timing-function: var(--timingFunction);
  animation-iteration-count: infinite;
}

div.media>div>a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

div.media>div>a>h2 {
  /* margin: 0; */
  height: 100%;
  /* margin-top: auto; */
  width: 95%;
  text-align: left;
  padding: 5%;
  font-size: 4vh;
  font-weight: 1000;
  text-shadow: 1px 1px 0 var(--secondary_color),
    -1px 1px 0 var(--secondary_color),
    -1px -1px 0 var(--secondary_color),
    1px -1px 0 var(--secondary_color);
}
/*card in title*/
@keyframes card_warp {
  0% {
    background-position: top;
  }

  20% {
    background-position: left;

  }

  40% {
    background-position: center;
  }

  60% {
    background-position: bottom;
  }

  80% {
    background-position: right;
  }

  100% {
    background-position: top;
  }
}

div.desc>div>a, div.desc>h2>div>a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

div.desc>p>img {
  width: 100%;
  margin-top: 5%;
}

div.desc>p>span {
  font-size: calc(var(--pSize) * 0.6);
  font-style: italic;

}
div.desc>p>span.quote {
  font-size:var(--h2Size);
  font-style: italic;
}
div.desc>p>span.quote::before {
  content: '"';
  line-height: 0.05rem;
  font-size: var(--h1Size);
}
div.desc>p>span.quote::after {
  content: '"';
  line-height: 0.05rem;
  font-size: var(--h1Size);
}
div.content[data-state='closed'] {
  display: none;

}

div.main,
div.main1by1,
div.main1by1f,
div.main1by2,
div.main1by2f {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}


div.main1by1>div.desc {
  width: 50%;
}

div.main1by1>div.media {
  width: 50%;
}

div.main1by1f>div.desc {
  width: 50%;
  order: 2;
}

div.main1by1f>div.media {
  width: 50%;
  order: 1;
}

div.main1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hideen;
}

div.main1>div.desc {
  width: 100% !important;
  height: fit-content;
  display: none!important;
  text-align: center;
}

div.main1>div.desc>p {
  display: none;
}

div.main1>div.media {
  width: 100% !important;
  height: 95%;/*fit-content;*/
  overflow: hidden!important;

}

div.main1by2>div.desc {
  width: 30% !important;
}

div.main1by2>div.media {
  width: 70% !important;
}

div.main1by2f>div.desc {
  width: 30% !important;
  order: 2;

}

div.main1by2f>div.media {
  width: 70% !important;
  order: 1;
}

div.timeline {
  /* background-color: skyblue; */
  /* max-width: 7vw; */
  /* width: 75px; */
  margin-top: 1%;
  margin-right: 1%;
  /* margin-left: -2%; */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  order: 1;
  /* transform: translateX(calc(100% * 0.125)); */
}

div.line {
  background-color: rgba(0, 0, 0, 0.2);
  width: 2px;
  flex-grow: 1;
  margin: auto;
}

div.line:nth-of-type(1) {
  display: none;
}

div.segment {
  background-color: black;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
  transition-timing-function: var(--timingFunction);
  transform: scale(0.75);
  width: 110%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 4px solid;
}

div.segment[data-highlight='true'] {
  animation-name: highlight;
  animation-play-state: running;
  animation-duration: 2s;
  animation-timing-function: var(--timingFunction);
  animation-iteration-count: infinite;

}

@keyframes highlight {
  0% {
    border-color: black;
  }

  25% {
    border-color: var(--accentCol);
  }

  50% {
    border-color: black;
  }

  100% {
    border-color: black
  }
}

div.segment:hover {
  animation-play-state: paused;
  background-color: var(--hoverCol) !important;
  border-color: var(--hoverCol) !important;
}

div.segment.active {
  /* background-color: var(--clickedCol); */
  /* border-radius: 5px; */
  animation-play-state: paused;
  background-color: var(--accentCol) !important;
  border-color: var(--accentCol) !important;
  transform: scale(1);
}

div.segment>h1 {
  /* background-color: green; */
  margin: 0;
  text-align: center;
  font-size: var(--timeLineh1);
  font-weight: 400;
  /* max-width: 7vw;
  min-width: 5vw; */
  color: white;
  margin-bottom: 2%;
  overflow-wrap: anywhere;
}

div.segment>h2 {
  /* background-color: purple; */
  margin: 0;
  margin-top: 5%;
  font-size: 0em;
  text-align: center;
  color: white;
  font-weight: 400;
  display: none;
  transition: font-size 0.5s;
  transition-timing-function: var(--timingFunction);
}

div.segment.active>h2 {
  display: block;
  font-size: var(--timelineh2);
}

#loading {
  width: 100%;
  height: fit-content;
  /* background-color: purple; */
  position: absolute;
  top: 0;
  z-index: 3;
  top: 50%;
  /* display: none; */
}

#loading>div {
  width: 100px;
  height: 100px;
  margin: auto;
  background-image: url("assets/video_loading.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: calc(50% - 25%);
  animation-name: loading;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

}

div.media>img+#loading {
  display: none;
}

div.media>iframe {
  border: none;
  overflow: hidden;
}

div.media>iframe+#loading {
  display: none;
}

div.media>div.link+#loading {
  display: none;
}

div.media>div.slideshow+#loading {
  display: none;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

#loading.hide {
  display: none !important;
}

div.footer {
  /* background-color: pink; */
  display: flex;
  flex-wrap: nowrap;
  /* gap: 5%; */
  justify-content: space-evenly;
  align-items: baseline;
  flex-direction: row-reverse;
  width: calc(98% - var(--marginLeft));
  height: calc(var(--footerHeight) - 2%);
  position: fixed;
  bottom: 0px;
  margin: 0;
  padding-bottom: 1%;
  overflow: hidden;
  align-content: space-around;
}

div.footer>div.desc {
  max-width: 100%;
  text-align: center;
  align-self: end;

}

div.footer>div.desc>p {
  margin: 0;
  font-size: var(--footerFontSize);
}

div.footer>div:not(.desc) {
  height: var(--footerLogoSize);
  align-self: end;
}

div.footer>div:not(.desc):nth-of-type(1) {}

div.footer>div:not(.desc):nth-last-of-type(1) {
  height: calc(var(--footerLogoSize) - 10%);

}

div.footer>div:not(.desc)>a>img {
  height: 120%;
}

div.chatbot {
  position: fixed;
  display: block;
  bottom: 0;
  right: 0;
  background-color: red;
  z-index: 50;
}

div.chatbot>iframe {
  /* position: absolute; */
}

div.chatbot>iframe:nth-last-of-type(1) {
  /*Chat Bot*/

  margin-right: 1rem;
  margin-bottom: 6rem;
  /* display: block;*/
  position: absolute;
  right: 0px;
  bottom: 0px;
  pointer-events: auto;
  overflow: hidden;
  height: 65vh;
  border: 2px solid rgb(226, 232, 240);
  border-radius: 0.375rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  width: 30rem;
}

div.chatbot>iframe:nth-last-of-type(2) {
  /*Chat Button*/
  z-index: 50;
  margin-right: 1rem;
  margin-bottom: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  border: 0;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  color-scheme: none;
  background: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/***__UNITY_WebGL Rules__***/
#unity-container {
  /* position: absolute; */
   width:100%; 
  height:100%;
  /* background-color: pink; */
}

#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

#unity-container.unity-mobile {
  position: fixed;
  width: 100%;
  height: 100%
}

#unity-canvas {
  background: var(--canvasBackground);
   width:100%; 
   height: 100%;
   border-radius: var(--borderradius);
   /* border-bottom-right-radius: var(--borderradius); */
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: fit-content;
}

#unity-loading-bar {
  position: fixed;
  width: 95%;
  height:70%;
  top:calc(var(--navBarHeight) + 12%);
   /* left: 50%; */
   
  margin: auto;
  /* transform: translate(-50%, -50%); */
  display: none; 
   /* background-color:rgb(135, 206, 235,0.5);  */
  flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

#unity-logo {

  width: 30%;
  height: 30%;
  background-position: center;
  background-image: url('/assets/unity/unity-logo-dark.png');
  background-size: contain;
  background-repeat: no-repeat;
  animation-name: logo;
  animation-duration: 10s;
  animation-timing-function: var(--timingFunction);
  animation-iteration-count: infinite;


  
}
@keyframes logo {
  0%{
    background-image: url('/assets/unity/unity-logo-dark.png');

  }
  10%{
    background-image: url('/assets/footer/image/cccu_logo.png');
  }
  30%{
    background-image: url('/assets/footer/image/gkm_logo.png');
  }
  50%{
    background-image: url('/assets/footer/image/NIAB_logo.png');

  }
  70%{
    background-image: url('/assets/footer/image/LiK_logo.png');

  }
  90%{
    background-image: url('/assets/footer/image/Driscolls_logo.png');
  }
  100%{
    background-image: url('/assets/unity/unity-logo-dark.png');
  }
  
}
#unity-progress-bar-empty {
  width: 70%;
  height: 18px;

  /* background: url('/assets/unity/progress-bar-empty-dark.png') no-repeat center; */
  border-radius: var(--borderradius);
  overflow: hidden;
  /* background-color: red; */
  border: var(--borderWeight) solid var(--burgerCol_2);
}

#unity-progress-bar-full {
  width: 5%;
  height: 100%;

  /* background: url('/assets/unity/progress-bar-full-dark.png') no-repeat center; */
  background-color: var(--accentCol);
}

#unity-footer {
  /* position: relative; */
  background-color: pink;
}

.unity-mobile #unity-footer {
  display: none
}

#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  background: url('/assets/unity/webgl-logo.png') no-repeat center
}

#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px
}

#unity-fullscreen-button {
  cursor: pointer;
  position: fixed;
 
  z-index: 2;
  width: 38px;
  height: 38px;
  background: url('/assets/unity/fullscreen-button.png') no-repeat center;
  border-radius: var(--borderradius);
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none
}

#unity-mobile-warning{
   position: absolute;
  top:calc( var(--navBarHeight) + 5%); 
  margin-left:1%;
  font-weight: 300;
   color:var(--burgerCol_2);
   display: none; 

}