I'm in the process of creating a bootstrap website and I need to have one part of an element visible while the other part is hidden behind another element, similar to the image. How can I achieve this effect?
HTML
<section class="about">
<img src="img/about-el-img.png" class="about-el-img">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-5 offset-xl-1">
<h2 class="about-title">Сервис обмена электронных
валют с 5-летней историей</h2>
<p class="about-desc">За время работы мы приобрели репутацию проверенного партнера и
делаем все возможное, чтобы ваши впечатления от нашего сервиса были только
благоприятными.</p>
</div>
<div class="col-xl-6">
<img src="img/about-img.png" class="about-img" alt="Image">
</div>
</div>
</div>
</section>
CSS
.about
position: relative
.about-el-img
position: absolute
top: 0
left: 220px
.container
border: 4px solid #F7F8FD
border-radius: 26px
padding-bottom: 88px
&-img
max-width: 100%
&-title
font-weight: 500
font-size: 35px
line-height: 132.4%
color: #160647
padding: 102px 0 30px
max-width: 320px
&-desc
font-size: 18px
line-height: 166.5%
opacity: 0.7
color: $main-text
max-width: 400px