.ping {
    -webkit-animation: ping 1.2s ease-out infinite alternate both;
    animation: ping 1.2s ease-out infinite alternate both
}

.slide-in-right {
    -webkit-animation: slide-in-right 1.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
    animation: slide-in-right 1.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) both
}

.blink-1 {
    -webkit-animation: blink-1 5s ease-in infinite both;
    animation: blink-1 5s ease-in infinite both
}

@-webkit-keyframes ping {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.8
    }
    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0
    }
    100% {
        -webkit-transform: scale(2.2);
        transform: scale(2.2);
        opacity: 0
    }
}

@keyframes ping {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0.8
    }
    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0
    }
    100% {
        -webkit-transform: scale(2.2);
        transform: scale(2.2);
        opacity: 0
    }
}

@-webkit-keyframes blink-1 {
    0%, 50%, 100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    25%, 75% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 15px);
        transform: translate3d(0, 0, 15px)
    }
}

@keyframes blink-1 {
    0%, 50%, 100% {
        opacity: 1;
        bottom: 45px
    }
    25%, 75% {
        opacity: 0;
        bottom: 0
    }
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@media only screen and (min-width: 1024px) {
    main.posts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative
    }

    section.category {
        width: 75%;
        background-color: #fff;
        padding: 10px;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        border-radius: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 10px
    }
}

@media only screen and (min-width: 1024px) and (max-width: 720px) {
    section.category {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media only screen and (min-width: 1024px) {
    section.category > h1.title {
        font-size: 1.2rem;
        max-height: 60px;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .category__posts {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 10px
    }

    .category__posts ul {
        width: 100%;
        height: 100%;
    }

    .category__item {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        max-height: 330px
    }

    .category__post {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: 100%;
        max-height: 330px;
        min-height: 180px;
        padding: .5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        gap: .5rem
    }

    .category__post > img, .category__post img.category__picture {
        max-width: 450px;
        max-height: 300px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        border-radius: 10px;
		
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.5));
    }

    .category__interaction {
        position: absolute;
        width: 40%;
        right: 30px;
        bottom: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .category__content-wrapper {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        max-height: 400px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        gap: .5rem
    }

    .category__content-wrapper h2, .category__content-wrapper h3 {
        margin: 0 !important
    }

    .category__content-wrapper h2 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0.4px 0.4px 1px #757575
    }

    .category__content-wrapper h3 {
        font-size: .75rem !important;
        color: #535353 !important;
        text-shadow: 0.4px 0.4px 1px #171717
    }
}

@media only screen and (max-width: 1023px) {
    section.category {
        width: 100%;
        height: auto;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        background-color: #ececec;
        gap: 10px
    }

    section.category > h1.title {
        font-size: 1.5rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-top: 10px;
        background-color: #fff;
        width: 100%
    }

    .category__posts {
        width: 100%;
        height: auto;
        margin-top: 5px
    }

    .category__posts ul {
        row-gap: 20px;
        background-color: #ececec
    }

    .category__item {
        width: 100%;
        background-color: #fff;
    }
}

@media only screen and (max-width: 1023px) {
    .category__post {
        width: 98%;
        height: auto;
        max-height: 650px;
        overflow: hidden;
        margin: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .category__content-wrapper {
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: .2rem;
        padding-top: 0;
        padding-bottom: 1rem;
        padding-left: .5rem;
        padding-right: .5rem
    }

    .category__content-wrapper h2 {
        font-size: 1.4rem !important;
        line-height: 1.15;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .category__content-wrapper h3 {
        color: gray !important;
        width: 100% !important;
        text-shadow: 0.3px 0.3px 0.3px #969696;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .category__interaction {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-left: 20px;
        padding-right: 50px
    }
}

@media (max-width: 1023px) {
    .footer {
        width: 100%;
        height: auto;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 2rem
    }
}

@media screen and (max-width: 1023px) and (max-width: 720px) {
    .footer {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (max-width: 1023px) {
    .footer__first {
        width: 100%;
        height: auto;
        background-color: #fff;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad
    }
}

@media screen and (max-width: 1023px) and (max-width: 720px) {
    .footer__first {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (max-width: 1023px) {
    .footer__map {
        height: 360px;
        margin: auto;
        width: 95%
    }

    .footer__map iframe {
        width: 100%;
        height: 300px;
        border: 0
    }

    .footer__maps {
        height: 360px
    }

    .footer__address {
        width: 100%;
        height: auto;
        padding: 0 0 1rem 0
    }

    .footer__address address {
        padding: 1rem 0 1rem 0
    }

    .footer__address ul {
        row-gap: 2rem
    }

    .footer__second {
        width: 100%;
        height: auto;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        row-gap: 1rem;
        background-color: #fff
    }
}

@media screen and (max-width: 1023px) and (max-width: 720px) {
    .footer__second {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (max-width: 1023px) {
    .footer__second h1 {
        color: white
    }

    .footer__rights {
        color: #d8d8d8;
        font-size: 1.4rem
    }

    .footer__useful-links {
        background-color: #fff
    }

    .footer__nav {
        width: 100%;
        height: auto;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        row-gap: 2rem
    }

    .footer__nav li {
        line-height: 3rem
    }

    .footer__nav a {
        font-size: 2rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.76);
        text-shadow: 1px 0.8px 1px #000
    }

    .footer__item {
        width: 95%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        row-gap: .5rem
    }

    .footer__caption, .footer__subcaption {
        font-style: normal
    }
}

@media only screen and (min-width: 1024px) {
    .footer h1 {
        margin-bottom: 1rem !important
    }

    .footer__first {
        height: 300px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        background-color: #fff;
        gap: 10px;
        border-radius: 12px
    }
}

@media only screen and (min-width: 1024px) and (max-width: 720px) {
    .footer__first {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media only screen and (min-width: 1024px) {
    .footer__maps {
        width: 45%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        height: 100%
    }

    .footer__map {
        height: 90%
    }

    .footer__map iframe {
        width: 400px;
        height: 220px
    }

    .footer__address {
        width: 55%
    }

    .footer address ul {
        height: 90%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        margin: auto;
        gap: 40px
    }

    .footer address ul h2, .footer address ul h3 {
        font-style: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer address ul h2 {
        font-weight: 500
    }

    .footer__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        gap: 5px
    }

    .footer__second {
        width: 100%;
        height: 400px;
        background-color: #fff;
        border-radius: 12px;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        margin-bottom: 25px;
        border: none
    }
}

@media only screen and (min-width: 1024px) and (max-width: 720px) {
    .footer__second {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media only screen and (min-width: 1024px) {
    .footer__nav {
        height: 70%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .footer__nav ul {
        min-height: 75%;
        max-height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 1rem;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .footer__link {
        color: #333030;
        font-weight: 300;
        font-size: 1.1rem
    }

    .footer__useful-links {
        width: 100%;
        height: 100%
    }

    .footer__rights {
        width: 98%;
        height: 13%;
        color: #444;
        font-size: .8rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        margin-right: 10px;
        margin-left: auto;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media (max-width: 1023px) {
    .floating-nav {
        display: none
    }

    header.short-header {
        display: none
    }

    .header--large {
        height: 100vh;
        width: 100%;
        background-color: white;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 1.2rem;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad
    }
}

@media screen and (max-width: 1023px) and (max-width: 720px) {
    .header--large {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (max-width: 1023px) {
    .header__logo-wrapper {
        width: 100%;
        height: 440px;
        padding: 1rem 0 0 0;
        z-index: 100;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    .header__logo-wrapper a img {
        position: relative;
        height: 420px;
        width: 300px;
        margin: auto
    }
}

@media (max-width: 1023px) and (min-width: 720px) {
    .header__logo {
        width: 320px;
        height: 420px
    }
}

@media (max-width: 1023px) {
    .header__arrow--down {
        border-radius: 100%;
        background-color: transparent;
        height: 85px;
        width: 85px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        bottom: 20px
    }

    .header__arrow--down svg {
        height: 65px;
        position: absolute;
        fill: #000
    }
}

@media (min-width: 1024px) {
    .header--large {
        height: 100vh;
        width: 100%;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        margin: auto;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px
    }
}

@media screen and (min-width: 1024px) and (max-width: 720px) {
    .header--large {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (min-width: 1024px) {
    .header__logo-wrapper {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding-bottom: 35px
    }

    .header__logo-wrapper a {
        width: 300px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        margin: auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header__logo-wrapper a img {
        width: 350px;
        height: auto
    }

    .header__info {
        width: 100%;
        height: 25%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    .header__search {
        margin-bottom: 10px;
        height: 40px !important
    }

    .short-header {
        width: 98%;
        height: auto;
        max-height: 120px;
        margin-top: 10px;
        border-radius: 12px;
        background-color: #fff;
        position: relative;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 45% 10% 45%;
        grid-template-columns:45% 10% 45%
    }
}

@media screen and (min-width: 1024px) and (max-width: 720px) {
    .short-header {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (min-width: 1024px) {
    .short-header section {
        height: 120px
    }

    .short-header__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        height: 100%
    }

    .short-header__info h1, .short-header__info h3 {
        margin: 0;
        width: 100%;
        text-align: right !important;
        font-size: 1.1rem
    }

    .short-header__info h3 {
        font-size: 1rem !important
    }

    .short-header__info h1 {
        margin: .6rem 0 .3rem 0 !important
    }

    .short-header__logo-wrapper {
        height: 100%;
        position: relative
    }

    .short-header__logo-wrapper a {
        width: 80px;
        height: 95%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        margin: auto
    }

    .short-header__logo-wrapper a img {
        width: 80px;
        height: 95%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: auto
    }

    .short-header__other {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .short-header__other .search.container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .short-header__nav {
        width: 100%;
        height: auto;
        max-height: 45%;
        overflow: hidden
    }

    .short-header__nav ul {
        width: 98%;
        height: auto;
        max-height: 100%;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: .1rem;
        gap: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2px
    }

    .short-header__nav ul li {
        width: auto
    }

    .short-header__nav ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        color: #af0707;
        -webkit-transition: text-shadow linear 150ms;
        -o-transition: text-shadow linear 150ms;
        transition: text-shadow linear 150ms;
        margin-left: auto;
        margin-right: auto
    }

    .short-header__nav ul li a:hover {
        text-shadow: 0.4px 0.3px 0.4px #af0707
    }
}

[class*=container] {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

textarea {
    resize: none
}

.--hidden {
    display: none
}

[class*=modal] {
    position: fixed;
    z-index: 2000;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    visibility: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    background: #fff;
    border: 1px solid #dcdcdc
}

[class*=modal].--visible {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.backdrop {
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility: hidden;
    background-color: transparent
}

.backdrop.--visible {
    background-color: rgba(0, 0, 0, 0.183);
    visibility: visible
}

a {
    text-decoration: none;
    color: black
}

@media only screen and (min-width: 1024px) {
    .fixed {
        position: fixed;
        overflow-y: hidden
    }
}

html {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-align: initial !important;
    -ms-flex-align: initial !important;
    align-items: initial !important;
    background-color: #ececec;
    height: auto
}

body {
    width: 100%;
    top: 0 !important;
    min-height: auto !important
}

.skiptranslate {
    display: none
}

@media (max-width: 1023px) {
    div.alert {
        position: fixed !important;
        z-index: 1000;
        left: 0;
        bottom: 0;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        border: 1px solid #b0b0b0;
        padding: 1rem
    }

    div.alert h1 {
        font-size: 1.3rem
    }

    [class*=modal] {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: 80%;
        border-radius: 12px;
        padding: 20px;
    }
}

@media (max-width: 1023px) {
    [class*=modal] > h1 {
        font-size: 2rem !important;
        padding-bottom: 1rem
    }

    [class*=modal].schedule {
        width: 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        row-gap: 2rem
    }

    [class*=modal].schedule div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        row-gap: .5rem
    }

    [class*=modal].schedule div h2 {
        width: 100%;
        color: blue;
        font-size: 2rem
    }

    [class*=modal].schedule div h3 {
        width: 100%;
        color: #12127b;
        font-size: 1.7rem
    }

    [class*=modal].letter {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        max-height: 90%;
        width: 80%
    }

    .letter__form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        row-gap: 1.3rem
    }

    .letter__userdata {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 1rem;
        padding-bottom: .5rem
    }

    .letter__userdata label {
        font-size: 1.35rem
    }

    .letter__userdata input {
        width: 190px;
        height: 30px;
        color: gray;
        border-radius: 25px;
        font-size: 1.3rem;
        padding-left: .5rem;
        outline: none;
        border: #c1c1c1 1px solid;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }

    .letter__userdata input:focus {
        -webkit-box-shadow: inset 0.5px 0.5px 3px #585858;
        box-shadow: inset 0.5px 0.5px 3px #585858
    }

    .letter__fields, .letter__content {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 100%;
        gap: .4rem
    }

    .letter__fields textarea, .letter__content textarea {
        width: 100%;
        height: 5rem;
        background-color: #ececec;
        font-family: "Inter", sans-serif;
        border-radius: 12px;
        border: 1px solid rgba(191, 191, 191, 0.489);
        -webkit-transition: all .5s ease-in;
        -o-transition: all .5s ease-in;
        transition: all .5s ease-in;
        padding: .3rem
    }

    .letter__fields textarea:active, .letter__fields textarea:focus, .letter__content textarea:active, .letter__content textarea:focus {
        outline: none;
        -webkit-box-shadow: inset 1px 1px 8px #bababa;
        box-shadow: inset 1px 1px 8px #bababa
    }

    [data-modal="search"] input {
        width: 100%;
        height: 30px;
        color: gray;
        border-radius: 25px;
        font-size: 1.3rem;
        padding-left: .5rem;
        outline: none;
        border: #c1c1c1 1px solid;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }

    [data-modal="search"] input:focus {
        -webkit-box-shadow: inset 0.5px 0.5px 3px #585858;
        box-shadow: inset 0.5px 0.5px 3px #585858
    }

    button:disabled, button[disabled], button[disabled=disabled], button[disabled]:active {
        background-color: gray !important
    }

    .button, .button--sm, .button--md {
        width: 160px;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: none;
        border-radius: 12px;
        background-color: #c60000;
        color: white;
        -webkit-box-shadow: 4px 4px 4px #585858;
        box-shadow: 4px 4px 4px #585858;
        -webkit-transition: all 140ms linear;
        -o-transition: all 140ms linear;
        transition: all 140ms linear
    }

    .button:active, .button--sm:active, .button--md:active {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    .button:focus, .button--sm:focus, .button--md:focus {
        outline: none
    }

    .button--sm {
        width: 130px;
        height: 50px;
        gap: 0.8rem;
        font-size: 1.4rem
    }

    .button--sm > img {
        height: 30px
    }
}

@media (max-width: 1023px) and (min-width: 720px) {
    .button--sm {
        font-size: .9rem
    }
}

@media (max-width: 1023px) {
    .button--md {
        width: 160px;
        height: 60px;
        margin: auto;
        gap: 0.8rem;
        font-size: 1.45rem
    }

    .button--md > img {
        height: 35px
    }
}

@media (max-width: 1023px) and (min-width: 720px) {
    .button--md {
        font-size: 1rem
    }
}

@media (max-width: 1023px) and (max-width: 380px) {
    .button--md {
        width: 140px;
        height: 50px;
        font-size: 1.4rem
    }

    .button--md > img {
        height: 30px
    }
}

@media (max-width: 1023px) {
    .floating-nav {
        display: none
    }

    [class*="floating-button"] {
        height: 65px;
        width: 65px;
        border-radius: 100%;
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        background-color: #000091;
        z-index: 999
    }

    [class*="floating-button"] svg {
        width: 55%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: auto;
        fill: #fff
    }

    .floating-button__menu {
        right: 15px;
        bottom: 15px;
        z-index: 1001
    }

    .floating-button__search {
        left: 15px;
        top: 15px;
        -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: -webkit-transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .floating-button__search.--hidden {
        -webkit-transform: translateX(-300%);
        -ms-transform: translateX(-300%);
        transform: translateX(-300%)
    }

    .floating-button__back {
        left: 15px;
        bottom: 15px;
        -webkit-transition: -webkit-transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: -webkit-transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .mobile-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 100%
    }

    main section {
        background-color: #fff
    }

    section.leftside {
        background-color: #ececec
    }

    body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 20px
    }

    main.main > section, footer > section {
        width: 100%;
        background-color: #fff;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad
    }
}

@media screen and (max-width: 1023px) and (max-width: 720px) {
    main.main > section, footer > section {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (max-width: 1023px) {
    main.main > section h1[class*="title"], footer > section h1[class*="title"] {
        font-size: 2.5rem;
        padding: 1rem 0 1rem 0
    }

    main.main {
        background-color: #ececec;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    main.main section:not(:first-child) {
        width: 100%;
        margin: 2rem 0 0 0;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad
    }
}

@media screen and (max-width: 1023px) and (max-width: 720px) {
    main.main section:not(:first-child) {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (max-width: 1023px) {
    #sidebar section, section.dual.section section {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none
    }

    img[class*="picture"] {
        width: 80%;
        max-height: 400px;
        margin: auto;
        -ms-interpolation-mode: nearest-neighbor;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-pixelated;
        image-rendering: pixelated;
        padding: 0 0 0.5rem 0
    }

    .header__search {
        display: none
    }
}

@media (min-width: 1024px) {
    [class*=modal] {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        min-width: 150px;
        border-radius: 12px;
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    [class*=modal] > h1 {
        font-size: 1.3rem !important;
        padding-bottom: 1rem
    }

    [class*=modal].schedule {
        width: 750px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        row-gap: 1rem
    }

    [class*=modal].schedule div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        row-gap: .2rem
    }

    [class*=modal].schedule div h2 {
        width: 100%;
        color: blue;
        font-size: 1rem
    }

    [class*=modal].schedule div h3 {
        width: 100%;
        color: #12127b;
        font-size: .75rem
    }

    [class*=modal].letter {
        max-height: 1000px;
        width: 1000px
    }

    .letter__form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        row-gap: 1.3rem
    }

    .letter__userdata {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: .5rem
    }

    .letter__userdata input {
        width: 190px;
        height: 30px;
        color: gray;
        border-radius: 25px;
        font-size: .7rem;
        padding-left: .5rem;
        outline: none;
        border: #c1c1c1 1px solid;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }

    .letter__userdata input:focus {
        -webkit-box-shadow: inset 0.5px 0.5px 3px #585858;
        box-shadow: inset 0.5px 0.5px 3px #585858
    }

    .letter__fields, .letter__content {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 100%;
        gap: .4rem
    }

    .letter__fields textarea, .letter__content textarea {
        width: 100%;
        border: none;
        background-color: #ececec;
        font-family: "Inter", sans-serif;
        border-radius: 12px;
        border: 1px solid rgba(191, 191, 191, 0.489);
        -webkit-transition: all .5s ease-in;
        -o-transition: all .5s ease-in;
        transition: all .5s ease-in;
        padding: .3rem
    }

    .letter__fields textarea:active, .letter__fields textarea:focus, .letter__content textarea:active, .letter__content textarea:focus {
        outline: none;
        -webkit-box-shadow: inset 1px 1px 8px #bababa;
        box-shadow: inset 1px 1px 8px #bababa
    }

    button:disabled, button[disabled], button[disabled=disabled], button[disabled]:active {
        background-color: gray !important
    }

    .floating-nav {
        width: auto;
        max-width: 1000px;
        background-color: #fff;
        border: 1px solid #dfdfdf;
        position: fixed;
        right: 5%;
        padding: .5rem;
        margin-top: .3rem;
        z-index: 10000
    }

    .floating-nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        background-color: #fff;
        z-index: 999;
        gap: 1rem
    }

    .floating-nav__list a {
        font-size: 1rem;
        font-weight: 400;
        color: gray;
        text-transform: capitalize;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }

    .floating-nav__list a:hover {
        color: #0000e9
    }

    section.leftside {
        width: 70%;
        height: auto;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    div.alert {
        position: fixed !important;
        z-index: 1000;
        left: 0;
        top: 5%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        border: 1px solid #b0b0b0;
        padding: 1rem
    }

    div.alert h1 {
        font-size: 1.1rem
    }

    .button, .button--sm, .button--md {
        width: 160px;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-family: "Inter", sans-serif;
        border: none;
        border-radius: 12px;
        background-color: #c60000;
        color: white;
        -webkit-box-shadow: 4px 4px 4px #585858;
        box-shadow: 4px 4px 4px #585858;
        -webkit-transition: all 140ms linear;
        -o-transition: all 140ms linear;
        transition: all 140ms linear;
        cursor: pointer
    }

    .button:active, .button--sm:active, .button--md:active {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    .button:focus, .button--sm:focus, .button--md:focus {
        outline: none
    }

    .button--sm {
        width: 130px;
        height: 50px;
        gap: 0.8rem;
        font-size: .7rem
    }

    .button--sm > img {
        height: 30px
    }
}

@media only screen and (min-width: 1024px) and (min-width: 720px) and (max-width: 1366px) {
    .button--sm {
        font-size: .8rem
    }
}

@media (min-width: 1024px) {
    .button--md {
        width: 165px;
        height: 60px;
        gap: 0.3rem;
        font-size: .75rem
    }

    .button--md > img {
        height: 35px
    }
}

@media (min-width: 1024px) and (max-width: 380px) {
    .button--md {
        width: 140px;
        height: 50px;
        font-size: 1.4rem
    }

    .button--md > img {
        height: 30px
    }
}

@media (min-width: 1024px) {
    body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 15px
    }

    .skiptranslate {
        display: none
    }

    .footer {
        width: 98%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 15px
    }

    footer.footer section:not(.footer__first section):not(.footer__second section) {
        width: 98%;
        position: relative;
        margin: auto;
        border-radius: 12px;
        background-color: #fff;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad
    }
}

@media screen and (min-width: 1024px) and (max-width: 720px) {
    footer.footer section:not(.footer__first section):not(.footer__second section) {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media (min-width: 1024px) {
    [class*=floating-button], .header__arrow--down {
        display: none
    }

    input[class=search] {
        width: 300px;
        height: 30px;
        border-radius: 25px;
        border: none;
        padding: .2rem;
        font-size: .75rem;
        color: rgba(0, 0, 0, 0.582);
        background-color: transparent
    }

    input[class=search]:focus {
        border: none;
        caret-color: rgba(78, 78, 78, 0.322);
        color: rgba(0, 0, 0, 0.582)
    }

    div[class~=search__decorator] {
        width: 340px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .8s;
        -o-transition-duration: .8s;
        transition-duration: .8s;
        -webkit-transition-timing-function: linear;
        -o-transition-timing-function: linear;
        transition-timing-function: linear;
        border-radius: 25px;
        border-style: solid;
        border-width: 1.1px;
        border-color: rgba(78, 78, 78, 0.322)
    }

    div[class~=search__decorator] > img[class=search__loupe] {
        height: 25px;
        color: rgba(24, 24, 24, 0.705);
        margin-left: 10px;
        margin-right: auto;
        margin-top: auto;
        margin-bottom: auto;
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    div[class~=search__decorator].--active {
        -webkit-box-shadow: inset 4px 4px 8px rgba(154, 147, 140, 0.5), 1px 1px 5px #fff;
        box-shadow: inset 4px 4px 8px rgba(154, 147, 140, 0.5), 1px 1px 5px #fff;
        -webkit-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .8s;
        -o-transition-duration: .8s;
        transition-duration: .8s;
        -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
        -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
        transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1)
    }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap");
@media only screen and (max-width: 1023px) {
    section.slider {
        display: none
    }

    .main {
        width: 100%;
        height: auto;
        padding-bottom: 1rem;
        min-height: 100px
    }

    [class$="council-heads"] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 1.2rem
    }

    .council-heads__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 1rem;
        margin: 0 0 1.2rem 0
    }

    .council-heads__info {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content
    }

    .council-heads__picture {
        width: 80%;
        max-height: 400px
    }

    .council-heads__interaction {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        -webkit-column-gap: 1.1rem;
        -moz-column-gap: 1.1rem;
        column-gap: 1.1rem
    }

    [class$="news"] {
        height: auto;
        overflow: hidden;
        padding: 0rem 0 1rem 0;
        row-gap: 35px
    }

    .news__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        height: auto;
        padding: 1rem 0 1rem 0
    }

    .news__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 5px
    }

    .news__subcaption {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: rgba(8, 8, 8, 0.418) !important;
        line-height: 1.2rem
    }

    .news__item {
        position: relative;
        height: auto
    }

    .news__item:not(:last-child)::after {
        content: "";
        width: 80%;
        height: 1.2px;
        background-color: rgba(0, 0, 0, 0.205);
        position: absolute;
        bottom: -20px;
        left: 10%
    }

    .news__interaction {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 1.5rem;
        width: 80%;
        height: 40px
    }

    section[class^=deputies].section {
        background-color: #fff;
        padding-bottom: 1rem
    }

    ul[class$="deputies"] {
        width: 90%;
        gap: 1rem;
        margin: auto
    }

    ul[class$="deputies"] > .deputies__item {
        width: 100%;
        height: 140px;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative
    }

    ul[class$="deputies"] > .deputies__item h2[class*="caption"] {
        font-size: 1.6rem;
        margin: 0
    }

    ul[class$="deputies"] > .deputies__item h3[class*="subcaption"] {
        font-size: 1rem;
        margin: 0
    }

    ul[class$="deputies"] > .deputies__item > .deputies__info {
        width: 80%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    ul[class$="deputies"] > .deputies__item > .deputies__photo {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 110px;
        -o-object-fit: contain;
        object-fit: contain;
        height: 140px;
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px
    }
}

@media only screen and (min-width: 1024px) {
    main {
        width: 98%;
        height: auto;
        z-index: 999;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        margin: auto;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
        gap: 20px
    }

    main section[class*=section]:not(#sidebar section,section.dual.section) {
        width: 100%;
        background-color: #fff;
        border-radius: 12px;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad
    }
}

@media only screen and (min-width: 1024px) and (max-width: 720px) {
    main section[class*=section]:not(#sidebar section,section.dual.section) {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media only screen and (min-width: 1024px) {
    main section[class*=section] h1[class*=title]:first-child {
        margin-bottom: 1rem
    }

    section[class='slider section'] {
        height: 500px !important;
        z-index: 10;
        position: relative
    }

    section[class='slider section'] [class='slider container'] {
        width: 100%;
        height: 100%
    }

    .splide div[class*=track] {
        height: 450px !important
    }

    .splide__list {
        height: 450px !important
    }

    .splide__caption {
        font-size: 1.2rem !important
    }

    .splide .splide__pagination__page.is-active {
        z-index: 300;
        background-color: gray
    }

    .splide__image-wrapper {
        position: relative;
        padding: 1% 0 0 5%
    }

    .splide__caption-wrapper {
        width: 600px;
        height: 320px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        margin: 0;
    }

    .splide__slide {
		display: flex;
		flex-flow: row nowrap;
        position: relative;
    }

    .splide__slide img {
        width: 100%;
		height: 100%;
    }

    div[class$=council-heads] {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .council-heads__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 400px;
        gap: 8px
    }

    .council-heads__item img[class*=picture] {
        width: 400px
    }

    .council-heads__item__info {
        width: 100%
    }

    .council-heads__item:first-child {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .council-heads__item:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .council-heads__item:nth-child(3) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .council-heads__interaction {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        width: 100%;
        margin-top: .5rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    section[class='council-heads section'] {
        height: 480px !important
    }

    section.dual.section {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        gap: 10px
    }

    .leftside {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        height: auto;
        -webkit-box-flex: 70%;
        -ms-flex: 70%;
        flex: 70%;
        gap: 20px
    }

    .leftside > section {
        padding-bottom: 20px
    }

    .news__interaction {
        position: absolute;
        width: 30%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        right: 15px;
        bottom: 0
    }

    .leftside section.news.section > .news {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 50px
    }

    .leftside section.news.section > .news li {
        width: 95%;
        height: auto;
        max-height: 300px;
        min-height: 180px;
        position: relative
    }

    .leftside section.news.section > .news li > .news__wrapper {
        min-height: inherit;
        max-height: inherit;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        width: 100%;
        height: 100%;
        padding: 5px
    }

    .leftside section.news.section > .news li > .news__wrapper > img {
        max-width: 100%;
        max-height: 280px;
        -o-object-fit: contain;
        object-fit: contain;
		filter: drop-shadow(2px 2px 15px rgba(0,0,0,0.5));
    }

    .leftside section.news.section > .news li > .news__wrapper h2[class*=caption] {
        color: black;
        font-size: .9rem;
        font-weight: 500;
        font-family: "Inter", sans-serif;
        position: relative;
        font-size: 1rem;
        font-weight: 400;
        text-align: center;
        margin: auto;
        width: 90%;
        margin: 0
    }

    .leftside section.news.section > .news li > .news__wrapper div.news__info {
        max-height: 230px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 8px;
        margin-top: 2.5%
    }

    .leftside section.news.section > .news li > .news__wrapper h3[class*=subcaption] {
        color: rgba(8, 8, 8, 0.653);
        line-height: .7rem;
        font-size: .6rem;
        max-height: 95px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        margin-left: auto;
        margin: 0
    }

    .deputies ul[class*=list].deputies {
        width: 95%;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 50% 50%;
        grid-template-columns:50% 50%;
        row-gap: 14px;
        margin: auto
    }

    .deputies__item {
        height: auto;
        max-height: 440px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative;
        gap: .5rem;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .deputies__item img {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 110px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .deputies__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: .2rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .deputies__info h2, .deputies__info h3 {
        margin: 0 !important;
        max-height: 3rem
    }
}

@media only screen and (max-width: 1023px) {
    main.post {
        width: 100%;
        height: 100%
    }

    article.post {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #fff
    }

    article.post > h1.title {
        font-size: 1.7rem;
        line-height: 1.15;
        text-shadow: 0.4px 0.4px 1.2px #292929
    }

    .post__info {
        height: 100%;
        width: 98%;
        position: relative;
        margin: auto
    }

    .post__info img, .post__info p img {
        max-width: 95%;
        max-height: 200px;
        -o-object-fit: contain;
        object-fit: contain;
        margin: auto;
        display: block
    }

    .post__info p {
        width: 100%;
        font-size: 1.5rem;
        text-anchor: middle;
        padding-bottom: 1rem;
        line-height: 1.35
    }

    .post__image {
        width: 100%;
        height: 300px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .post__image > img {
        max-width: 95%;
        max-height: 100%;
        margin: auto;
        display: block
    }
}

@media only screen and (min-width: 1024px) {
    main.post {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        position: relative
    }

    article.post {
        width: 75%;
        background-color: #fff;
        border-radius: 12px;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        overflow: hidden
    }
}

@media only screen and (min-width: 1024px) and (max-width: 720px) {
    article.post {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media only screen and (min-width: 1024px) {
    article.post > h1 {
        font-size: 1.2rem;
        padding-top: .5rem;
        padding-bottom: 1rem
    }

    .post {
        padding-bottom: 1.5rem
    }

    .post__info {
        width: 95%;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
        padding-right: 1rem
    }

    .post p {
        font-size: .9rem;
        width: auto;
        max-width: 100%;
        padding: .3rem;
        line-height: 1.35;
        color: #0a0a0a
    }

    .post p img {
        max-width: 75%;
        max-height: 600px;
        padding-bottom: 1rem;
        padding-right: .5rem
    }

    .post p:nth-child(odd) img {
        float: left;
        margin-left: 1rem
    }

    .post p:nth-child(even) img {
        float: right;
        margin-right: 1rem
    }

    .post__image {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: 450px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        float: left;
        margin-right: .5rem
    }

    .post__image img {
        max-width: 600px;
        max-height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline
}

input {
    outline: none
}

input:focus {
    border: 1px solid gray
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
    line-height: 1
}

:root {
    font-size: calc(1vh + 1vw);
    font-family: 'Roboto', sans-serif
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: ""
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

* {
    scrollbar-width: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

*::-webkit-scrollbar {
    display: none
}

@media screen and (max-width: 1023px) {
    #sidebar {
        width: 100%;
        height: 100vh;
        position: fixed;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        top: 0;
        z-index: 1000;
        overflow-y: scroll;
        background-color: #fff;
        -webkit-transition: -webkit-transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: -webkit-transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        -o-transition: transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition: transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1.4s cubic-bezier(0.785, 0.135, 0.15, 0.86)
    }

    #sidebar h1 {
        margin: 1rem 0 .5rem 0
    }

    #sidebar.--visible {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .sidebar__links {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: relative
    }

    .sidebar__links li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .sidebar__links li img {
        width: 100%
    }

    .sidebar__links li ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        position: relative;
        -webkit-transition: all 1s linear;
        -o-transition: all 1s linear;
        transition: all 1s linear;
        display: flex;
        top: 0
    }

    .sidebar__links li ul a {
        font-size: 1.4rem;
        font-weight: 400;
        color: gray
    }

    .sidebar__useful-links img {
        width: 90%
    }

    .sidebar__weather {
        width: 80% !important;
        height: auto;
        margin: auto !important
    }

    .sidebar__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 1rem
    }

    .sidebar__list > li {
        position: relative;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        text-align: center
    }

    .sidebar__list > li > a {
        font-weight: 500
    }
}

@media screen and (min-width: 1024px) {
    #sidebar {
        width: 25%;
        border: rgba(94, 94, 94, 0.253) 1px solid;
        -webkit-box-shadow: 2px 2px 15px #adadad;
        box-shadow: 2px 2px 15px #adadad;
        border-radius: 12px;
        background-color: white;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 10px
    }
}

@media screen and (min-width: 1024px) and (max-width: 720px) {
    #sidebar {
        -webkit-box-shadow: 1px 1px 2px #adadad;
        box-shadow: 1px 1px 2px #adadad
    }
}

@media screen and (min-width: 1024px) {
    .sidebar__links {
        width: 100%;
        height: auto
    }

    .sidebar__list {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: 15px
    }

    .sidebar__list > li {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: relative
    }

    .sidebar__list > li ul {
        background-color: #fff;
        border: 1px solid rgba(128, 128, 128, 0.49);
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        padding: .4rem;
        position: absolute !important;
        visibility: hidden;
        -webkit-transform: translate(-100%, -70%);
        -ms-transform: translate(-100%, -70%);
        transform: translate(-100%, -70%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        gap: .7rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content
    }

    .sidebar__list > li ul.--visible {
        visibility: visible
    }

    .sidebar__list > li:nth-child(even) > a {
        color: #ffff00;
        text-shadow: 1.4px 1px 0.2px rgba(0, 0, 0, 0.469)
    }

    .sidebar__list > li:nth-child(odd) a {
        color: #0037ff
    }

    .sidebar__arrow-down {
        position: absolute;
        width: 20px;
        right: 30px;
        top: 0
    }

    .sidebar__link {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        font-size: .95rem;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        text-align: left;
        color: #030303;
        font-weight: 400
    }

    .sidebar__link img {
        width: auto;
        max-height: 200px;
        max-width: 85%;
        margin-bottom: 10px
    }

    .sidebar__weather {
        width: 90%;
        margin-left: auto;
        margin-right: auto
    }

    .sidebar__useful-links {
        width: 90%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }
}

:root {
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale
}

@media (max-width: 1023px) {
    a {
        text-decoration: none;
        color: black;
        font-weight: 300;
        font-size: 2rem;
        padding: 0.5rem
    }

    h1[class*=title] {
        font-family: "Roboto", sans-serif;
        position: relative;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 400;
        color: #0037ff;
        margin: auto
    }
}

@media (max-width: 1023px) and (min-width: 1024px) {
    h1[class*=title] {
        font-size: 1.55rem
    }
}

@media (max-width: 1023px) {
    .header__info {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding-bottom: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    .header__info h1 {
        font-family: "Roboto", sans-serif;
        position: relative;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 400;
        color: #0037ff;
        margin: auto;
        margin: 0 0 1.5rem 0;
        width: 90%
    }
}

@media (max-width: 1023px) and (min-width: 1024px) {
    .header__info h1 {
        font-size: 1.55rem
    }
}

@media (max-width: 1023px) and (min-width: 720px) {
    .header__info h1 {
        font-size: 2rem
    }
}

@media (max-width: 1023px) {
    .header__info h3 {
        font-size: 1.45rem;
        font-weight: 400;
        color: #001666;
        text-align: center
    }
}

@media (max-width: 1023px) and (max-width: 380px) {
    .header__info h3 {
        font-size: 1.4rem
    }
}

@media (max-width: 1023px) and (min-width: 720px) {
    .header__info h3 {
        font-size: 1.2rem
    }
}

@media (max-width: 1023px) {
    h2[class*="caption"] {
        font-family: "Roboto", sans-serif;
        position: relative;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 400;
        color: #0037ff;
        margin: auto;
        font-size: 2rem;
        font-weight: 400
    }
}

@media (max-width: 1023px) and (min-width: 1024px) {
    h2[class*="caption"] {
        font-size: 1.55rem
    }
}

@media (max-width: 1023px) {
    h3[class*="subcaption"] {
        font-family: "Roboto", sans-serif;
        position: relative;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 400;
        color: #0037ff;
        margin: auto;
        width: 80%;
        font-size: 1.1rem;
        font-weight: 500;
        color: #cb0101
    }
}

@media (max-width: 1023px) and (min-width: 1024px) {
    h3[class*="subcaption"] {
        font-size: 1.55rem
    }
}

@media (max-width: 1023px) {
    .title--thin {
        font-weight: 200 !important
    }

    .news__caption {
        font-size: 1.45rem !important;
        width: 90%;
        font-weight: 500 !important
    }
}

@media (min-width: 1024px) {
    h1[class*=title], legend[class*=title] {
        font-family: "Roboto", sans-serif;
        position: relative;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 400;
        color: #0037ff;
        margin: auto
    }
}

@media (min-width: 1024px) and (min-width: 1024px) {
    h1[class*=title], legend[class*=title] {
        font-size: 1.55rem
    }
}

@media (min-width: 1024px) {
    h3[class*=subtitle] {
        font-size: 1.45rem;
        font-weight: 400;
        color: #001666;
        text-align: center
    }
}

@media (min-width: 1024px) and (max-width: 380px) {
    h3[class*=subtitle] {
        font-size: 1.4rem
    }
}

@media (min-width: 1024px) and (min-width: 720px) {
    h3[class*=subtitle] {
        font-size: 1.2rem
    }
}

@media (min-width: 1024px) {
    h1[class*=title--thin] {
        font-weight: 100 !important
    }

    h2[class*="caption"] {
        font-family: "Inter", sans-serif;
        position: relative;
        font-size: 1rem;
        font-weight: 400;
        text-align: center;
        margin: auto;
        color: #002fda
    }

    h3[class*="subcaption"] {
        font-family: "Inter", sans-serif;
        width: auto;
        font-size: .65rem;
        text-align: center;
        margin: auto;
        max-width: 90%;
        font-weight: 500;
        color: #c40101
    }

    .header__info h1[class*=title] {
        font-family: "Roboto", sans-serif;
        position: relative;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 400;
        color: #0037ff;
        margin: auto;
        margin: 0 0 .3rem 0;
        font-weight: 400 !important
    }
}

@media (min-width: 1024px) and (min-width: 1024px) {
    .header__info h1[class*=title] {
        font-size: 1.55rem
    }
}

@media (min-width: 1024px) {
    .header__info h3[class*=subtitle] {
        font-size: .85rem;
        text-align: center;
        color: #001666;
        font-weight: 400;
        margin-bottom: .3rem
    }
}


@-webkit-keyframes splide-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}


@keyframes splide-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.splide__container {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.splide__list {
    margin: 0 !important;
    padding: 0 !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform
}

.splide.is-active .splide__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.splide__pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 95%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0
}

.splide__pagination li {
    list-style-type: none;
    display: inline-block;
    line-height: 1;
    margin: 0
}

.splide, .splide__slide {
    position: relative;
    outline: none
}

.splide__slide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none !important;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.splide__slide img {
    vertical-align: bottom
}

.splide__slider {
    position: relative
}

.splide__spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    border-left-color: transparent;
    -webkit-animation: splide-loading 1s linear infinite;
    animation: splide-loading 1s linear infinite
}

.splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splide--fade > .splide__track > .splide__list {
    display: block
}

.splide--fade > .splide__track > .splide__list > .splide__slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
	
	height: 100%;
	margin: auto;
}

.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
    position: relative;
    z-index: 1;
    opacity: 1
}

.splide--rtl {
    direction: rtl
}

.splide--ttb > .splide__track > .splide__list {
    display: block
}

.splide--ttb > .splide__pagination {
    width: auto
}

.splide__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    padding: 0;
    opacity: .7;
    background: #ccc
}

.splide__arrow svg {
    width: 1.2em;
    height: 1.2em
}

.splide__arrow:hover {
    cursor: pointer;
    opacity: .9
}

.splide__arrow:focus {
    outline: none
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide__pagination {
    position: absolute;
    z-index: 1;
    bottom: .5em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0
}

.splide__pagination__page {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 3px;
    padding: 0;
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    -o-transition: transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear;
    border: none;
    opacity: .7
}

.splide__pagination__page.is-active {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    background: #fff
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus {
    outline: none
}

.splide__progress__bar {
    width: 0;
    height: 3px;
    background: #ccc
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
    border: 3px solid transparent
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
    border-color: #000
}

.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
    outline: none
}

.splide--rtl > .splide__arrows .splide__arrow--prev, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
    right: 1em;
    left: auto
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.splide--rtl > .splide__arrows .splide__arrow--next, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide--rtl > .splide__arrows .splide__arrow--next svg, .splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1)
}

.splide--ttb > .splide__arrows .splide__arrow, .splide--ttb > .splide__track > .splide__arrows .splide__arrow {
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%)
}

.splide--ttb > .splide__arrows .splide__arrow--prev, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
    top: 1em
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.splide--ttb > .splide__arrows .splide__arrow--next, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
    top: auto;
    bottom: 1em
}

.splide--ttb > .splide__arrows .splide__arrow--next svg, .splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.splide--ttb > .splide__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    bottom: 50%;
    left: auto;
    right: .5em;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%)
}

@media screen and (min-width: 1024px) {
    .news__interaction {
        width: 65%;
    }

    .news__info {
        margin-top: 0;
        padding-top: 2.5%;
        padding-bottom: 8%;
    }
}

.news__interaction {
    justify-content: flex-end;
    column-gap: 20px;
}


.news__date {
    vertical-align: middle;
    line-height: normal;
    align-items: flex-end;
    font-size: .75rem;
    color: blue;
    font-weight: 500;
    justify-content: center;
    display: inline-flex;
}

@media all and (max-width: 1023px) {
    .news__date {
        font-size: 1.5rem;
    }
}

@media all and (min-width: 1024px) {
    .category__interaction {
        width: 63%;
    }
}

@media all and (max-width: 1023px) {
    .category__interaction {
        padding: 0;
    }
}

.category__interaction {
    column-gap: 20px;
    justify-content: flex-end;
}

.category__content-wrapper {
    padding-bottom: 5rem;
}

.post__date {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;

    padding: 20px 0;
}

@media all and (min-width: 1024px) {
    .post__date .news__date {
        font-size: 1rem;
    }
}

.sub-menu li a {
    color: blue;
}

.sub-menu li {
    text-align: end;
    width: 100%;
}

.posts__pagination {
    padding: 10px;
    background-color: #ececec;
    display: flex;
    flex-flow: row nowrap;

    column-gap: .5rem;
}

@media all and (max-width: 1023px) {
    .posts__pagination {
        width: 100%;
        display: inline-flex;
        justify-content: center;
    }

    .posts__pagination .page-numbers {
        font-size: 2rem;
    }
}

@media all and (min-width: 1024px) {
    font-size: .9rem;
}

.posts__pagination .page-numbers {
    padding: 10px 10px;
    transition: all .15s ease-out;
}

.posts__pagination .page-numbers.current {
    background-color: #0a4b78;
    color: white;
}

.posts__pagination .page-numbers:not(.current):not(.dots):hover {
    background-color: gray;
    color: white;
}

.news__all {
    height: 100%;
    width: 98%;

    display: inline-flex;

    justify-content: center;

    padding: 10px 0 0 0;
}

.splide__image-wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 0 100px;
	
	width: 450px;
	height: 350px;
}

.splide__image-wrapper img {
	object-fit: contain;
}

@media all and (min-width: 1023px) {
    #sidebar h1 {
        font-size: 1.2rem;
        padding: 20px 0;
    }

    #sidebar .menu-item a {
        padding: 0 10px;
    }
}


/** Snowflakes */

.snowflake {
    color: #fff;
    font-size: 0.65em;
    font-family: Arial;
    text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%{-webkit-transform:translateX(0px);transform:translateX(0px)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}100%{-webkit-transform:translateX(0px);transform:translateX(0px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%{transform:translateX(0px)}50%{transform:translateX(80px)}100%{transform:translateX(0px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}