* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 600;
    overflow: hidden;
    background: #f0f0f0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.is-active {
    opacity: 1;
}

.slide picture,
.slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.slide img {
    object-fit: cover;
    object-position: center;
}

.slider-dots {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.slider-dot.is-active {
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
}

.scroll-hint {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-hint span {
    writing-mode: vertical-rl;
    font: 400 13px/1 sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
}

.scroll-hint .track {
    position: relative;
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.scroll-hint .dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: drop 2.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes drop {
    0%   { top: 0;    opacity: 1; }
    50%  {            opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .slide { transition: none; }
    .scroll-hint .dot { animation: none; top: 0; }
}

@media (max-width: 550px) {
        .slider { aspect-ratio: 575 / 612; }
    .scroll-hint { left: 20px; bottom: 20px; }
    .slider-dots { right: 16px; gap: 12px; }
	
	
	.home.page-template-template-fullwidth-php #slider {
    margin-bottom: 0 !important;
}
}








.home.page-template-template-fullwidth-php #masthead {
   margin-bottom: -3px;
}


.home.page-template-template-fullwidth-php #slider {
    margin-bottom: 100px;
}


