/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #009961;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #009961;
  color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #00b371;
  color: #fff;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 40, 40, 0.9);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 45px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  padding: 25px 3px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover:before {
  visibility: visible;
  width: 100%;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -2px;
  left: 0;
  background-color: #009961;
  visibility: hidden;
  width: 0px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 2px solid #009961;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #282828;
}

.nav-menu .drop-down ul a:hover {
  color: #009961;
}

.nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #009961;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #00b371;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #282828;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover {
  color: #009961;
  text-decoration: none;
}

.mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #009961;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(15, 15, 15, 0.6);
  overflow: hidden;
  display: none;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9f9;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
}

.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #424242;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #009961;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00b371;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #00b371;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #009961;
}

/* General Body Properties ------ Start */
h1, h2, h3, h4, h5, h6, .table-subheading, .table-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 65px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 35px;
  }
}

body {
  /* Headings - Nunito
    Subtitle and Description - Roboto */
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

.overflow-wrapper {
  position: relative;
  overflow-x: hidden;
}

section .container, section .container-sm, section .container-md, section .container-lg, section .container-fluid {
  padding-top: 5%;
  padding-bottom: 5%;
}

/* Button Groups */
.button-styling {
  background-color: #22b297;
  color: white;
  border-radius: 25px;
  padding: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #22b297;
  display: inline-block;
}

.button-styling:hover {
  text-decoration: none;
  background-color: white;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  color: #22b297;
}

@media (max-width: 991.98px) {
  .responsive-button-lg {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .responsive-button-md {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  #mobile-view {
    display: none;
  }
}

/* General Body Properties ------ End */
/* Header or Navigation Bar - Main Section */
.navbar-section {
  margin-top: 75px;
}

.navbar-section .navbar {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item {
    padding: 0px 10px;
  }
}

#mainNavbar {
  background: linear-gradient(135deg, #1fd9b2 10%, #045c6a 85%);
  opacity: 0.95;
  -webkit-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#045c6a",endColorstr="#1fd9b2",GradientType=1);
}

/* Intro */
#intro-section {
  position: relative;
}

@media (min-width: 992px) {
  #intro-section:before {
    position: absolute;
    top: 0px;
    right: -350px;
    content: "";
    display: inline-block;
    background: url(../images/bg-round.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

/* .bg-design {
      position: absolute;
      top: 10%;
      right: 10%;
      opacity: 0.5;
      background-image: url(bg-round.png);
      background-position: bottom;
      background-repeat: no-repeat;
      background-size: contain;
      width: 100px;
      height: 100px;
      z-index: -1;
  } */
@media (max-width: 575.98px) {
  .main-sup {
    font-size: 0.75rem;
    vertical-align: super;
  }
}

@media (min-width: 576px) {
  .main-sup {
    font-size: 1.5rem;
    vertical-align: super;
  }
}

.highlight {
  color: #22b297;
}

.subtitle {
  color: #6f8ba4;
  text-transform: uppercase;
  font-weight: 700;
}

/* Features Section of the Company */
#feature-section {
  background-image: url(../images/background-2.jpeg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  z-index: -1;
}

@media (min-width: 992px) {
  .column-2 {
    margin-right: -75px;
  }
  .column-3 {
    margin-left: -75px;
  }
  .feature-list-left .fixed-containers, .feature-list-right div {
    padding-bottom: 20px;
  }
  .fixed-containers {
    text-align: right;
  }
}

@media (min-width: 767.98px) and (max-width: 991.98px) {
  .fixed-containers {
    text-align: center;
    margin: 20px 0;
  }
  .feature-list-right div {
    margin: 20px 0;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .fixed-containers, .feature-list-right div {
    text-align: center;
  }
}

/* Tables Section */
.table-subheading {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 18px;
}

.table-subheading:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 18px;
}

tbody tr th {
  font-weight: 400;
}

#tbody tr td {
  text-align: center;
  vertical-align: middle;
}

tbody tr:hover {
  background-color: #22b298;
  color: white;
}

.table-heading {
  background-color: #22b297;
  color: white;
  font-size: 20px;
}

/* Download Section */
#download-section {
  background: linear-gradient(45deg, rgba(15, 130, 125, 0.5) 0%, rgba(31, 217, 178, 0.5) 100%), url(../images/download-section-pic.jpg) no-repeat;
  background-size: cover;
}

/* Services Section */
#services-section img.icon {
  -webkit-filter: invert(54%) sepia(91%) saturate(340%) hue-rotate(119deg) brightness(89%) contrast(95%);
          filter: invert(54%) sepia(91%) saturate(340%) hue-rotate(119deg) brightness(89%) contrast(95%);
}

@media (max-width: 575.98px) {
  #services-section .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

/* About section */
#about-section, .feature-section {
  background-color: #f8f9fa;
}

.about-icon-bg {
  width: 80px;
  height: 80px;
  background-color: #18b394;
  border-radius: 50%;
}

.about-icon {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  top: 18px;
  left: 10px;
  z-index: 1;
}

/* Contact Section */
.filter {
  display: none;
}

/* Footer */
#mc_embed_signup form {
  padding-left: 0;
}

footer {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}

hr {
  background: white;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.496534) 0%, white 50%, rgba(255, 255, 255, 0.502136) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.copyright span {
  font-weight: 700;
  font-family: 'Nunito',sans-serif;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer .fab {
  margin-left: 20px;
  color: white;
}

footer .fab:hover {
  color: rgba(255, 255, 255, 0.432);
}

.fixed-container {
  width: 200px;
}

@media (max-width: 576px) {
  .fixed-container-2 {
    width: 300px;
  }
}
/*# sourceMappingURL=ruwa.css.map */