@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

.loader-wrapper {
  z-index: 11;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*   background-color: cadetblue; */
  background-color: #35455f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #35bcb6;
  animation: loader 2s infinite ease;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  opacity: 0;
  -moz-animation: fadeout 1s linear;
  -webkit-animation: fadeout 1s linear;
  animation: fadeout 1s linear;
}

.hidden {
  visibility: hidden;
}

.none {
  display: none;
}

.videoBackground video {
  right: 0;
  bottom: 0;
  height: 100vh;
  position: fixed;
  min-width: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
  min-height: 100%;
  object-fit: fill;
}

.userDetailsOuter {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.userDetails {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  width: 50%;
  height: 50%;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 1rem 0 #35bcb6;
  border-radius: 20px;
  background-color: #35455f99;
  backdrop-filter: blur(5px);
}

.userDetails.off {
  backdrop-filter: none;
}

.logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.logo img {
  width: 20%;
}

.welcome {
  font-size: 40px;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

#wrapper {
  width: 8vw;
  height: 16vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.my-super-cool-btn {
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.5rem;
  box-sizing: border-box;
}
.my-super-cool-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

:root {
  --transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1), opacity 0s;
}

.my-super-cool-btn span:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 100%;
  border: 7px solid #fff;
  box-sizing: border-box;
  transition: var(--transition);
  background: #35bcb6;
  /*  transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1), opacity 0s; */
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.14), 0 15px 35px rgba(0, 0, 0, 0.14);
}
.my-super-cool-btn:hover span:before {
  transform: scale(0.8);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14), 0 15px 35px rgba(0, 0, 0, 0.14);
}

.my-super-cool-btn span i {
  z-index: 1;
}

.my-super-cool-btn span p {
  z-index: 1;
}

.my-super-cool-btn .dots-container {
  opacity: 0;
  animation: intro 1.6s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn .dot {
  width: 8px;
  height: 8px;
  display: block;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1), opacity 0s;
}
.my-super-cool-btn .dot:nth-child(1) {
  top: 50px;
  left: 50px;
  transform: rotate(-140deg);
  animation: swag1-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn .dot:nth-child(2) {
  top: 50px;
  right: 50px;
  transform: rotate(140deg);
  animation: swag2-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn .dot:nth-child(3) {
  bottom: 50px;
  left: 50px;
  transform: rotate(140deg);
  animation: swag3-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn .dot:nth-child(4) {
  bottom: 50px;
  right: 50px;
  transform: rotate(-140deg);
  animation: swag4-out 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.my-super-cool-btn:hover .dot:nth-child(1) {
  animation: swag1 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(2) {
  animation: swag2 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(3) {
  animation: swag3 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(4) {
  animation: swag4 0.3s;
  animation-fill-mode: forwards;
}
@keyframes intro {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes swag1 {
  0% {
    top: 50px;
    left: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag1-out {
  0% {
    top: 20px;
    left: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 50px;
    left: 50px;
    width: 8px;
    opacity: 0;
  }
}
@keyframes swag2 {
  0% {
    top: 50px;
    right: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 18px;
    right: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag2-out {
  0% {
    top: 20px;
    right: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    top: 50px;
    right: 50px;
    width: 8px;
    opacity: 0;
  }
}
@keyframes swag3 {
  0% {
    bottom: 50px;
    left: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 18px;
    left: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag3-out {
  0% {
    bottom: 20px;
    left: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 50px;
    left: 50px;
    width: 8px;
    opacity: 0;
  }
}
@keyframes swag4 {
  0% {
    bottom: 50px;
    right: 50px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 18px;
    right: 5px;
    width: 8px;
    opacity: 1;
  }
}
@keyframes swag4-out {
  0% {
    bottom: 20px;
    right: 20px;
    width: 8px;
  }
  50% {
    width: 30px;
    opacity: 1;
  }
  100% {
    bottom: 50px;
    right: 50px;
    width: 8px;
    opacity: 0;
  }
}

#login {
  cursor: pointer;
}

.rounded {
  display: none;
}

.main {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f7f8fb;
  transition: 0.5s;
}

.main .topbar {
  width: 100%;
  background: rgb(40, 170, 196);
  background: linear-gradient(
    90deg,
    rgba(40, 170, 196, 1) 0%,
    rgba(53, 188, 182, 1) 50%,
    rgba(2, 0, 36, 1) 100%
  );
  position: relative;
  height: 6vh;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.toggle {
  position: relative;
  width: 60px;
  height: 49px;
  cursor: pointer;
  transform-style: preserve-3d;
}

.toggle a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  font-size: 2em;
  transform-style: preserve-3d;
  perspective: 500px;
}

.toggle a:hover .fas {
  transform: scale(1.15) translateZ(20px);
}

#username {
  font-size: 20px;
}

.user {
  position: relative;
  width: 45px;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard {
  width: 100%;
  height: 94vh;
  display: none;
}

.dashboard.block {
  display: block;
  z-index: 3;
}

.dashboard iframe {
  height: 100%;
  width: 100%;
}

.map {
  width: 100%;
  height: 94vh;
  display: none;
}

.map.block {
  display: block;
}

.map.mapiframe {
  position: relative;
  width: 100%;
  height: 100%;
}

.history {
  width: 100%;
  height: 94vh;
  display: none;
}

.history.block {
  display: block;
}

.history iframe {
  height: 100%;
  width: 100%;
}

.truckMap {
  width: 100%;
  height: 100%;

  display: none;
}

.truckMap.block {
  display: block;
}

.truckMapHistory {
  width: 100%;
  height: 100%;

  display: none;
}

.truckMapHistory.block {
  display: block;
}

.truckMapHistoryForOne {
  width: 100%;
  height: 100%;

  display: none;
}

.truckMapHistoryForOne.block {
  display: block;
}

.prj007 {
  width: 100%;
  height: 100%;

  display: none;
}

.prj007.block {
  display: block;
}

.landing {
  display: block;
}

.landing.none {
  display: none;
}

.apps {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /*   z-index: 2;
 */
  transition: 0.5s;
}

.landing video {
  right: 0;
  bottom: 0;
  height: 100vh;
  position: fixed;
  min-width: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
  min-height: 100%;
  object-fit: fill;
}

.background {
  /*   background: cadetblue; */
  width: 100%;
  height: 68%;
  display: flex;
  position: absolute;
  top: 0;
  /*   z-index: 1;
 */
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
}

.background .logo img {
  width: 50%;
  filter: drop-shadow(6px 4px 2px #63676e);
}

.powered {
  position: absolute;
  right: 0;
  bottom: 1%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

.powered p {
  font-size: 25px;
  color: white;
  margin-right: 1%;
}

.powered img {
  width: 25%;
}

.lower {
  width: 100%;
  height: 32%;
  position: absolute;
  top: 68%;
  z-index: 1;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background-color: rgba(53, 69, 95, 0.6);
  backdrop-filter: blur(3px);
}

.sci {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: 8px;
  margin-top: 65px;
  flex-direction: row;
  /* margin: 10px; */
  justify-content: space-evenly;
  /* flex-wrap: wrap; */
  justify-content: space-between;
}

.sci li {
  list-style: none;
  margin-right: 25px;
  margin-bottom: 25px;
  cursor: pointer;
}

.sci li::before {
  content: attr(data-text);
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 120px));
  font-size: 2.5vw;
  pointer-events: none;
  font-weight: 700;
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  color: white;
}

.sci li:hover::before {
  opacity: 0.7;
  transform: translate(-50%, calc(-50% + 150px));
}

.sci li a {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  background: #35bcb6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  border-radius: 10px;
  text-decoration: none;
  font-size: 4em;
  transform-style: preserve-3d;
  perspective: 500px;
  box-shadow: -1px 0px 20px 2px #35bcb6;
}

.js-tilt-glare {
  border-radius: 10px;
}
.sci li.towerCraneRealTime a:hover {
  background: #000;
}
.sci li.towerCraneHistory a:hover {
  background: #000;
}
.sci li.oysterMap a:hover {
  background: #000;
}
.sci li.truckRealTime a:hover {
  background: #000;
}
.sci li.truckHistory a:hover {
  background: #000;
}
.sci li.truckHistoryForOne a:hover {
  background: #000;
}
.sci li.PEmap a:hover {
  background: #000;
}
.sci li.logout a:hover {
  background: #000;
}

.sci li a .fas {
  transition: 0.25s;
  pointer-events: none;
  color: white;
}

.sci li a:hover .fas {
  color: #fff;
}

.sci li a:hover .fas {
  transform: scale(1.5) translateZ(50px);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (orientation: portrait) {
  .sci li a {
    width: 70px;
    height: 70px;
    font-size: 2em;
  }
}
@media only screen and (min-width: 768px) and (orientation: landscape) {
  .sci li a {
    width: 100px;
    height: 100px;
    font-size: 3em;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .sci li a {
    width: 100px;
    height: 100px;
    font-size: 3em;
  }
  #wrapper {
    width: 12vw;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  #wrapper {
    width: 10vw;
  }
}

@media only screen and (min-width: 1900px) {
  #wrapper {
    width: 8vw;
  }
}
