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;
    }
}
   
         /* 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: auto;
    height: 400px;
    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%;
            display: block;
            position:relative;
        }
        .pitch-gallery {
    width: 98%;
    overflow: hidden;
    position: relative;
}
        }