.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.error-template {
    width: 100%;
    padding: 250px 15px;
    text-align: center;
}

.carousel-indicators li {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
}


.display-1 {
    font-size: 2em;
}

.display-2 {
    font-size: 1.8em;
}

.display-3 {
    font-size: 1.6em;
}

.display-4 {
    font-size: 1.4em;
}

@media (min-width: 576px) {
    .display-1 {
        font-size: 2.2em;
    }

    .display-2 {
        font-size: 2em;
    }

    .display-3 {
        font-size: 1.8em;
    }

    .display-4 {
        font-size: 1.6em;
    }
}
@media (min-width: 768px) {
    .display-1 {
        font-size: 2.4em;
    }

    .display-2 {
        font-size: 2.2em;
    }

    .display-3 {
        font-size: 2em;
    }

    .display-4 {
        font-size: 1.8em;
    }
}
@media (min-width: 991.98px) {
    .display-1 {
        font-size: 2.6em;
    }

    .display-2 {
        font-size: 2.4em;
    }

    .display-3 {
        font-size: 2.2em;
    }

    .display-4 {
        font-size: 2em;
    }
}
.center-cropped {
    object-fit: cover;
    object-position: center;
    height: 200px;
    width: 100%;
}
.bg-gradient {
    background-color: #d7d0ba;
    background-image: linear-gradient(326deg, #d0d7ba 0%, #bad7d7 74%);
    background-size: 200% 200%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 25s ease infinite;
    animation: Gradient 25s ease infinite;
}

.bg-cover {
    background: #d7d0ba;
    background: linear-gradient(18deg, #d7d0ba 0%, #d0d7ba 20%, #bbd7ba 40%, #bad7d7 60%, #bad7d7 80%, #d7d0ba 100%);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.scale {
    transform: scale(1);
    transition: all 0.5s;
}

.scale.animate {
    transform: scale(0.9);
    color: #007bff;
    -webkit-animation: vibration 0.3s linear infinite both;
    animation: vibration 0.3s linear infinite both;
}

@-webkit-keyframes vibration {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }
    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }
    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }
    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
@keyframes vibration {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }
    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }
    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }
    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

