@charset "utf-8";
/* CSS Document */
.text-shadow {
        text-shadow: 1px 1px 3px black;
    }

.end-grad {
background: rgb(0,78,140);
background: linear-gradient(90deg, rgba(0,78,140,1) 0%, rgba(36,58,101,1) 100%);
}

.top-grad {
background: rgb(0,78,140);
background: linear-gradient(0deg, rgba(0,78,140,1) 0%, rgba(36,58,101,1) 100%);
}

.bottom-grad {
background: rgb(0,78,140);
background: linear-gradient(180deg, rgba(0,78,140,1) 0%, rgba(36,58,101,1) 100%);
}
.start-grad {
background: rgb(0,78,140);
background: linear-gradient(270deg, rgba(0,78,140,1) 0%, rgba(36,58,101,1) 100%);
}
.swiper-pagination-bullet {
    background: transparent;
    border: 2px solid #fff;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    display: inline-block;
    height: 10px;
    opacity: .3;
    width: 10px;
}
.swiper-pagination-bullet-active {
    background: #ff0000;
    border-color: #ff0000;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}