JSFiddle - React, Tailwind, and code Playground
HTML
<!-- CONTACT SECTION -->
<div class="third" id="contacts">
<div class="starter-template">
<h2>Contact Us</h2><br>
<div class="basic-container">
<div class="contact">
<p class="lead">Location</p>
<p>The student team spaces can be found at Urban Mill, located between Startup Sauna and Aalto Design Factory at the Aalto University campus in Otaniemi, Espoo (Street Address: Betonimiehenkuja 3, Espoo, Finland). Most of the lectures will also be held at Urban Mill. The accommodation of the students is at Forenom Hostel (Street Address: Kivimiehentie 2, Espoo), which is only a 5-minute walk away from Urban Mill.<br><br></p>
<p class="lead">Get in Touch</p>
[email protected]</p>
</div>
<div class="contact">
<iframe id="map" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7936.021807966812!2d24.832175000000017!3d60.18064199999999!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x468df58d0b88505f%3A0xaacf6d4afeea4ebb!2sUrban+Mill!5e0!3m2!1sfi!2sfi!4v1434351601478" frameborder="0" style="border:0"></iframe>
</div>
</div>
</div>
</div>
</div>
CSS
.third {
position: relative;
z-index: 100;
width: 100%;
background-color: #F7F7F7;
}
.basic-container {
width: 70%;
margin: 0 auto;
text-align: justify;
}
.contact {
position: relative;
width: 49%;
height: 0;
display: inline-block;
padding-bottom: 60%;
}
.contact p.lead {
text-align: left;
}
#map {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}