@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "DM Sans", sans-serif;
    transition: all .3s;
    color: #000;
    overflow-x: hidden;
    transition: all .3s;
}
p{
    text-align: justify;
}
a{
    all: unset;
    cursor: pointer;
}
:root{
    --bg-lightblue:#0f3cc9;
    --bg-blue:#070707;
    --text-yellow:#ffce4c;
   --bg-black:#000000;
   --bg-darkblue:#0a2885 ;
   --text-blue:#0a2885 ;
}
.bg_lightblue{
    /*background-color: var(--bg-lightblue);*/
    background-color:#0a2885;
}
.bg_blue{
    background-color: var(--bg-blue);
}
.bg_darkblue{
    background-color: var(--bg-darkblue);
}
.bg_black{
    background-color: var(--bg-black);
}
.text_yellow{
    color: var(--text-yellow);
}
.text_blue{
    color: var(--text-blue);
}
/* nav_section---start---here  */
.header_section a:hover{
 color: #fff;
 text-decoration: underline;
}
.navbar{
    font-size: 24px;
    border-radius: 3px;
}
.navbar-brand{
    font-weight: 700;
    font-size: 32px;
    background-color: var(--bg-darkblue);
    color:var(--text-yellow) ;
}
.navbar-brand:hover{    
    color:var(--text-yellow) ;
}
.navbar .nav-link{
    all: unset;
    cursor: pointer;
    color: #fff;
    padding: 0px 25px !important;
}
.navbar .nav-link:hover{
    color: #fff;
}
.navbar .nav-link.active{
    background-color: #fff;
    color: var(--bg-lightblue);
    border-bottom: 4px solid var(--bg-lightblue);
    border-radius: 25px;
    font-weight: 700;
}
.navbar .navbar-nav .nav-item {
    position: relative;
  }
  .navbar .navbar-nav .nav-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    background-color: #fff;
    width: 0%;
    height: 2px;
    transition: all 0.5s;
  }
  .navbar .navbar-nav .nav-item:hover::after {
    width: 60%;
  }
  .navbar-toggler-icon{
    font-size: 28px;
    color: #fff;
  }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
/* nav_section---ends---here  */
/* banner_section---start---here  */
.banner_section{
    background: #fff url('../images/home-banner.png') no-repeat;
    background-size: cover;
    color: #fff;
  }
  .banner_btn{
      font-family: Roboto, sans-serif;
      padding: 0.5rem 2rem;
      font-size: 2rem;
      border: 1px solid #000;
      font-weight: 700;
      --bottom-color: #423514;
      --right-color: #423514;
      background: var(--bg-darkblue);
      transition: all 0.3s;
      transition: 
        box-shadow 0.2s,
        transform 0.15s; 
      box-shadow:
          1px 0   0px var(--right-color),
          1px -1px 0 var(--bottom-color),
          2px -1px 0 var(--right-color),
          2px -2px 0 var(--bottom-color),
          3px -2px 0 var(--right-color),
          3px -3px 0 var(--bottom-color),
          4px -3px 0 var(--right-color),
          4px -4px 0 var(--bottom-color),
          5px -4px 0 var(--right-color),
          5px -5px 0 var(--bottom-color),
          6px -5px 0 var(--right-color),
          6px -6px 0 var(--bottom-color),
          7px -6px 0 var(--right-color),
          7px -7px 0 var(--bottom-color),
          8px -7px 0 var(--bg-black),
          8px -8px 0 var(--bg-black),
          -5px 20px 40px -8px #999;
      &:focus,
      &:hover {
        outline: 0;
        background: #000;
        color: var(--text-yellow);
        border: 2px solid #ffce4c;
        box-shadow:
          1px 0   0 var(--bg-yellow),
          1px -1px 0 var(--bg-yellow),
          2px -1px 0 var(--bg-yellow),
          2px -2px 0 var(--bg-yellow),
          3px -2px 0 var(--bg-yellow),
          3px -3px 0 var(--bg-yellow),
          4px -3px 0 var(--bg-yellow),
          4px -4px 0 var(--bg-yellow),
          
          -1px 1px 1px -1px #999;
        transform: translate(3px, 3px);
        transition: all .3s;
      }
      &:active {
        outline: 0;
        box-shadow:
          1px 0   0 var(--right-color),
          1px 0px 0 var(--bottom-color);
        transform: translate(5px, 5px);
      }
    }
  
    .banner_title{
      font-weight: 900;
    }
    .banner_para{
      font-weight: 500;
    }
  /* banner_section---ends---here  */
  /* hero_section---start---here  */
  .hero_section{
    position: relative;
  }
  .hero_tower{
    position: absolute;
    right: 0;
    bottom: 0;
  }
.hero_title,.hero_subtitle{
    font-weight: 900;
  }
  .hero_section hr {
    margin: 1rem 0;
    color: #000;
    background-color: #000 !important;
    border: 0;
    opacity:1;
  }
  .hero_call-link{
    font-size: 22px;
  }
  .hero_list{
    list-style-type: disc;
	font-weight: 600;
	text-align:left;
  }
  .hero_list li::marker {
    color: var(--bg-darkblue);
    font-size: 22px;
  }
  ul{
    margin-bottom: 0;
  }
  /* hero_section---ends---here  */
  /* home-card_section---start---here */
  .home-card_heading h1{
    font-weight: 700;
  }
  .home_card{
    border: 2px solid #000;
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s;
  }
  .home_card:hover{
    box-shadow: 5px 5px 5px var(--bg-lightblue);
    transform: scale(1.01);
  }
  .home_card:hover .home_card-head{
   background-color: var(--bg-lightblue);
   border-bottom-right-radius:35px;
   border-bottom-left-radius: 0px !important;
  }
  .home_card:hover .home_card-body{
   font-weight: 500;
  }
  .home_card-icon{
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    background-color: #fff;
  }
  .home_card-title{
    font-weight: 700;
  }
  .home_card-head{
    background-color: var(--bg-darkblue);
    border-radius: 37px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 35px !important;
  }
  /* home-card_section---ends---here */
  /* team_section---start---here  */
  .black_box{
    background-color: #000;
    border-radius: 35px;
  }
  .team_content-box h2{
    font-weight: 700;
  }

  .team_list li::marker{
    color: var(--bg-darkblue);
    font-size: 40px;
  }
  /* team_section---ends---here  */
  /* .bundle-card_section---start---here  */
  .bundle_card{
    border: 2px solid #000;
    border-radius: 15px;
    width: 100%;
    transition: all .3s;
    cursor: pointer;
  }
  .bundle_card-plan{
    background-color: #000;
    color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 1px 5px 1px #b5b2af;
    margin-top: -20%;
  }
  .bundle-banner_title{
    font-weight: 700;
  }
  .bundle_card-btn{
    border-radius: 12px;
    background-color: #000;
    color: #fff;
  }
  .bundle_card:hover{
    box-shadow: 0px 10px 0px 0px var(--bg-darkblue);
    transform: scale(1.02);
  }
  .bundle_card:hover .bundle_card-plan{
    background-color: var(--bg-darkblue);
    color: #fff;
  }
  .bundle_card:hover .banner_btn{
    background-color: #000;
    color: #fff;
  }
  .bundle_card .banner_btn{
    font-size: 1rem;
  }
  .bundle-card-btn{
    background-color: var(--bg-lightblue);
    color: #fff;
    font-size: 22px;
    padding: 10px 30px;
    border-radius: 15px;
  }
  /* .bundle-card_section---ends---here  */
  /* card_section---start---here  */
  .card_section{
    background: #fff url('../images/card-banner.png') no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
  }
  .card_section .card_row{
    margin-top: 400px;
  }
  .card_section-title{
    font-weight: 700;
    position: absolute;
    top: 28%;
    left: 43%;
  }
  .card_section li::marker {
    color: var(--text-blue);
    font-size: 22px;
  }
  .card_section .para-rounded{
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 6px 10px;
    position: relative;
  }
  .card_section .arrow_right{
    position: absolute;
    bottom: 5px;
    right: 20px;
    font-size: 32px;
  }
  .card_section .para-rounded p{
  margin-bottom: 0;
  }
  .card_section .card-list li{
    margin-bottom: 0;
  }
  .card_section .card_box{
  background: url('../images/shape_152.png') no-repeat;
  height: 420px;
  width: 700px;
  display: block;
  justify-content: center;
  align-items: center;
  }
  .card_section .card{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 200px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 15px;
    transition: all .3s;
    cursor: pointer;
  }
  .card_section .card img{
    height: 50px;
    width: 50px;
  }
  .card_section .card:hover{
    box-shadow: 6px 6px #000;
    transform: scale(1.002);
  }
  /* card_section---ends---here  */
  /* live-card_section---start---here  */
  .live-card_heading{
    font-weight: 700;
  }
  .live-card-btn{
    background-color: #fff;
    color: var(--text-blue);
    font-size: 22px;
    padding: 10px 30px;
    border-radius: 15px;
  }
  .live-card_section .card img{
    border-radius: 13px;
  }

  .live-card_section .card{
    background-color: var(--bg-lightblue);
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
    transition: all .3s;
  }
  .live-card_section .card:hover{
    background-color: var(--bg-darkblue);
    transform: scale(1.02);
    box-shadow: 2px 1px 5px 1px var(--bg-darkblue);
  }
  .live-card_section .card:hover .live-card-btn{
    background-color: var(--bg-lightblue);
    color: #fff;
  }
  /* live-card_section---ends---here  */

/* footer_section---start---here  */

  .footer_section{
   background: #fff url("../images/footer-pattern-copy.png") no-repeat;
   background-size: cover;
    padding-top: 60px;
    position: relative;
  }
  .footer_list ul li{
    color: #fff;
    list-style: none;
  }
  .footer_list ul  li::before{ 
    content: "\21FE		"; 
    font-size: 28px;
    color: var(--bg-darkblue);
  } 
  .footer_list ul li a:hover{
    color: #fff!important;
  }

  /* footer_section---ends---here  */


  /* internet page csss  */
  .internet-main_para{
    border-left: 8px solid var(--bg-lightblue);
    padding-left: 10px;
  }

  /* main_section---start---here  */
.main_section{
background-color: rgba(128, 128, 128, 0.356);
}
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link {
  margin-bottom: 0px;
  background: 0 0;
  border: none;
  border-radius: 0px;
  padding: 4px 24px !important;
  background-color: var(--bg-lightblue);
  color: #fff !important;
  margin: 0px 5px;
  font-weight: 700;
  font-size: 22px;
}

.main_section .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.nav-tabs .nav-link.active{
background-color: #fff;
color: var(--text-blue)!important;
box-shadow: 2px 2px 5px gray;
}
.nav-tabs .nav-link:hover{
  background-color: #fff;
  color: var(--text-blue) !important;
  outline: 2px solid var(--text-blue);
}
.price{
  border: 2px solid var(--text-blue);
  padding: 15px 8px;
  display: inline-block;
  border-radius: 8px;
}

.price_list li{
  font-size: 22px;
  font-weight: 500;

}
.main-tv{
  position: absolute;
  left: 0px;
  bottom: 0px;
}
/* main_section---ends---here  */


/* hdtv page css  */
.hdtv_main-card{
  background-color: var(--bg-darkblue);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  margin-top: -20%;
  cursor: pointer;
  transition: all .3s;
}
.hdtv_main-card h1{
 font-weight: 900;
}
.hdtv_main-card:hover{
  background-color: var(--bg-lightblue);
  box-shadow: 2px 2px 5px var(--bg-darkblue);
}

.hdtv-service_title{
  font-weight: 700;
  padding-left: 10px;
  border-left:5px solid var(--bg-darkblue) ;
}

.hdtv-service_card{
  border-radius: 12px;
  background-color: rgba(128, 128, 128, 0.308);
}


/* contact page css  */
.contact_info h2{
  font-weight: 700;
  font-size: 38px;
}
.icon-box{
  font-size: 32px;
  color: var(--bg-darkblue);
}
.contact-form {
  border-radius: 8px;
  font-weight: 700;
}
.btn-common{
  border-radius: 20px;
  font-size: 28px;
}
.contact-box{
  background-color: #0d6dfd1c;
}


/* bundle page csss  */
.bundle-hero-text h1{
  font-weight: 700;
}
.bundle-data_list{
  list-style-type:circle ;
  font-size: 22px;
  font-weight: 500;
  margin-left: 10%;
}
.bundle-data_box{
  background: #fff url('../images/bundle-hero-bg.png')no-repeat;
  background-size: cover;
}
.bundle-explore_section{
  background: #fff url('../images/explore-bg.png')no-repeat;
  background-size: cover;
  height: 200px;
}
.internet-main_section{
  background: #fff url('../images/internet\ -\ Copy.png') no-repeat;
  background-size: cover;
}
.hero_section_background{background-color: #000000;}
.hero_section_background_1{background-color: #0a2885;}

.banner_btn_1 {
    font-family: Roboto, sans-serif;
    padding: 0.5rem 2rem;
    font-size: 24px;
    border: 1px solid #000;
    font-weight: 700;
    --bottom-color: #423514;
    --right-color: #423514;
    background: var(--bg-darkblue);
    transition: all 0.3s;
    transition: box-shadow 0.2s, transform 0.15s;
    box-shadow: 1px 0 0px var(--right-color), 1px -1px 0 var(--bottom-color), 2px -1px 0 var(--right-color), 2px -2px 0 var(--bottom-color), 3px -2px 0 var(--right-color), 3px -3px 0 var(--bottom-color), 4px -3px 0 var(--right-color), 4px -4px 0 var(--bottom-color), 5px -4px 0 var(--right-color), 5px -5px 0 var(--bottom-color), 6px -5px 0 var(--right-color), 6px -6px 0 var(--bottom-color), 7px -6px 0 var(--right-color), 7px -7px 0 var(--bottom-color), 8px -7px 0 var(--bg-black), 8px -8px 0 var(--bg-black), -5px 20px 40px -8px #999;
}

banner_btn_1 {
    &:focus, &:hover {
        outline: 0;
        background: #000;
        color: var(--text-yellow);
        border: 2px solid #ffce4c;
        box-shadow: 1px 0 0 var(--bg-yellow), 1px -1px 0 var(--bg-yellow), 2px -1px 0 var(--bg-yellow), 2px -2px 0 var(--bg-yellow), 3px -2px 0 var(--bg-yellow), 3px -3px 0 var(--bg-yellow), 4px -3px 0 var(--bg-yellow), 4px -4px 0 var(--bg-yellow), -1px 1px 1px -1px #999;
        transform: translate(3px, 3px);
        transition: all .3s;
    }
}


