   /* header code :- */
    /*
  *
  * ==========================================
  * CUSTOM UTIL CLASSES
  * ==========================================
  *
  */
  .navbar {
    transition: all 0.4s;
  }

  .navbar .nav-link {
    color: #fff;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    color: #fff;
    text-decoration: none;
  }

  .navbar .navbar-brand {
    color: #fff;
  }


  /* Change navbar styling on scroll */
  .navbar.active {
    background: rgb(41, 50, 60);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar.active .nav-link {
    color: #fff;
  }

  .navbar.active .nav-link:hover,
  .navbar.active .nav-link:focus {
    color: #fff;
    text-decoration: none;
  }

  .navbar.active .navbar-brand {
    color: #fff;
  }


  /* Change navbar styling on small viewports */
  @media (max-width: 991.98px) {
    .navbar {
      background: rgb(41, 50, 60);
    }

    .navbar .navbar-brand,
    .navbar .nav-link {
      color: #fff;
    }
  }
/* footer code :-  */
  @import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
/* 
  * {
    font-family: Roboto;
  } */

  section {
    width: 100%;
    display: inline-block;
    background: #ccc;
    height: 60vh;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
  }

  .footer-distributed {
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: normal 16px sans-serif;
    padding: 45px 50px;
  }

  .footer-distributed .footer-left p {
    color: #8f9296;
    font-size: 14px;
    margin: 0;
  }

  /* Footer links */

  .footer-distributed p.footer-links {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px;
    padding: 0;
    transition: ease .25s;
  }

  .footer-distributed p.footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
    transition: ease .25s;
  }

  .footer-distributed .footer-links a:before {
    content: "·";
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
  }

  .footer-distributed .footer-links .link-1:before {
    content: none;
  }

  .footer-distributed .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
  }

  .footer-distributed .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
  }

  .footer-distributed .footer-right a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }

  .footer-distributed p.footer-links a:hover {
    text-decoration: underline;
  }

  /* Media Queries */

  @media (max-width: 600px) {

    .footer-distributed .footer-left,
    .footer-distributed .footer-right {
      text-align: center;
    }

    .footer-distributed .footer-right {
      float: none;
      margin: 0 auto 20px;
    }

    .footer-distributed .footer-left p.footer-links {
      line-height: 1.8;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
  }
  body{
      background-color: black;
      color: #fff;
      font-family: 'Roboto', sans-serif;
  }
  span{
    display: inline-block;
    text-decoration: none;
    color: inherit;
  }
  .section-head{
    margin-bottom: 60px;
  }
  .section-head h4{
    position: relative;
    padding: 0;
    color:yellow;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size:34px;
    font-weight:700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
  }
  .section-head h4::before{
    content:'';
    width:60px;
    height:3px;
    background:yellow;
    position:absolute;
    bottom:-10px;
    left:0;
    right:0;
    margin:0 auto;
  }
  .section-head h4 span{
    font-weight: 700;
    padding-bottom: 5px;
    color: white;
  } 
  .section-head p{
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:30px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    border:5px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover{
    background: yellow;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover h6,
  .item:hover p{
    color:#000;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size:40px;
    margin-bottom: 25px;
    color: yellow;
    width:90px;
    height:90px;
    line-height: 96px;
    border-radius: 50px;
  }
  .item .feature_box_col_one{
    background:rgba(247,198,5,0.2);
    color: #000;
  }
  .item .feature_box_col_two{
    background: rgba(255, 77, 28, 0.15);
    color:#000;
  }
  .item .feature_box_col_three{
    background:rgba(0,147,38,0.15);
    color:#000;
  }
  .item .feature_box_col_four{
    background:rgba(0,108,255,0.15);
    color:#000;
  }
  .item .feature_box_col_five{
    background:rgba(146,39,255,0.15);
    color:#000;
  }
  .item .feature_box_col_six{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item .feature_box_col_seven{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item .feature_box_col_eight{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item .feature_box_col_nine{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item .feature_box_col_ten{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item .feature_box_col_eleven{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item .feature_box_col_twelve{
    background:rgba(23,39,246,0.15);
    color:#000;
  }
  .item p{
    font-size: 15px;
    line-height: 26px;
  }
  .item h6{
    margin-bottom: 20px;
    color:#2f2f2f;
  }
  
    