@media (min-width: 1400px) {
    .container {
        max-width: calc(1400px - 145px);
    }
}

/* carousel style */
.carousel-caption {
    bottom: 135px;
    font-size: 14px;
    line-height: 20px;
    padding: 0 64px;
}

.carousel-caption h5 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.carousel-caption.night {
    color: var(--night);
}

.carousel-caption.night h5 {
    color: var(--night);
}

.carousel .carousel-indicators {
    bottom: 88px;
}

.carousel-indicators li {
    width: 32px;
    height: 4px;
    border: none;
    border-radius: 2px;
}

.carousel-control-prev {
    background: url("/static/images/chevron-left.svg") no-repeat center;
    background-size: contain;
}

.carousel-control-next {
    background: url("/static/images/chevron-right.svg") no-repeat center;
    background-size: contain;
}

.carousel-indicators.primary li {
    background-color: var(--primary);
}

@media (max-width: 1200px) {
    .carousel-caption {
        bottom: 120px;
    }

    .carousel-caption p {
        padding: 0 16px;
    }

    .carousel .carousel-indicators {
        bottom: 100px;
    }
}
