.title h2{
    text-align: left;
    font-weight: bolder;
    color: var(--nav-color);
}
.ConAbout{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}
.ConAboutLeft{
    width: 60%;
    display: block;
    position: relative;
    order: 1;
}
.ConAboutRight{
    width: 40%;
    height: fit-content;
    position: sticky;
    top: 95px;
    order: 2;
}
.ConAboutRight img{
    width: 100%;
    height: auto;
}
.inffooter{
    width: 100%;
    display: flex;
    bottom: 0;
    left: 0;
}
.tablecontact{
    width: 100%;
    display: block;
    height: 56vh;
    background-color: var(--text-color);
}
p{
    text-align: justify;
}
ul{
    margin-left: 25px;
}
li{
    margin-left: 10px;
}
@media screen and (max-width:600px) {
    .ConAbout{
        display: grid;
        align-items: start;
    }
    .ConAboutLeft{
        width: 100%;
        position: relative;
        order: 2;
    }
    .ConAboutRight{
        width: 100%;
        top: 0;
        position: relative;
        display: block;
        height: 100%;
        order: 1;
        margin-bottom: 10px;
    }
}