FREE RESOURCES

Language
English
Open drop down
/* Custom Hero Image Full Width / Full Height */ .custom-hero { width: 100vw; overflow: hidden; margin: 0; padding: 0; } .custom-hero img { width: 100vw; max-width: 100%; height: auto; display: block; object-fit: contain; /* shows entire image without cropping */ object-position: center center; } /* Optional: adjust mobile height */ @media screen and (max-width: 768px) { .custom-hero img { width: 100%; height: auto; } }