
.text-gray
{
  color: #808080;
}

.text-green
{
  color: #00bc7d;
}
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
/* --------------- Menu --------------- */
.navbar {
    position: absolute;
    left: 0;
    top: 30px;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    z-index: 9999999;
}
.navbar.nav-scroll {
    padding: 0;
    position: fixed;
    top: -80px;
    padding: 15px 0;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.navbar .logo {
    width: 200px;
}
.navbar .navbar-nav {
    padding: 2px 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-left: 15px;
}
.navbar .navbar-nav .nav-link {
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
}
.navbar .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}
.navbar .topnav .butn {
    padding: 7px 20px;
    background: #fff;
    color: #1d1d1d;
    margin-right: 15px;
}

/* --------------- header --------------- */
.header-ds
{
      background: #111111;
}
.header-ds .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 140px 0 90px;
    min-height: 100vh;
}
.header-ds .caption h1 {
    font-size: 66px;
    line-height: 81px;
    font-weight: bold;
}

.header-ds .social-icon a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #151515;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-ds .social-icon a:hover {
    color: #fff;
    background: transparent;
}
.header-ds .numb {
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.header-ds .numb > div {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}
.header-ds .numb h2 {
    font-size: 96px;
    line-height: 96px;
    font-weight: 400;
    margin-bottom: 10px;
}
.header-ds .numb span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --------------- About --------------- */
.intro-ds {
    background-image: url(../imgs/about-bg.png);
    background-size: cover;
    background-position: top;
    position: relative;
}
.intro-ds .container {
    position: relative;
    margin-top: -1px;
    z-index: 3;
}
.intro-ds .container .box {
    padding: 60px 80px;
    background: #fff;
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 2;
}
.intro-ds .container .layers {
    position: absolute;
    top: -10px;
    left: 40px;
    right: 40px;
    bottom: 5px;
    background: #fff;
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}
.intro-ds .container .layers:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    right: 20px;
    bottom: 5px;
    background: #fff;
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}
.intro-ds .comit .item h6 {
    font-size: 20px;
    line-height: 28px;
}
.intro-ds .founders .imgs .img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
}
.intro-ds .founders .imgs .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.intro-ds .founders .imgs .img.img2 {
    margin-left: -15px;
    position: relative;
    z-index: -1;
}
.intro-ds .founders p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 30px;
    margin-left: 10px;
}
.intro-ds p {
    color: #000;
}

/* --------------- Services --------------- */
.services-ds .item {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.services-ds .item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.services-ds .item .title h2 {
    font-size: 128px;
    line-height: 128px;
    letter-spacing: -4px;
}
.services-ds .item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 150px;
}
.services-ds .item .icon img {
    width: 30px;
}
.services-ds .item .title {
    position: relative;
    margin-bottom: -70px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.services-ds .item:hover {
    background: rgba(255, 255, 255, 0.05);
}
.services-ds .item:hover .title {
    margin-bottom: 0;
    color: var(--main-color);
}

/* --------------- FAQS --------------- */
.faqs-ds .accordion-item {
    background: var(--bg-color);
    border-radius: 10px;
    border: 0;
    margin-bottom: 5px;
}
.faqs-ds .accordion-item.active {
    background: var(--main-color);
}
.faqs-ds .accordion-item .accordion-header {
    background: #212122;
}
.faqs-ds .accordion-item .accordion-header button {
    background: #212122;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    padding: 17px 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faqs-ds .accordion-item .accordion-header button:after {
    background-image: url(../imgs/pricing/plus-solid.svg);

}
.faqs-ds .accordion-item .accordion-header button:not(.collapsed):after {
    background-image: url(../imgs/pricing/minus-solid.svg);
}
.faqs-ds .accordion-item .accordion-body {
    padding: 0;
    padding: 0px 100px 30px 30px;
}

/* --------------- FAQS --------------- */
.team-ds .item {
    text-align: center;
    margin-bottom: 60px;
}
.team-ds .item:hover .img {
    border-color: var(--main-color);
}
.team-ds .item:hover .cont h6 {
    color: var(--main-color);
}
.team-ds .item .img,
.team-ds .item .numb {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-color);
    margin: auto;
}
.team-ds .item .img img,
.team-ds .item .numb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.team-ds .item .img {
    border: 2px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-ds .item .numb {
    line-height: 220px;
}
.team-ds .item .numb h3 {
    line-height: 220px;
}
.team-ds .item .cont {
    margin-top: 15px;
}
.team-ds .item .cont h6 {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.team-ds .item .cont span {
    color: #bbb;
    font-size: 14px;
    margin-top: 5px;
}
.team-ds .item .cont span a {
    color: var(--main-color);
    text-decoration: underline;
}

/* --------------- Blogs --------------- */
.blog-ds {
    background: var(--bg-color);
}
.blog-ds .item .info {
    font-size: 14px;
}
.blog-ds .item .info .date {
    color: #808080;
}
.blog-ds .item .info .dash {
    color: #808080;
    margin: 0 15px;
}
.blog-ds .item .img {
    position: relative;
    height: 300px;
}
.blog-ds .item .img > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.blog-ds .item .img .icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: var(--main-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog-ds .item .img .icon img {
    width: 22px;
}
.blog-ds .item:hover .img .icon {
    opacity: 1;
    visibility: visible;
}
 .footer  h6{font-size: 18px;}
.footer img
{
  width: 60px;
}
.footer
{
  background: #060606;
  padding: 50px 0px;
}

.footer ul
{
    padding: 0;
    margin-top: 5px;
}
.dote
{
      font-size: 25px;
    color: #fff;
    padding-right: 20px;
}

.footer ul li
{
  color: #808080;
    line-height: 41px;
    font-size: 16px;
}
body {
  font-family: "Geist", sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    background-color: #111111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin: 0;
}

h1 {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -3px;
}

h2 {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -3px;
}

h3 {
    font-size: 40px;
    line-height: 52px;
    letter-spacing: -2px;
}

h4 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -2px;
}

h5 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
}

h6 {
    font-size: 24px;
    line-height: 32px;
}

.sub-head {
    font-size: 20px;
    line-height: 28px;
}

p {
    color: #bbb;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.sec-head h2 {
    font-size: 65px;
    line-height: 65px;
}
.sec-head h2 span {
    color: var(--main-color);
  font-family: "Geist", sans-serif;
    font-style: italic;
    font-weight: 400;
}

.loader-wrap svg {
    fill: #1d1d1d;
}

.butn.butn-bord {
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.butn.butn-bord:hover {
    background: var(--main-color);
    color: #fff;
}

.butn.butn-bg {
    background: var(--main-color);
    border: 1px solid transparent;
    color: #fff;
}
.butn.butn-bg:hover {
    background: transparent;
    border-color: var(--main-color);
    color: inherit;
}

.icon.invert img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.butn .icon {
    width: 18px;
}

.butn:hover .icon.invert img {
    -webkit-filter: invert(0);
    filter: invert(0);
}

.box-light {
    background-color: #fff;
    color: #000;
}

.box-dark .box {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 100px 80px;
    position: relative;
}
.box-dark .box .layers {
    position: absolute;
    top: 5px;
    left: 30px;
    right: 30px;
    bottom: -10px;
    background: var(--bg-color);
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}
.box-dark .box .layers:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 20px;
    right: 20px;
    bottom: -10px;
    background: var(--bg-color);
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}


.search-box {
    position: relative;
    width: 576px;
    margin: 0px auto;
    margin-top: 30px;
}
.search-box3{
    position: relative;
   
    margin: 0px auto;
    margin-top: 0px;


}
.compare-view .double-box-container {
    display: flex
;
    justify-content: space-between;
    width: 100%;
    margin: 32px 0 0;
}
.compare-view .compare-channel-header-box {
    background: hsl(from var(--vs-content-bg) h s l / 1);
    border-radius: 10px;
    width: 48%;
    min-height: 240px;
}
.compare-view .compare-channel-header-box .compare-channel-header {
    display: flex
;
    flex-direction: column;
    padding: 32px 24px;
}

/* Card container */
.card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Avatar and layout */
.channel-avatar-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-avatar {
  border-radius: 50%;
  object-fit: cover;
}

/* Header (name + flag) */
.channel-header-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-m {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.country-flag {
  border-radius: 2px;
  object-fit: cover;
}

/* Stats */
.channel-stats-container {
  margin-top: 20px;
}

.channel-stat-box .body-xl {
  font-size: 1.25rem;
  font-weight: bold;
}

.channel-stat-box p {
  margin: 0;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .channel-avatar-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .channel-header-name {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .channel-stat-box {
    width: 100%;
    margin-bottom: 1rem;
  }

  .channel-stats-container {
    flex-direction: column;
  }
}

.search-box input {
    width: 100%;
    padding: 7px 10px 10px 64px;
    border-radius: 46px;
    background: #000;
    border: 0;
    height: 70px;
    font-size: 21px;
}
.search-box i {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    color: #798aa5;
}


.search-wrapper {
position: absolute;
    right: 18%;
}

.search-box2 {
  position: relative;
  width: 193px;
}

.search-box2 input {
  width: 100%;
  padding: 7px 10px 10px 64px;
  border-radius: 46px;
  background: #292929;
  border: 0;
  height: 48px;
  font-size: 18px;
  color: white;
}

.search-box2 i {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  color: #798aa5;
}

.search-box3 {
  position: relative;
  width: 320px;
}

.search-box3 input {
    width: 100%;
    padding: 8px 10px 10px 53px;
    border-radius: 46px;
    background: #292929;
    border: 0;
    height: 42px;
    font-size: 15px;
    color: white;
}

.search-box3 i {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  color: #798aa5;
}

.Popular-channels
{
      border: 1px solid #fff;
    padding: 7px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
}

.Popular-channels2
{
      border:  1px solid #484b4f;
    padding: 7px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
}

.Popular-channels img
{
    width: 39px;
    border-radius: 4px;
    margin-right: 10px;
}
.Popular-channels p
{
    font-size: 16px;
    color: #fff;
    display: contents;
}


.table-dark-2 {
  background: #222222;
}

th,td{color: #fff;font-size: 15px;}

 tbody tr:nth-child(odd) {
  background: #432929;
  }

  tbody tr:nth-child(even) {
  background: #222222;
  }

 .table-img tbody tr:nth-child(odd) {
  background: #212122;
  }

  .table-img tbody tr:nth-child(even) {
  background: #212122;
  }

  table, th, td {
    border: 0px solid #dee2e6 !important;
    border-collapse: collapse;
  }

  .table-responsive
  {
        border: 1px solid #484849;
    border-radius: 8px;
    margin: 0;
    padding: 0;
  }

   .channel-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    }
    .channel-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .youtube-icon img {
      width: 72px;
      height: 72px;
      border-radius: 12px;
    }
    .channel-left .info h5 {
      margin: 0;
      font-size: 22px;
    }
 
   
    .channel-stats h6 {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
    }
    .channel-stats .count {
      font-size: 18px;
      font-weight: bold;
    }
    .rank-badge {
    border-radius: 20px;
    padding: 3px 14px;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
    border: 1px solid #3c3c3d;
    }
    .live-badge {
    background: #3d1d1e;
    color: #ff0000;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 32px;
    }
    .channel-nav {
      display: flex;
      margin-top: 20px;
      gap: 10px;
      flex-wrap: wrap;
    }
    .channel-nav button {
    background: #2b2b2b;
    color: #ccc;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    width: 18.2%;
    }
    .channel-nav button.active {
      background: #e2e2e2;
      color: #000;
    }

    .width30
    {
      width: 30px;
    }

    .vielive
    {
          display: inline;
    margin-right: 20px;
    }

    .br-1
    {
      border-right: 1px solid #3c3c3d;
    }
    .channel-nav .star-view
    {background: #191919;
    border: 1px solid #474747;
    border-radius: 4px;
    line-height: 41px;
    padding: 0px 11px;}

    .table>:not(caption)>*>* {
    padding: .8rem .5rem;
  }
   .rounded-table {
      border-radius: 12px;
      overflow: hidden;
    }

   .border-2
   {
border: 2px solid #272727;
   }
   .br-8
   {
border-radius: 8px;
   }

   .pd-20
   {
    padding: 20px;
   }

   .bg-grey
   {
    background: #1e1e1e;
   }

   .bg-black
   {
    background: #080808;
   }

   .brcstm
   {
      border-top-right-radius: 8px;    border-top-left-radius: 8px;
   }

   .left-menu
   {
border-right: 2px solid #1f1e1f;
   }

.left-menu ul {
    padding: 0;
    margin-top: 20px;
}
   .left-menu ul li{line-height: 40px;}
 .left-menu ul li a.active {
    color: white;
    border-radius: 4px;
    background: linear-gradient(87deg, #1f1f1f, #0d0d0d8a) !important;
    padding: 5px 14px;
    width: 100%;
  }
  
   .left-menu ul li a{
color: white;
    border-radius: 4px;
    padding: 5px 14px;
    width: 100%;
  }

  .plr-20
  {
    padding-right: 20px;
    padding-left: 20px;
  }

  .card-view
  {
    background: #212121;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 15px; }

.f-15
{
  font-size: 15px;
}

.f-14
{
  font-size: 14px;
}



/*bar chart*/

  .card-dark {
    background: #212121;
    padding: 10px 20px;
    border-radius: 8px;
    }
    .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .chart-header h6 {
   font-size: 15px;
    }
    .toggle-btns button {
      border: none;
    padding: 4px 7px;
background: #1a1a1a !important;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    }
    .toggle-btns button.active {
      background-color: #2c2c2c !important;
      color: #fff;
    }
    .views-summary {
     font-size: 20px;
    }
    .percent-change {
      color: #3ddc91;
      font-size: 16px;
      font-weight: 500;
    }

    .chart-header .toggle-btns
    {
    background: #1a1a1a;
    padding: 5px;
    border-radius: 8px;
    }

    .per-arrow
    {
      background: #3ddc91;
    color: #000000;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 17px;
    margin-right: 5px;
    }
    .pd-0
    {
      padding: 0px;
    }
.upcoming-box img
{
    width: 29px;
    margin-right: 5px;
}
    .upcoming-box
    {
          border: 1px solid #484b4f;
    border-radius: 8px;
    padding: 20px;
    background: #212122;
    margin-bottom: 15px;
    }

    .btn-day
    {
background: #00bc7d;
    color: #000;
    border-radius: 10px;
    padding: 9px 12px;
    }

    .table-img td img

    {
      width: 40px;
      border-radius: 8px;
    }
    .f-12
    {
      font-size: 12px;
    }

     .table-img tr {
  border-bottom: 1px solid #484849 !important;
}

 .table-img thead tr
 {
  border-top: 0;
 }

 .btn-green-light
 {
  border: 0;
    color: #ffffff;
    background: #47d990;
    padding: 6px 25px;
    border-radius: 8px;
    text-align: center;
 }
    .btn-green
    {
border: 0;
    color: #ffffff;
    background: #16b666;
    padding: 6px 25px;
    border-radius: 8px;
    text-align: center;
    }

    .table-img thead tr th
    {
      padding: 20px 50px;
      font-weight: normal;
      font-size: 15px;  white-space: nowrap;

    }

        .table-img tbody tr td
    {
      padding: 8px 50px;
      font-weight: normal;  white-space: nowrap;

      font-size: 15px;
    }
.frame-5
{
  border: 1px solid #484b4f;
    border-radius: 8px;
    padding: 20px;
    background: #212122;
    margin-bottom: 15px;margin-bottom: 15px;
}
.catrgory-frm5 img
{
    width: 30px;
    border-radius: 100%;
    height: 30px;
}

.border-1
{
      border: 1px solid #3c3c3d;
}
.faqs-ds .accordion-item {
  background: var(--bg-color);
  border-radius: 10px;
  border: 0;
  margin-bottom: 5px; }
  .faqs-ds .accordion-item.active {
    background: var(--main-color); }
  .faqs-ds .accordion-item .accordion-header {
    background: transparent; }
    .faqs-ds .accordion-item .accordion-header button {
    background: #212122;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    padding: 12px 36px;
    box-shadow: none;
    border-radius: 48px;    margin-bottom: 20px;}
      .faqs-ds .accordion-item .accordion-header button:after {
        background-image: url(../imgs/bottom-arrow.png);
     }
      .faqs-ds .accordion-item .accordion-header button:not(.collapsed):after {
        background-image: url(../imgs/bottom-arrow.png); }
  .faqs-ds .accordion-item .accordion-body {
    padding: 0;
    padding: 0px 100px 30px 30px; }
   
/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {

  .channel-nav button
  {
    width: auto;
  }
    .header-ds .caption {
        text-align: center;
    }
    .header-ds .text {
        text-align: center;
    }
    .header-ds .text p {
        width: 80%;
        margin: auto;
    }
    .services-ds .item .title h2 {
        font-size: 80px;
        line-height: 1.2;
    }
    .pricing-ds .sec-head .d-flex {
        display: block !important;
    }
    .pricing-ds .sec-head .d-flex .ml-auto {
        margin-top: 30px;
    }
    .pricing-ds .content .price-foot .price-foot-item .butn span:first-of-type {
        display: block !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 768px) {

.header-ds .container
{
            padding: 114px 15px 70px;
        min-height: auto;
}
  .plr-0
  {
    padding-right: 0px;
    padding-left: 0px;
  }
.border-end {
        border-bottom: 1px solid #dee2e6 !important;
        padding-bottom: 25px;
        margin-bottom: 12px;
        margin-top: 30px !important;
        border-top: 1px solid #dee2e6 !important;
        padding-top: 12px;
        border-right: 0 !important;
}
.channel-nav button {
    background: #2b2b2b;
    color: #ccc;
    border: none;
    padding: 7px 12px;
    border-radius: 8px;
    font-weight: 500;
    width: auto;
}
  .m-mb-50
  {
    margin-bottom: 50px;
  }
.search-wrapper {
    position: relative;
    right: 0;
    display: none;
}
  .search-box
  {
    width: 100%;
  }
    .sec-head {
        display: block !important;
    }
    .sec-head h2 {
        font-size: 40px;
        line-height: 1.2;
    }
    .sec-head .butn {
        margin-top: 15px;
    }
    .header-ds .caption h1,
    .header-ds .numb h2 {
        font-size:40px;
        line-height: 1.2;
    }
    .header-ds .numb {
        display: block !important;
    }
    .header-ds .numb > div {
        display: block;
        width: 100%;
    }
    .header-ds .numb .ml-auto {
        margin: 30px 0 0 0 !important;
    }
    .header-ds .numb span br {
        display: none;
    }
    .intro-ds .comit .item {
        text-align: center;
        margin-bottom: 10px;
    }
    .intro-ds .comit .text-right {
        text-align: center !important;
    }
    .intro-ds .container .box {
        padding: 60px 15px;
    }
    .brand-ds .item:after {
        left: 0;
        right: 0;
    }
    .works-ds .item .cont h4 {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: normal;
    }
    .services-ds .item {
        display: block !important;
    }
    .services-ds .item .title {
        margin-bottom: 0;
    }
    .services-ds .item .title h2 {
        font-size: 45px;
        margin-bottom: 10px;
    }
    .services-ds .item .icon {
        margin-left: 15px;
    }
    .box-dark .box {
        padding: 100px 15px;
    }
    .testimonials-ds .qoute-icon .text {
        width: 180px;
    }
    .testimonials-ds .qoute-icon .icon {
        width: 80px;
    }
    .testimonials-ds .item h4 {
        font-size: 25px;
        letter-spacing: normal;
    }
    .faqs-ds .accordion-item .accordion-header button {
        font-size: 17px;
        line-height: 1.4;
    }
    .pricing-ds .content .price-head .price-headItem h2 {
        font-size: 24px;
    }
}