@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;0,700;0,900;1,400&display=swap");
.bg-theme-light {
  background-color: #376893; }

.bg-gray {
  background-color: #F1F5F8; }

.bg-red {
  background-color: #1B5E20; }

.bg-secondary {
  background-color: #F0CA41 !important; }

.text-secondary {
  color: #F0CA41 !important; }

.text-red {
  color: #F13A57; }

.text-green {
  color: #44AB02; }

.text-blue {
  color: #3578ff; }

header {
  background-color: #FFF;
  padding: 18px 40px;
  -webkit-transition: padding .3s;
  -moz-transition: padding .3s;
  transition: padding .3s;
  border-bottom: 1px solid #d3d3d3; }
  header .header-left {
    display: flex;
    align-items: center; }
    header .header-left #nav-icon1 {
      display: none; }
    header .header-left .logo {
      padding-right: 30px; }
      header .header-left .logo img {
        max-width: 300px; }
    header .header-left .header-left-links {
      display: flex;
      align-items: center; }
      header .header-left .header-left-links a {
        margin-left: 36px;
        display: flex;
        align-items: center;
        color: #242424; }
        header .header-left .header-left-links a .label {
          padding-left: 12px; }
          header .header-left .header-left-links a .label h4 {
            margin: 0;
            font-size: 1.2rem; }
          header .header-left .header-left-links a .label p {
            margin: 0;
            font-size: .9rem;
            font-weight: 300; }
  header .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    header .header-right > a {
      margin-left: 25px;
      color: #242424;
      font-size: 1em; }
      header .header-right > a img {
        margin-right: 6px; }

@media screen and (max-width: 991px) {
  header {
    padding: 6px 14px; }
    header .header-left {
      flex-wrap: wrap; }
      header .header-left #nav-icon1 {
        display: block; }
      header .header-left .logo img {
        max-width: 200px; }
      header .header-left .header-left-links {
        margin: 20px 0;
        width: 100%;
        justify-content: space-between; }
        header .header-left .header-left-links a {
          margin-left: 0; }
    header .header-right {
      justify-content: space-between; }
      header .header-right > a {
        margin-left: 0; }
        header .header-right > a img {
          display: none; }
      header .header-right .btn {
        padding: 10px; }
    header .header-dropdown {
      width: 10%; }
      header .header-dropdown::after {
        display: none; } }
@media screen and (max-width: 767px) {
  header .header-left {
    margin-bottom: 1em; }
    header .header-left .header-left-links {
      display: none; } }
.home-banner {
  background-image: url("../Content/images/banner-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center; }
  .home-banner .content {
    text-align: center;
    color: #FFF; }
    .home-banner .content h1 {
      font-size: 3em;
      font-weight: bold;
      max-width: 543px;
      margin: auto; }
    .home-banner .content p {
      font-size: 1.6rem;
      font-weight: 300; }

@media screen and (max-width: 767px) {
  .home-banner {
    min-height: auto; }
    .home-banner .content {
      padding: 20px 20px; }
      .home-banner .content h1 {
        font-size: 2rem; }
      .home-banner .content p {
        font-size: .9rem; }

  .main-search {
    max-width: 100%;
    display: block; }
    .main-search .button {
      text-align: center;
      padding-bottom: 20px; }
      .main-search .button .btn {
        min-height: auto;
        display: inline-block; } }
#nav-icon1 {
  width: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  border: none;
  margin-top: -26px;
  margin-right: 15px; }
  #nav-icon1:focus, #nav-icon1:active {
    outline: none; }
  #nav-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #505050;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
    #nav-icon1 span:nth-child(1) {
      top: 0px; }
    #nav-icon1 span:nth-child(2) {
      top: 8px; }
    #nav-icon1 span:nth-child(3) {
      top: 16px; }
  #nav-icon1.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  #nav-icon1.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100px); }
  #nav-icon1.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg); }

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300; }

a {
  color: #F0CA41; }
  a:hover {
    text-decoration: none; }

.welcome-message {
  background-image: url("../Content/images/bg-curve.png");
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 350px;
  color: #FFF; }
  .welcome-message .message-wrap {
    padding: 30px 0; }
  .welcome-message img {
    margin-top: -60px; }
  .welcome-message p {
    color: rgba(255, 255, 255, 0.8); }

.products {
  position: relative;
  display: flex;
  align-items: center; }
  .products .image {
    width: 50%;
    padding-right: 1em; }
    .products .image img {
      width: 100%; }
  .products .content {
    width: 40%;
    padding-left: 1em; }

.contact-bottom .icon-box-style-1 {
  min-height: 330px; }

.page-wrap {
  min-height: 600px; }

.page-top-actions {
  text-align: right; }
  .page-top-actions > a, .page-top-actions .btn {
    min-width: 100px;
    margin-left: 14px; }

#main {
  display: flex;
  min-height: 70vh; }
  #main #sidebar-left {
    flex-basis: 20%;
    border-right: 1px solid #efefef; }
  #main .page-content {
    flex-basis: 80%;
    padding: 0 40px;
    padding-top: 1em; }
  #main #sidebar-left {
    background-color: rgba(0, 0, 0, 0.03);
    padding-top: 1em; }

.page-title {
  position: relative;
  margin-bottom: 24px;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 6px; }
  .page-title.title-center p {
    max-width: 560px;
    margin: auto;
    line-height: 28px; }
  .page-title.title-sm h3 {
    font-size: 44px; }
  .page-title h3 {
    color: #1B5E20;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold; }
  .page-title p {
    color: #0b142a;
    font-size: 22px; }

.page-content-inner {
  padding: 30px; }

.topic-bottom .user img {
  width: 28px;
  height: 28px;
  border-radius: 50%; }
.topic-bottom .user span {
  color: rgba(54, 46, 81, 0.45); }

@media screen and (max-width: 991px) {
  .page-title h3 {
    font-size: 20px; }
  .page-title p {
    font-size: 16px; }

  #main {
    display: block;
    padding-top: 1em; }
    #main .page-content {
      padding: 0 20px; }
    #main #sidebar-right {
      margin-top: 30px;
      padding-left: 30px; }
    #main #sidebar-left {
      position: fixed;
      transform: translateX(-100%);
      z-index: 1;
      background-color: #f9f9f9;
      top: 80px;
      transition: all 0.5s ease; }
      #main #sidebar-left.open {
        transform: translateX(0); } }
@media screen and (max-width: 767px) {
  section .section-title {
    margin-top: 1em;
    line-height: 30px; }
  section.pb-5 > .container img {
    display: none; }
  section img {
    max-width: 100%; }

  .welcome-message {
    background-image: none;
    background-color: #1B5E20;
    min-height: 350px;
    color: #FFF;
    text-align: center;
    padding-top: 1em;
    margin-bottom: 1em; }
    .welcome-message .message-wrap {
      padding: 30px 0; }
    .welcome-message img {
      margin-top: 0; }

  .products {
    position: relative;
    display: block;
    align-items: center;
    padding: 1em; }
    .products .image {
      width: 100%;
      padding-right: 0; }
      .products .image img {
        width: 100%; }
    .products .content {
      width: 100%;
      padding-left: 0; } }
.breadcrumb {
  position: relative;
  margin-top: 50px;
  background-color: transparent;
  padding-left: 0; }
  .breadcrumb .breadcrumb-item a {
    color: #040d25; }

.welcome {
  border: 1px solid #1B5E20;
  border-radius: 6px; }
  .welcome .welcome-message {
    padding: 36px 30px 36px 40px; }
    .welcome .welcome-message h1 {
      font-weight: bold;
      color: #1B5E20;
      font-size: 2em;
      margin: 0; }
    .welcome .welcome-message p {
      font-size: 1.14em;
      margin-bottom: 0; }

.dashboard-search {
  margin: 80px 0 20px 0;
  display: flex;
  align-items: center; }
  .dashboard-search .logo {
    padding-right: 25px;
    flex-basis: 20%; }
    .dashboard-search .logo img {
      max-width: 120px; }
  .dashboard-search .search-input {
    flex-basis: 80%;
    position: relative; }
    .dashboard-search .search-input .form-control {
      min-height: 60px; }
    .dashboard-search .search-input .btn-search {
      position: absolute;
      right: 10px;
      top: 50%;
      margin-top: -17px; }

.search-bottom {
  margin: 30px auto;
  max-width: 80%; }
  .search-bottom a {
    display: block;
    font-size: 0.8em; }

.dash-tiles ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .dash-tiles ul li {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 8px 14px;
    border-radius: 6px;
    flex-basis: 48%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; }
    .dash-tiles ul li .label {
      flex-grow: 1;
      padding-left: 10px;
      color: #B5B5B5;
      line-height: 18px; }
    .dash-tiles ul li .count {
      color: #000;
      font-weight: bold; }

@media screen and (max-width: 767px) {
  .dashboard-search {
    margin: 0;
    display: block; }
    .dashboard-search .logo {
      text-align: center; } }
.shadow {
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.1); }

.icon-box-style-1 {
  box-shadow: 0px 0px 30px 18px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background-color: #FFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3em 3em; }
  .icon-box-style-1 h4 {
    font-size: 1.4em;
    margin-top: 1em;
    text-transform: uppercase;
    color: #242424; }
  .icon-box-style-1 p {
    font-size: 1em;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 0.6em; }

.simple-section {
  padding: 100px 0; }

.section-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: .6em; }
  .section-title > p {
    font-size: 1.3rem;
    font-weight: 300; }

.table-requests td, .table-requests th {
  vertical-align: middle; }
.table-requests .status {
  display: block;
  text-align: center; }
.table-requests .status.status-approved {
    color: #2c92ff;
}
  .table-requests .status.status-assigned {
    color: #3578ff; }
  .table-requests .status.status-loaded {
    color: #28a745; }
  .table-requests .status.status-rr {
    color: #F0CA41; }

@media screen and (max-width: 767px) {
  .post-card-slider .post-card {
    max-width: 100%; }

  .post-card {
    margin-bottom: 100px; } }
.btn-primary {
  background-color: #1B5E20;
  color: #FFF !important;
  border: none !important; }
  .btn-primary:hover {
    background-color: #F0CA41; }

.btn-gray {
  background-color: #EFEFEF;
  color: #1B5E20;
  font-size: 1em;
  font-weight: bold; }

.btn-white {
  background-color: #FFF;
  color: #1B5E20;
  border: 1px solid #1B5E20; }

.btn-long {
  min-width: 250px; }

.btn-danger {
  background-color: #F13A57; }

.btn-green {
  background-color: #44AB02;
  color: #FFF; }
  .btn-green:hover {
    color: #FFF; }

.btn-yellow {
  border-color: #F0CA41;
  color: #1B5E20;
  background-color: #F0CA41; }
  .btn-yellow:hover {
    background-color: #1B5E20;
    border-color: #1B5E20;
    color: #FFF; }

.btn-round {
  border-radius: 30px; }

.btn-outline-primary {
  border-color: #1B5E20;
  color: #1B5E20; }
  .btn-outline-primary:hover {
    background-color: #F0CA41;
    border-color: #F0CA41; }

.btn-outline-secondary {
  border-color: #F0CA41;
  color: #F0CA41 !important; }
  .btn-outline-secondary:hover {
    background-color: #F0CA41;
    border-color: #F0CA41;
    color: #FFF !important; }

.btn-outline-green {
  border-color: #44AB02;
  color: #44AB02; }
  .btn-outline-green:active, .btn-outline-green:focus, .btn-outline-green:hover {
    background-color: #44AB02;
    border-color: #44AB02;
    color: #FFF; }

.btn {
  padding: .7rem 1.5rem; }

.main-login {
  width: 100%;
  min-height: 665px;
  background-image: url("../Content/images/main-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  padding-top: 100px; }

.form-wrap {
  background-color: #FFF;
  padding: 30px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); }
  .form-wrap h3 {
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
    color: rgba(0, 0, 0, 0.8); }

.login-info {
  font-size: 24px;
  margin-top: 24px;
  color: #FFF;
  font-weight: 300;
  line-height: 38px; }
  .login-info span {
    color: #F0CA41;
    font-weight: bold; }

.back-link {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center; }
  .back-link i {
    font-size: 18px;
    margin-right: 10px; }

.form-control {
  border-radius: 0;
  min-height: 35px;
  border-color: #e5e5e5;
  border-radius: 0;
  color: #242424; }
  .form-control::placeholder {
    font-weight: 300;
    font-size: .8em; }
  .form-control:focus {
    box-shadow: none; }

.custom-control label {
  font-size: .9rem; }
  .custom-control label a {
    color: #3578ff;
    text-decoration: underline; }

.form-section-title {
  text-transform: uppercase;
  font-size: 1.2em;
  border-bottom: 1px solid #efefef;
  background-color: rgba(0, 0, 0, 0.03);
  padding: .5em;
  margin-bottom: 1em; }

.form-style-1 a {
  color: #3578ff;
  text-decoration: underline; }
.form-style-1 .form-row {
  margin-bottom: .5rem; }
.form-style-1 .form-group label {
  margin-bottom: 0; }
.form-style-1 select option {
  background-color: #fbe7ea; }
.form-style-1 .form-control {
    border-top: none;
    border-right: none;
    border: 1px solid #e5e5e5;
    /*border-left: none;
    padding-left: 0;*/
    font-weight: 400;
}

.phone-inputs {
  display: flex; }
  .phone-inputs select {
    width: 20%;
    margin-right: 16px; }
  .phone-inputs .number-input {
    width: 80%; }

.button-action-right {
  position: relative; }
  .button-action-right .btn {
    position: absolute;
    right: 0;
    top: 5px;
    padding: 0;
    color: #3578ff;
    text-decoration: underline; }

.custom-file-group .file-input {
  visibility: hidden; }
.custom-file-group .custom-label {
  display: block;
  min-height: 40px;
  position: absolute;
  width: 100%;
  top: 0;
  cursor: pointer; }

.custom-file-label::after {
  background-color: #1B5E20;
  color: #FFF; }

.page-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px; }
  .page-actions > .btn {
    min-width: 100px;
    margin: 10px 16px; }

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #1B5E20;
  background-color: #1B5E20; }

@media screen and (max-width: 768px) {
  .page-actions {
    margin-top: 0; }
    .page-actions > .btn {
      margin: 10px 6px;
      min-width: auto; } }
.account-wrap {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 100vh;
  height: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 50px; }

.account-form-wrap {
  background-color: #FFF;
  padding: 30px 40px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  max-width: 45%; }
  .account-form-wrap.full-width {
    max-width: 100%; }
  .account-form-wrap .account-title {
    margin-bottom: 50px; }
    .account-form-wrap .account-title h3 {
      font-weight: bold;
      color: #1B5E20;
      font-size: 1.8rem;
      margin-bottom: 0;
      text-transform: uppercase; }
    .account-form-wrap .account-title p {
      color: #2e6388;
      font-size: 1rem;
      margin: 0; }
      .account-form-wrap .account-title p a {
        margin-left: 8px;
        color: #3578ff; }
        .account-form-wrap .account-title p a i {
          color: #1B5E20; }

.otp-number {
  font-size: 1.9rem;
  color: #060606;
  margin-bottom: 20px; }

@media screen and (min-width: 1365px) {
  .account-wrap::before {
    background-size: 70% !important; }
  .account-wrap.reset-password::before {
    background-size: 40% !important; }
  .account-wrap.student-profile::before {
    background-size: 45% !important; } }
@media screen and (max-width: 767px) {
  .account-form-wrap {
    max-width: 100%;
    padding: 30px 16px; }

  .phone-inputs select {
    width: 30%; } }
.section-rates {
  background: rgba(0, 0, 0, 0.05); }

.rate-box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 1.6em;
  margin-top: 2em;
  min-height: 128px; }
  .rate-box:hover {
    box-shadow: 0px 0px 30px 18px rgba(0, 0, 0, 0.06); }
  .rate-box p {
    margin: 0;
    font-weight: 600;
    color: #1B5E20; }
    .rate-box p span {
      color: #535353;
      font-size: .8em;
      font-weight: 300; }
  .rate-box h5 {
    margin: 0;
    font-size: 1em; }

.animate-menu-push {
  left: 0;
  position: relative;
  transition: all 0.3s ease; }
  .animate-menu-push.animate-menu-push-right {
    left: 200px; }
  .animate-menu-push.animate-menu-push-left {
    left: -200px; }

.animate-menu {
  position: fixed;
  top: 0;
  width: 200px;
  height: 100%;
  transition: all 0.3s ease; }

.animate-menu-left {
  left: -200px; }
  .animate-menu-left.animate-menu-open {
    left: 0; }

.animate-menu-right {
  right: -200px; }
  .animate-menu-right.animate-menu-open {
    right: 0; }

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: transparent; }
  .sidebar-menu > li {
    position: relative;
    margin: 0;
    padding: 0; }
    .sidebar-menu > li > a {
      padding: 12px 5px 12px 15px;
      display: block;
      border-left: 10px solid transparent;
      color: #242424;
      font-size: 1.125em;
      border-top-right-radius: 8px; }
      .sidebar-menu > li > a > .fa, .sidebar-menu > li > a .far {
        width: 28px; }
    .sidebar-menu > li:hover > a, .sidebar-menu > li.active > a {
      color: #1B5E20;
      background: rgba(45, 99, 137, 0.05);
      border-left-color: #1B5E20; }
    .sidebar-menu > li .label,
    .sidebar-menu > li .badge {
      margin-top: 3px;
      margin-right: 5px; }
  .sidebar-menu li.sidebar-header {
    padding: 10px 25px 10px 15px;
    font-size: 12px;
    color: rgba(51, 51, 51, 0);
    background: rgba(0, 0, 0, 0); }
  .sidebar-menu li > a > .fa-angle-left {
    width: 18px;
    height: auto;
    display: block;
    text-align: center;
    padding: 0;
    margin-right: 10px;
    margin-top: 3px; }
  .sidebar-menu li.active > a > .fa-angle-left {
    transform: rotate(-90deg); }
  .sidebar-menu li.active > .sidebar-submenu {
    display: block; }
  .sidebar-menu a {
    color: #242424;
    text-decoration: none; }
  .sidebar-menu .sidebar-submenu {
    display: none;
    list-style: none;
    border-left: 10px solid rgba(54, 46, 81, 0.18);
    border-bottom-right-radius: 8px;
    padding-left: 0;
    margin: 0;
    background: rgba(45, 99, 137, 0.05); }
    .sidebar-menu .sidebar-submenu .sidebar-submenu {
      padding-left: 20px; }
    .sidebar-menu .sidebar-submenu > li > a {
      padding: 8px 5px 8px 50px;
      display: block;
      font-size: 1.125em;
      font-weight: 300;
      color: #1B5E20; }
      .sidebar-menu .sidebar-submenu > li > a > .fa, .sidebar-menu .sidebar-submenu > li > a .far, .sidebar-menu .sidebar-submenu > li > a img {
        max-width: 20px;
        margin-right: 12px; }
      .sidebar-menu .sidebar-submenu > li > a > .fa-angle-left,
      .sidebar-menu .sidebar-submenu > li > a > .fa-angle-down {
        width: auto; }
    .sidebar-menu .sidebar-submenu > li.active > a,
    .sidebar-menu .sidebar-submenu > li > a:hover {
      color: #1B5E20;
      font-weight: bold; }

.sidebar-menu-rtl {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: transparent; }
  .sidebar-menu-rtl > li {
    position: relative;
    margin: 0;
    padding: 0; }
    .sidebar-menu-rtl > li > a {
      padding: 12px 15px 12px 5px;
      display: block;
      border-left: 10px solid transparent;
      color: #242424;
      font-size: 1.125em;
      border-top-right-radius: 8px; }
      .sidebar-menu-rtl > li > a > .fa, .sidebar-menu-rtl > li > a .far {
        width: 28px; }
    .sidebar-menu-rtl > li:hover > a, .sidebar-menu-rtl > li.active > a {
      color: #1B5E20;
      background: rgba(45, 99, 137, 0.05);
      border-left-color: #1B5E20; }
    .sidebar-menu-rtl > li .label,
    .sidebar-menu-rtl > li .badge {
      margin-top: 3px;
      margin-right: 5px; }
  .sidebar-menu-rtl li.sidebar-header {
    padding: 10px 15px 10px 25px;
    font-size: 12px;
    color: rgba(51, 51, 51, 0);
    background: rgba(0, 0, 0, 0); }
  .sidebar-menu-rtl li > a > .fa-angle-left {
    width: 18px;
    height: auto;
    display: block;
    text-align: center;
    padding: 0;
    margin-right: 10px;
    margin-top: 3px; }
  .sidebar-menu-rtl li.active > a > .fa-angle-left {
    transform: rotate(-90deg); }
  .sidebar-menu-rtl li.active > .sidebar-submenu {
    display: block; }
  .sidebar-menu-rtl a {
    color: #242424;
    text-decoration: none; }
  .sidebar-menu-rtl .sidebar-submenu {
    display: none;
    list-style: none;
    border-left: 10px solid rgba(54, 46, 81, 0.18);
    border-bottom-right-radius: 8px;
    padding-right: 5px;
    margin: 0;
    background: rgba(45, 99, 137, 0.05); }
    .sidebar-menu-rtl .sidebar-submenu .sidebar-submenu {
      padding-right: 20px; }
    .sidebar-menu-rtl .sidebar-submenu > li > a {
      padding: 5px 15px 5px 5px;
      display: block;
      font-size: 1.125em;
      font-weight: 300;
      color: #1B5E20; }
      .sidebar-menu-rtl .sidebar-submenu > li > a > .fa, .sidebar-menu-rtl .sidebar-submenu > li > a .far, .sidebar-menu-rtl .sidebar-submenu > li > a img {
        max-width: 20px;
        margin-right: 12px; }
      .sidebar-menu-rtl .sidebar-submenu > li > a > .fa-angle-left,
      .sidebar-menu-rtl .sidebar-submenu > li > a > .fa-angle-down {
        width: auto; }
    .sidebar-menu-rtl .sidebar-submenu > li.active > a,
    .sidebar-menu-rtl .sidebar-submenu > li > a:hover {
      color: #1B5E20;
      font-weight: bold; }

.app-section .section-title > p {
  max-width: 680px;
  margin: auto; }

.wagon-list .wagon-item {
  text-align: center;
  margin-bottom: 36px; }
  .wagon-list .wagon-item > h3 {
    color: #1B5E20;
    font-size: 1em; }
  .wagon-list .wagon-item .card {
    padding: 10px;
    box-shadow: 0 0 30px -15px rgba(0, 0, 0, 0.5); }
    .wagon-list .wagon-item .card img {
      width: 100%; }
    .wagon-list .wagon-item .card h2 {
      font-size: 1.1em;
      color: #707070;
      margin: 10px 0; }
    .wagon-list .wagon-item .card p {
      font-size: 0.8em;
      color: rgba(0, 0, 0, 0.9);
      min-height: 40px; }

footer {
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 2em 1em;
  font-size: 1em; }

/*
*
* ==========================================
* SCROLLBAR Styling
* ==========================================
*
*/
/*.custom-scrollbar-js,
.custom-scrollbar-css {
    height: 80vh;
}*/


/* Custom Scrollbar using CSS */
.custom-scrollbar-css {
    overflow-y: scroll;
}

    /* scrollbar width */
    .custom-scrollbar-css::-webkit-scrollbar {
        width: 5px;
    }

    /* scrollbar track */
    .custom-scrollbar-css::-webkit-scrollbar-track {
        background: #eee;
    }

    /* scrollbar handle */
    .custom-scrollbar-css::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background-color: #000000;
        background-image: linear-gradient(to top, #555656 0%, #9c9c9c 100%);
    }


.team-item {
    text-align: center;
}

    .team-item img {
        max-width: 200px;
    }

    .team-item h3 {
        font-size: 1em;
        margin: .6em 0 .4em 0;
        min-height: 40px;
    }

    .team-item p {
        font-size: .8em;
        margin: 0;
        color: rgba(0, 0, 0, 0.8);
    }
/*# sourceMappingURL=style.css.map */


