/* .single .header {
    position: relative !important;
    background: linear-gradient(270deg, #02bff5, #795eab, #f25836, #ffca02, #6ec03a);
    background-size: 1000% 1000%;
    -webkit-animation: gradient-animation 30s ease infinite;
    -moz-animation: gradient-animation 30s ease infinite;
    animation: gradient-animation 30s ease infinite;
    transition: 0.4s;
}

.single-news .header {
    background-color: var(--header-bg-color, #4caf50)!important;
    background: none;
    background-size: inherit;
    -webkit-animation: none;
    -moz-animation: none;
    transition: 0.4s;
}

.single-news .header__wrapper {
    padding-bottom: 1.5rem;
}

.single .breadcrumb {
    background-color: rgba(255, 255, 255, 0.1) !important;
    mix-blend-mode: overlay;
    webkit-mix-blend-mode: overlay;
}

.single-news .breadcrumb {
    display: none
}

@-webkit-keyframes gradient-animation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes gradient-animation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}


.single .member__card {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    background-color: #fff;
    border: 1px solid #4d4d4d;
}

.single .member__card::before {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 41px;
    height: 41px;
    background-image: linear-gradient(45deg, #4d4d4d 50%, #fff 50%, #fff 100%);
    content: '';
}


@media (min-width: 1280px) {
    .single .member__card:before {
        width: 64px;
        height: 64px;
    }
}

@media (min-width: 1024px) {
    .single .member__card:before {
        width: 53px;
        height: 53px;
    }
}

.single .member__card .member__photo img {
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.single .member__photo {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: url('../img/pattern/Kander.svg'), #f5f5f5;
    background-attachment: fixed;
    background-size: contain;
    padding: 30px 30px 30px 30px;
}

.single .member__card h4 {
    color: #4d4d4d;
    font-family: MazzardH, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.625rem;
    margin: 0;
}

.single .member__card h6 {
    color: #585858;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 30px;
}

.single .member__card p {
    color: #585858;
    font-size: 1.125rem;
    line-height: 30px;
}

.single .member__card .member__content {
    display: flex;
    flex-flow: wrap column;
    justify-content: center;
    padding: 48px 64px 48px 48px;
}

.single .member__card .member__content ul {
    font-size: 1.125rem;
    margin-top: 30px;
}

.single .member__card .member__biography {
    margin-top: 30px;
}

.single .member__card .member__biography h4 {
    color: #4d4d4d;
    font-size: 1.25rem
} */