/* Lato Font */

/* Font class */

.lato-thin {
    font-family: "Lato";
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato";
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato";
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato";
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato";
    font-weight: 900;
    font-style: normal;
  }
  

/* League Spartan font */

/* Font Class */
.league-black {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
}

.league-extrabold {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
}
.league-bold {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
}
.league-semibold {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}
.league-medium {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}
.league-regular {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
.league-light {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
}
.league-extralight {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 200;
}
.league-thin {
    font-family: "League Spartan";
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 100;
}

/* poppins font class */
  
  .poppins-light {
    font-family: "Poppins";
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins";
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins";
    font-weight: 600;
    font-style: normal;
  }
  

*, body{
    font-family: "Lato";
}

.sidebar.hidden {
    transform: translateX(-100%);
  }
  
  .sidebar {
    transition-duration: 0.3s; /* You can adjust the duration */
  }
  
.active-tabs{
    p{
        color: #A01FEE;
    }
    span{
        background-color: #A01FEE;
    }
}
.scroll-style{
    scrollbar-width: thin;
}
.active-button{
    color: #000 !important;
    background-color: #fff !important;
}

.active-location{
  color: #A01FEE !important;
  border: 1px solid #A01FEE !important;
  font-family: "League Spartan" !important;
  font-size: 28px !important;
  font-weight: 600;
}
@media only screen and (max-width: 767px){
  .active-location{
    font-size: 20px !important;
  }
}
.shadow-tab, .locationslinks{
  box-shadow: 0px 1px 3px #00000014  !important;
  overflow: hidden;
}

.accordion {
  width: 100%;
  text-align: left;
  transition: background-color 0.2s linear;
}

.accordion:after {
  font-family: FontAwesome;
  content: "\f067";
  font-family: "fontawesome";
  font-size: 16px;
  float: right;
  font-weight: 100;
}

.accordion.is-open:after {
  content: "\f068";
}

.accordion-content {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
:root {
  --progress-bar-width: 200px;
  --progress-bar-height: 200px;
  --font-size: 2rem;
}


.circular-progress {
  width: var(--progress-bar-width);
  height: var(--progress-bar-height);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-circle {
  position: absolute;
  width: calc(var(--progress-bar-width) - 30px);
  height: calc(var(--progress-bar-height) - 30px);
  border-radius: 50%;
  background-color: lightgrey;
}

.percentage {
  position: relative;
  font-size: var(--font-size);
  color: black !important; 
}

@media screen and (max-width: 800px) {
  :root {
    --progress-bar-width: 150px;
    --progress-bar-height: 150px;
    --font-size: 1.3rem;
  }
}

@media screen and (max-width: 500px) {
  :root {
    --progress-bar-width: 120px;
    --progress-bar-height: 120px;
    --font-size: 1rem;
  }
}
.underline-wave{
  text-decoration-style: wavy;
}

.infinite-scroll {
  display: flex;
  animation: scroll 20s linear infinite;
}
.infinite-scroll-2{
  animation: scrollinfinite 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes scrollinfinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}

.active-text{
  color: #A01FEE !important;
}

.owl-nav{
  display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 10px;
}
#carousel2 .owl-nav,
#carousel3 .owl-nav {
  display: flex;
    justify-content: start;
    gap: 10px;
    margin-top: 20px;
}
.owl-dots{
  display: none;
}
.main-group .group1:hover ~ .group-4{
  opacity: 1;
}

.hidden-animation {
  opacity: 0;
}

.show.slide-up {
  opacity: 1;
  /* transform: translateY(0); */
  animation: rebel-fade-in 0.8s ease-in-out;
}
.show.zoomout{
  opacity: 1;
  
  animation: rebel-zoom-out 0.8s ease-in-out;
}
.show.slide-left{
  opacity: 1;
  animation: rebel-left 0.8s ease-in-out;
}
.show.slide-right-top{
  opacity: 1;
  animation: rebel-right 0.8s ease-in-out;
}

@keyframes rebel-fade-in {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rebel-zoom-out {
  0% {
    opacity: 0.5;
    scale: 0.5;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes rebel-left {
  0% {
    opacity: 0.5;
    transform: translate(-50px, -40px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes rebel-right {
  0% {
    opacity: 0.5;
    transform: translate(50px, -40px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}


.client-logos img {
    height: 40px;
}