/* 소개 페이지 */
#mainContainer
{  
    width:100%;
    margin-top:5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infoItem
{   
    /* width:40%;
    overflow: hidden;
    padding:2rem; */

    display: flex;
}
.leftCon
{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.section
{  
    padding:2rem;
    width:100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.infoImg >img
{
    object-fit: cover;
    width:100%;
    height:100%;
}
/* .infoItem > img
{
    object-fit: cover;
    width:100%;
    height:100%;
} */
.title_font
{
    font-size: 2.8rem;
    font-weight: bold;
}
.section:nth-child(2)
{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.content_font
{
    font-size: 1.1rem;
}




@media(max-width:1024px)
{
    .section
    {
        flex-direction: column;
    }
    .leftCon
    {
        width:100%;
    }
    .rightCon
    {
        width:100%;
    }
  
    .infoImg
    {
        margin-top: 2rem;
    }
}


@media(max-width:768px)
{
    
    .section
    {
        flex-direction: column;
    }
    .leftCon
    {
        width:100%;
    }
    .rightCon
    {
        width:100%;
    }
   .title_font
   {
     font-size: 100%;
    }
    .content_font
    {
        font-size: 95%;
    }
    .buttons
    {
        font-size:95%;
    }
  
}
