div.jumbotron.carousel-hero {
    color: #fff;
    text-align: right;
    background-size: cover;
    background-position: center;
    /*  padding-top:100px;
  padding-bottom:100px; */
    padding: 0;
    margin-bottom: 0;
    border-radius: 0px;
}

.carousel-grid {
    display: grid;
    grid-template-columns: minmax(5fr, 12.5fr) auto auto auto minmax(5fr, 12.5fr);
    grid-template-rows: 12.5fr 15fr 45fr 15fr 12.5fr;
    grid-template-areas:
        "spacer-t spacer-t spacer-t spacer-t spacer-t"
        "spacer-l content-left content-center content-right spacer-r"
        "spacer-l content-left content-center content-right spacer-r"
        "spacer-l content-left content-center content-right spacer-r"
        "spacer-b spacer-b spacer-b spacer-b spacer-b";
    align-items: center;
}

.carousel-focus-left {
    grid-template-columns: minmax(5fr, 12.5fr) fit-content(60fr) auto auto minmax(5fr, 12.5fr);
}

.carousel-focus-center {
    grid-template-columns: minmax(5fr, 12.5fr) auto fit-content(60fr) auto minmax(5fr, 12.5fr);
}

.carousel-focus-right {
    grid-template-columns: minmax(5fr, 12.5fr) auto auto fit-content(60fr) minmax(5fr, 12.5fr);
}

.carousel-left {
    grid-area: content-left;
    text-align: left;
}

.carousel-center {
    grid-area: content-center;
    text-align: center;
}

.carousel-right {
    grid-area: content-right;
    text-align: right;
}

h1.hero-title, h2.hero-title, h3.hero-title {
    color:#fff;
}

p.hero-subtitle {
    /*max-width: 40%;
    margin: 25px auto;
    padding: 10px 15px;*/
    color: #fff;
    font-size: 1.5em;
}

div.carousel-hero p {
    /*text-shadow: 0 0 10px #000000;*/
    word-break: break-word;
    padding-left: 8px;
    padding-right: 8px;
}

div.carousel-hero h1 {
    /*text-shadow: 0 0 20px #000000;*/
}

.carousel-hero {
    min-height: 335px;
    /*min-width: 1500px;*/
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    /*    border: 2px solid #fff;
    border-radius: 18px; */
    border: 0;
    background-image: url('/media/fuijsnym/indicator-open.png');
    background-size: 100% 100%;
}

.carousel-indicators .active {
    width: 20px;
    height: 20px;
    background-color: rgba(0,0,0,0);
    /*    border: 2px solid orange;
    border-radius: 18px;
    margin: 1px; */
    background-image: url('/media/5txfa5th/indicator-filled.png');
    background-size: 100% 100%;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
}

.jumbotron p {
    margin-bottom: 0;
}

/*Targets carousel only on the home page*/
@media (max-width:1040px) {
    .home-carousel {
        margin-left: 15px;
    }
}

@media (max-width: 767px) {
    div.jumbotron.carousel-hero {
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .container .jumbotron {
        background-color: transparent;
    }

    .carousel-hero {
        min-height: 170px;
    }

    div.carousel-hero p {
        line-height: 8px;
    }

    .carousel-indicators {
        display: none;
    }
}

@media (max-width: 414px) {
    div.jumbotron.carousel-hero {
        background-size: contain;
        min-height: 100px;
        margin-top: -20px;
        padding-bottom: 8px;
    }

    .carousel-hero {
        min-height: 100px;
    }

    .carousel-grid {
        grid-template-rows: 15fr 15fr 15fr 12.5fr;
    }
}

@media (min-width: 768px) and (max-width: 912px) {
    div.jumbotron.carousel-hero {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 25px;
    }

    .container .jumbotron {
        background-color: transparent;
    }

    .carousel-hero {
        min-height: 200px;
    }

    .carousel-indicators .active {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators li {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators {
        bottom: 6px;
    }
}

@media (min-width: 913px) and (max-width: 1199px) {
    .carousel-hero {
        min-height: 250px;
    }

    div.jumbotron.carousel-hero {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .container .jumbotron {
        background-color: transparent;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
    }

    .carousel-indicators li {
        width: 12px;
        height: 12px;
    }

    .carousel-indicators {
        bottom: 6px;
    }
}

@media (min-width: 913px) and (max-width: 991px) {
    div.jumbotron.carousel-hero {
        margin-top: -60px;
        background-position: bottom;
        padding-top: 70px;
    }
}

@media (min-width: 415px) and (max-width: 600px) {
    div.jumbotron.carousel-hero {
        background-size: contain;
        background-position: bottom;
        background-repeat: no-repeat;
        margin-top: -80px;
        padding-top: 25px;
    }

    .carousel-hero {
        min-height: 195px;
    }

    .carousel-grid {
        grid-template-rows: 15fr 15fr 15fr 12.5fr;
    }
}