* {box-sizing:border-box;
 margin: 0;
 padding: 0; 
 border: 0;
}

/* Responsive grid container */
.magcrResponsiveGrid-container {
max-width: 1200px;
margin: 0 auto;
}

.magcrResponsiveGrid-container::after {
content: "";
top: 0;
left: 0;
position: fixed;
z-index: -1;
width: 100%;
height: 100%;
background-color:#FEFFFF;}

.maSsPatternBox {
content: "";
top: 0;
left: 0;
position: absolute;
display: block;
width: 100%;
height: 100%;
}

body, html {
height: 100%;
;
}

body.blurred > * {
-webkit-filter: blur(2px);
}

.magcrGrid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
grid-template-rows: repeat(auto-fill, minmax(112px, 1fr));
grid-gap: 6px;
grid-auto-flow: row dense;
}

.magcrImage {
position: relative;
grid-column: span 2;
grid-row: span 1;
}

.magcrImage img {
object-fit: cover;
width: 100%;
height: 100%;
}

.magcrImageVertical {
position: relative;
grid-row: span 1;
grid-column: span 1;
}

.magcrImageVertical img {
object-fit: cover;
width: 100%;
height: 100%;
}

.magcrImage4 {
position: relative;
grid-row: span 1;
grid-column: span 3;
}

.magcrImage4 img {
object-fit: cover;
width: 100%;
height: 100%;
}
.magcrImageVertical4 {
position: relative;
grid-row: span 2;
grid-column: span 3;
}

.magcrImageVertical4 img {
object-fit: cover;
width: 100%;
height: 100%;
}

/* Caption text */
.maSsText {
font-family: 'Catamaran', sans-serif;
font-weight:300;
color: #FEFFFF;
font-size: small;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: left;
}

.maSsRef {
position: absolute;
bottom: -30px;
right: 0;
}

.magcrRgDescription {
padding: 8px 12px;
font-family: 'Catamaran', sans-serif;
font-size:large;
font-weight:500;
color:#000;
text-align:left;
position: relative;
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
}

/***** BEGIN: light box *****/
.maGClightbox{
cursor: pointer;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(254.000000,255.000000,255.000000,0.5);
-webkit-filter: none !important;
z-index: 9997;
}

.maGClightbox img {
display: block;
position: absolute;
border: 4 px solid #000000;
box-shadow: 10px 10px 10px #000000;
}

.maGClightbox_loading {
background: url(loading.gif) center center no-repeat;
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
position: absolute;
top: 50%;
left: 50%;
}

.maGClightbox_caption {
display: none;
position: absolute;
left: 0;
bottom: 0;
width: 100%;
text-align: left;
z-index: 9998;
background: rgba(0, 0, 0, 0.7);
}

.maGClightbox_caption p {
margin: 0 auto;
max-width: 70%;
display: inline-block;
*display: inline;
zoom: 1;
padding: 10px;
font-weight:300;
color: #FEFFFF;
font-size: small;
line-height: 18px;
font-family: 'Catamaran', sans-serif;
}

.maGClightbox_button {
position: absolute;
z-index: 9999;
background: no-repeat center center;
width: 32px;
height: 32px;
opacity: 0.4;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}

.maGClightbox_button:hover,
.maGClightbox_button:focus {
opacity: 1;
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
}

.maGClightbox_close {
right: 10px;
top: 10px;
background-image: url("../MAgclightbox/close.png");
}

.maGClightbox_nav {
top: 50%;
margin-top: -16px;
}

.maGClightbox_nav_next {
right: 10px;
background-image: url("../MAgclightbox/next.png");
}

.maGClightbox_nav_prev {
left: 10px;
background-image: url("../MAgclightbox/previous.png");
}

