 /*
  *
  * ==========================================
  * 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;
    }
  }

  /******* google font ****/
@import url('https://fonts.googleapis.com/css?family=Poppins|Ubuntu&display=swap');

*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body
{
    background-image: url(https://images.unsplash.com/photo-1633542268543-6d0a5bd120e9?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80);

    
    font-family: 'Ubuntu',sans-serif;
}
.services
{
    display: block;
    position: relative;
    padding: 0;
}
.container
{
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.services-title
{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


.services-box
{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: -15px;
}

.title
{
    margin-left: 15px;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom:40px;
    text-align: center;
    top: 26px;

}
.services-title h2 span
{
    color: white;
}
.services-title h2
{
    margin-top: -10px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    color: yellow;
    font-family:'Ubuntu',sans-serif;
}

.box
{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 33.333333%;
}
.ser-box
{
    margin-top: 75px;
    padding-bottom: 30px;
    padding: 0 60px;
    min-height: 198px;
    text-align: center;
    border-radius: 10px;
    background-color: white;
    transition: all .4s ease-in-out;
    box-shadow: 0 0 2px 0 lightgrey;
    border: 3.6px solid white;
}

.ser-box .icon
{
    margin-bottom: 0;
    transform: translateY(-50%);
    text-align: center;
}
.ser-box h4
{
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: black;
    margin-top: -10px;
    font-family: 'Ubuntu',sans-serif;
}
.ser-box p
{
    color: black;
    line-height: 24px;
    margin-top: 20px;
    font-family:'Ubuntu',sans-serif;
}
.ser-box:hover
{
    box-shadow: 0 0 25px 0 grey;
    cursor: pointer;
    background-color: yellow;
}

.ser-box:hover h4,
.ser-box:hover p
{
    color: black;
}



.services-box .box:nth-child(1) .ser-box:hover
{
   background-color: yellow;
}

.services-box .box:nth-child(2) .ser-box:hover
{
   background-color: yellow;
}

.services-box .box:nth-child(3) .ser-box:hover
{
   background-color: yellow;
}

.services-box .box:nth-child(4) .ser-box:hover
{
   background-color: yellow;
}


.services-box .box:nth-child(5) .ser-box:hover
{
   background-color: yellow;
}



.services-box .box:nth-child(6) .ser-box:hover
{
   background-color: yellow;
}



img{
    visibility: hidden;
}


.hidden-text{
    visibility: visible;
}



/********-Responsive-************/

@media(min-width: 768px)
{
    .box
    {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}





@media(min-width: 600px)
{
    .box
    {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}



@media(min-width: 992px)
{
    .box
    {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}



@media(min-width: 414px)
{
    .box
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


@media(min-width: 370px)
{
    .box
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


@media(min-width: 320px)
{
    .box
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
}





















