33 lines
1.9 KiB
JavaScript
33 lines
1.9 KiB
JavaScript
import VideoPopup from "../elements/VidepPopup";
|
|
|
|
export default function MermsDedicatedTeam (){
|
|
return <>
|
|
<section className="bg--04 bg--fixed py-100 ct-01 content-section division">
|
|
<div className="container">
|
|
<div className="row d-flex align-items-center">
|
|
{/* TEXT BLOCK */}
|
|
<div className="col-md-6 order-last order-md-2">
|
|
<div className="txt-block left-column wow fadeInRight">
|
|
{/* Section ID */}
|
|
<span className="section-id">our Team at MERMS</span>
|
|
{/* Title */}
|
|
<h2 className="s-50 w-700">Dedicated Team</h2>
|
|
{/* Text */}
|
|
<p className="p-lg">"We pride ourselves on fostering a collaborative environment where creativity and innovation thrive. By staying at the forefront of industry trends and technological advancements, we transform your ideas into actionable strategies that elevate your practice. Our goal is to assist you in establishing a strong online presence while you focus on what you do best—providing exceptional care to your patients"
|
|
</p>
|
|
</div>
|
|
</div> {/* END TEXT BLOCK */}
|
|
{/* IMAGE BLOCK */}
|
|
<div className="col-md-6 order-first order-md-2">
|
|
<div className="img-block j-img video-preview right-column wow fadeInLeft">
|
|
{/* Play Icon */}
|
|
{/*<VideoPopup style={2} />*/}
|
|
{/* Preview Image */}
|
|
<img className="img-fluid r-20" src="/images/img-17.jpg" alt="video-preview" />
|
|
</div>
|
|
</div>
|
|
</div> {/* End row */}
|
|
</div> {/* End container */}
|
|
</section>
|
|
</>
|
|
} |