    .bg-danger {

    background-color: #f4d2d3 !important;

}

  .navbar-nav > li{

    padding-left: .5rem !important;

    padding-right: .5rem !important;

  }



  .nav-link {

    padding-right: 1rem !important;

    padding-left: 1rem !important;

  }



  /* Fixes dropdown menus placed on the right side */

  .ml-auto .dropdown-menu {

    left: auto !important;

    right: 0px;

  }

nav a {

  color: white; text-decoration: none;

}



.dropdown .nav-link {color:#fff; text-decoration: none;}

.dropdown .dropdown-menu a{

    color: #033C73;

}



.dropdown-menu{

    min-width: 200px;

 }

.container .dropdown .dropdown-menu a:hover

{

  color: #fff;

  background-color: #b91773;

  border-color: #fff;



}



/* this deals with giving font-awesome icons badges since they were deprecated in BS4 */

*.icon-blue {color: #0088cc;

}

*.icon-white {color: white;

  padding-right: 2rem;}



i {

    text-align:left;


    position: relative;
}

.badge:after{

    content:attr(data-count);

    /* position: absolute; */



    /* background: rgba(0,0,255,1); */

    /* height:1rem; */

    /* top:1rem;

    right:1.5rem;

    width:2rem;

    text-align: center;

    line-height: 2rem;; */

    font-size: 1rem;

    /* border-radius: 50%; */

    color:white;

    /* border:1px solid blue; */

}

html{

    min-height:100%;/* make sure it is at least as tall as the viewport */

    position:relative;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #1d1c1c;
}

a {
  color: #981B1E;
  text-decoration: none;
}

a:hover {
  color: #981B1E;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}


#sidebar {

    overflow: hidden;

    z-index: 3;

        max-width: 180px;

}

#sidebar .list-group {

    min-width: 250px;

    background-color: #023c73;

    min-height: 100vh;

}

#sidebar i {

    margin-right: 6px;

}



#sidebar .list-group-item {

    border-radius: 0;

    background-color: #04519b;

    color: rgba(255,255,255,0.8);

    border-left: 0;

    border-right: 0;

    white-space: nowrap;

}

#sidebar .list-group-item:hover {

    color: #fff;

}



/* highlight active menu */

#sidebar .list-group-item:not(.collapsed) {

    background-color: #222;

}



/* closed state */

#sidebar .list-group .list-group-item[aria-expanded="false"]::after {

  content: " \f0d7";

  font-family: FontAwesome;

  display: inline;

  text-align: right;

  padding-left: 5px;

}



/* open state */

#sidebar .list-group .list-group-item[aria-expanded="true"] {

  background-color: #033C73;

}

#sidebar .list-group .list-group-item[aria-expanded="true"]::after {

  content: " \f0da";

  font-family: FontAwesome;

  display: inline;

  text-align: right;

  padding-left: 5px;

}



/* level 1*/

#sidebar .list-group .collapse .list-group-item,

#sidebar .list-group .collapsing .list-group-item  {

  padding-left: 20px;

  background-color: #fff;

  color: #033C73;

}

#sidebar .list-group .collapse .list-group-item:hover,

#sidebar .list-group .collapsing .list-group-item:hover  {

    background-color: #2FA4E7;

}



/* level 2*/

#sidebar .list-group .collapse > .collapse .list-group-item,

#sidebar .list-group .collapse > .collapsing .list-group-item {

  padding-left: 30px;

}



/* level 3*/

#sidebar .list-group .collapse > .collapse > .collapse .list-group-item {

  padding-left: 40px;

}



@media (max-width:767px) {



    #sidebar {

        min-width: 35px;

        max-width: 40px;

        overflow-y: auto;

        overflow-x: visible;

        transition: all 0.25s ease;

        transform: translateX(-45px);

        position: fixed;

    }



    #sidebar.show {

        transform: translateX(0);

    }



    #sidebar::-webkit-scrollbar{ width: 0px; }



    #sidebar, #sidebar .list-group {

        min-width: 35px;

        overflow: visible;

        position: relative;

    }

    /* overlay sub levels on small screens */

    #sidebar .list-group .collapse.show, #sidebar .list-group .collapsing {

        position: relative;

        z-index: 1;

        width: 190px;

        top: 0;

    }

    #sidebar .list-group > .list-group-item {

        text-align: center;

        padding: .75rem .5rem;

    }

    /* hide caret icons of top level when collapsed */

    #sidebar .list-group > .list-group-item[aria-expanded="true"]::after,

    #sidebar .list-group > .list-group-item[aria-expanded="false"]::after {

        display:none;

    }

}



.collapse.show {

  visibility: visible;

}

.collapsing {

  visibility: visible;

  height: 0;

  -webkit-transition-property: height, visibility;

  transition-property: height, visibility;

  -webkit-transition-timing-function: ease-out;

  transition-timing-function: ease-out;

}

.collapsing.width {

  -webkit-transition-property: width, visibility;

  transition-property: width, visibility;

  width: 0;

  height: 100%;

  -webkit-transition-timing-function: ease-out;

  transition-timing-function: ease-out;

}





#sidebarLeft {

    overflow: hidden;

    z-index: 3;

        max-width: 180px;

}

#sidebarLeft .list-group {

    min-width: 250px;

    background-color: #023c73;

    min-height: 100vh;

}

#sidebarLeft i {

    margin-right: 6px;

}



#sidebarLeft .list-group-item {

    border-radius: 0;

    background-color: #04519b;

    color: rgba(255,255,255,0.8);

    border-left: 0;

    border-right: 0;

    white-space: nowrap;

    text-align: left;

}

#sidebarLeft .list-group-item:hover {

    color: #fff;

}



/* highlight active menu */

#sidebarLeft .list-group-item:not(.collapsed) {

    background-color: #222;

}



/* closed state */

#sidebarLeft .list-group .list-group-item[aria-expanded="false"]::after {

  content: " \f0d7";

  font-family: FontAwesome;

  display: inline;

  text-align: right;

  padding-left: 5px;

}



/* open state */

#sidebarLeft .list-group .list-group-item[aria-expanded="true"] {

  background-color: #033C73;

}

#sidebarLeft .list-group .list-group-item[aria-expanded="true"]::after {

  content: " \f0da";

  font-family: FontAwesome;

  display: inline;

  text-align: right;

  padding-left: 5px;

}



/* level 1*/

#sidebarLeft .list-group .collapse .list-group-item,

#sidebarLeft .list-group .collapsing .list-group-item  {

  padding-left: 20px;

  background-color: #fff;

  color: #033C73;

}

#sidebarLeft .list-group .collapse .list-group-item:hover,

#sidebarLeft .list-group .collapsing .list-group-item:hover  {

    background-color: #2FA4E7;

}



/* level 2*/

#sidebarLeft .list-group .collapse > .collapse .list-group-item,

#sidebarLeft .list-group .collapse > .collapsing .list-group-item {

  padding-left: 30px;

}



/* level 3*/

#sidebarLeft .list-group .collapse > .collapse > .collapse .list-group-item {

  padding-left: 40px;

}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  background-position: left center;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 88px;
  color: #380101;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #ab1b1b;
  margin: 10px 0 0 0;
  font-size: 22px;
  text-transform: uppercase;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #981B1E;
}

#hero .btn-get-started:hover {
  background: #380101;
}

#hero .icon-boxes {
  margin-top: 100px;
}

#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(101, 18, 18, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#hero .icon-box .title a {
  color: #380101;
  transition: 0.3s;
}

#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #981B1E;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #981B1E;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: 100vh;
  }
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 36px;
    line-height: 44px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fcf0f0;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #380101;
}

.section-title h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #981B1E;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #981B1E;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #981B1E;
}

.about .content .btn-learn-more:hover {
  background: #981B1E;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #380101;
}

.about-video .content ul {
  list-style: none;
  padding: 0;
}

.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about-video .content ul i {
  font-size: 24px;
  color: #981B1E;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-video .content p:last-child {
  margin-bottom: 0;
}

.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#981B1E 50%, rgba(206, 36, 36, 0.356) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about-video .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-video .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 36, 36, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
  border-left: 15px solid #981B1E;
  transform: scale(20);
}

.about-video .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #981B1E;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #981B1E;
}

/*--------------------------------------------------------------
# Satelit
--------------------------------------------------------------*/
.satelit .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.satelit .member .member-img {
  position: relative;
  overflow: hidden;
}

.satelit .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 1;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.satelit .member .social a {
  transition: color 0.3s;
  color: #380101;
  margin: 0 10px;
  display: inline-block;
}

.satelit .member .social a:hover {
  color: #981B1E;
}

.satelit .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}

.satelit .member .member-info {
  padding: 25px 15px;
}

.satelit .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #380101;
}

.satelit .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.satelit .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #380101;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #981B1E;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #380101;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #981B1E;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #981B1E;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #981B1E;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #981B1E;
}

#footer .copyright a {
  color: #444444;
  font-size: 10px;
}

#footer .copyright a:hover {
  color: #981b1e;
  text-decoration: none;
}

#footer .credits {
  padding-top: 5px;
  font-size: 10px;
  color: #f8fbfe;
}

#footer .credits a {
  color: #f8fbfe;
}

#footer .credits-love {
  color: #981b1e;
}

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

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


@media (max-width:767px) {



    #sidebarLeft {

        min-width: 35px;

        max-width: 40px;

        overflow-y: auto;

        overflow-x: visible;

        transition: all 0.25s ease;

        transform: translateX(45px);

        position: fixed;

    }



    #sidebarLeft.show {

        transform: translateX(0);

    }



    #sidebarLeft::-webkit-scrollbar{ width: 0px; }



    #sidebarLeft, #sidebarLeft .list-group {

        min-width: 35px;

        overflow: visible;

        position: relative;

    }

    /* overlay sub levels on small screens */

    #sidebarLeft .list-group .collapse.show, #sidebarLeft .list-group .collapsing {

        position: relative;

        z-index: 1;

        width: 190px;

        left: -150px;

        top: 0;

    }

    #sidebarLeft .list-group > .list-group-item {

        text-align: center;

        padding: .75rem .5rem;

    }

    /* hide caret icons of top level when collapsed */

    #sidebarLeft .list-group > .list-group-item[aria-expanded="true"]::after,

    #sidebarLeft .list-group > .list-group-item[aria-expanded="false"]::after {

        display:none;

    }

}


