body{
    font-family: 'Mulish', sans-serif;
}
.my-color{
    color:#22438a !important;
}
.my-bg-fff{
    background-color: #fff !important;
}
.navbar li{
    margin: 0 8px 0 0;
}
.navbar .nav-link{
    font-weight: 550;
    color:#fff !important;
}

.navbar li a .active{
    padding: 2px;
    background-color: #9fc6ec;
}

.navbar .nav-link:hover{
    font-weight: bold;
    color:#22438a !important;
    transition: color 0.5s linear; /* vendorless fallback */
    -o-transition: color 0.5s linear; /* opera */
    -ms-transition: color 0.5s linear; /* IE 10 */
    -moz-transition: color 0.5s linear; /* Firefox */
    -webkit-transition: color 0.5s linear; /*safari and chrome */
}

.what-is{
    background: #22438a url(bg.png);
}

.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  font-size: 2rem;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(4, 3, 63, 1) 0%, rgba(3, 1, 43, 1) 2%, rgba(9, 5, 80, 1) 12%, rgba(9, 9, 121, 1) 30%, rgba(0, 146, 255, 1) 100%);
}

.btn-my{
    background-color: #014F9D;
    color: #fff;
}


    /* Custom CSS for the tool items */
    .tool-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      margin: 10px;
      background-color: #f5f5f5;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
      cursor: pointer;
      color: #333;
    }
    
    /* Custom CSS for the tool item text */
    .tool-item span {
      margin-left: 10px;
    }
    
    /* Custom CSS for the tool item links */
    .tool-item a {
      color: #333;
      text-decoration: none;
    }
    
    /* Custom CSS for the tool item hover effect */
    .tool-item:hover,
    .tool-item.active {
      transform: translateY(-5px);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      background-color: #22438a;
      color: #fff;
    }
    
    /* Custom CSS for the tool item text hover effect */
    .tool-item:hover a,
    .tool-item.active a {
      color: #fff;
    }
    
    /* Custom CSS for the tool container */
    .tool-container {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      padding: 10px;
      position: relative;
      margin-bottom: 10px; /* Add some margin at the bottom for better spacing */
    }
    
    /* Custom CSS for the "Our Tools" heading */
    .tool-heading {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    
    /* Custom CSS for laptop screens */
    @media (min-width: 992px) {
      .tool-container {
        max-width: 100%;
        overflow-x: auto;
      }
    }
    
    /* Custom CSS to reduce the scrollbar track width */
    .tool-container::-webkit-scrollbar {
      width: 5px;
    }
    
    .tool-container::-webkit-scrollbar-track {
      background-color: #f5f5f5;
      border-radius: 10px;
    }
    
    .tool-container::-webkit-scrollbar-thumb {
      background-color: #888;
      border-radius: 10px;
    }
    
    .tool-container::-webkit-scrollbar-thumb:hover {
      background-color: #555;
    }


footer{
    background: rgba(38,38,38) url(bg-t.png);
}

footer li{
    padding: 2px;
}

footer li a:hover{
    color:#22438a !important;
 transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  font-weight: 300;
}

footer li a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: #22438a;
    transition: transform 0.2s ease-in-out;
    transform: scaleX(0);
    transform-origin: center;
  }
  
  footer li a:hover::before {
    transform: scaleX(1);
  }


  ::-webkit-scrollbar {
    width: 10px; /* set the width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5; /* set the track color to light grey */
    border-radius: 10px; /* set the border radius */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color:rgb(96,96,96); /* set the thumb color to dark grey */
    border-radius: 10px; /* set the border radius */
    border: 2px solid #f5f5f5; /* add a border to the thumb */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #999; /* set the thumb color to lighter grey on hover */
    border-color: #999; /* set the border color to match the thumb color */
  }
  
.justify-my-text{
  text-align: justify;
  text-justify: inter-word;
}

 #cookie-popup {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: #f8f8f8;
      padding: 20px;
      text-align: center;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      display: none;
    }

    #accept-cookies {
      background-color: #22438a;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }