.custom-top-header {
    width: 100%;
    background: #fff;
    border-top: 1px solid #d9d9d9;
}

.custom-top-header-inner {
    max-width: 1280px;
    min-height: 110px;
    margin: 0 auto;
    padding: 8px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-top-logo {
    width: 76px;
    height: auto;
}

.custom-top-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #202020;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.custom-top-phone:hover {
    color: #202020;
    text-decoration: none;
}

.custom-phone-icon {
    width: 35px;
    height: 35px;
    border: 2px solid #c52b1e;
    border-radius: 50%;
    color: #c52b1e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 767px) {
    .custom-top-header-inner {
        min-height: 78px;
        padding: 6px 20px;
    }

    .custom-top-logo {
        width: 58px;
    }

    .custom-top-phone {
        font-size: 15px;
    }

    .custom-phone-icon {
        width: 29px;
        height: 29px;
        font-size: 18px;
    }
}

.custom-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 30px 0 0 0;
    padding: 0;
    line-height: 0;
}

.custom-slider-track {
    position: relative;
    width: 100%;
    display: grid;
}

.custom-slide {
    display: block;
    width: 100%;
    position: relative;
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease-in-out;
}

.custom-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.custom-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.custom-slider-prev,
.custom-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 60px;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.custom-slider-prev:hover,
.custom-slider-next:hover {
    background: rgba(0, 0, 0, 0.65);
}

.custom-slider-prev {
    left: 15px;
}

.custom-slider-next {
    right: 15px;
}

.custom-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.custom-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.custom-dot.active {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 767px) {
    .custom-hero-slider {
   
    margin: 71px 0 0 0;
   
}
    .custom-slider-prev,
    .custom-slider-next {
        width: 32px;
        height: 42px;
        font-size: 22px;
        line-height: 42px;
    }

    .custom-slider-prev {
        left: 5px;
    }

    .custom-slider-next {
        right: 5px;
    }

    .custom-slider-dots {
        bottom: 8px;
    }

    .custom-dot {
        width: 8px;
        height: 8px;
    }
}
