#home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: calc(100vh - 80px);
    background-color: #f7edf3;
    position: relative;
}

#cta {
    width: 35%;
    flex-direction: column;
    display: flex;
    gap: 28px;
    margin-top: 5%;
}

#cta .title {
    font-size: 4rem;
    color: #333333;
    font-weight: 700;
    line-height: 1.2;
}

#cta .title span {
    color: #ff6f91;
}

#cta .description {
    font-size: 1.2rem;
}

#cta_buttons {
    display: flex;
    gap: 24px;
}

#cta_buttons a {
    text-decoration: none;
    color: #ffffff;
}

.phone-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background-color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow .3s ease;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background-color: #ff6f91;
    color: #ffffff;
}

.phone-card:hover {
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

#banner {
    width: 70%;
    display: flex;
    justify-content: end;
    align-items: start;
    z-index: 2;
}

#banner img {
    width: fit-content;
    height: 100%;
}

.shape {
    position: absolute;
    width: 900px;
    height: 800px;
    background-color: #ff6f91;
    border-radius: 40% 30% 0% 20%;
    top: 10px;
    left: 1300px;
    opacity: 0.1;
    z-index: 1;
}

@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;
        margin-top: 0;
    }
}

@media screen and (max-width: 450px) {
    #phone_button {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    #home {
        flex-direction: column;
        height: auto;
        gap: 24px;
        padding-bottom: 40px;
    }

    #cta {
        align-items: center;
    }

    .title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .title span {
        display: block;
        font-size: 2.1rem;
    }

    .description {
        font-size: 0.95rem;
        margin-top: 12px;
    }

    .social-media-buttons {
        justify-content: center;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .phone-card {
        width: 100%;
        justify-content: center;
    }
}

