.loader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    opacity: 0.65;
    background: #f5f5f5;
    z-index: 2000;
    transition: opacity 0.25s visibility 0.25s;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: '';
    width: 25px;
    height: 25px;
    border: solid 5px #031D54;
    border-top-color: #0EA98E;
    border-radius: 50%;
    animation: loading ease 0.25s infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn)
    }

    to {
        transform: rotate(1turn)
    }
}

.carousel-item {
    /* min-height: 280px; */
    max-height: 400px;
}

@media screen and (min-width:768px) {
    .carousel-caption h5 {
        font-size: 30px;
    }
}
