.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 110px;
    margin-bottom: 110px;
}

.item {
    width: 600px;
    background: #f1f1f1;
    padding: 30px;
    border-radius: 4px;
}
  
.item::after {
    content: "";
    display: block;
    clear: both;
}
.item h2 {
    margin-bottom: 10px;
}
.item p {
    line-height: 1.4;
}
.item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    float: left;
    shape-outside: margin-box;
    margin: 0 20px 5px 0;
}

.item1 {
    width: 600px;
    background: #f1f1f1;
    padding: 30px;
    border-radius: 4px;
}

.item1::after {
    content: "";
    display: block;
    clear: both;
}
.item1 h2 {
    margin-bottom: 10px;
}
.item1 p {
    text-align: right;
    line-height: 1.4;
}
.item1 img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    float: right;
    shape-outside: margin-box;
    margin: 0 0 5px 20px;
}

.container2 {
    display: flex;
    margin-bottom: 110px;
    flex-direction: column;
    justify-content: center;
    padding-left: 20%;
    padding-right: 20%;
    text-align: justify;
}

.container2 p {
    color: #5e7480;
    font-size: 18px;
    margin-bottom: 30px;
}

.container2 img {
    width: 100%;
}

@media screen and (max-width: 1350px) {
  
    .container {        
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .container2 {
        padding-left: 10%;
        padding-right: 10%;
    }
  }

@media screen and (max-width: 700px) {
  
    .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: unset;
    }
    .item1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: unset;
    }
    .item1 p {
        text-align: left;
    }
    
  }