.d-f {
    display: flex;
}

.f-d-r{
    flex-direction: row;
}

.f-d-c{
    flex-direction: column;
}

.f-w-w{
    flex-wrap: wrap;
}

.f-w-n-w{
    flex-wrap: nowrap;
}


.j-c-space-around{
    justify-content: space-around;
}


.breadcrumb-icon-arrow{
    margin-left: 15px;
    margin-right: 15px;
}

.align-item-f-s{
    align-items: flex-start;
}

.align-item-c{
    align-items: center;
}


.wrapper {
    display: flex;
    flex-flow: row wrap;
    font-weight: bold;
}

.wrapper > * {
    /*padding: 10px;*/
    flex: 1 100%;
}




/*VIDEO EMBED*/
.videoEmbed {
    position: relative;
    padding-top: 25px;
    padding-bottom: 67.5%;
    height: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.videoEmbed.widescreen { padding-bottom: 57.25%; }
.videoEmbed.vimeo { padding-top: 0; }

.videoEmbed iframe,
.videoEmbed object,
.videoEmbed embed {

}

/* Medium screens */
@media all and (max-width: 600px) {
    .videoEmbed iframe,
    .videoEmbed object,
    .videoEmbed embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}


@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
    .videoEmbed { padding-top: 0; }
}