body {
background-color: white;
}       
    /* Styles for the Image Slider */
#pitch {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pitch-gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pitch-gallery-holder {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pitch-gallery-div {
    min-width: 100%;
    box-sizing: border-box;
}

.pitch-gallery-div img {
    width: 100%; /* Adjusted width */
    height: auto;
    display: block;
    position:relative;
}

/* Navigation Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots */
.dots-container {
    text-align: center;
    padding: 10px;
    background: white;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

@media screen and (max-width: 480px) {
    .pitch-gallery-div img {
        width: 98%; /* Adjusted width */
        display: block;
        position:relative;
    }
    .pitch-gallery {
        width: 98%;
        overflow: hidden;
        position: relative;
    }
}
 /* Slider container */
.ng-slider-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

/* Hide all slides by default */
.ng-slide {
    display: none;
    width: 100%;
    height: auto;
}

/* Next & previous buttons */
.ng-prev, .ng-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.ng-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "previous button" to the left */
.ng-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* Add a background color to the buttons on hover */
.ng-prev:hover, .ng-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
