.feature-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hover-box {
  justify-content: center;
  align-items: center;
  padding-left: 40px !important;
  background: linear-gradient(
    to right,
    rgb(255, 198, 95, 0.8) 50%,
    transparent 50%
  );
  border-left: 5px solid #ffc65f !important;
  background-size: 210% 101%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  border-radius: inherit;
}

.home-hover-box:hover {
  background-position: left bottom;
}

@media (max-width: 576px) {
  .home-hover-box {
    border-left: 4px solid #ffc65f !important;
  }
}

.service-hover-color-chng {
  display: block;
  background: linear-gradient(to right, #ffc65f 50%, white 50%);
  background-size: 210% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  border: none !important;
}

.service-hover-color-chng:hover {
  background-position: left bottom;
}

.text-hov {
  line-height: 30px;
  color: #fff;
  transition: all 0.6s ease-out;
  display: block;
}

.text-hov:hover {
  color: #000;
}

* {
  box-sizing: border-box;
}

.item {
  width: 200px;
  height: 200px;
  margin: 50px auto;
  padding-top: 75px;
  background: #ccc;
  text-align: center;
  color: #fff;
  font-size: 3em;
}


.fullscreen-video {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

/* For mobile screens */
@media (max-width: 1020px) {
  .fullscreen-video {
    top: 80px;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
  }
}
.btn-container {
  display: flex;
  align-items: center;
}

.btn {
  padding: 10px 20px;
  font-weight: bold;
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #fff 50%, #ffc65f 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.9s ease-out !important;
}

.btn:hover {
  font-weight: bold;
  background-position: left bottom;
}

.loader {
  display: none;
  border: 4px solid rgba(255, 255, 255);
  border-top: 4px solid #ffc65f;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading {
  background-color: #ccc;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  transition: background-color 0.3s ease;
  background-color: #4b5150;
  z-index: 1000;
  box-shadow: 0px 4px 7px #ffc65f;
}

.content {
  height: 2000px;
}

.navbar-toggler {
  color: #fff !important;
  background-color: #fff;
  border: none;
}

@media (max-width: 900px) {
  section h1 {
    font-size: 2rem;
    text-align: center;
  }
  section .text-container {
    flex-direction: column;
  }
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-left {
  animation: fade-left 0.5s ease-in;  
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


 

.grecaptcha-badge {
  z-index: 9999;
}
