.describe-box{
    width: 1400px;
    height: 310px;

    display: flex;
    align-items: center;
    justify-content: space-between;


    margin-top: 45px;
}

.l-sided{
    flex-direction: row-reverse;

    padding-left: 20px;
    border-left: 4px solid #81B5E9;
}

.r-sided{
    flex-direction: row;
    padding-right: 20px;
    border-right: 4px solid #81B5E9;
}

.r-sided > .img-wraper{
    margin-right: 20px;
}

.img-wraper{
    width: 310px;
    height: 310px;
    
    box-sizing: border-box;

    border-radius: 6px;
    border: 4px solid #81B5E9;

    display: flex;
    align-items: center;
    justify-content: center;
}

.descbox-img{
    width: 302px;
    height: 302px;

    box-sizing: border-box;
    border-radius: 6px;
    border: 4px solid white;
}

.title{
    font-size: 22px;
    color: #81B5E9;
}

.description{
    font-size: 16px;
    width: 1000px;
}