/* ==========================================================
   HERO
   ========================================================== */

.darion-home-hero {
    position: relative;
    overflow: hidden;
}

.darion-home-hero__slider {
    position: relative;
}

.darion-home-hero__slider {

    min-height: 100vh;
}

.darion-home-hero__slide {

    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    min-height: 100vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.darion-home-hero__slide.is-active {

    opacity: 1;
    visibility: visible;

    z-index: 2;
}

.darion-home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.darion-home-hero__content {
    position: relative;
    z-index: 2;
	
	display: flex;
flex-direction: column;
justify-content: flex-start;
padding-top: 18vh;

min-height: 100vh;

    max-width: 1200px;
    width: 100%;

    margin: 0 auto;
    padding: 16vh 24px 80px;
}

.darion-home-hero__content h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 28px;
}

.darion-home-hero__content p {
    color: rgba(255,255,255,.92);
    font-size: 22px;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 56px;
}

.darion-button {
    
    padding: 16px 32px;

    border-radius: 999px;

    background: #2563eb;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: .2s ease;
	
	align-self: flex-start;

display: inline-flex;
align-items: center;
justify-content: center;

min-height: 64px;
}

.darion-button:hover {
    transform: translateY(-2px);
}

.darion-home-hero__dots {
    position: absolute;

    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    z-index: 20;
}

.darion-home-hero__dots button {
    width: 12px;
    height: 12px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.45);

    cursor: pointer;
}

.darion-home-hero__dots button.is-active {
    background: #fff;
}

/* ==========================================================
   HERO ARROWS
   ========================================================== */

.darion-home-hero__arrow {

    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 56px;
    height: 56px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 26px;
    line-height: 1;

    cursor: pointer;

    opacity: 0;

    transition:
        opacity .25s ease,
        background .25s ease,
        transform .25s ease;

    z-index: 20;
}

.darion-home-hero:hover .darion-home-hero__arrow {
    opacity: 1;
}

.darion-home-hero__arrow:hover {

    background: rgba(255,255,255,.30);

    transform: translateY(-50%) scale(1.08);
}

.darion-home-hero__arrow--prev {
    left: 32px;
}

.darion-home-hero__arrow--next {
    right: 32px;
}

@media (max-width: 768px) {

    .darion-home-hero__arrow {
        display: none;
    }

}

/* ==========================================================
   EXPERTISE
   ========================================================== */

.darion-home-expertise {

    padding: 70px 0;

}

.darion-home-expertise h2 {

    text-align: center;
    font-size: 42px;

    margin-bottom: 36px;

}

.darion-home-expertise__tags {

    display: flex;
    gap: 14px;

    overflow-x: auto;

    padding: 0 32px 16px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.darion-home-expertise__tags::-webkit-scrollbar {
    display: none;
}

.darion-home-expertise__tag {

    flex: 0 0 auto;

    padding: 12px 22px;

    border: 1px solid #ddd;
    border-radius: 999px;

    background: #fff;

    color: #222;

    text-decoration: none;
    font-weight: 500;

    transition: .2s;
}

.darion-home-expertise__tag:hover {

    background: #2563eb;
    color: #fff;
}

/* ==========================================================
   FEATURED EXPERTS
   ========================================================== */

.darion-home-featured {

    padding: 80px 0;

}

.darion-home-featured h2 {

    text-align: center;
    font-size: 42px;

    margin-bottom: 40px;

}

.darion-home-featured__grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 24px;

}

.darion-home-featured__grid > a {

    display: flex;

    justify-content: center;

}

.darion-home-featured__slider {

    position: relative;

}

.darion-home-featured__arrow {

    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 56px;
    height: 56px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.08);

    cursor: pointer;

    z-index: 20;

    transition: .2s;
}

.darion-home-featured__arrow:hover {

    background: rgba(0,0,0,.15);

}

.darion-home-featured__arrow--prev {

    left: 0;

}

.darion-home-featured__arrow--next {

    right: 0;

}

.darion-home-featured__track {

    position: relative;
	gap: 28px;

    justify-content: center;
    align-items: stretch;

    overflow: hidden;

    padding: 0 70px;

}

.darion-home-featured__slides > a {

    flex: 0 0 300px;

}

.darion-home-featured__slides {

    display: flex;
    gap: 28px;

    transition: transform .4s ease;

    will-change: transform;

}