:root {
    --white: white;
    --pink: #ffa5f3;
    --blue-300: #0075ff;
    --hyg-black: #242424;
}

.ex-hero-blur {
    display: block;
    opacity: 1;
    will-change: opacity, transform;
    transition: all 0.3s ease;
}

.ex-hero-blur.is-hidden {
    display: none;
    opacity: 0;
}

#flower {
    transition: transform 0.1s ease-out;
    transform-origin: center center;
    will-change: transform;
}

.section_ex-flower {
    will-change: scroll-position;
}

/* DESKTOP MENU */
.desktop-menu {
    border-color: var(--blue-300) !important;
}

.desktop-menu_link {
    color: var(--blue-300) !important;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .desktop-menu_link:hover .desktop-menu-text {
        text-decoration-color: var(--pink) !important;
    }
}

.desktop-menu_diviner {
    background-color: var(--blue-300) !important;
}


@media (min-width: 1024px) {
    .ex-s-link_pseudo-button {
        color: var(--pink);
        border-color: var(--pink);
        transition: all 0.3s ease;
    }

    .ex-services-item:hover .ex-s-link_pseudo-button {
        color: var(--blue-300);
        border-color: var(--blue-300);
    }
}

@media (min-width: 1024px) {
    .ex-cases-card {
        background-color: var(--blue-300);
        transition: all 0.3s ease;
    }

    .ex-cases-card:hover {
        background-color: #1A83FE;
    }
}

.ex-services-item:last-child {
    border-bottom: none;
}

/********************* HEADER *********************/
.header {
    background-color: #FFFFFFB2;
    border-color: var(--pink);
}

.header-link {
    color: var(--blue-300);
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.header-link:hover {
    text-decoration-color: var(--blue-300);
}

.header-brand {
    color: var(--blue-300);
}

/********************* DESKTOP MENU *********************/
.desktop-menu_link {
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.desktop-menu_link:hover {
    text-decoration-color: var(--pink);
}

/********************* CASES LINK *********************/
.ex-cases-link {
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.ex-cases-link:hover {
    text-decoration-color: var(--pink);
}

@media (max-width: 768px) {
    .ex-cases-link:hover {
        text-decoration-color: transparent;
    }
}

.ex-hero_arrow {
    transition: transform 0.3s ease;
}

.ex-hero_letsgo:hover .ex-hero_arrow {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .ex-hero_letsgo:hover .ex-hero_arrow {
        transform: none;
    }
}


/*** MOBILE MENU EXPLORER ***/
.menu-player {
    border-color: var(--blue-300) !important;
}

.menu-diviner {
    background-color: var(--blue-300) !important;
}

.menu-diviner.is-2 {
    background-color: var(--blue-300) !important;
}

.menu-link {
    color: var(--blue-300) !important;
}

.menu-burger {
    background-color: var(--blue-300) !important;
}

.burger-line {
    background-color: #fff !important;
}

/*** active state ***/
.menu-player.is-active {
    border-color: var(--pink) !important;
}

.menu-diviner.is-active {
    background-color: var(--white) !important;
}

.menu-diviner.is-2.is-active {
    background-color: var(--white) !important;
}

.menu-link.is-active {
    color: var(--white) !important;
}

.menu-burger.is-active {
    background-color: var(--pink) !important;
}