/* Border Image */
.img-border-container {
    position: relative;
}

.img-border-container span {
    border: solid 2px #3778C1;
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
}

.img-border-container span.img-border-full-left {
    height: calc(100% + 3rem);
    left: 1.5rem;
    top: -1.5rem;
}

.img-border-container span.img-border-full-right {
    height: calc(100% + 3rem);
    right: 1.5rem;
    top: -1.5rem;
}

.img-border-container span.img-border-top-right {
    top: 1.5rem;
    right: 1.5rem;
}

.img-border-container span.img-border-top-left {
    top: 1.5rem;
    left: 1.5rem;
}

.img-border-container span.img-border-bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
}

.img-border-container span.img-border-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
}

.img-border-container span.img-border-back {
    z-index: -1;
}

@media screen and (max-width: 767px ) {
    .img-border-container {
        width: 90%;
    }
}

/* Image Hover*/
.img-hover-container {
    position: relative;
    display: flex;
    max-height: 450px;
    overflow: hidden;
}

.img-hover-container h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 50px);
    text-align: center;
    margin: 0;

    background-image: url(/wp-content/uploads/2022/10/Vector-Smart-Object-copy-3.png);
    background-position: 50% 55%;
    background-repeat: no-repeat;
    background-size: 65% auto;
    padding: 27px 0;
}

.img-hover-container a {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: rgba(0,0,0,0.75);
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0 1rem;
    text-align: center;

    position: absolute;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.img-hover-container:hover a {
    transform: translateY(0);
}

.img-hover-container img {
    object-fit: cover;
    width: 100%;
}

/* hero banner */
.hero-banner-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 550px;
    margin-bottom: 2rem;
}

.hero-banner-container h1 {
    text-align: center;
    color: #fff;
    padding: 3rem 1rem;
	margin: 0 1rem;
	max-width: 650px;
	font-family: Belleza,sans-serif;
    background-image: url(/wp-content/uploads/2022/10/Vector-Smart-Object-copy-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.elementor .hero-banner-container img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hero-banner-img-mobile {
    display: none;
}

@media screen and (max-width: 767px ) {
    .hero-banner-img-mobile {
        display: block;
    }
    .hero-banner-img {
        display: none;
    }
}