.hero-slider {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0;
    margin-left: -30px;
    margin-right: -30px;
    margin-top: -30px;
    margin-bottom: -30px;
    width: calc(100% + 60px);
}

.hero-slider .hero-slider-bg,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .hero-slide {
    height: 100%;
}

.hero-slider .hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-slider .hero-slide {
    width: 100%;
    background-color: #14202b;
}

.hero-slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    /*background: linear-gradient(90deg, rgba(10, 20, 30, 0.82) 0%, rgba(10, 20, 30, 0.5) 55%, rgba(10, 20, 30, 0.22) 100%);*/
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.hero-slider-content {
    position: relative;
    z-index: 3;
    max-width: 1340px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: #ffffff;
    transform: translateY(160px);
}

.hero-slider-content.align-center {
    align-items: center;
    text-align: center;
}

.hero-slider-content.align-right {
    align-items: flex-end;
    text-align: right;
}

.hero-slider-eyebrow {
    font-family: 'Roboto Condensed', sans-serif;
    display: block;
    font-size: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 12px;
}

html body .hero-slider-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px;
    max-width: 700px;
}

.hero-slider-buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
}

.hero-slider-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

html body .hero-slider-btn-fill {
    background-color: #e6aa21;
    border-color: #e6aa21;
    color: #ffffff;
}

.hero-slider-btn-fill:hover,
.hero-slider-btn-fill:focus {
    background-color: #d59b17;
    border-color: #d59b17;
    color: #ffffff;
}

html body .hero-slider-btn-outline {
    background-color: transparent;
    border-color: #e6aa21;
    color: #e6aa21;
}

.hero-slider-btn-outline:hover,
.hero-slider-btn-outline:focus {
    background-color: #e6aa21;
    color: #ffffff;
}

.hero-slider-dots {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-slider-dots .owl-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-dots .owl-dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.hero-slider-dots .owl-dot.active {
    background-color: #e6aa21;
    transform: scale(1.15);
}

@media screen and  (min-width: 764px) {
    .hero-slider-content {
        padding: 60px;
    }

    html body .hero-slider-heading {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .hero-slider-buttons {
        flex-direction: row;
    }

    .hero-slider-btn {
        text-align: left;
    }

    .hero-slider-dots {
        right: 60px;
        bottom: 40px;
    }
}

@media screen and  (min-width: 1025px) {
    html body .hero-slider-heading {
        font-size: 48px;
    }

    .hero-slider-dots {
        right: 200px;
    }
}
