﻿.homepage-banner {
    display: flex;
    background: #F9FAFB;
    gap: 40px;
}

.homepage-banner-title {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 14%;
    flex-wrap: wrap;
    justify-content: center;
}

.homepage-banner-content {
    color: #111827;
    font-size: 55px;
    font-weight: 700;
    line-height: 72px;
}

.homepage-banner-content-second {
    color: #0F8EB5;
    font-size: 55px;
    font-weight: 700;
    line-height: 72px;
}

.homepage-banner-content-des {
    color: #374151;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 20px;
}

.homepage-banner img {
    height: 550px;
    width: 80%;
    object-fit: cover;
}
.homepage-banner-button, .homepage-banner-button:hover {
    text-decoration: none;
}

@media (max-width: 600px) {
    .homepage-banner {
        flex-direction: column;
        width: 100%;
    }

        .homepage-banner img {
            width: 100%;
        }

    .homepage-banner-title {
        padding: 0px;
        align-items: center;
    }
    .homepage-banner-content-second {
        text-align: center;
    }
}

@media (min-width: 601px) and (max-width: 991px) {
    .homepage-banner {
        flex-direction: column-reverse;
    }

        .homepage-banner img {
            width: 100%;
        }

    .homepage-banner-title {
        padding: 0px;
        align-items: center;
        margin-bottom: 16px;
    }

    .homepage-banner-content-second {
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1260px) {
    .homepage-banner {
        flex-direction: column-reverse;
        gap: 16px;
    }

        .homepage-banner img {
            width: 100%;
        }

    .homepage-banner-title {
        margin-bottom: 16px;
        align-items: center;
        padding: 0px;
    }
}
