/*.wpzoom-blocks_portfolio-block {margin-top: 0;}

@media screen and (max-width: 800px) {
	.hero {
		font-size: 50px !important;
	}
	
}


@media screen and (max-width: 500px) {
	.hero {
		font-size: 30px !important;
	}
	

/*Stretch row width beyond Default Container Width set by theme, desktop only */
/* Center the row container on desktops and prevent JS overrides */
@media (min-width: 992px) {
    
    .wide-desktop-text {
        max-width: 80% !important;
        width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: 0 !important;
        float: none !important;
        display: block !important;
    }

    /* Force the inner column engine to stay in a horizontal row layout */
    .wide-desktop-text > .vc_row, 
    .wide-desktop-text .wpb_row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        left: 0 !important;
    }

    /* Ensure both columns split the space evenly (50% each) side-by-side */
    .wide-desktop-text .wpb_column.vc_col-sm-6 {
        width: 50% !important;
        float: left !important;
    }
}
/* Optimise page loading by disabling some fonts as recommended by WP */
/* Font Awesome loaded by WPBakery */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: swap;
}

/* Montserrat uploaded by WPBakery */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
}

/* Libre Baskerville uploaded by WPBakery */
@font-face {
  font-family: 'Libre Baskerville';
  font-display: swap;
}

/* Hover over image zoom effect */
/* Container to keep the zoomed image from spilling over */
.hover-zoom-img {
    overflow: hidden;
    display: block;
}

/* Smooth transition for the image */
.hover-zoom-img img {
    transition: transform 0.4s ease-in-out;
    width: 100%; /* Ensures the image fills its container */
    height: auto;
}

/* The zoom effect triggered on hover */
.hover-zoom-img:hover img {
    transform: scale(1.05); /* Scales the image by 5% */
}