#infrastructures {
    gap: 32px;
    display: flex;
    flex-direction:column;
}

.infrastructure {
    gap: 32px;
    display: flex;
    flex-wrap: nowrap;
    justify-content:space-between;
}

.infrastructure_photo {
    flex:1;
    height: 250px;
    background-color:#eee;
    background-image:url('../assets/logos/logo-header.png');
    background-position:center;
    background-size:40%;
    background-repeat:no-repeat;
    overflow:hidden;   
    
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;    
}

.infrastructure_photo img {
    position: relative;

    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow:hidden;
    object-position:center;    
    scale: 1;
    transition: 0.2s; 
    
    border-top-left-radius:8px;
    border-bottom-left-radius:8px;   
}

.infrastructure_content {
    flex:2;
    position:relative;
    padding-bottom:40px;
}

@media (max-width: 1100px) {
  .infrastructure {
    flex-direction:column;
    gap:0;
  }

  .infrastructure_photo, .infrastructure_photo img {
    border-bottom-left-radius:0;
    border-top-right-radius:8px;      
  }
  .infrastructure_photo {
    flex:1;
  }
  .infrastructure_content {
      flex:1;    
      
      background-color:#eee;
      padding:16px;
      
      border-bottom-left-radius:8px;   
      border-bottom-right-radius:8px;   
  }
}