.about_con1{
    padding: 6vw 0;
    background: #F7FBFF;
}

.about_title{
    max-width: 1200px;
    margin: 0 auto 40px auto;
    width: 95%;
    font-family: "Inter", sans-serif;
    color: #130A4A;
    text-align: center;
}
.about_con1_list{
    width: 95%;
    margin: auto;
    max-width: 1376px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto;
    gap: 6vw;
    justify-content: space-between;
    align-items: center;
}
.about_title2{
    font-family: "Inter", sans-serif;
    color: #130A4A;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    margin-bottom: 80px;
}
.text{
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #130A4A;
    font-weight: 500;
}
img{
    width: 100%;
    display: block;
}
.about_con1_img{
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.about_con2{
    width: 100%;
    padding: 4vw 0 10vw 0;
    background: #F7FBFF;
}

.about_con2_list{
    width: 95%;
    margin: 4vw auto 0 auto;
    max-width: 1376px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 40px;
}
.about_con2_list>div{
    border: 2px solid #130A4A;
    padding: 80px 30px;
    border-radius: 20px;
    color: #130A4A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-family: "Inter", sans-serif;
    position: relative;
    background: white;
}
.list_title{
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}
.list_text{
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}
.about_img{
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 2px solid #130A4A;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
}
@media screen and (max-width: 992px){
    .about_con2_list{
        grid-template-columns: repeat(1,1fr);
    }
    .about_con2_list >div{
        padding: 60px 20px;
    }
    .about_con1_list{
        grid-template-columns: repeat(1,1fr);
    }
    .about_title2{
        width: 100% !important;
        text-align: center;
    }
    .about_title2{
        margin-bottom: 50px;
    }
}
