.detailCont p.style.red {
    border-left: 4px solid #e24e3c;
    background-color: #e24e3c1f;
    margin-bottom: 25px;
    padding: 10px 20px;
    border-radius: 5px;
}
.detailCont p.style.blue {
    border-left: 4px solid #244061;
    background-color: #c6d9f075;
    margin-bottom: 25px;
    padding: 10px 20px;
    border-radius: 5px;
}

.detailCont sup,
.detailCont sub{
    position: relative;
    font-size: 75%;
    line-height: 0;
}
.detailCont sup{
    top: -.5em;
}
.detailCont sub{
    bottom: -.25em;
}

.detailCont kbd{
    background-color: inherit !important;
}
.detailCont blockquote{
    font-family: 'Noto Serif Italic',sans-serif;
    font-size: 15px;
    border: 1px solid #d2d3d4 !important;
    padding:50px 20px 20px !important;
    text-align: center;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 20px 40px;
    position: relative;
    font-style: italic;
    color: #333333;
}

.detailCont blockquote:before{
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    content: '“';
    font-size: 60px;
    color: #808589;
    font-family: serif;
    text-align: center;
}

.detailCont figure{
    margin-bottom: 20px;
    max-width: 620px;
}

.detailCont figure figcaption {
    text-align: center;
    padding-top: 5px;
    font-style: inherit;
    display: block;
    opacity: .6;
    font-size: 12px;
    max-width: 620px;
    margin: 0 auto;
}

html[lang="en"] .detailCont figure figcaption > em.source::before {
    content: "Photo: ";
}

.detailCont figure figcaption > em.source::before {
    content: "\0424\043E\0442\043E: ";
}

.detailCont figure figcaption > em.source {
    font-style: normal;
}

.detailCont .singlePhoto figure figcaption {
    opacity: 1;
    color: #808589;
    font-family: 'PT Sans Caption', sans-serif;
    text-align: right;
    padding-bottom: 10px;
    font-style: normal;
}

.detailCont article .singlePhoto img {
    padding-bottom: 0;
}

.detailCont .fotorama img.fotorama__img{
    margin: 0 !important;
}

/** Список **/
.detailCont ol,
.detailCont ul{
    margin: 10px 30px;
    list-style: none;
    padding-left: 0;
}
.detailCont ol>li,
.detailCont ul>li{
    color: #555;
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}
.detailCont ol>li:after,
.detailCont ul>li:before{
    position: absolute;
    display: block;
    content: '';
    left: 0;
    top: 8px;
    background: #e64c3b;
    width: 8px;
    height: 6px;
    -webkit-transform:skewX(-15deg);
    -ms-transform:skewX(-15deg);
    transform:skewX(-15deg);
}
.detailCont ol{
    counter-reset: li;
}
.detailCont ol>li{
    padding-left: 45px;
    line-height: 25px;
}
.detailCont ol>li:before {
    content: counter(li);
    counter-increment: li;
    display: block;
    width: 30px;
    line-height: 22px;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    left: 0px;
    top: 2px;
    font-family: 'PT Sans Caption', sans-serif;
    font-weight: 700;
    z-index: 2;
    color: #273849;
}
.detailCont ol>li:after{
    width: 28px;
    height: 20px;
    border: 1px solid #e64c3b;
    top: 2px;
    z-index: 1;
    background-color: inherit;
}

/*
    Врезка
 */
.detailCont .centeredText {
    border-bottom: 1px solid #d2d3d4;
    border-top: 1px solid #d2d3d4;
    padding: 20px 30px;
    font-family: 'Noto Serif', sans-serif;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*max-width: 100%;*/
}
.detailCont .centeredText img {
    float: left;
    margin: 0 15px 0 0 !important;
    width: initial;
}
.detailCont .centeredText figcaption {
    font: inherit;
    opacity: 1;
    text-align: left;
    padding-top: 0;
}

@media only screen and (max-width: 475px) {
    .detailCont .centeredText[data-redactor-type="vrezka-image"] {
        padding: 20px 15px;

    }
    .detailCont .centeredText[data-redactor-type="vrezka-image"] img{
        float: inherit;
        margin: 0 0 15px 0 !important;
    }

}


/**
 * ol.circular
 * Круглые цифры с эффектом наведения
 */
.detailCont ol.circular {
    width: 100%;
    margin: 0;
    counter-reset: cnt;
}
.detailCont ol.circular > li{
    list-style-type: none;
    padding: 10px 25px 15px;
    margin-bottom: 10px;
    -webkit-transition: box-shadow 0.5s linear;
    -moz-transition: box-shadow 0.5s linear;
    -o-transition: box-shadow 0.5s linear;
    transition: box-shadow 0.5s linear;
}

.detailCont ol.circular > li::before{
    content: counter(cnt, decimal);
    counter-increment: cnt;
    line-height: 75px;
    text-align: center;
    position: relative;
    font-family: 'PT Sans Caption', sans-serif;
    font-weight: 700;
    z-index: 2;
    color: #fff;
    margin: 0 auto 13px auto;
    font-size: 30px;
    display: block;
    background: #e14e3c;
    border-radius: 53%;
    height: 80px;
    width: 80px;
}
.detailCont ol.circular > li::after{
    content: none;
}

.detailCont ol.circular > li:hover{
    background: #fbfbfb;
    -webkit-box-shadow: 0px 0px 19px 0px rgba(117,117,117,1);
    -moz-box-shadow: 0px 0px 19px 0px rgba(117,117,117,1);
    box-shadow: 0px 0px 19px 0px rgba(117,117,117,1);
}
.detailCont ol.circular > li:hover::before{
    background: #0b456b;
}

/**
    Простая таблица
 */
.detailCont table{
    width:100%;
    font-size: 14px;
    text-align: left;
    border: 0;
    color: #2c3f4f;
    padding: 0;
}
.detailCont table td {
    border: 0;
    padding: 10px 15px;
    border-bottom: 2px solid #e6e7e8;
    border-left: 3px solid white;
    vertical-align: middle;
}
.detailCont table td p {
    padding: 0;
}
.detailCont table tr:nth-child(odd) td {
    background: linear-gradient(0deg, rgba(255,255,255,100%) 0%, rgba(245,245,245,1) 100%);
}
.detailCont table tr:first-child td{
    font-weight: bolder;
    color: #2c3e4e;
    border-bottom: 2px solid #e6e7e8;
    background: linear-gradient(0deg, rgba(255,255,255,100%) 0%, rgba(158,216,251,1) 100%);
}
.detailCont table tr:hover td {
    background-color: #f1f8fc;
}

/**
    Вставка таблицы
 */
.detailCont a.hiddenTableLink {
    position: relative;
    display: block;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    color: inherit !important;
    margin-bottom: 25px;
    border: none;
    text-decoration: none;
}
.detailCont a.hiddenTableLink .showTable{
    visibility: visible;
    opacity: 1;
    /*background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 90%);*/
    /*background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 90%);*/
    /*background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 90%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );*/

    /* IE9, iOS 3.2+ */
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjEwMCUiIHgyPSIwJSIgeTI9IjAlIj48c3RvcCBzdG9wLWNvbG9yPSIjMmMzZjUwIiBzdG9wLW9wYWNpdHk9IjEiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI3ZzZ2cpIiAvPjwvc3ZnPg==);
    background-image: -webkit-gradient(linear, 0% 100%, 0% 0%,color-stop(0, rgb(44, 63, 80)),color-stop(1, rgba(0, 0, 0, 0)));
    /* Android 2.3 */
    background-image: -webkit-repeating-linear-gradient(bottom,rgb(44, 63, 80) 0%,rgba(0, 0, 0, 0) 100%);
    /* IE10+ */
    background-image: repeating-linear-gradient(to top,rgb(44, 63, 80) 0%,rgba(0, 0, 0, 0) 100%);
    background-image: -ms-repeating-linear-gradient(bottom,rgb(44, 63, 80) 0%,rgba(0, 0, 0, 0) 100%);

    width: 100%;
    height: 100%;
    display: block;
    /*vertical-align: bottom;*/
    position: absolute;
    left: 0;
    bottom: 0;
}

/*.hiddenTableLink:hover .showTable{*/
/*visibility: visible;*/
/*opacity: 1;*/
/*-webkit-transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;*/
/*-moz-transition:  opacity 0.3s ease-in-out, visibility 0s linear 0s;*/
/*-o-transition:  opacity 0.3s ease-in-out, visibility 0s linear 0s;*/
/*transition:  opacity 0.3s ease-in-out, visibility 0s linear 0s;*/
/*}*/

.hiddenTableLink, .hiddenTableLink:link, .hiddenTableLink:visited{
    position: relative;
    display: block;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    color: inherit;
    margin-bottom: 25px;
    border: 1px solid #e8e9ea;
    cursor: pointer;
}

.hiddenTableLink .showTable{
    /*opacity: 0;*/
    /*visibility: hidden;*/
    /*-webkit-transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;*/
    /*-moz-transition:  opacity 0.3s ease-in-out, visibility 0s linear 0.3s;*/
    /*-o-transition:  opacity 0.3s ease-in-out, visibility 0s linear 0.3s;*/
    /*transition:  opacity 0.3s ease-in-out, visibility 0s linear 0.3s;*/
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.8)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 50%,rgba(0,0,0,0.8) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 50%,rgba(0,0,0,0.8) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 50%,rgba(0,0,0,0.8) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 50%,rgba(0,0,0,0.8) 100%);
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: bottom;
    position: absolute;
    left: 0;
    bottom: 0;
}

.hiddenTableLink .showTable span,
.hiddenTableLink .showTable > div {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #fff;
    font-family: 'Noto Serif', sans-serif;
    font-weight: normal;
    font-size: 24px;
    text-align: left;
}
.detailCont a.hiddenTableLink .showTable > span,
.detailCont a.hiddenTableLink .showTable > div {
    color: #fff;
    font-family: 'Noto Serif',serif;
    font-weight: 400;
    font-size: 24px;
    padding-right: 30px;
}
.detailCont a.hiddenTableLink .showTable img {
    margin: 0 0 10px 0;
}
.detailCont a.hiddenTableLink svg use.top-logo-text{fill: #ffffff;}
.detailCont a.hiddenTableLink svg use.top-logo-P{fill: #ffffff;}
.detailCont a.hiddenTableLink svg use.top-logo-B{fill: #ffffff;}

.detailCont a.hiddenTableLink table td,
.detailCont a.hiddenTableLink table th{
    /*border: 0;*/
}
.detailCont a.hiddenTableLink table td{
    /*border-bottom: 2px solid #e8e9ea;*/
    /*vertical-align: middle;*/
}
.detailCont a.hiddenTableLink table tr:first-child td{
    /*font-size: smaller;*/
    /*text-transform: uppercase;*/
    /*color: #2c3e4e;*/
    /*border-bottom: 4px solid #2c3f4f;*/
    /*background: #FFFFFF;*/
}
.detailCont a.hiddenTableLink table tr:last-child td{
    /*border-bottom: 4px solid #e04d3c;*/
}

.detailCont a.hiddenTableLink table td:first-child,
.detailCont a.hiddenTableLink table th{
    /*border-left: none;*/
}

/**
* Галерея
 */
.picScrollerWrap{
    position: relative;
    margin-bottom: 30px;
    clear: both;
    border: 1px solid #d2d3d4;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.picScrollerWrap .next, .picScrollerWrap .prev{
    display: block;
    position: absolute;
    top: 0px;
    height: 100%;
    background:rgba(44,62,80,0.6);
    width: 46px;
    z-index: 3;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0s linear 0s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0s linear 0s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0s linear 0s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}
.picScrollerWrap .next{
    right: 0;
}
.picScrollerWrap .prev{
    left: 0;
}
.picScrollerWrap .prev:hover, .picScrollerWrap .next:hover{
    width: 64px;
    background:rgba(44,62,80,0.7);
}
.picScrollerWrap .next.disabled, .picScrollerWrap .prev.disabled{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s, box-shadow 0.3s ease-in-out 0.2s, background 0.3s ease-in-out, width 0.3s ease-in-out;
}
.picScrollerWrap .next:after, .picScrollerWrap .prev:after{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -7px;
    height: 41px;
    width: 13px;
    content: '';
    background: url(../images/wharrow.png) 0 0 no-repeat;
    z-index: 3;
}
.picScrollerWrap .next:after{
    background-position: top right;
}
.picScrollerWrap .picScroller{
    height: auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.picScrollerWrap .picScroller li{
    float: left;
    width: 940px;
    height: 100%;
    text-align: center;
    padding: 0!important;
}
.picScrollerWrap .picScroller li:before{
    display: none !important;
}
.picScrollerWrap .picScroller li img{
    height: auto;
    width:auto;
    vertical-align: middle;
    display: inline-block;
    margin: -3px auto 0;
    max-height: 705px;
}
.picScrollerWrap .picInfo{
    border-top: 1px solid #d2d3d4;
    padding: 25px 40px;
}
.picScrollerWrap .picInfo .counter{
    color: #2c3e50;
    font-size: 26px;
    font-family: 'PT Serif Caption', sans-serif;
    float: left;
    line-height: 1;
}
.picScrollerWrap .picInfo .descr{
    margin-left: 120px;
    min-height: 28px;
}

.picScrollerWrap .picInfo .descr li{
    display: none;
    padding: 0 !important;
}
.picScrollerWrap .picInfo .descr li:before{
    display: none !important;
}
.picScrollerWrap .picInfo .author {
    font-size: 12px;
    text-align: right;
    color: #808589;
    padding-top: 30px;
    margin-right: -20px;
}

/* lazy load */
.blur-up {
    /*width: 100%;*/
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}

.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}

figure {
    margin: 10px auto 0;
    width: auto;
    position: relative;
    text-align: center;
}
figure img{
    width: 100%;
    height: auto;
}
figure.fullsize  img{
    cursor: pointer;
}
figure.fullsize  i {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    width: 50px;
    height: 50px;
    background: #2e3e50a8 url(../images/fullscreen-ico.png) 10px 10px no-repeat;
    border-radius: 5px;
}
figure.fullsize i:hover {
    background-color: #2e3e50;
}
.photo-fullscreen {
    background-color: #263748b5;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
}
.photo-fullscreen i.close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 50px;
    cursor: pointer;
}
.photo-fullscreen i.close > svg{
    fill: #fff;
}
.photo-fullscreen .wrap-img{
    display: flex;
    height: 100%;
    width: 100vw;
}
.photo-fullscreen .wrap-img img{
    width: 100%;
    object-fit: contain;
}

.photo-fullscreen .description{
    background: #3b56716e;
    padding: 20px 10vw 0;
    box-sizing: border-box;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    text-align: center;
}

/* Комменты экспертов */
article .quoteList > li{
    padding: 25px 0;
    border-top: 1px solid #d1d2d3;
}
article .quoteList>li:before{
    display: none;
}
article .quoteList>li:first-child{
    border: none;
}
article .quoteList>li dl{
    overflow: hidden;
}
article .quoteList>li dt{
    text-align: center;
    float: left;
    color: #808589;
    margin-right: -100%;
    width: 200px;
    font-size: 14px;
    line-height: 1.3;
}
article .quoteList>li dt.withPic{
    text-align: center;
}
article .quoteList>li dt .pic img{
    margin: 10px auto 5px !important;
    border-radius: 100%;
}
article .quoteList>li dt strong{
    color: #2c3e50;
    display: block;
    font-size: 17px;
    font-family: 'Noto Serif', sans-serif;
    font-weight: 700;
}
article .quoteList>li dd{
    margin-left: 225px;
    padding-left: 20px;
    border-left: 2px solid #e64c3b;
    position: relative;
    min-height: 80px;
}

article .quoteList>li dd:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width:8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    left: -9px;
    top: 31px;
    content: '';
    z-index: 10;
}
article .quoteList>li dd:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 10px 9px 0;
    border-color: transparent #e64c3b transparent transparent;
    position: absolute;
    left: -12px;
    top: 30px;
    content: '';
    z-index: 3;
}

/**
 * Карточки
 */
figure.cards {
    position: relative;
    display: flex;
    background: #fff;
    max-width: 750px;

    -webkit-transition: box-shadow 0.5s linear;
    -moz-transition: box-shadow 0.5s linear;
    -o-transition: box-shadow 0.5s linear;
    transition: box-shadow 0.5s linear;
}

figure.cards > img {
    margin: 0 !important;
}

figure.cards figcaption {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffffde;
    width: 68%;
    height: 100%;
    text-align: left;
    opacity: 1;
    display: block;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0;

    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}

figure.cards figcaption strong {
    font-family: 'Noto Sans bold', sans-serif;
    font-weight: bold;
}

figure.cards figcaption h2 {
    padding: 20px 25px;
}

figure.cards figcaption .count {
    border-left: 5px solid #e24e3c;
    padding: 5px 13px;
    background-color: #2c3f50;
    width: 20px;
    color: #fff;
}

figure.cards figcaption p {
    padding: 10px 25px;
}

figure.cards figcaption a.see-more {
    text-align: center;
    padding: 3px 7px 6px;
    display: block;
    font-size: 20px;
    background-color: #2c3f50;
    color: #fff;
    width: 140px;
    margin: 0 auto;
    border-bottom: 2px solid #e64c3b;
}

figure.cards:hover {
    -webkit-box-shadow: 0px 0px 19px 0px rgba(117, 117, 117, 1);
    -moz-box-shadow: 0px 0px 19px 0px rgba(117, 117, 117, 1);
    box-shadow: 0px 0px 19px 0px rgba(117, 117, 117, 1);
}
figure.cards > img:hover ~ figcaption{
    opacity: 0;
}

@media only screen and (max-width: 500px) {
    figure.cards {
        display: block;
        margin-bottom: 30px;

        -webkit-box-shadow: 0px 0px 19px 0px rgba(117, 117, 117, 1);
        -moz-box-shadow: 0px 0px 19px 0px rgba(117, 117, 117, 1);
        box-shadow: 0px 0px 19px 0px rgba(117, 117, 117, 1);
    }
    figure.cards h2 {
        font-family: "Noto Serif",serif;
        font-size: 20px;
    }
    figure.cards figcaption {
        width: 100%;
        display: block;
        position: inherit;
        padding-bottom: 15px;
        opacity: 1 !important;
    }
}
