/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 30 2025 | 11:52:18 */
/**
 * Infinite Marquee 1.0.5
 * Infinite Horizontal & Vertical Marquee animation based on CSS and controlled with JS
 *
 * Copyright 2024 Vahan Baghdasaryan
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2024
 */
.infinite-marquee p {
	margin:0 !important;
}
.horizontal-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: var(--_gap);
  max-width: 100%;
}
.horizontal-marquee.smooth {
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}
.horizontal-marquee.paused .horizontal-marquee-inner {
  animation-play-state: paused;
}
.horizontal-marquee.full .horizontal-marquee-inner {
  min-width: 100%;
}
.horizontal-marquee-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: var(--_gap);
  white-space: nowrap;
}
[data-animate="true"] .horizontal-marquee-inner {
  animation: horizontal-marquee var(--_speed) linear infinite var(--_direction);
}
@keyframes horizontal-marquee {
  0% {
    transform: translate(calc(var(--_gap) * -1));
  }
  100% {
    transform: translate(calc(-100% - var(--_gap) * 2));
  }
}
.vertical-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: var(--_gap);
  max-height: 100%;
  flex-direction: column;
  height: calc(calc(var(--_containerSize) - var(--_vGap)) / 2);
}
.vertical-marquee.smooth {
  -webkit-mask: linear-gradient(
    180deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  mask: linear-gradient(180deg, transparent, #fff 20%, #fff 80%, transparent);
}
.vertical-marquee.paused .vertical-marquee-inner {
  animation-play-state: paused;
}
.vertical-marquee-inner {
  flex-shrink: 0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin-bottom: var(--_vGap);
}
[data-animate="true"] .vertical-marquee-inner {
  animation: vertical-marquee var(--_speed) linear infinite var(--_direction);
}
.vertical-marquee-inner > :not(:last-child) {
  margin-right: var(--_hGap);
}
@keyframes vertical-marquee {
  0% {
    transform: translateY(calc(var(--_vGap) * -1));
  }
  100% {
    transform: translateY(calc(-100% - var(--_vGap) * 2));
  }
}

.spacer {
    display: block;
    height: 40vh;
    width: 100%;
    background-color: aquamarine;
}

.custom-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: block;
    /* background-color: blue; */
}

.full-width {
    width: 100%;
}

.full-width p {
    text-align: center;
}

/* .vertical-marquee-inner .full-width:not(:first-child) {
  display: none;
} */

.infinite-marquee p {
    /* compare your salary on the job market */

    font-family: "Mona Sans Expanded" !important;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: #00a596;
    margin-bottom: unset !important;
}

#infinite-marquee h3 {
    font-family: "Mona Sans Expanded";
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    text-align: center;

    color: #0a033c;
}

.infinite-marquee {
    position: relative;
}

.infinite-marquee::after {
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    content: "";
    height: calc(100% - 40px);
    position: absolute;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(
            0deg,
            rgba(253, 253, 252, 1) 0%,
            rgba(252, 251, 249, 0.8) 93%,
            rgba(252, 251, 248, 0) 100%
    );
}


@media (max-width: 1269px) {
    .infinite-marquee p {
        font-size: 30px !important;
        font-weight: 600;
    }
}

@media (max-width: 767px) {
    .infinite-marquee p {
        font-size: 15px !important;
        font-weight: 600;
    }
}