.home-price{
    position: relative;
    height: 75vh;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url('../images/bg-image.png');
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home-price .home-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
}
.home-price .home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.home-price .home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
}

.price-row{
    display: flex;
    flex-direction: row;
    gap: 7rem;
    background-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
}

.price-row .price-col-left{
    justify-content: flex-start;
    align-items: flex-start;
}

.price-row .price-col-right{
    align-items: flex-start;
    text-align: left;
}

.price-row .row-img{
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 50%;
    cursor: pointer;
}
.price-row .row-img img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s;
}
.price-row .row-img img:hover{
    transform: scale(1.2);
}

.price-row h4{
    font-size: 17px;
    font-weight: 500px;
    cursor: pointer;
    transition: all .50s ease;
}
.price-row h4:hover{
    color: var(--main-color);
}
.price-row .price-col-right p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 25px;
    display: inline-block;
}
.price-row .price-col-right span{
    padding: 15px;
}