@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body 
.hero-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: darkens video for better text contrast */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100vh;
  width: 100%;
  padding: 2rem;
}

{
   font-family: "Didact Gothic", sans-serif !important;
  font-weight: 700;
  background-color: #FEFEFE;
}

.roboto-medium {
  font-family: "Didact Gothic", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

p{
  font-family: "Roboto", sans-serif !important;
}


.page-item.active .page-link {
 
  border: 1px solid #1a7cc2;
  color: #fff !important;
  background-color: #1a7cc2;
}


.card-1{
  background-color: #2596be !important;
  color: #ffff;

}

.card-2{
  background-color: #3977a6 !important;
   color: #ffff;
}

.card-3{

  background-color: #4760a3 !important;
   color: #ffff;
}

.card-4{
  background-color: #24a3ac !important;
   color: #ffff;
}

.card-5{
  background-color: #4358a2 !important;
   color: #ffff;
}
.text{
    color: #2596be;
}

.text-1{
  color: #3977a6;
}

.text-2{
  color: #4760a3;
}

.text-3{
  color: #4358a2;
}

.text-4{
  color: #24a3ac;
}


.bg-color{
  background-color: #d5f4f6;
}


.face {
  color: #4267B2;
  
}

.twit{
  color: #1D9BF0;
}

.linkd{
  color: #0A66C2;
}

.insta{
    color:#E1306C;
}


.full-height {
	margin-top: 70px;
	min-height: 50vh;
}


.card {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  
        }
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

.nav-shadow{
	box-shadow: 0px 4px 40px -17px rgba(0, 0, 0, 0.25);
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:focus{
	color: #337dc4 !important;
	
}

.dropdown:hover .dropdown-menu { 
	display: inline-block; 
	font-size: 15px;
    padding: 20px;
    min-width: 285px !important;
}

.navbar-nav .nav-item {
  position: relative; /* Ensure relative positioning for dropdown */
}
.navbar-nav .nav-item:hover .services-drpdwn {
  display: block;
}
.services-drpdwn {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  /* padding-right: 30px; */
  background-color: #fff;
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); 
  z-index: 1;
  width: 100%; /* Adjust width as needed */
  top: 62px;
   border-radius:16px;
}



.navbar .navbar-nav .dropdown .dropdown-menu li .dropdown-item:hover {
	color: #1a7cc2;
	background-color: transparent;
	
  
}

.offcanvas .offcanvas-body .nav .nav-link {
	font-size: 0.9rem;
	color: #1a7cc2 !important;
}

.offcanvas .offcanvas-body .nav .nav-link:hover {
	color: #337dc4 !important;
}

.navbar-toggler {
    border:none;
    font-size:1.675rem;
    color: #1a7cc2 !important;
}


.sliding-border {
display: inline-block;
position: relative;
}

.sliding-border:after {
content: '';
display: block;
height: 2px;
width: 0px;
background: transparent;
transition: width .4s ease, background-color .4s ease;
}

.sliding-border:hover:after {
content: "";
width: 65%;
background: #1a7cc2;
left: 0;
bottom: 0;

}


.btn-outline-blue {
  border: 3px solid #1a7cc2 !important;
  color: #1a7cc2;
  font-weight: bold;
}

.btn-outline-blue:hover {
  border: 3px solid #1a7cc2 !important;
  background-color: #1a7cc2;
  color: #ffffff;
}


.slider {
      min-height: 20vh; /* Adjust height as needed */
      position: relative;
      width: 100%;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .slider::before,
    .slider::after {
      position: absolute;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
      content: '';
      height: 100%;
      width: 25%;
      z-index: 2;
      /*pointer-events: none;*/
    }

    .slider::before {
      left: 0;
      top: 0;
    }

    .slider::after {
      right: 0;
      top: 0;
      transform: rotateZ(180deg);
    }

    /* Slide and animation specific styles */
    .slide-track {
      width: calc(150px * 20); /* Adjust this width based on your slide count */
      display: flex;
      animation: scroll 20s linear infinite;
      justify-content: space-between;
    }

    .slide {
      width: 250px;
      height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      /*cursor: pointer;*/
    }

    .slide img {
      max-width: 100%; /* Ensure images don't exceed the width of their container */
      max-height: 100%; /* Ensure images don't exceed the height of their container */
      height: auto;
    }

    /*.slide:hover {*/
    /*  transform: scale(0.8);*/
    /*}*/

    @keyframes scroll {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-150px * 10)); /* Adjust this value based on your slide count */
      }
    }
    
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}
assets


Apollo.io