@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.all-hero-container {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 4.5em;
}
@media(max-width:768px){
    .all-hero-container {
        margin-top: 3.5em;
    }
    .locator p{
        line-height: 35px!important;
    }
    .locator{
        height: 40px!important;
    }
}
.all-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display:flex;
    align-items:center;
}

.all-hero-img {
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit: cover;
}

.all-hero h1 {
    font-size: 3rem;
    margin: 0;
    min-width: 18rem;
}
@media(max-width:1024px){
    .all-hero h1 {
        font-size: 2em;
    }
}
@media(max-width:500px){
    .all-hero h1 {
        font-size: 1em;
    }
}

.locator {
    font-size: 1.2rem;
    background-color: white;
    color: #5d4ce6;
    text-align: center;
    border:solid 2px #5d4ce6;
    border-radius: 10px ;
    height: 50px;
    width: 200px;
    position: absolute;
    bottom: -25px;
    left: 20px;
}
.locator:hover{
    color: white;
    background-color: #5d4ce6;
}
.locator p{
    line-height: 50px;
}
