.main-content::before {
content: '';
position: absolute;
inset: 0;
background-image: url(//taxila.staging-sc.com/wp-content/themes/taxila/assets/icons/Group 12.svg), url(//taxila.staging-sc.com/wp-content/themes/taxila/assets/icons/Group 13.svg);
background-position: top left, center bottom -30px;
background-repeat: no-repeat, no-repeat;
background-size: auto, 100% auto;
opacity: 0.8;
pointer-events: none;
z-index: 0;
}
.desc-decor-top {
position: absolute;
top: -20px;
left: 20px;
opacity: 0.1;
z-index: 2;
pointer-events: none;
} .main-content {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
margin: 0 auto;
align-items: center;
gap: 3rem;
position: relative;
z-index: 1;
background-color: var(--white);
}
.main-content .container {
display: flex;
height: auto;
gap: 4rem;
}
.img-wraper{
position: relative;
transition: transform 0.3s ease-out;
overflow: hidden;
height: 100%;
width: 50.5%;
border-radius: 12px;
}
.img-wraper::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 81%);
pointer-events: none;
}
.img-wraper img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.text-wraper {
width: 100%;
flex: 1;
display: flex;
flex-direction: column;
gap: 1rem;
}
.text-wraper .text-desc {
color: var(--text-sub);
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 400;
letter-spacing: -1.1%;
line-height: 24px;
}
.text-wraper h2 {
color: var(--primary);
font-size: 24px;
font-weight: bold;
line-height: 32px;
}
.main-content .first-child {
margin-top: 3rem;
}
.main-content .last-child {
margin-bottom: 3rem;
}
@media (max-width: 768px) {
.main-content .container {
width: 100%;
display: flex;
flex-direction: column;
gap: 3rem;
}
.img-wraper {
width: 100%;
order: -1; 
}
.text-wraper {
order: 2;
}
.description-text {
width: auto;
padding: 0 30px;
}
}