#page-loader {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 6000;
  background-color: #2f3692;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.loader .folding-cube {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.loader .folding-cube .cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.loader .folding-cube .cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #03a5e9;
  -webkit-animation: foldCubeAngle 2.4s infinite linear both;
  animation: foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.loader .folding-cube .cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.loader .folding-cube .cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.loader .folding-cube .cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.loader .folding-cube .cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader .folding-cube .cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loader .folding-cube .cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@-webkit-keyframes foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, li {
  color: #454545;
}

.ease-animation, nav {
  -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.fixed {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 999;
}

.top {
  top: 0;
}

.bottom {
  bottom: 0;
}

.uppercase {
  text-transform: uppercase;
}

.overlay {
  width: 100%;
  min-height: inherit;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.25);
}

section .section-title {
  margin: 0;
  padding: 120px 20px 60px 20px;
  font-weight: lighter;
}
section .section-title span {
  color: #03a5e9;
  font-weight: bold;
}

section .content-title {
  margin: 0;
  padding: 20px 0px 20px 0px;
  font-weight: lighter;
}
section .content-title span {
  color: #03a5e9;
  font-weight: bold;
}

.subtitle {
  margin: 30px 0 15px 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #424242;
}

.btn-small {
  background-color: #3b44b9;
}
.btn-small:hover, .btn-small:focus {
  background-color: #2f3692;
}

nav {
  background-color: transparent;
  box-shadow: none;
  padding: 25px 0;
  height: auto;
}
nav ul li a {
  font-weight: 400;
  font-size: 1.1em;
}
nav ul li a:hover {
  background-color: transparent !important;
  color: #03a5e9;
}
nav ul li a:active {
  color: #03a5e9;
}
nav ul li a .active {
  color: #03a5e9;
}
nav .brand-logo {
  width: 200px;
  height: auto;
  padding: 12px 0 13px 0;
}

.nav-collapse {
  padding: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
}
.nav-collapse a {
  color: #454545;
}
.nav-collapse a:hover {
  background-color: transparent;
  color: #03a5e9;
}
.nav-collapse a:active {
  color: #03a5e9;
}

.sidenav {
  background: linear-gradient(120deg, #23286b 0%, #3b44b9 75%);
}
.sidenav img.logo {
  padding: 50px 50px 25px 50px;
}
.sidenav li a {
  color: #ffffff;
}

header {
  width: 100%;
  min-height: 750px;
  height: auto;
  background: url("../img/hb2.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  background-size: cover;
}
header .row {
  padding: 100px 0;
}

.header-small {
  min-height: 0px;
}

.intro {
  margin-top: 150px;
}
.intro h1, .intro h5 {
  color: #ffffff;
}
.intro h1 span {
  color: #03a5e9;
}
.intro h5 {
  line-height: 1.25;
  letter-spacing: 0.5px;
}
.intro .btn-small {
  margin: 20px 0;
}

.intro-img img {
  padding: 25px;
}
@media only screen and (max-width: 600px) {
  .intro-img {
    display: none;
  }
}

#why {
  width: 100%;
  height: auto;
  background: url("../img/uo.png") no-repeat center top scroll;
  background-size: cover;
  -webkit-background-size: cover;
}
#why .row {
  margin-bottom: 0;
  padding-bottom: 100px;
}
@media only screen and (max-width: 600px) {
  #why .content {
    margin-bottom: 50px;
  }
  #why .content:last-child {
    margin-bottom: 0;
  }
}

#features {
  padding-bottom: 100px;
}
@media only screen and (max-width: 600px) {
  #features {
    padding-bottom: 50px;
  }
}
#features .row {
  margin-bottom: 25px;
}
@media only screen and (max-width: 600px) {
  #features .row {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 600px) {
  #features .row:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
  }
}
#features .text-wrapper {
  padding-top: 75px;
}
@media only screen and (max-width: 991px) {
  #features .text-wrapper {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 600px) {
  #features .text-wrapper {
    padding-top: 0;
  }
}
#features img {
  padding: 25px;
}
@media only screen and (max-width: 600px) {
  #features img {
    padding: 0;
  }
}
#features .download-btn {
  width: 125px;
  height: auto;
  margin-bottom: 5px;
  margin-right: 5px;
}
#features .download-btn img {
  padding: 0;
}

#getting-involved {
  background: rgba(238, 238, 238, 0.7);
  padding-bottom: 120px;
}
#getting-involved .row {
  margin-bottom: 0;
}
#getting-involved .tabs {
  margin-bottom: 25px;
}
#getting-involved .tabs li a {
  color: #454545;
  font-weight: bold !important;
}
#getting-involved .tabs li a:focus {
  background-color: transparent;
}
#getting-involved .tabs .indicator {
  background-color: #03a5e9;
}
#getting-involved img {
  float: right;
  width: 75%;
  padding: 50px 50px 0 0;
}
@media only screen and (max-width: 600px) {
  #getting-involved img {
    float: none;
    width: 100%;
    padding: 50px 25px 25px 25px;
  }
}
#getting-involved .tab-text {
  padding-top: 75px;
}
@media only screen and (max-width: 991px) {
  #getting-involved .tab-text {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 600px) {
  #getting-involved .tab-text {
    padding-top: 0;
  }
}
#getting-involved .btn-small {
  margin-right: 5px;
  margin-bottom: 10px;
}

.parallax-container h4 {
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
}
.parallax-container h4 span {
  color: #03a5e9;
}

#about .row {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 100px;
}

.page-footer {
  background-color: #2f3692;
}
.page-footer .row {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.page-footer p {
  font-size: 14px;
  color: #ffffff;
}

.carousel .indicators .indicator-item {
  background-color: rgba(100, 100, 100, 0.5);
}

.carousel .indicators .indicator-item.active {
  background-color: #1b1b1b;
}

/*# sourceMappingURL=stylesheet.css.map */
