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

a {
  color: #428bca;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# 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 #428bca;
  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% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    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: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #428bca;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #5697d0;
  color: #fff;
}

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

#header.header-scrolled, #header.header-inner-pages {
  background: #fff;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

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

#header .logo img {
  height: 70px;
  width: 230px;
  max-height: 70px;
}



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

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #df2800;
  transition: 0.3s;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu li:hover > a {
  /* color: #fc7576; */
  text-decoration: underline;
}

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

.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: 13px;
  font-weight: 500;
  text-transform: none;
  color: #193c5a;
}

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

.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";
  }
}

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

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

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

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

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

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #428bca;
  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(34, 39, 43, 0.6);
  overflow: hidden;
  display: none;
  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: #f00;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgb(12 13 14 / 0%);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

.carousel-indicators li.active {
  opacity: 1;
  background: #428bca;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #428bca;
}

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

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

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

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

.section-title h3 {
  position: relative;
  padding-bottom: 10px;
  font-size: 32px;
  text-align: center;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.section-title h3 span {
  color: #f00;
}

.section-title h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  width: 90px;
  height: 2px;
  background: #428bca;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  color: #919191;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about_row {
  margin-bottom: 30px;
  overflow: hidden;
}
.about_img {
  overflow: hidden;
  height: 280px;
}
.about_img img {
  display: block;
  width: auto;
  min-width: 100%;
  height: 100%;
  border-radius: 3px;
}
.about_con {
  background: #f3f3f3;
  padding: 10px 30px 5px 30px;
  width: 100%;
}
.about_con h2 {
  font-size: 22px;
  font-weight:bold;
  color: #000;
  border-bottom: solid 2px #e5e5e5;
  margin: 0 0 17px;
  padding-bottom: 5px;
}
.about_con p {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 20px;
  text-align: justify;
}
.about_con a {
  background: #428bca;
  padding: 12px 25px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  transition: all ease-in-out 0.2s;
  border-radius:3px;
  font-weight: bold;
}
.about_con a:hover {
  background: #fff;
  color: #428bca;
}
.depostirates_row .image_block{
  padding-left: 5px;
  padding-right: 5px;
}
.depostirates_row img{
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

@-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;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
  padding-top: 0;
}
.services_heading h2{
  position: relative;
  padding-bottom: 10px;
  font-size: 32px;
  text-align: center;
  margin: 0 0 15px 0;
  font-weight: 700;
}
.services_heading h2 span{
  color: #f00;
}
.services_heading h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  width: 90px;
  height: 2px;
  background: #428bca;
}
.services_col {
  padding-top: 4px;
}
.services_single_box{
  padding-left: 0px;
  padding-right: 0px;
  max-width: 31%;
  flex:0 0 31%;
  -ms-flex: 0 0 31%;
  margin-left: 1%;
  margin-right: 1%;
}
.services_col img{
  width: 100%;
  border-radius: 3px;
}
.services_col:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: #f00;
  width: 0;
  transition: all ease-in-out 0.5s;
}
.services_col h3 {
  padding: 15px 0 5px;
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  border-bottom: solid 2px #e5e5e5;
  transition: all ease-in-out 0.2s;
  position: relative;
}
.services_col h3:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  height: 2px;
  background: #f00;
  width: 0;
  transition: all ease-in-out 0.5s;
}
.services_col:hover:before, .services_col:hover h3:after {
  width: 100%;
}
.services_col p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 20px;
}
.services_col a {
  display: inline-block;
  background: #428bca;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  transition: all ease-in-out 0.2s;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #fff;
}
.services_col a:hover {
  background: #fff;
  color: #00349a;
  border: 1px solid #00349a;
}
/*--------------------------------------------------------------
# Management
--------------------------------------------------------------*/
.management .singleblock{
  margin-bottom: 15px;
}
.management{
  padding-bottom: 30px;
}
.singleblock {
  padding-left: 4px;
  padding-right: 4px;
  max-width: 24%;
  flex:0 0 24%;
  -ms-flex: 0 0 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}
.singleblock .image {
  overflow: hidden;
}
.singleblock .image .thumbimage {
  width: 100%;
  height: 320px;
  border-radius: 4px;
}
.singleblock .img_title_block {
  /* height: 60px; */
  width: 100%;
  max-height: 60px;
  box-sizing: border-box;
  display: block;
  color: #000;
}
.singleblock .img_title {
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  padding:5px 2px;
}
.singleblock .img_title .title {
  max-height: 55px;
  overflow: hidden;
  width: 100%;
}
.singleblock .img_title .title a {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  font-family: "Raleway", sans-serif;
}
.person_position{
  font-size: 15px;
  color: #428bca;
  font-weight: bold;
}

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

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# contactinfo
--------------------------------------------------------------*/
.contact{
  padding: 30px 0 80px 0;
}
.contact-info {
  padding-right: 5px;
}
.contact-info ul {
  margin-top: 0px;
  list-style-type: none;
  padding-inline-start: 10px;
}
.contact-info ul li {
  font-size: 19px;
  font-weight: 600;
  color: #7c828b;
  padding-left: 20px;
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}
.contact-info li .icon i {
  line-height: 35px;
  position: absolute;
  left: 0;
  font-size: 30px;
  color: #428bca;
}


.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form input, .form textarea, .form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #595959;
}
.contact-form input,.contact-form select,.contact-form textarea{
  background-color: #eef1f5;
  height: 45px;
  font-size: 16px;
  font-size: 1.06667rem;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
}
.contact-form select {
  font-style: normal;
  background-position: 97% center;
  color: #8c8c8c;
}
.contact-form textarea {
  height: 110px;
  padding-top: 15px;
}
.submit-btn{
  text-align: center;
}
.submit-btn .btn{
  font-weight: bold;
  background-color:#428bca;
  font-size: 16px;
  color: #fff;
  padding: 5px 20px;
  border: 0;
  border-radius: 3px;
  display: inline-block;

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2e3339;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
.footer-info span{
  color: #f00;
  font-size: 18px;
}
#footer .footer-top {
  background: #272c30;
  border-top: 1px solid #394047;
  border-bottom: 1px solid #394047;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

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

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

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  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: #5697d0;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #5697d0;
}

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/***********custom css start *********/
.chairman_block img{
  width: 160px;
  height: 160px;
}
.chairman_block .discription h3 {
  margin: 0px 0px 10px;
  padding: 0px;
  font-size: 22px;
  font-weight: bold;
}
.chairman_block .discription p {
  font-size: 13px;
  text-align: justify;
}
.readmore {
  font-weight: bold;
  font-size: 12px;
  padding: 6px 10px;
  font-family: "Nunito", sans-serif;
  background: #428bca;
  font-weight: 600;
  color: #fff;
  border: 0;
  border-radius: 3px;
  display: inline-block;
}
.readmore:hover{
  color: #fff;
}

.chairman_block_middle {
  /* max-width: 31%;
  margin-left: 2%; */
    max-width: 24%;
    flex: 0 0 24%;
    -ms-flex: 0 0 24%;
    margin-right: 1%;
}
.chairman_block_middle img{
  width: 90%;
  height: 100%;
}


.board_of_directorts_block img{
  width: 160px;
  height: 160px;
}
.board_of_directorts_block .discription h3 {
  margin: 0px 0px 10px;
  padding: 0px;
  font-size: 22px;
  font-weight: bold;
}
.board_of_directorts_block .discription p {
  font-size: 13px;
  text-align: justify;
}
.slider_block{
  padding: 20px 0 10px 0;
  margin-top: 8%;
}
.slider_caption {
    top: 40%;
}
.slider_caption h5{
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 30px;
  height: 34px;
  display: inline-block;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 50%;
  text-indent: -9999px;
  transition: opacity .5s ease;
  position: relative;
  z-index: 1;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: #000;
  border-radius: 30%;
}




.topmarque-bar {
  background-color: #099b39;
  position: relative;
  margin-bottom: 1%;
}
.scrollnews {
  width: 100% !important;
}
.scrollnews .news-scroll:before {
  content: '';
  position: relative !important;
  top: 0px;
  left: 0px !important;
  height: 100%;
  width: 10%;
  background-image: linear-gradient(to left, transparent, #007c29);
  z-index: 99999;
}
.scrollnews marquee {
  vertical-align: top;
  float: left;
}
.scrollnews ul li a:before {
  content: "\ea5d";
  font-family: IcoFont;
  margin-right: 5px;
  color: #fff;
}
.scrollnews ul {
  margin: 0px;
}
.scrollnews ul li {
  display: inline-block;
  margin-right: 10px;
}
.scrollnews ul li a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 35px;
  line-height: 35px;
  position: relative;
  font-weight: normal;
}