.slider-container { 
    position: relative; 
    overflow: hidden; 
    width: 100%; /* Ensure full width */
    border-radius: 10px;
    display: block; /* Using block instead of flex */
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    min-width:200px
}

.slider { 
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
    transform: translateX(0%);
}

.slider img { 
    height: 100%; /* Each image takes full viewport height */
    object-fit: contain; 
}

.arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none; 
    padding: 10px; 
    cursor: pointer; 
    font-size: 24px; 
    border-radius: 5px; 
    z-index: 1;
}
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

.flex {
    display: flex;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.justify-center {
    justify-content: center;
}  
.align-center {
    align-items: center;
}
.external-logos{
    display: flex;
    justify-content: space-around;
    margin: 20px;
    flex-wrap: wrap;
    margin-top: 50px
}
.logo-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo-container img{
    height: 40px;
}
.external-logos a {
    height: 40px;
}
.external-logos a img {
    height: 100%;
}
.text {
    flex:1;
    min-width: 500px;
}

.text p {
    margin:0;
}

@media (max-width: 1100px) {
    .text {
        min-width: 100%;
        max-width: 100%;
    }
}
.gap {
    gap: 20px;
}