body {
    /* font-family: 'Hupaisa', sans-serif; */
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
}

h1,
h2 {
    font-family: 'Aclonica', sans-serif;
}

nav a {
    font-family: 'Fredoka', sans-serif !important;

}

.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: #6e73f5ab;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2e3192;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #2e3192;
    color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;


}

/* .swiper-wrapper {
  transition-timing-function: linear !important;
}
 */

.breadcrum-olimpiad {
    height: 150px;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    background-repeat: no-repeat;
    margin-bottom: 75px;
}

.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.7s;
}

.shine-btn:hover::before {
    left: 130%;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.animate-blink {
  animation: blink 1s infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  animation: gradientMove 6s ease infinite;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}