    .hero-slider .carousel-item {
        height: calc(100vh - 218px);
        min-height: 700px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-slider .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--color-slider-overlay);
    }

    .slider-content {
        position: relative;
        z-index: 2;
        max-width: 100%;
    }

    .top-text {
        color: var(--color-light-sky-blue);
        font-size: 12px;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .top-text::before,
    .top-text::after {
        content: "";
        width: 80px;
        height: 1px;
        background: var(--color-slider-cyan-line);
    }

    .slider-title {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--color-white);
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .slider-desc {
        color: var(--color-grey-lightest);
        line-height: 2;
        margin-bottom: 35px;
    }

    .btn-order {
        background: var(--color-btn-cyan);
        color: var(--color-white);
        border-radius: 0;
        padding: 14px 35px;
        border: none;
    }

    .btn-order:hover {
        background: var(--color-btn-cyan-hover);
        color: var(--color-white);
    }

    /*-------------------------------*/
    /* common */
    .corner {
        position: absolute;
        width: 60px;
        height: 60px;
        z-index: 5;
    }

    .corner::before,
    .corner::after {
        content: "";
        position: absolute;
        background: var(--color-cyan-bright);
        opacity: .7;
    }

    /* vertical line */
    .corner::before {
        width: 1px;
        height: 100%;
    }

    /* horizontal line */
    .corner::after {
        width: 100%;
        height: 1px;
    }

    /* top left */
    .top-left {
        top: 15px;
        left: 15px;
    }

    .top-left::before {
        left: 0;
        top: 0;
    }

    .top-left::after {
        left: 0;
        top: 0;
    }

    /* top right */
    .top-right {
        top: 15px;
        right: 15px;
    }

    .top-right::before {
        right: 0;
        top: 0;
    }

    .top-right::after {
        right: 0;
        top: 0;
    }

    /* bottom left */
    .bottom-left {
        bottom: 15px;
        left: 15px;
    }

    .bottom-left::before {
        left: 0;
        bottom: 0;
    }

    .bottom-left::after {
        left: 0;
        bottom: 0;
    }

    /* bottom right */
    .bottom-right {
        bottom: 15px;
        right: 15px;
    }

    .bottom-right::before {
        right: 0;
        bottom: 0;
    }

    .bottom-right::after {
        right: 0;
        bottom: 0;
    }


    /*---------------------------------------------------*/

    .slider-info {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        width: max-content;
        max-width: 90%;
        padding: 14px 24px;
        background: var(--color-slider-info-bg);
        backdrop-filter: blur(8px);
        /*border: 1px solid rgba(0, 207, 255, .15);*/
        border-radius: 50px;
        z-index: 10;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--color-white);
        font-size: 14px;
        white-space: nowrap;
    }

    .info-item span {
        opacity: .8;
    }

    .info-item strong {
        color: var(--color-cyan-hover);
        font-weight: 600;
    }

    /* tablet */
    @media (max-width:991px) {

        .slider-info {
            gap: 10px;
            padding: 12px 18px;
            border-radius: 25px;
        }

        .info-item {
            font-size: 13px;
        }
    }

    /* mobile */
    @media (max-width:576px) {

        .slider-info {
            bottom: 20px;
            width: 95%;
            border-radius: 20px;
            padding: 12px;
            justify-content: flex-start;
        }

        .info-item {
            width: 100%;
            font-size: 12px;
        }
    }

    /*---------------------------------------------------*/
    /* Hero slider navigation arrows */
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 56px;
        height: 56px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, .35);
        border: 1px solid rgba(255, 255, 255, .6);
        border-radius: 50%;
        opacity: 1;
        z-index: 10;
        transition: background .2s ease, border-color .2s ease;
    }

    .hero-slider .carousel-control-prev {
        left: 25px;
    }

    .hero-slider .carousel-control-next {
        right: 25px;
    }

    .hero-slider .carousel-control-prev:hover,
    .hero-slider .carousel-control-next:hover {
        background: var(--color-btn-cyan);
        border-color: var(--color-btn-cyan);
    }

    .hero-slider .carousel-control-prev-icon,
    .hero-slider .carousel-control-next-icon {
        width: 22px;
        height: 22px;
        background-size: 100% 100%;
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, .5));
    }

    @media (max-width:576px) {

        .hero-slider .carousel-control-prev,
        .hero-slider .carousel-control-next {
            width: 42px;
            height: 42px;
        }

        .hero-slider .carousel-control-prev {
            left: 12px;
        }

        .hero-slider .carousel-control-next {
            right: 12px;
        }

        .hero-slider .carousel-control-prev-icon,
        .hero-slider .carousel-control-next-icon {
            width: 16px;
            height: 16px;
        }
    }