.banner-contact {
    width: 100%;
    height: max-content;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    /* background-color: #ebf2ff; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.banner-contact .title {
    height: 100%;
    flex: 7;
}

.banner-contact .title h1 {
    font-size: 30px;
    margin: 0 0 30px 0;
    font-weight: bold;
}

.banner-contact .title h2 {
    font-size: 20px;
    margin: 0 0 30px 0;
    color: gray;
    line-height: 30px;
}

.banner-contact .title a {
    cursor: pointer;
    color: #2563eb;
}

.banner-contact .img {
    flex: 3;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.banner-contact .img img {
    height: 260px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.banner-contact .title .btns-banner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner-contact .title .btns-banner a {
    text-decoration: none;
    color: inherit;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

.banner-contact .title .btns-banner a:first-child {
    background-color: rgb(255, 76, 21);
}

.banner-contact .title .btns-banner a:first-child:hover {
    background-color: rgb(255, 35, 6);
}

.banner-contact .title .btns-banner a:last-child {
    background-color: rgb(17, 120, 255);
}

.banner-contact .title .btns-banner a:last-child:hover {
    background-color: rgb(17, 81, 255);
}

.banner-contact .title .btns-banner img {
    height: 30px;
    width: 30px;
    filter: brightness(0) invert(1);
}

.banner-contact .title .btns-banner span {
    font-size: 20px;
    color: white;
}



@media (min-width: 1100px) and (max-width: 1700px) {
    .banner-contact .title h1 {
        font-size: 20px;
    }

    .banner-contact .title h2 {
        font-size: 15px;
    }

    .banner-contact .title .btns-banner span {
        font-size: 13px;
    }
}

@media (min-width: 500px) and (max-width: 1100px) {
    .banner-contact .img {
        display: none;
    }

    .banner-contact .title h1 {
        font-size: 20px;
    }

    .banner-contact .title h2 {
        font-size: 15px;
    }

    .banner-contact .title .btns-banner span {
        font-size: 13px;
    }
}

@media (min-width: 0) and (max-width: 500px) {
    .banner-contact .img {
        display: none;
    }

    .banner-contact .title h1 {
        font-size: 20px;
    }

    .banner-contact .title h2 {
        font-size: 15px;
    }

    .banner-contact .title .btns-banner span {
        font-size: 13px;
    }
}
