Good morning I hope you find yourself very well, What I need from your knowledge is to be able to implement this structure with html and css.
The image occupies half screen and goes to the corner (left, right). And the text goes in the other column centered.
Please could you tell me with what code I could achieve it. I am very grateful. Have a happy day!
I enclose the code that I could not fix (use bootstrap):
#about {
padding: 60px 0;
overflow: hidden;
}
#about .about-img {
height: 510px;
overflow: hidden;
}
#about .about-img img {
margin-left: -15px;
max-width: 100%;
}
@media (max-width: 768px) {
#about .about-img {
height: auto;
}
#about .about-img img {
margin-left: 0;
padding-bottom: 30px;
}
}
#about .content .h2 {
color: #333;
font-weight: 300;
font-size: 24px;
}
#about .content h3 {
color: #777;
font-weight: 300;
font-size: 18px;
line-height: 26px;
font-style: italic;
}
#about .content p {
line-height: 26px;
}
#about .content p:last-child {
margin-bottom: 0;
}
#about .content i {
font-size: 20px;
padding-right: 4px;
color: #1dc8cd;
}
#about .content ul {
list-style: none;
padding: 0;
}
#about .content ul li {
padding-bottom: 10px;
}
<section id="about" >
<div class="container">
<div class="row">
<div class="col-lg-6 about-img wow fadeInLeft" data-wow-delay="0s" data-wow-duration="1.9s">
<img src="img/img_showcase_1.jpg" alt="">
</div>
<div class="col-lg-6 content wow fadeInRight" data-wow-delay="0s" data-wow-duration="1.9s">
<h2>Lorem ipsum dolor sit amet, consectetur adipiscing</h2>
<h3>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h3>
</div>
</div>
</div>
<!-- Fila 2-->
<div class="container">
<div class="row">
<div class="col-lg-6 about-img order-lg-2 wow fadeInRight" data-wow-delay="0s" data-wow-duration="1.9s">
<img src="img/img_showcase_1.jpg" alt="">
</div>
<div class="col-lg-6 content order-lg-1 wow fadeInLeft" data-wow-delay="0s" data-wow-duration="1.9s">
<h2>Lorem ipsum dolor sit amet, consectetur adipiscing</h2>
<h3>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h3>
</div>
</div>
</div>
</section>