#home {
    display: flex;
    min-height: calc(100vh - 91px);
    position: relative;
}

#cta {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#cta .title {
    font-size: 4rem;
    color: #1d1d1d;
}

#cta .title span {
    color: #162e98;
}

#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;

}

#phone_button button {
    box-shadow: none;
}

#banner {
    display: block;
    align-items: top;
    justify-content: end;
    width: 90%;
    z-index: 2;
}

#banner img {
    height: auto;
    width: 100%;
    position: relative;
    top: 27px;
    left: 132px;
    overflow-y: hidden;

}

.shape {
    background-color: #e3e4e8;
    width: 58%;
    height: 100%;
    position: absolute;
    border-radius: 30% 0% 20% 10%;
    top: 0;
    right: 0;
    z-index: 1;
    overflow-y: hidden;
}



@media screen and (max-width: 1170px) {
    #home {
        min-height: 100%;
        padding-top: 0px;
    }

    #banner,
    #banner img,
    #home .shape {
        display: none;
    }

    #cta {
        width: 100%;
        align-items: center;
        text-align: center;
    }

}

@media screen and (max-width: 450px) {
    #phone_button button {
        display: none;
    }
}