@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --font1: "Nunito Sans", sans-serif;;
  --heading-fonts:"Michroma", sans-serif;;
  --site-color: #1b5982;
  --site-color-1: #e31d1e;
  --site-lightblue: #b0cde6;
  --color-gray: #95969b;
  --site-black: #000;
  --site-white: #fff;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  background: #f6faff;
  color: #000;
  overflow-x: hidden;
}

a{color:var(--site-color);}
a:hover{ color:#000; text-decoration:underline;}

.mt30 {margin-top: 30px !important;}
.padt40 {padding-top: 40px;}
.padt50 {padding-top: 50px;}
.padt70 {padding-top: 70px;}
.padt80 {padding-top: 80px;}
.padt90 {padding-top: 90px;}
.padb30 {padding-bottom: 30px;}
.padtb70 {padding-bottom: 70px;}
.padtb60 {padding-bottom: 60px;}
.padb40 {padding-bottom: 40px;}
.padb50 {padding-bottom: 50px;}
.padtb80 {padding-bottom: 80px;}
.padtb90 {padding-bottom: 90px;}

.container {
  max-width: 1270px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.light-color {color: var(--site-color);}
.dark-color {color: var(--site-color-1);}

.mt50 {margin-top: 50px;}
.mb50 {margin-bottom: 50px;}
.mt100 {margin-top: 100px;}


.relative {position: relative;}
.absolute {position: absolute;}

.overflow-hidden {overflow: hidden;}

.d-flex{display:flex;}
.align-items-center{align-items: center;}
.aic {align-items: center;}
.justify-space-between{ justify-content: space-between;}

.text-center {text-align: center;}

.text-white {color: var(--site-white);}
.site-color {color: var(--site-color)}

.gap-10{gap: 10px;}
.gap-15{gap: 15px;}
.gap-20{gap: 2rem;}
.gap-30{gap: 3rem;}

img {max-width: 100%;}


.overlay {
   background: #000;
   background-size: cover;
   position: absolute;
      top: 0;
      left: 0;
      bottom:0;
      right:0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
.overlay:before {
  position: absolute;
  background-color: #000;
  opacity: 0.3;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.overlay:after {
  position: absolute;
  background: url(../images/pattern-1.png) bottom repeat-x;
  /*background-size: 100%;*/
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
}
.site-title {
  font-size: 2.4rem;
  line-height: 60px;
  font-weight: 400;
  margin: 0 0 25px 0;
  font-family: var(--heading-fonts);
  color:#243f7e;
  text-transform: uppercase;
}

.sub-title {
  font-size: 30px;
  line-height: 42px;
  font-family: var(--heading-fonts);
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #243f7e;
}
.summary-block .site-title{color: #fff}
 
.chartone {
  width: 100%;
  margin-bottom: 30px;
}

.chart.charttwo {
  width: 48%;
}

.charts .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chart.charttwo iframe {
  height: 500px !important;
  width: 100% !important;
}


.note-a {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  background: #dde5ed;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 3px solid #1c4369;
}

.z-index {z-index: 2;}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


  .hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
  }

  .heroslide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.2); /* start slightly zoomed in */
    transition: opacity 2s ease, transform 8s ease; /* smoother fade + zoom */
  }

  .heroslide.active {
    opacity: 1;
    transform: scale(1); /* zoom out smoothly */
    z-index: 1;
  }


.list-ul {padding: 0;}

.list-ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.list-ul li .icon {
  width: 5%;
  font-size: 40px;
}

.list-ul li .li-content {
  width: 93%;
  font-size: 18px;
  line-height: 28px;
}

.highlight-text {
  display: inline-block;
  background: var(--site-color);
  margin: 0;
  padding: 12px 25px;
  border-radius: 10px;
  color: #fff;
}

.highlight-box.sm {
  margin-bottom: 15px;
  padding: 15px;
  box-shadow: none;
}

.highlight-box.v2 {border:5px dotted #00bcd4;font-size: 1.3rem; border-left: 5px double #00bcd4;}
.highlight-box.v1 {border-color: #00bcd4;
    font-size: 1.5rem;
    line-height: normal;
    text-align: center;
  box-shadow:  inset 0 0 40px #2a98f93b, 0px 20px 40px #ccc;
}

#footnote {font-size: 12px;}

.banner-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.center-text {
  background: var(--site-color);
  text-align: center;
  display: flex;
  align-items: center;
  padding:20px;
}

.banner-three img{display: block;width:100%;}

.blue-bg {background:#427CF0; color:#fff;}
.blue-bg a{color:#fff;}

.p-box p {
  background: #fff;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 0 #113988;
}

.p-box p a{color:#000;}

.p-box.v1 p {
  background: var(--site-color);
}

.ct-text{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 14px;
    z-index: 1;
    color: #fff;
}
.highlight-box {
  margin: 0;
  background: #fff;
  padding: 30px;
  border: 1px solid #ccc;
  box-shadow: 0 15px 35px #e1e0e0;
  border-top: 5px solid var(--site-color);
  position: relative;
  border-radius: 20px;
}

.head-bg {
  background: #833AB4;
  background: linear-gradient(180deg, #00bcd4 0%, #6f98cd 100%);
  color: #fff;
  display: inline-block;
  padding: 7px 15px;
  border-radius: 10px;
}

.highlight-box.padt0 {
  padding-top: 0;
}

.section-1{background: #fff}


.about-top {
  background: url(../images/company-bg1.jpg) no-repeat center;
  padding: 50px 0;
  border-radius: 15px;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-size:cover;
}

.about-top .abt-text.highlight-box {
  max-width: 600px;
  position: absolute;
  left: -50px;
  box-shadow: none;
}

.abt-logo {
  padding-left: 100px;
}

.abt-logo img {
  max-width: 400px;
}

.black-bg{background:#000; color:#fff;}
.black-bg .site-title{color:#fff;}


.p-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.p-list li {
  list-style: none;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 35px #e8e8e8;
}

.p-list li p{margin-top:0;}

.p-logo {
  padding-top: 10px;
}
.p-list li a{color:#000; text-decoration:none;}

.two-col.black-col {
  background: #1c1c1c;
  color: #fff;
}

.two-col.black-col .col-text{text-align:left; padding-left:20px; padding-top:20px;}
.two-col.black-col .col-text .sub-title{color:#fff;}
.two-col.black-col .col-text p {
  font-size: 15px;
  line-height: 24px;
}

.two-col.black-col .col-text .list-ul .li-content {
  font-size: 15px;
  line-height:22px;
}
.two-col.black-col .col-text .list-ul li .icon{font-size:24px;}
.two-col.black-col .col-text .list-ul li{margin-bottom:0;}

.two-col.black-col .col-img img{height:100%; object-fit:cover;}

.two-col.black-col .col-text a{color:#fff;}


footer {
  background: var(--site-color);
  font-size: 14px;
  padding: 15px 0;
  color: #fff;
  margin-top: 35px;
}



/* new css */

.top-banner{height:100vh; display:flex; align-items:center;}
.top-banner video{position:absolute; height:100%; width:100%; left:0; top:0; bottom:0; right:0; object-fit:cover;}
.img-overlay{position:absolute; bottom:0; width:100%;z-index:1; opacity: 0.1;}

.hero-txt{max-width: 90%; margin: auto; justify-content: center;text-align: center;}

.deskvid{display: block;}
.mobvid{display: none;}

.logo-symol-wrapper {
  width: 90%;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 2;
}

.paid-advert{position: absolute;
    top: 0;
    left: 0;
    right: 0;}

.paid-advert span {
  font-size: 15px;
  font-weight: 700;
  background: var(--site-color);
  color: #fff;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 3px;
}

.paid-advert a {
  color: #fff;
  text-decoration: none;
}

.symbol-top span {
  color: #fff;
  display: inline-block;
  font-weight: 700;
  font-family: var(--heading-fonts);
  background: #833AB4;
  background:linear-gradient(180deg, #275882 0%, #0f3765 100%);
  padding: 15px 20px 18px;
  border-radius: 6px;
  font-size: 36px;
}

.top-banner .site-title {
  text-align: center;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.topfold {
        position: relative;
        display: flex;
        height: 100vh;
        overflow: hidden;
    }

    .topfold video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.2);
    }

    /* Overlay for centered text */


    .overlay h1 {
        color: white;
        font-size: 2.3rem;
        text-align: center;
        text-shadow: 0 2px 1px #000;
        line-height:1.3;
        word-spacing: 0.6px;
        font-weight: 700;
        text-transform: initial;

    }
    .overlay h1 span{ font-size: 1.2rem; padding:2px 8px 8px;  display:block; }
    .overlay p{color: #fff; text-align: center; font-size: 20px; text-shadow: 0 2px 1px #000;}
    .right-drone{
        background: url(../images/drone-waves.png) center no-repeat;
        background-size: contain;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .movedrone{
       animation: moveUpDown 2s linear infinite alternate;
    }
    @keyframes moveUpDown {
    0% {
        transform: translateY(0); /* Start position: no vertical movement */
    }
    100% {
        transform: translateY(-20px); /* End position: moves up 20px */
    }
}

/* Rotating image 360* */

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}



.hero{text-align: right; width: 100%}
.hero img{ width: 100%}


/* below top fold */

.d-flex .counter-bx{width:50%; }
.counter-bx{ background: var(--site-color); color:#fff; display:flex; flex-direction:column; gap:10px; text-align:center; padding:30px; border-radius:5px; width:50%; width:100%; margin-bottom:15px; }
.counter-bx h3{margin:0; padding:0; font-family:var(--heading-fonts) }
.counter-bx p{margin:0; padding:0; font-weight:500; font-size:18px; }


.section-2{background: url(../images/drone1.jpg) center bottom; background-size: cover; min-height: 100vh}
.key-policies{background: url(../images/bg-mid.png) center bottom; background-size: cover; min-height: 100vh}

.multi-billion{background: url(../images/drone2.jpg) center bottom; background-size: cover; min-height: 100vh}
.multi-billion .right-img{ padding: 10px; border-radius: 20px; background: #fff}

.problems{ padding:20px; background: #ff00000a; color: #af0303;}
.solutions{ padding:20px; background: #43a04730; color: #0f5712;}
.problems h4, .solutions h4{ margin:0; font-size:1.6rem }



.greeting-lt{
display: flex;
    align-items: start;
    justify-content: end;
    position: relative;}
.greeting-lt img{max-width: 100%;}

/*  */
.top-reason-block{background: url(../images/cyberpunk-soldiers-futuristic-city.jpg); background-size: cover; background-attachment: fixed; position: relative;}
.top-reason-block:before{
   position: absolute;
  background: #000;
  opacity: 0.6;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  }
.top-reason-block .site-title{ color:#fff; text-shadow:0 2px 0 #000 }
.top-reason-block .site-title span{background: #305593; display:inline-block; padding:3px 8px; border-radius:10px; }
.top-reason-block .list-ul li {
  text-align: left;
  color: #000;
  background:#fff;
  box-shadow: inset 0 0 30px #d2e6ff, 0 15px 35px #1c4369;
  border: 2px solid #fff;
  padding: 15px;
  border-radius: 10px;
}

.top-reason-block .note-a {
  color: #fff;
}

.top-reason-block .list-ul li .icon {
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  text-align: center;
  background: #305593;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.top-reason-block .list-ul li:hover .icon{
    border-radius: 20px 20px 20px 20px;
}

.top-reason-block .list-ul li a {
  color: #000;
  font-weight: 700;
}


.top-reason-block .note-a{color:#000;}


.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:15px;
}
.five-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:15px;
}


.colt {
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border-radius: 6px;
}

.colt .list-ul li .li-content{width:88%;}

.col-three .col-box.colt h3 {
  margin-top: 0;
}


.border-top {
  border-top: 2px solid var(--site-color);
  padding-top: 40px;
  margin-top: 50px;
}

.col-box {
  color: #fff;
  padding: 20px;
  border-radius: 20px;
}

.col-img img{border-radius:6px; height:100%; object-fit:cover;}



.fcol {
  background: #fff;
  box-shadow: inset 0 0 40px #add8ff6b;
  padding: 25px 30px 20px;
  border-radius:40px;

}
.fcol img{border-radius: 30px;}

.btn-pi{ background-color: #114368;
    color: #fff;text-transform: uppercase;    display: flex;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 30px;
    display:inline-block; }
.btn-pi:hover{ color:#fff; text-decoration:none; background:var(--site-color-1); }

.section-box{background: #ffffffdb;
    border: 2px solid var(--site-color);
    padding: 40px;
    border-left: 1px solid var(--site-color);
    border-radius: 20px;
    box-shadow: inset 0 0 30px #2a98f93b, 0px 10px 30px #d5d5d5;}

.section-2{/* background:url(../images/Off-The-Hook-Meida.png) center right no-repeat; height:100%; */}
.overview-sec{ background:#173148 url(../images/drone.jpg) center center no-repeat;  background-size:cover; }
.revenue-models{ background:#173148 url(../images/man-with-drone.jpg) center right no-repeat;  background-size:cover; background-attachment: fixed; }
.revenue-box{background: #ffffffe9; padding: 20px; border-radius: 20px;}

.white-bx{
  padding: 20px 30px;
  background-color: #000000d1;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    border-bottom: 4px solid var(--site-color);
    color: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, .1);
    transition: box-shadow .5s ease-in-out;
    font-size: larger;
}
.white-bx .site-title{ color: #fff;}
.white-bx .note-a{ color:#000; font-weight:300 }

.market-domination {
  margin: 0;
  position: relative;
}
.market-domination .head-bg{color: #fff}

.ceo-box {
  margin: 0;
  background: #fff;
  padding:30px 20px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 25px #e1e0e0;
  border: 3px solid #49a4e7;
  position: relative;
}
.ceo-box h4{ margin: 0; padding: 10px 0 0; font-size: 1.3rem}
.ceo-box span{ font-size: 14px; color: #666;}
.ceo-box a{position: absolute; bottom: 0; display: block; width: 100%; text-align: center; padding: 5px 10px; background:#c37a81; color: #fff; left: 0; right: 0; text-decoration: none; border-radius: 0 0 1.5rem 1.5rem}

h4.sub-head{padding-bottom: 20px; font-size: 1.4rem; color: #243f7e}
.list-ul.advantage {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap:10px;
}
.list-ul.advantage li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid var(--site-color);
    box-shadow: 0 10px 15px #eee;
    font-size: 14px;
}
.list-ul.advantage li .icon {
    width: 5%;
    font-size: 40px;
}
.list-ul.advantage li .li-content {
  width: 95%;
  font-size: 18px;
  line-height: 28px;
}


.video-overlay {
  overflow: hidden;
  height: 90vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-overview{ background-image:url(../images/map.png); background-position:top right; background-repeat:no-repeat; background-size: contain;}
.company-overview em{    background: #833AB4;
    background: linear-gradient(180deg, #00bcd4 0%, #6f98cd 100%);
    border-radius: 20px; color:#fff; display: inline-block; padding: 5px 15px}

.company-rt img{border-radius: 60px;}

.bluebx{ background:#3176a0; color:#fff; text-align:center; padding:40px; }
.whitebx{ background:#fff; color:#060930; text-align:center; padding:40px; }
.whitebx ul li{ text-align: left; padding: 5px; font-size:1.2rem }


.section-3{ background: url(../images/ds.png) center left no-repeat;}
.section-3 .two-col{grid-template-columns: 45% 1fr;}
.section-3 img{border-radius: 40px;}


.appbox{background:#f5f7f9; padding: 15px; border-radius:15px; border-top: 3px solid var(--site-color-1);}

.summary-block {
  padding: 30px 0;
  background:#21345f url(../images/bgimg11.jpg) bottom center no-repeat; background-size: contain;  
}

.cta-box{background:#444f5d url(../images/cta-banner.png) center no-repeat; background-size: cover; position: relative; overflow: hidden; color: #fff; max-width: 95%; border-radius: 40px; margin:50px auto; }
.cta-box h2{color: #fff; font-size: 2rem}
.cta-box h2 span{    background-color: var(--site-color);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;}

.custom-bx{ background:#175a55; color:#fff; padding:20px 30px; border-radius: 30px 0 0 30px}

.testimonial {background:url(../images/map.png) center no-repeat; background-size: contain; position: relative; min-height:60vh; display: flex; align-items: center; }
.testi-box{ background: #ffffffa9;
    padding: 40px 50px 40px;
    border-radius: 50px;
    position: relative;
  }
.testi-box:before{
  content: '';
  background: url(../images/quote-left-solid.svg);
  background-size: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50px;
  top: -30px;
  z-index: 1;
}
.testi-box:after{
  content: '';
  background: url(../images/quote-right-solid.svg);
  background-size: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 50px;
  bottom: 30px;
  z-index: 1;
  opacity: 0.3;
}
.testi-box p{ font-size:1.2rem; font-weight:600 }
  .ceo{
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
  }
  .ceo img{width: 100%; object-fit: cover; height: 100%;} 

.team-bx img{border-radius: 0 0 30px 30px; overflow: hidden;}


.table-wrapper {
 max-width: 100%; overflow: auto;
}

table.styled {
  width: 100%;
  border-collapse: collapse;
}

table.styled thead th {
  background: #070c3a;
  color: #ffffff;
  padding: 14px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ffffff;
}

table.styled tbody td {
  padding: 14px;
  font-size: 15px;
  border: 1px solid #ffffff;
  text-align: center;
}

table.styled tbody tr:nth-child(even) {
  background: #f1f1f1;
}

table.styled tbody tr:nth-child(odd) {
  background: #dde2e6;
}

/* Highlight top approved section */
.highlight {
  background: #d8dde2;
}

/* Status styles */
.granted {
  color: #000000;
  font-weight: bold;
}

.progress {
  color: #000000;
  font-weight: normal;
}


.path-forword{background: #fff}


.team-block ul { padding: 0; margin: 0; }
.team-block ul.tl-list > li {
    border: 2px solid rgb(0 69 255 / 25%);
    padding: 15px;
    border-radius: 14px;
    list-style: none;
    margin-bottom: 9px;
    box-shadow:0 2px 0 #3e71ff;
    background: #fff;
    display: grid;
    grid-template-columns: 14% 1fr;
    gap: 30px;
}
.team-block ul.tl-list li h3 {
    margin: 0;
}
.team-block ul.tl-list li h4 {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 15px 0;
    font-size: 16px;
}



.news-block ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.news-block ul li {
    list-style: none;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--site-color);
    border-bottom-width: 3px;
    color: #000;
    box-shadow: inset 0 0 10px #2a98f93b;
}
.news-block ul li img {
    max-height: 26px;
    max-width: 180px;
    display: block;
    margin-bottom: 10px;
}
.news-block ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-style: italic;
}
.news-block ul li a.readmore {
    color: #0074ba;
    text-decoration: none;
    font-weight: 500;
    font-style: italic;
    margin-left: 2px;
}
.news-block ul li span {
    display: block;
    font-size: 14px;
    color: #666;
}