.tvbanner {
    background-color: rgba(154, 159, 157, 0.11);
    /* height: 70vh; */
}

.tvbanner img {
    /* align-items: center; */
    margin-left: 27%;
    margin-top: 7%;
}

.text h1 {
    font-size: 90px;
    text-align: center;
}

.text h1 p {
    font-size: 25px;
    color: rgba(83, 83, 83, 0.827);

}

.container100 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    gap: -100px;

}

.image-container100 {
    flex: 1 7 35%;
    /* Adjusts the width of each image container */
    margin: 10px;
    text-align: center;
    /* Centers the images */
    /* background-color: rgba(108, 109, 109, 0.077); */
}

.image-container100 img {
    width: 70%;
    /* Makes the image responsive */
    height: auto;
    /* border: 8px rgba(0, 0, 0, 0.038) solid; */
    border-radius: 10%;
    margin-left: -10%;

    /* Maintains aspect ratio */
}

.text1 h1{
    font-size: 50px;
    font-family:  sans-serif;
    text-align: center;
    font-stretch: condensed;
    font-weight: 600;
}


.container1100 {
    display: flex; /* Use flexbox to arrange items in a row */
    /* justify-content: space-between; Space out the items evenly */
    /* flex-wrap: wrap; Allow items to wrap to the next line if necessary */
    margin: 20px 0; /* Add some margin above and below the container */
    /* background-color: aqua; */
}

.image-container1100 {
    display: block;/* Allow items to grow equally */
    margin: 0 10px; /* Add horizontal spacing between images */
    max-width: calc(25% - 20px); /* Each image takes up 25% of the container width, minus margins */
}

.image-container1100 img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: add rounded corners to images */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: add a subtle shadow for depth */
    margin-left: 0%;
}