


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tinos', serif;
}
.sidebar {
  position: fixed;
  padding-right: 10px;
  height: 100%;
 opacity: 1;
 padding-top: 20px;
  background: #000; 
  box-shadow: rgb(0 0 0 / 49%) 2px 2px 3px 0px, rgb(0 0 0 / 80%) -6px -2px 16px 0px;
  /* background: -webkit-linear-gradient(to right, #004e92, #000428); 
  background: linear-gradient(to right, #00ddf3, #003f71); */
  z-index: 100;
  transition: all 0.5s ease;
}
/* .sidebar.close {
  width: 78px;
} */
.sidebar .logo-details {
  height: 60px;
  width: 100%;
  
}
.sidebar .logo-details i {
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name {
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links {
  height: 100%;
  padding: 0 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links {
  overflow: visible;
  text-align: center;
  margin-top: 20px;
}
.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}
.sidebar .nav-links li {
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li {
  background: linear-gradient(to right, #004e92, #000428); 
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sidebar .nav-links li .icon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .icon-link {
  display: block;
}
.sidebar .nav-links li i {
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow {
  display: none;
}
.sidebar .nav-links li a {

  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name {
  opacity: 1;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu {
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #002a5f;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}
.sidebar .nav-links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover {
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details {
  background: none;
}
.sidebar.close .profile-details {
  width: 78px;
}
.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.sidebar .profile-details img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img {
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
  display: none;
}
.sidebar .profile-details .job {
  font-size: 12px;
}
.home-section {
  position: relative;
  background: #e4e9f7;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.sidebar.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}
.home-section .home-content {
  height: 60px;
  display: flex;
  align-items: center;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: #11101d;
  font-size: 35px;
}
.home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .sidebar.close .nav-links li .sub-menu {
    display: none;
  }
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus{
    opacity: 1;
}








/* .wrapper {
  padding-top: 145px;
  margin-left: -184px;
} */
.outside-circle {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 80px;
  overflow: hidden;
}
.outside-circle.is-active {
  box-shadow: 0 0 0 20px rgba(0, 159, 223, 0.3);
}
.inside-circle {
  position: relative;
  margin: 10px auto;
  border-radius: 80px;
  width: 80px;
  height: 80px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0px 0px 0px 150px #ccc;
}
.animate .inside-circle {
  animation: eclipse 2s linear forwards;
}
@keyframes eclipse {
  0% {
    box-shadow: 0px -240px 0px 150px #009fdf, 0px 0px 0px 150px #ccc;
 }
  100% {
    box-shadow: 0px 0px 0px 150px #009fdf, 0px 0px 0px 150px #ccc;
 }
}
.vertical-line {
  background: #ccc;
  width: 10px;
  height: 150px;
  margin: 0 auto;
}
.vertical-line::before {
  content: "";
  display: block;
  background: #009fdf;
  width: 100%;
  height: 0;
  margin: auto;
}
.animate .vertical-line::before {
  transition: height 1s linear;
  height: 150px;
}
.horizontal-line {
  background: #ccc;
  height: 10px;
  width: 290px;
  margin: 80px auto;
  position: relative;
  left: 225px;
}
.horizontal-line::before {
  content: "";
  position: absolute;
  background: #009fdf;
  width: 0;
  height: 10px;
  margin: auto;
  left: 5px;
}
.animate .horizontal-line::before {
  transition: width 0.5s linear;
  width: 290px;
}
.corner {
  position: absolute;
  width: 90px;
  height: 90px;
}
.corner__left {
  top: -80px;
  left: -85px;
}
.corner__right {
  bottom: -80px;
  right: -85px;
}
.corner path {
  stroke-width: 11px;
  fill: none;
}
.corner .grey-path {
  stroke: #ccc;
}
.corner .blue-path {
  stroke: #009fdf;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.animate .corner .blue-path {
  animation: corner-fill linear 0.5s forwards;
}
@keyframes corner-fill {
  to {
    stroke-dashoffset: 0;
 }
}
.animate .anim-first {
  animation-delay: 0s;
}
.animate .anim-first .icon {
  transition-delay: 0s;
}
.animate .anim-second::before {
  transition-delay: 1s !important;
}
.animate .anim-third {
  animation-delay: 2s;
}
.animate .anim-third .icon {
  transition-delay: 2s;
}
.animate .anim-fourth::before {
  transition-delay: 3s !important;
}
.animate .anim-fifth {
  animation-delay: 4s !important;
}
.animate .anim-6th::before {
  transition-delay: 4.4s !important;
}
.animate .anim-7th {
  animation-delay: 4.9s !important;
}
.icon {
  display: block;
  width: 100%;
  height: 0%;
  overflow: hidden;
}
.animate .icon {
  transition: height 1s linear;
  height: 100%;
}
.icon::before {
  content: "";
  display: inline-block;
  position: relative;
  font-size: 40px;
  top: 40px;
  margin-top: -25px;
  color: #009fdf;
  overflow: hidden;
}
.icon_checkmark::before {
  content: "\2714";
}
.icon_whistle::before {
  display: block;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(data:image/svg+xml;
 base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9Ijc1IiBoZWlnaHQ9Ijc1IiB2aWV3Qm94PSIwIDAgMzIgMzIiIGZpbGw9IiMwMDlGREYiPiAgPHRpdGxlPndoaXN0bGU8L3RpdGxlPiAgPHBhdGggZD0iTTguMjEzIDE3LjQxYzAuNjk3LTIuNTQyIDMuMDI0LTQuNDEgNS43ODctNC40MWgxdjJoM3YtMmgxMHYzbC04LjEzMiAxLjc0M2MwLjA4NiAwLjQwNSAwLjEzMiAwLjgyNiAwLjEzMiAxLjI1NyAwIDMuMzE0LTIuNjg2IDYtNiA2LTIuNzYzIDAtNS4wOTAtMS44NjgtNS43ODctNC40MS0wLjMzNiAwLjI1Ny0wLjc1NyAwLjQxLTEuMjEzIDAuNDEtMS4xMDUgMC0yLTAuODk1LTItMnMwLjg5NS0yIDItMmMwLjQ1NiAwIDAuODc3IDAuMTUzIDEuMjEzIDAuNDF2MCAwek03IDE4Yy0wLjU1MiAwLTEgMC40NDQtMSAxIDAgMC41NTIgMC40NDQgMSAxIDEgMC41NTIgMCAxLTAuNDQ0IDEtMSAwLTAuNTUyLTAuNDQ0LTEtMS0xdjB6TTE2IDd2NGgxdi00aC0xek0yMS4xMiA4LjAyMWwtMi4xMiAzLjM5MiAwLjg0OCAwLjUzIDIuMTItMy4zOTItMC44NDgtMC41M3pNMTEuODQ4IDguMDIxbDIuMTIgMy4zOTItMC44NDggMC41My0yLjEyLTMuMzkyIDAuODQ4LTAuNTN6Ij48L3BhdGg+PC9zdmc+);
}






.tank {

  width: 100%;
  height: 100%;
  position: absolute;
}
.bg {
  background: url(http://yveshelie.net/codepen/pipes.png) left top no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.tube {
  background-color: #efefef;
  position: absolute;
}
.tube.x {
  height: 15px;
  /* border: 1px solid #00447663; */
}
.tube.y {
  width: 15px;
}
.water {
  background-color: #00e2f5;
  position: absolute;
}
.water.left {
  left: 0;
}
.water.right {
  right: 0;
}
.water.top {
  top: 0;
}
.water.bottom {
  bottom: 0;
}
.x .water {
  height: 100%;
}
.y .water {
  width: 100%;
}




.wrapper {
  position: absolute;
  width: 30rem;
  height: 4rem;
    z-index: 999;
    top: 150px;
    left: -144px
}
.outer-shadow {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow:
  -0.7rem 0.2rem 0.5rem rgba(34, 100, 158, 0.1),
  0.7rem 0.2rem 0.5rem rgba(34, 100, 158, 0.1),
  0 0.5rem 0.5rem rgba(34, 100, 158, 0.1),
  inset 0 -0.1rem 0.2rem rgba(34, 100, 158, 0.2),
  inset 0 0.1rem 0.1rem rgba(255, 255, 255, 0.1),
  0 -0.3rem 0.3rem rgba(255, 255, 255, 0.1);
  animation: wave 3s ease-out infinite;
  transform: scale(0);
}
.inner-shadow {
  height: 90%;
  width: 96%;
  border-radius: 50%;
  box-shadow:
  0 0.1rem 0.15rem rgba(255, 255, 255, 0.3),
  inset 0 -0.1rem 0.15rem rgba(255, 255, 255, 0.3),
  inset 0 0.5rem 0.5rem rgba(34, 100, 158, 0.2),
  inset 0.2rem 0 0.3rem rgba(34, 100, 158, 0.1),
  inset -0.2rem 0 0.3rem rgba(34, 100, 158, 0.1),
  0 -0.1rem 0.1rem rgba(34, 100, 158, 0.2);
}
.wave_1 {
  animation-delay: 1s;
}
.wave_2 {
  animation-delay: 2s;
}
 .wave_3 {
  animation-delay: 3s;
}
.align-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.drop {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #7cb5db;
  box-shadow:
    inset 0 -0.2rem 0.2rem rgba(34, 100, 158, 0.3),
    inset 0 -0.1rem 0.5rem #7cb5db, 
    0 -0.5rem 1rem #7cb5db ;
  transform: translateY(-7rem);
  animation: fall 1s linear infinite;
  opacity: 0;
}
@keyframes wave {
  to { transform: scale(1); opacity: 0 }
}
@keyframes fall {
  90% { transform: scale(0.7, 1); opacity: 1; }
  100% { transform: translateY(0rem) scale(0.7, 0.3); opacity: 0.7 }
 }


 #Layer_1{
   position: fixed;
   z-index: 20;
 }


 





.content-box .content {
	position: relative;
  display: flex;
  justify-content: space-around;
}

.content-box .content h2 {
	color: #fff;
	font-size: 3em;
	position: absolute;

}

.content-box .content h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 1px #03a9f4;
}

.content-box .content h2:nth-child(2) {
	color: #03a9f4;
	animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}



.loader{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
     -moz-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
       -o-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}


