.fullwidth {
    display: flexbox;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.halfwidth {
    display: inline-block;
    z-index: 1;
    margin-right: 5px;
    width: 48%;
    height: auto;
    border-radius: 10px;
}

.thirdwidth {
    display: inline-block;
    z-index: 1;
    margin-right: 5px;
    width: 30%;
    height: auto;
    border-radius: 10px;
}

.inline {
    display: inline-block;
    z-index: 1;
    margin-right: 5px;
    width: auto;
    height: 180px;
    border-radius: 10px;
}


img.zoom {
    transition: transform 0.5s ease;
}

img.zoom:hover {
    transform: scale(1.4);
    box-shadow: 0px 0px 30px rgba(40, 35, 103, 0.932);

}


.iframe-container {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px; /* Space below iframe */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}