#wrap {
    background-image: url('../images/background.svg');
    background-repeat: no-repeat;
    background-position: 75% 0;
}

#breadcrumbs {
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-size: 14px;
}

#breadcrumbs li {
    display: flex;
    align-items: center;
}

#breadcrumbs li:not(:last-of-type):after {
    content: '/';
    margin: 0 20px;
    color: var(--color-greyblue);
}

#breadcrumbs li a {
    color: var(--color-greyblue);
}
#breadcrumbs li a span:after {
    border-color: var(--color-greyblue);
}
#breadcrumbs li:last-of-type a {
    color: var(--color-secondary);
}
#breadcrumbs li:last-of-type a span:after {
    border-color: var(--color-secondary);
}

.elipse-mask {
    position: relative;
}
.elipse-mask:after {
    content: '';
    display: block;
    padding-bottom: 93.33%
}

.elipse-mask {
    -webkit-mask-image: url('../images/elipse.svg');
    -webkit-mask-size: 100% 100%;
    mask-image: url('../images/elipse.svg');
    mask-size: 100% 100%;
}

.elipse-mask img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.image-pos-0 img { object-position: 0% 0%; }
.image-pos-25 img { object-position: 0% 25%; }
.image-pos-50 img { object-position: 0% 50%; }
.image-pos-75 img { object-position: 0% 75%; }
.image-pos-100 img { object-position: 0% 100%; }

.elipse-mask.reverse-h { transform: scaleX(-1); }
.elipse-mask.reverse-h img { transform: scaleX(-1); }
.elipse-mask.reverse-v { transform: scaleY(-1); }
.elipse-mask.reverse-v img { transform: scaleY(-1); }
.elipse-mask.reverse-h.reverse-v { transform: scale(-1, -1); }
.elipse-mask.reverse-h.reverse-v img { transform: scale(-1, -1); }

.split-align-date {
    display: flex;
}
.split-align-date > span:not(.txt):not(.sep) {
    min-width: 0.6em;
    text-align: center;
}

.split-align-date > span.txt {
    min-width: 5.8em;
}



.share {
    display: flex;
    padding: 5px;
    border-radius: 25px;
    background-color: var(--color-light);
    align-items: center;
    margin-left: 20px;
}

.share > span {
    margin: 0 30px;
}

.share ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.share ul li:not(:last-of-type){
    margin-right: 10px;
}

.share ul a {
    border-radius: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 0 solid var(--color-secondary);

    transition:
        all 0.3s ease-in-out,
        transform 0.3s cubic-bezier(0.5, 0.25, 0.5, 1.75)
    ;
    box-sizing: border-box;
    cursor: pointer;
}

.share ul a:hover {
    color: var(--color-white);
    transform: scale(1.25);
    border-width: 20px;
}

.error404 #content {
    margin: 0;
}

#error-container {
    position: relative;
    font-size: 4vw;
}


#error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    line-height: 1em;
}

#error-container img {
    animation-name: animate0;
    animation-duration: 13.27s;
    animation-iteration-count: infinite;

    margin: 0 20px;
    height: 6em;
    width: auto;
}

#error-container div {
    animation-name: animate4;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    color: var(--color-yellow);
    font-size: 8em;
}

#error-container div:last-of-type {
    animation-delay: -11.5s;
    animation-duration: 17s;
}

#error-container span {
    position: absolute;
    top: 0;
    left: calc(50% + 1em);
}

#error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

@keyframes animate4 {
    0% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}

@keyframes animate0 {
    0% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}


