#home {
    display: flex;
    min-height: calc(100vh - 91px);
    position: relative;
}


#cta {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 5%;
}

#cta .title {
    font-size: 4rem;
    color: #1d1d1d;
}

#cta .title span {
    color: #033E8C;
}

#cta .description {
    font-size: 1.2rem;
}

#cta_buttons {
    display: flex;
    gap: 24px;
}

#cta_buttons a {
    text-decoration: none;
    color: #1d1d1d;
}

#phone_button {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #ffffff;
    padding: 8px 14px;
    font-weight: 500;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    white-space: nowrap;
}

#phone_button button {
    box-shadow: none;
}

#banner {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 70%;
    z-index: 2;
}

#banner {
    height: 100%;
    width: fit-content;
}

.shape {
    background-color: #73a8ed ;
    width: 50%;
    height: 70%;
    position: absolute;
    border-radius: 40% 30% 10% 30%;
    top: 0;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 800px) {
    #home {
        min-height: 100%;
        padding-top: 0px;
        flex-direction: column;
        align-items: center;
        position: relative;
    }


    #banner img {
        width: 90%;
        max-width: 300px;
        height: auto;
    }

    #cta {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .shape {
        display: block;
        position: absolute;
        width: 100%;
        height: 200px;
        top: unset;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #73a8ed;
        border-radius: 20% 20% 20% 20%;
        z-index: 0;
    }
    
}


@media screen and (max-width: 250px) {
    #phone_button button {
        display: none;
    }
}