#info{
    /*height: 500px;*/
    padding: 200px 0;
    width: 100%;
    text-align: center;
    position: relative
}

#info::before {
  content: ""; /* Empty content for the pseudo-element */
  position: absolute;
  top: -70%;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url('../images/top.png'); /* Corrected image URL */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}


#info h2{
    font-size: 20px;
    font-weight: 600;
}

#info .info_container{
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

#info .info_container .info_content {
    min-width: 320px;
}

#info .info_container .info_content:first-child{
    position: relative;
}

#info .info_container .info_content:first-child::before {
    content: ""; /* Empty content for the pseudo-element */
    position: absolute;
    top: -80px;
    left: -50px;
    width: 100%;
    height: 100%;
    background-image: url('../images/home.png'); /* Corrected image URL */
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

#info .info_container:last-child .info_content:first-child::before {
    display: none;
}

.line{
    height: 100px;
    width: 2px;
    background-color:#000;
    margin: 0 80px;
}


@media (max-width: 600px) {
    #info{
        height: auto;
        width: 100%;
        text-align: center;
        /*display: flex;
        justify-content: center;*/
    }

    #info .info_container{
        display: table;
        margin: 0 auto;
        width: 90%;
    }

    #info h2{
        font-size: 16px;
    }

    #info h1{
        font-size: 24px;
    }

    #info .info_container .info_content {
        min-width: auto;
    }
    
    #info .info_container .info_content:first-child{
        position: relative;
    }
    
    #info .info_container .info_content:first-child::before {
        top: -80px;
        left: 0px;
      }
    
    .line{
        transform: rotate(90deg);
        margin: auto;
    }
}