.carCont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 98%;
    padding: 2% 1%;
    padding-bottom: 0;
    background-color: #000;
  }
  
  .section01{
    display: flex;
    align-items: center;
    height: 250px;
    padding: 2%;
    width: 94%;
    background-color: #5d5d5d;
    border: 2px solid #04b4ec;
    border-radius: 10px 10px 0 0;
  }

  @media (max-width: 991px) {
    .carCont{
      border-bottom: 2px solid #04b4ec;
      background-color: #000;
      height: fit-content;
    }

    .section01{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #000;
      border: none;
      width: 100%;
      height: fit-content;
      padding: 0;
      margin: 0;
    }
  }