html{
  scroll-behavior: smooth;
}
body {
    background: #fafafa;
}

p{
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 1x 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
/*    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);*/
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    /*background: #7386D5;*/
    background: #005497;
/*    background: linear-gradient(90deg, rgba(44 81 111) 0%, rgba(0 34 71) 0%, rgb(61 117 161) 100%);*/
    color: #fff;
    transition: all 0.3s;
}

/*#sidebar.active {
    margin-left: -250px;
}*/

#sidebar .sidebar-header {
    padding: 5px;
    font-style: italic;
    border-bottom: 1px solid #47748b;
    /*background: #6d7fcc;
    background: rgb(8,0,153);*/
}

#sidebar ul.components {
    /*padding: 20px 0;*/
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    font-weight: 600;
    padding: 10px;
    font-size: 1.1em;
    display: block;
}


#sidebar ul li a:hover {
    /*color: black;*/
    color: #6d7fcc;
    background: #fff;
}
#sidebar ul li i{
    color: #000;
    background: #000;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #ced4da;
/*    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(7,7,83,1) 0%, rgb(79, 151, 165) 100%);*/
    /*background: #6d7fcc;*/
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    /*background: #6d7fcc;*/
    /*color: black;
    background:  #fff;*/
/*
    color:#fff;
    background: black;
*/
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    /*background: #fff;*/
    background: green;
    color:#fff;

}

a.article{
    margin-top: 10px;
    background:red; !important /*#6d7fcc !important;*/
    color: #000 !important;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width:100%;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    .navbar div h3{
        font-size: 17px;
    }
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}

/*.marquee {
  margin: 0 auto;
  white-space: nowrap;
  color: #000;
  font-weight: bold;
  overflow: hidden;
  position: absolute;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}*/




.counter {
    background-color:#f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

.shadow-min{
    box-shadow: 0 2px 5px -1px rgb(0 84 151 / 58%), 0 1px 3px -1px rgb(0 0 0 / 30%);

}

.btn-circle.btn-xl {
  width: 135px;
  height: 135px;
  padding: 10px 16px;
  font-size: 9px;
  line-height: 1.33;
  border-radius: 150px;
    background-color:#fff;
        border-style: solid;
    color: orange;
}
.text-small{
    font-size: small;
}
.top-25{
        margin-top: 50px;

}
@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp {
  animation: 1.5s fadeInUp;
}