/*#region drm-gallery*/

@keyframes opacityAnim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.drm-gallery {
    text-align: center;
}

.drm-gallery-item {
    position: relative;
    display: inline-block;
    margin: 9px;
    background-color: white;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 15px 5px rgba(232, 232, 232, 1);
    -moz-box-shadow: 0 10px 15px 5px rgba(232, 232, 232, 1);
    box-shadow: 0 10px 15px 5px rgba(232, 232, 232, 1);
    overflow: hidden;
    width: 240px;
    height: 215px;
    transform: scale(1);
    transition: transform 0.1s ease-out, opacity 0.25s ease-in-out;
    /*opacity:0;*/
    top: 0;
    animation: 0.5s ease-in 0s 1 opacityAnim;
}

.drm-gallery-item:hover {
    transform: scale(1.05);
}

.drm-gallery-item:hover > div > h4 > a {
    color: var(--orangered-bg-page);
}

.drm-gallery-caption {
    height: 136px;
    overflow: hidden;
}

.drm-galley-title {
    font-family: Montserrat;
    color: #10375e !important;
    margin: 25px 0 10px;
    font-style: normal;
    font-size: 1em !important;
    text-align: center;
    width: 100%;
    line-height: 1;
    font-weight: 450;
    display: inline-block;
}

.drm-galley-title a {
    color: #10375e !important;
}

.drm-gallery-filter {
    text-align: center;
}

.drm-gallery-filter-item {
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    font-family: Roboto, sans-serif;
    color: #34343c;
    background: transparent;
    text-transform: inherit;
    padding: 5px 10px;
    margin: 0 0 0;
    transition: all 0.5s;
    text-align: center;
}

.drm-gallery-filter-item-active {
    color: var(--orangered-bg-page);
    text-decoration: underline;
}

.drm-gallery-filter-item:hover {
    cursor: pointer;
    color: var(--orangered-bg-page);
}

.drm-gallery-filter-counter {
    position: relative;
    width: 33px;
    height: 23px;
    background-color: var(--orangered-bg-page);
    left: 0;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease-out;
    top: -22px;
    color: white;
    text-decoration: none !important;
    margin-right: auto;
    margin-left: auto;
}

.drm-gallery-filter-counter:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 22px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--orangered-bg-page);
    clear: both;
}

.drm-gallery-filter-counter:hover {
    text-decoration: none !important;
}

.drm-gallery-filter-item:hover > div {
    opacity: 1;
    top: -52px;
}

.drm-galley-title-heading {
    padding: 0 5px;
}

.news-v10 {
    height: 100%;
}

.news-v10 a {
    display: block;
}

#sec1,
#sec2,
#sec3,
#sec4,
#sec5 {
    padding-top: 20px;
    padding-bottom: 20px;
}


/*#endregion*/