.home-main-section{
    display:flex;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
    margin: 0 4rem;
}
.home-main-section .img-wrapper{
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.home-main-section .lady-image{
    background-image: url("./img/landing-page-girl.png");
    flex-grow: 1;
    max-height: 70vh;
    min-width: 30vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
}
.home-main-section .call-to-action{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 1rem;
    align-self: center;
}
@media (min-width:900px) {
    .call-to-action .subtitle{
        max-width:40vw ;
    }
}
@media (max-width:900px) {
    .home-main-section .img-wrapper{
        display: none;
    }
    .home-main-section{
        justify-content: center;
    }
}

.home-page-circle-1{
    position: absolute;
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-color: #BC3A80;
    bottom: 1vw;
    left: 1vw;
    opacity: 10%;
    z-index: -1;
}
.home-page-circle-2{
    position: absolute;
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-color: rgba(23, 98, 167, 0.1);
    top: 180px;
    left: 30vw;
    z-index: -1;
}
.home-page-circle-3{
    position: absolute;
    overflow: hidden;
    width: 45vw;
    height: 45vw;
    bottom: 0;
    right: 0;
    z-index: -1;
    
}
.home-page-circle-3::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(23, 98, 167, 0.1);
    transform: translate(40%,40%);
}