.home-hero {
    padding: 110px 0 110px 0;
    position: relative;
}

.home-hero::before,
.home-hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}

.home-hero::before {
    opacity: 0.9;
    background-color: var(--blue);
}

.home-hero::after {
    background-image: url('../../../library/images/pattern-1.svg');
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    width: 53%;
    left: auto;
}

.home-hero h1,
.home-hero p {
    color: var(--white);
}

.home-hero h1 {
    max-width: 663px;
}

.home-hero h1 span {
    color: var(--yellow);
}

.home-hero p {
    max-width: 577px;
    margin: 24px 0 28px 0;
}

.home-hero .col-md-5 img {
    width: 100%;
}

.home-hero .btn-blue span {
    text-transform: none;
}

@media only screen and (max-width: 1400px) {
    .home-hero::after {
        width: 46%;
    }
}

@media only screen and (max-width: 992px) {

    .home-hero {
        padding: 60px 0 60px 0;
    }

    .home-hero::after {
        display: none;
    }

    .home-hero .col-md-7 {
        width: 100%;
    }

    .home-hero .col-md-5 {
        display: none;
    }

    .home-hero h1,
    .home-hero p {
        max-width: 100%;
    }

    .home-hero p {
        line-height: 30px;
        margin: 14px 0 24px 0;
    }

    .bh-images {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .bh-images .single-image {
        width: 33.33%;
    }
}

@media only screen and (max-width: 767px) {
    .home-hero {
        text-align: center;
    }

    .bh-wrap {
        padding: 22px 12px;
    }

    .bh-images {
        gap: 10px;
        row-gap: 32px;
    }

    .bh-images .single-image {
        width: 28.33%;
    }

}

@media only screen and (max-width: 500px) {
    .bh-images .single-image {
        width: 48%;
    }

    .bh-wrap {
        padding: 30px 12px;
    }
}