
#home{
    display: flex;
    min-height: calc(100vh - 86px);
    position: relative;
}

#cta{
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#cta .title{
    font-size: 4rem;
    color: rgba(235, 97, 6, 0.867);
}

#cta .title span{
    color: brown;
}

#cta .description{
    font-size: 1.2rem;
}

#cta_buttons{
display: flex;
gap: 24px;
}

#cta_buttons a{
    text-decoration: none;
    color: rgba(0, 17, 255, 0.867);
}

#phone-button{
display: flex;
gap: 8px;
align-items: center;
background-color: #fff;
padding: 8px 14px;
font-weight: 500;
box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
border-radius: 12px;
}

#phone-button button{
    box-shadow: none;
}

#banner{
    
    margin-bottom: 200PX;
    display: flex;
    align-items: start;
    justify-content: end;
    width: 70%;
    z-index: 2;
}

#banner img{
    margin-top: 90px;
    height: 100%;
    width: fit-content;
}

.shape{
    margin-top: 95px;
    background-color: #bed0f5;
    width: 53%;
    height: 90%;
    position: absolute;
    border-radius: 40% 30% 0% 20%;
    top: 0;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 1000px){
    #home{
        min-height:10%;
        padding-top: 0px;
    }

    #banner,
    #banner img,
    #home .shape{
        display: none;
    }

    #cta{
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 1000px){
    #phone-button button{
        display: none;
    }
}