/**
 * Header
 */
.logo-img {
    display: none;
}

@media all and (max-width: 850px) {
    .logo-img-mobile {
        display: block;
    }
}

@media all and (min-width: 851px) {
    .logo-img-desktop {
        display: block;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.logo-img-mobile {
        display: block;
    }
    .logo-img-desktop {
        display: none;
    }
}

.embed-container { 
	position: relative; 
	padding-bottom: 100%; 
	overflow: hidden; 
	max-width: 100%; 
	min-height: 100%; 
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	bottom: 0;
	width: 100%; 
	height: 100%; 
}
.wrapped{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}