/* style.new.css
 * --------------------------------------------------------------*/

/* Body initialization
 * ----------------------------------------------------------*/
body {
    margin: 0;
    padding: 0;
    background-color: #eee;
}

/* Remove link outline in Firefox. */
body a, body a:link, body a:visited, body a:hover, body a:focus, body a:active  {
    outline: none !important;
}
/*---------------- End body initialization ------------------*/

/* =Specific .container style
 * -----------------------------------------------------------*/

@media screen and (max-width: 1199px) {
    .container  {
        width: 100%;
    }
} /* Small Laptop to Mobile*/
/* ---------- End specific .container style -----------------*/

/* #nav dimensions
 * -----------------------------------------------*/
#nav    {
    background-color: #020001;
    background-image: linear-gradient(to right, #020001 , #380001);
    margin: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

@media screen and (min-width: 1200px)  {
  #nav  {
      height: 144px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px)  {
    #nav  {
        height: 102px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px)  {
    #nav  {
        height: 78px;
  }
}

@media screen and (max-width: 767px) {
    #nav    {
        height: 60px;
  }
}


/* =Logo style
 * ------------------------------------------------*/
#nav .navbar-brand  {
    margin: 0;
    padding: 0;
}

#nav .navbar-brand img  {
        vertical-align: middle;
    }

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #nav .navbar-brand img  {
        height: 96px;
        width: auto;
    }
} /* Small Laptop */

@media screen and (min-width: 768px) and (max-width: 991px) {
    #nav .navbar-brand img  {
        height: 74px;
        width: auto;
    }
} /* Tablet */

@media screen and (max-width: 767px) {
    #nav .navbar-brand img  {
        height: 60px;
        width: auto;
    }
} /* Mobile */

nav ul >li > a  {
  opacity: 0.6;
}

nav ul >li > a:hover  {
  opacity: 1;
}

@media screen and (max-width: 767px)    {
    nav ul  {
        padding-right: 12px;
    }
}


/* = Main content
 * ----------------------------------------------*/
#main-text{
  margin-top: 144px;
  padding-bottom: 36px;
  padding-top: 36px;
  color: #000;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #main-text  {
        margin-top: 102px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #main-text  {
        margin-top: 78px;
    }
}

@media screen and (max-width: 767px) {
    #main-text  {
        margin-top: 60px;
    }
}

/* Main content width by screen size. */
@media screen and (min-width: 1200px) {
  #main-content {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #main-content {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* End Main content width. */

#main-content a:hover   {
    text-decoration: none;
}

#main-content .h-main-margin-b   {
    margin-bottom: 18px;
}

#main-content .hr-wrapper {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  margin-top: 48px;
}

#main-content .hr-wrapper hr  {
  border-color: #000;
}

/* = Footer
 * ------------------------------------------------*/
#footer{
  padding-bottom: 26px;
  padding-top: 46px;
  background-color: #000;
}

@media screen and (min-width: 768px)    {
    #footer .footer-section-multi-col   {
        padding-bottom: 68px;
    }
    
    #footer .footer-section-multi-col > div > div   {
        padding-bottom: 18px;
        padding-top: 18px;
    }
}

@media screen and (max-width: 767px)    {
    #footer .footer-section-multi-col   {
        padding-bottom: 36px;
    }
}


@media screen and (min-width: 768px)    {
    #footer .footer-middle-section {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}

#footer .h-footer   {
    color: #999;
    text-align: center;
}

#footer p   {
    color: #fff;
    text-align: center;
}