body {
    background-color: #ffffff;
}

.content {
    padding: 0;
}

.gradient-text-animation {
    --bg-size: 300%;
    --color-one: #921190;
    --color-two: #fc9a16;
    /* font-size: clamp(3rem, 25vmin, 8rem); */
    background: linear-gradient(
        90deg,
        var(--color-one),
        var(--color-two),
        var(--color-one)
        ) 0 0 / var(--bg-size) 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: move-bg 12s infinite linear;
}

.hero-animation {
    width: 100%;
    background-color: #fff;
    padding: 4rem 2rem 2rem 2rem;
    min-height: 450px;
    font-size: 1.25rem;
    font-weight: 600;
    background-image: url('/resources/images/backgrounds/panel_bg.png');
}

.hero-animation .hero-headline {
   text-align: right;
   padding-right: 4rem;
   padding-top: 3rem;
}

.hero-animation .hero-headline h1 {
   font-size: 3rem;
   font-weight: 700;
}

.hero-animation .hero-headline .headline-sub-text {
    font-size: 1.5rem;
}

.hero-animation i {
    color: #10c810;
    font-size: 3rem;
}

.hero-animation .check-icon-container {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background: #fff;
    border-radius: 50%;
    height: 48px;
    width: 48px;
}

.hero-animation .hero-animation-card {
    border: 1px solid #e3e3e3;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    /* background-image: url('/resources/images/backgrounds/panel_bg.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;

}

.hero-animation .company-container {
}

.hero-animation .department-container {
    padding-left: 15rem;
    padding-top: 5rem;
}

.hero-animation .teams-container {
    padding-left: 30rem;
    display: flex;
    padding-top: 5rem;
}

.hero-animation .company-card {
    background: linear-gradient(132deg, rgb(99,92,164), rgb(215,163,173));
}

.hero-animation .department-1-card {
    background: linear-gradient(132deg, rgb(172,218,233), rgb(97,100,170));
}

.hero-animation .team-card {
    background: linear-gradient(132deg, rgb(202,167,209), rgb(173,218,233));
}

.hero-animation .team-with-people-1 {
    padding-right: 3rem;
}

.hero-animation .team-with-people-2 {
}

.hero-animation .teams-container .people-container {
    padding-top: 3rem;
    display: flex;
    justify-content: center;
}

/* ---------------------------------*/
/* Active Campaign Form embed block */
/* ---------------------------------*/

.active-campaign-form-block-container {
    background: linear-gradient(132deg, rgb(99,92,164), rgb(215,163,173));
    padding: 2rem 0;
    color: #ffffff;
}

.active-campaign-form-block-container h3 {
    margin: 0;
}

.active-campaign-form-block-container .teaser-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .active-campaign-form-block-container .teaser-block {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 767px) {
    .active-campaign-form-block-container .teaser-block h3 {
        padding-right: 50px;
    }
}

@media (max-width: 767px) {
    .active-campaign-form-block-container .teaser-block h3 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .active-campaign-form-wrapper .inside-content-container {
        flex-direction: column;
    }
}
.active-campaign-form-wrapper .inside-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.active-campaign-form-wrapper .inside-content-container img {
    max-width: 120px;
    border-radius: 50%;
}

.active-campaign-form-wrapper h3, .inside-text {
    padding-left: 50px;
}

@media (max-width: 767px) {
    .active-campaign-form-wrapper h3, .inside-text {
        padding: 25px 25px 0 25px;
    }
}

.active-campaign-form-wrapper ._form-branding {
    display: none;
}

.active-campaign-form-wrapper ._form-title {
    line-height: 2.1rem !important;
    font-size: 1.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.active-campaign-form-wrapper ._html-code p {
    line-height: 1.6rem;
    font-size: 1rem;
}

.active-campaign-form-wrapper ._button-wrapper {
    margin-top: 33px !important;
}
/* ------------------ */
/* Text content block */
/* ------------------ */

.content-text-block-container {
    padding: 8rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    background-image: url('/resources/images/backgrounds/panel_bg.png');
    position: relative;
}

.content-text-block-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 50px,
        rgba(255, 255, 255, 0) calc(100% - 50px),
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 1;
}

.content-text-block-container > * {
    position: relative;
    z-index: 2;
}

.content-text-block-container .text-container {
    max-width: 45%;
    border: 1px solid #e1e1e1;
    border-radius: 0.5rem;
    padding: 2rem;
    background: linear-gradient(132deg, rgb(119, 13, 155), rgb(101, 31, 217));
    color: white;
}

@media (max-width: 767px) {
    .content-text-block-container .text-container {
        max-width: 90%;
    }
}

/* ------------------------------ */
/* Cards with image content block */
/* ------------------------------ */

.content-cards-with-image-container {
    padding: 8rem 1.875rem 4rem 1.875rem;
}
