.btn-primary {
    background-color: #ff3e1d;
    border-color: #ff3e1d;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #fb2600;
    border-color: #fb2600;
}

.btn-outline-primary {
    border-color: #ff3e1d;
    color: #ff3e1d;
}

.list-group-item.active {
    background-color: #d01e00;
    border-color: #d01e00;
}

section.content {
    min-height: 80vh;
}

.mySwiper.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jumbotron {
    position: relative;
}
.jumbotron::before {
    position: absolute;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    top: 0;
    z-index: 1;
}

.list-group-item,
.list-group-item form button {
    background-color: transparent;
    border: 0;
    color: white;
    position: relative;
}

.list-group-item.active {
    border-radius: 10px;
    background-color: white;
    color: #ff3e1d;
}
.list-group-item.active::before {
    position: absolute;
    content: "";
    top: 0;
    width: 20px;
    height: 100%;
    background-color: white;
    right: -30px;
    border-radius:10px;
}