:root{
    --natura : #ffab91;
    --coral: #ff7f50;
    --black: #222;
}

.natura-color{
    color: var(--natura);
}
.coral-color{
    color:  var(--coral);
}
.black-color{
    color: var(--black);
}
.natura-bg{
    background-color: var(--natura);
}
.coral-bg{
    background-color: var(--coral);
}
.black-bg{
    background-color: var(--black);
}

.carousel-item{
    height: 700px;
    display:flex;
    color: #f5f5f5;
    justify-content: center;
    align-items: center;
    z-index: -1;
    background-position: center !important;
    background-size: cover !important;
}
.about-bg{
    min-height: 550px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}
.carousel-item.active {
    display:flex;
    z-index: 2;
}
.carousel__item__bg{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.carousel-item__content{
    width: calc(70% - 2em);
    padding: 1em;
    text-align: center;
    z-index: 1;
}
.carousel-control-next, .carousel-control-prev{
    z-index: 2;
}
.kit{
    margin-top: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
}
.kit__item{
    list-style: none;
    margin-bottom: 1em;
    display: block;
}
.kit_image{
    max-height: 750px;
}

@media(max-width:576px){
    .kit{
        justify-content: center;
    }
    .kit__item{
        width: 100%;
        text-align: center;
    }
}