#hero {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    background-position: center;
    background-size: cover;
    position: relative;

    background-size: cover; 
    background-position: center;
    color: white;
}

#hero .left {
    width: 100%;
    padding: 150px 60px;
    padding-top: 200px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
}

#hero .left > span {
    width: fit-content;
    height: fit-content;
    padding: 10px;
    background-color: #ffffff46;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: #EAEAEA;
}

#hero .left h1 {
    font-size: 48px;
    font-weight: bold;
    color: #EAEAEA;
    line-height: 1.6;
    margin-top: 20px;
}
#hero .left .location_price{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}
#hero .left .location_price span{
    margin: 0;
    padding: 0;
    color:white;
}
#hero .left .location_price h2{
    margin: 0;
    padding: 0;
    color: white;
}

#hero .left p {
    font-size: 16px;
    color: #b4b4b4;
    line-height: 1.6;
    max-width: 550px;
    margin-top: 15px;
}

#hero .left .cta_wrapper{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    margin-top: 30px;
  
}
#hero .left .cta_wrapper a{
    text-decoration: none;
    color:white;
    width: fit-content;
    height: fit-content;
}
#hero .left a.cta_primary_btn {
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: bold;
    background-color: #e6e6e6;
    color: rgb(22, 22, 22);
    transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -webkit-transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -moz-transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -ms-transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -o-transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

#hero .left a.cta_primary_btn:hover {
    background-color: #015e7c;
    color:white;
}

#hero .cta_secondary_btn{
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.1s ease;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
}
#hero .cta_secondary_btn:hover{
    background-color: #f3f1f117;
}






@media (max-width: 920px) {
    #hero {
        flex-direction: column;
        background: none;
    }

    #hero .left {
        width: 100%;

        background-position: center;
        background-size: cover;
    }

    #hero .right {
        width: 100%;
        padding: 60px;
    }
}

@media (max-width: 700px) {
    #hero .left {
        padding: 150px 20px;
    }
    #hero .left h1{
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    #hero .left {
        padding-inline: 20px;
        padding-top: 120px;
    }

    #hero .left h1 {
        font-size: 36px;
        margin-top: 30px;
    }

    #hero .right {
        padding-inline: 20px;
    }
}

@media (max-width: 460px) {
    #hero .left h1 {
        font-size: 28px;
        margin-top: 30px;
    }
    #hero .left{
        padding-bottom: 80px;
    }
    #hero .left .cta_wrapper{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

}