/* VARIABLES
====================================== */

:root {
    --color-primary: 248, 249, 255;
    --color-primary_1: 0, 96, 167;
    --color-secondary_1: 178, 56, 66;
    --color-secondary_2: 209, 74, 67;

    --color-black: 18, 18, 18;
    --color-white: 248, 249, 255;
    --color-gray: 245, 245, 245;

    --font-color: 34, 34, 34;
    --font-family: "Open Sans", sans-serif;
    --font-family_accident: 'Open Sans', sans-serif;

    --logo-width: 188.6px;
    --logo-height: 80px;

    --text-size-normal: 14px;
    --text-size-title: 36px;
}

@media only screen and (max-width: 1199px) {
    :root {
        --text-size-title: 32px;
        --text-size-normal: 14px;
    }
}


/* #MAIN
====================================== */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

*:focus {
    outline: none !important;
}

body {
    font: 400 var(--text-size-normal)/1.45 var(--font-family);
    color: rgb(var(--font-color));
    background: rgb(var(--color-primary));
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

::-moz-selection,
::selection {
    color: rgb(var(--color-white));
    background: rgb(var(--color-secondary_1));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}

p {
    margin: 0 0 20px;
}

ul {
    list-style-position: inside;
    padding-left: 0;
}

.flex {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
}

@media only screen and (max-width: 899px) {
    .flex {
        flex-flow: column nowrap;
        align-items: center;
    }

    .flex_nocolumn {
        flex-flow: row wrap;
        justify-content: center;
    }
}

.flex_nocolumn {
    flex-flow: row wrap;
}

.clear::after {
    display: block;
    content: "";
    clear: both;
}

input,
textarea,
select {
    padding: 10px 20px;
    border: 1px solid rgba(var(--color-black), .25);
    border-radius: 4px;
}

textarea {
    width: 100%;
    resize: vertical;
}

.link {
    color: rgb(var(--color-secondary_1));
    text-decoration: none;
    transition: all ease-out .25s;
}

.link:hover {
    color: rgb(var(--color-secondary_2));
}

.svg-sprite-place {
    display: none;
}


/* #WRAPPER
====================================== */
.wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media only screen and (max-width: 1199px) {
    .wrapper {
        padding: 0 20px;
    }
}


/* #HEADER
====================================== */
.header_container {
  position: relative;
}
.header {
    z-index: 999;
    /* left: 0;
    top: 0;
    width: 100%;
    position: absolute; */
    color: rgb(var(--color-white));
}

.header__wrapper {
  position: relative;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 900px) {
    .header__wrapper {
        flex-direction: row;
        flex-wrap: initial;
    }

    .header__menu {
        flex: 0 1 100%;
    }
}

.header__menu .menu__element {
    padding: 10px 0;
}

.header__toolbar {
    padding-top: 0;
}

.header__toolbar::before {
    display: block;
    width: 100%;
    content: '';
    height: 1px;
    margin-bottom: 20px;
    background: rgba(var(--color-white), .15);
}

.header__tools {
    align-items: center;
}

.header__tool {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    color: var(--color-white);
}

@media only screen and (min-width: 1200px) {
    .header__tool + .header__tool {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 899px) {
    .header {
        padding: 0 20px;
    }

    .header__wrapper {
        flex-flow: column wrap;
    }

    .logo {
        margin: 0 !important;
        background-size: contain !important;
    }

    .header__menu {
        margin: 0 auto;
    }

    .header__wrapper.header__toolbar {
        align-items: flex-start;
    }

    .header__tools {
        margin: 0 auto;
    }

    .header__tools:first-child {
        margin-bottom: 20px;
    }

    .header__tools .header__tool:first-child {
        margin-bottom: 20px;
    }
}


/* #ICONS
====================================== */
.icon {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: rgb(var(--font-color));
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.socials .icon {
    fill: rgb(var(--font-color));
    stroke: none;
    transition: all ease-out .25s;
    margin: 0 10px;
    opacity: .8;
}

.socials .icon:hover {
    transform: translateY(-4px);
    opacity: 1;
}

@media only screen and (max-width: 899px) {
    .socials .icon {
        width: 28px;
        height: 28px;
        margin: 0;
    }

    .socials a {
        margin: 0 10px;
    }

    .socials a:first-child {
        margin-left: 0;
    }

    .socials a:last-child {
        margin-right: 0;
    }
}

.icon + span {
    display: inline-block;
}


/* #SOCIALS
====================================== */
.socials {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.social__item {
    opacity: .8;
}

.social__item:hover {
    opacity: 1;
}

.social__item .icon {
    fill: rgb(var(--color-white));
    stroke: none;
}

.footer .social__item .icon {
    width: 24px;
    height: 24px;
}

/* #LOGO
====================================== */
.logo {
    display: block;
    width: var(--logo-width);
    height: var(--logo-height);
    background: url(../_project/img/logo.svg) top center no-repeat;
    background-size: contain;
}

a.logo {
    text-decoration: none;
}


/* #MENU
====================================== */
.menu {
    transition: background ease-out .25s;
    z-index: 9999;
}

.menu .logo {
    display: none;
}

.menu__container {
    position: relative;
    justify-content: flex-start;
    align-items: stretch;
}

.menu__element {
    position: relative;
    margin: 0 10px;
}

.menu__element:first-child {
    margin-left: 0;
}

.menu__element:last-child {
    margin-right: 0;
}

.menu__element_active {
    border: none;
}

div.menu__link {
    cursor: default;
}

.menu__link {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: all ease-out .25s;
    color: rgb(var(--font-color));
    text-decoration: none;
}

.menu__link:hover,
.menu__link_active {
    color: rgb(var(--color-secondary_2));
}

.menu__dropdown {
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    top: 2em;
    left: 0;
    min-width: 250px;
    opacity: 0;
    background-color: rgb(var(--color-primary));
    transform: translateY(-10px);
    transition: all ease .25s;
    white-space: nowrap;
    border-radius: 6px;
}

.menu__element:hover .menu__dropdown {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.menu__dropdown > .menu__element {
    margin: 0;
    padding: 0;
}

.menu__dropdown > .menu__element:last-child {
    border-bottom: none;
}

.menu__dropdown .menu__link,
.menu__dropdown .menu__link:visited {
    display: block;
    padding: 10px 20px;
    font-weight: 400;
    text-transform: initial;
    color: rgb(var(--color-white));
}

.menu__dropdown .menu__link:hover,
.menu__dropdown .menu__link:visited:hover {
    border-bottom: 1px solid rgba(var(--color-white), 0);
    background-color: rgba(var(--color-white), .25);
    padding: 10px 20px;
}

.menu__element_active .menu__link {
    border: none;
}

@media only screen and (max-width: 899px) {
    .menu .menu__element {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        transition: all ease-out .25s;
        padding: 10px 40px;
    }

    .menu__container {
        z-index: -1;
    }

    .menu_mobile {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 100vh;
        background: rgba(var(--color-black), .9);
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .menu_mobile .menu__element {
        display: block;
        flex: 0 0 100%;
        margin: 0 0 20px;
        padding: unset
    }

    .menu_mobile > .menu__element:last-child {
        margin-bottom: 0;
    }

    .menu__dropdown {
        pointer-events: all;
        position: unset;
        visibility: visible;
        top: unset;
        left: unset;
        min-width: unset;
        opacity: unset;
        background-color: unset;
        padding: unset;
        transition: unset;
        border-radius: unset;
        transform: unset;
    }

    .menu__element:hover .menu__dropdown {
        visibility: unset;
        opacity: unset;
        transform: unset;
    }

    .menu__dropdown::after {
        display: none;
    }

    .menu__dropdown > .menu__element {
        margin: 0 0 10px;
        padding: unset;
        border-bottom: unset;
    }

    .menu__dropdown > .menu__element:nth-child(1) {
        margin-top: 10px !important;
    }

    .menu__dropdown > .menu__element:last-child {
        margin: 0;
    }

    .menu__dropdown .menu__link,
    .menu__dropdown .menu__link:visited {
        display: inline-block;
        color: rgb(var(--color-white));
        font-size: 20px;
        font-weight: normal;
        padding: 0;
        transition: all ease-out .25s;
    }

    .menu__dropdown .menu__link:hover,
    .menu__dropdown .menu__link:visited:hover {
        border: none;
        background: none;
        font-weight: normal;
    }
}


/* HAMBURGER & CLOSE
====================================== */
.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: rgb(var(--color-primary_1));
    justify-content: center;
    align-items: center;
}

.hamburger_sticky {
  position: fixed;
}

.close {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 10px;
}

@media only screen and (max-width: 899px) {
    .hamburger,
    .close {
        display: flex;
        z-index: 999;
    }
}

.hamburger .icon,
.close .icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

/* .menu_mobile .hamburger {
  transition: all .25s ease-in-out;
  transition-delay: .6s;
  transform: rotate(45deg);
} */


/* #BUTTONS
====================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--color-white), .5);
    }
}

.button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    line-height: 1;
    padding: 12px 40px;
    background: linear-gradient(to right, rgb(var(--color-secondary_1)), rgb(var(--color-secondary_2)));
    color: rgb(var(--color-white));
    overflow: hidden;
    box-shadow: 0 3px 7px 0 rgba(var(--color-black), 0.05);
    border-radius: 20px 6px 20px 6px;
    text-transform: uppercase;
    transition: all ease-out .25s;
}

.button:hover {
    transform: translateY(4px);
    animation: pulse 1s;
    box-shadow: 0 0 0 2em transparent;
}

.button-with-icon .icon {
    transform: translateY(2px);
}

.button + .button {
    margin-left: 20px;
}

.button-with-icon:hover .icon {
    stroke: rgb(var(--color-secondary_1));
}


/* #PAGE
====================================== */
.page {
    flex: 1;
    padding-bottom: 100px;
}

.page__head {
    position: relative;
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    padding-bottom: 40px;
    min-height: 200px;
    z-index: 1;
}

.page__head::before,
.page__head::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.page__head::before {
    background: linear-gradient(to top, rgba(var(--color-black), .5), rgba(var(--color-black), .5));
    z-index: -1;
}

.page__head::after {
    background-image: url(../_project/img/page__head.svg);
    background-color: rgb(var(--color-primary_1));
    background-position: center center;
    background-repeat: repeat;
    background-size: auto;
    z-index: -2;
}

.page__title {
    position: relative;
    font-size: var(--text-size-title);
    font-family: var(--font-family_accident);
    color: rgb(var(--color-white));
    margin: 0 0 20px;
    padding: 40px 0;
    font-weight: 400;
}

.page__subtitle {
    position: relative;
    font-size: 36px;
    font-weight: 400;
    font-family: var(--font-family_accident);
    margin: 0 0 20px;
    line-height: 1;
}

.itemExtraFields {
    margin-bottom: 40px;
}

.page__body {
    position: relative;
    background: rgb(var(--color-white));
    border-radius: 6px;
    /* box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .2); */
    box-shadow: 0 25px 40px -5px rgba(0, 0, 0, .15);
    overflow: hidden;
    margin-top: -40px;
    padding: 40px;
    z-index: 2;
}

@media only screen and (max-width: 1199px) {
    .page__body {
        padding: 25px;
    }
}

.page__content {
    flex: 1;
}

.page__content {
  font-size: 16px;
}

@media only screen and (max-width: 1199px) {
    .page__content {

    }
}

.page__image {
    display: block;
    float: left;
    margin: 20px 40px 20px 0;
}

@media only screen and (min-width: 1200px) {
    .page__image {
        max-width: 400px;
    }
}

@media only screen and (max-width: 1199px) {
    .page__image {
        float: none;
        margin: 20px auto;
    }
}

.page__image_full-width {
    float: none;
    max-width: 100%;
    margin: 0 auto 40px;
}

.page__image img {
    display: block;
    max-width: 100%;
}

.page__image:first-child {
    margin-top: 0 !important;
}

.page__image:last-child {
    margin-bottom: 0 !important;
}

.page__image_right {
    order: 1;
    float: right;
    margin: 20px 0 20px 40px;
}

@media only screen and (max-width: 1199px) {
    .page__image_right {
        float: none;
        margin: 0 auto 20px;
    }
}


/* #PAGE-PORTFOLIO
====================================== */
.portfolio {
}

.portfolio .page__content {
    align-items: flex-start;
}

.portfolio__work {
    display: block;
    position: relative;
    max-width: 350px;
    margin: 0 15px 30px;
    text-decoration: none !important;
    color: inherit !important;
    flex: 1 1 33%;
}

@media only screen and (max-width: 1199px) {
    .portfolio__work {
        margin: 0 auto 30px;
    }
}

.portfolio__work-cover {
    position: relative;
    overflow: hidden;
}

/* .portfolio__work-cover::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: linear-gradient(to top, rgba(var(--color-secondary_1), .4), rgba(var(--color-secondary_1), .4));
  transition: all .25s ease-out;
} */


.portfolio__work:hover .portfolio__work-cover::before {
    opacity: .8;
}

.portfolio__work-cover img {
    display: block;
    object-position: top center;
    object-fit: cover;
    max-width: 370px;
    width: 100%;
    height: 208px;
    transition: all ease-out .25s;
}

.portfolio__work-cover_peoples img {
    object-position: top center;
    height: 370px;
}

.portfolio__work:hover .portfolio__work-cover img {
    transform: scale(1.1);
}

.portfolio__work-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(var(--color-black), .8) 30%, transparent);
    color: rgb(var(--color-white));
    padding: 20px 20px 10px;
}

.portfolio__work-title {
    position: relative;
    /* margin-bottom: 10px; */
    font-weight: 600;
    text-transform: uppercase;
}

.portfolio__work-title_peoples {
    font-size: 18px;
    font-weight: 400;
    text-transform: unset;
}

.portfolio__work-subtitle_peoples {
    font-size: 14px;
    font-weight: 400;
    text-transform: unset;
    color: #ccc;
}

/* .portfolio__work-title:before {
display: block;
content: "";
position: absolute;
top: 50%;
margin-top: -6px;
left: 0;
background-color: #7fa6d8;
width: 12px;
height: 12px;
transform: rotateZ(45deg);
} */

.portfolio__work-description {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 14px;
    background: rgb(var(--color-secondary_2));
    color: rgb(var(--color-white));
    z-index: 1;
    font-size: 12px;
    border-radius: 0 0 10px 0;
}

.portfolio__work-card {
    display: block;
    float: left;
    max-width: 540px;
    margin-right: 40px;
    padding: 20px;
    background-color: rgb(var(--color-white));
    border-right: 10px solid #0b3c65;
    border-bottom: 10px solid #7fa6d8;
}

@media only screen and (max-width: 1199px) {
    .portfolio__work-card {
        float: none;
        margin: 0 auto 20px;
    }
}

.portfolio__work-icon {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.portfolio__work-link {
    font-weight: 400;
    margin-top: 20px;
}


/* #PAGE-SERVICES
====================================== */
.services {
}

@media only screen and (max-width: 1199px) {
    .services .page {
        justify-content: center;
    }
}

.services__item {
    flex: 0 0 calc(20% - 20px);
    min-width: 220px;
    background: rgb(var(--color-white));
    margin: 0 10px 40px;
    box-shadow: 0 10px 20px rgba(95, 157, 223, .2), 0 6px 6px rgba(95, 157, 223, .2);
    transition: all ease-out .25s;
    border-radius: 0 0 4px 4px;
}

.services__item:hover {
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: 0 15px 20px rgba(229, 120, 120, .3), 0 15px 20px rgba(229, 120, 120, .3);
}

.services__cover {
    height: 150px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.services__image {
    display: block;
    /*width: 100%;*/
    height: 90%;
    /*object-fit: cover;*/
    margin: 5% auto;
    transition: all ease-out .25s;
}

.services__item:hover .services__image {
    transform: scale(1.1);
}

.services__content {
    flex-flow: column nowrap;
    align-items: flex-start;
    padding: 10px;
    flex: 0 0 100%;
}

.services__title {
    display: block;
    font-size: .875em;
    font-weight: 700;
    align-self: center;
}

.services__date {
    font-size: .875em;
    font-style: italic;
}

.services__text {
    font-size: .875em;
}

.services__more {
    margin-left: auto;
}

.page_services-sub .page__description {
    text-align: left;
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 0;
}

.page_services-sub .page__description > p {
    max-width: 100%;
}


/* #PAGINATION
====================================== */
.pagination {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination__item_previous {
    order: 1;
}

.pagination__item_next {
    order: 3;
}

.pagination__link {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    background-color: #eee;
    border-radius: 4px;
    transition: all .25s ease-out;
}

.pagination__item_previous .icon,
.pagination__item_next .icon {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -14px;
    transition: all .25s ease-out;
}

.pagination__item_previous .icon {
    transform: rotateZ(180deg);
    margin-left: -12px;
}

.pagination__link_active:hover {
    background-color: rgb(var(--color-secondary_1));
}

.pagination__link_active:hover .icon {
    stroke: rgb(var(--color-white));
}

.pagination__link_inactive {
    opacity: .5;
}

.pagination__counter {
    order: 2;
    padding: 0 20px;
}


/* #FOOTER
====================================== */
.footer {
    position: relative;
    /* min-height: 211px; */
    padding: 2rem 0;
}

@media only screen and (max-width: 1199px) {
    .footer {
        padding: 20px;
    }
}

.footer__wrapper {
    align-items: center;
    justify-content: space-between;
}

.footer__wrapper > * {
    margin: 0 20px;
    flex: 1;
}

@media only screen and (max-width: 1199px) {
    .footer__wrapper > * {
        margin: 0 auto 20px;
    }
}

.footer__wrapper > *:first-child {
    margin-left: 0;
}

.footer__wrapper > *:last-child {
    margin-right: 0;
    text-align: right;
}

@media only screen and (max-width: 1199px) {
    .footer__wrapper > *:first-child {
        margin-left: auto;
    }

    .footer__wrapper > *:last-child {
        margin-right: auto;
        text-align: center;
    }
}

.footer__logo {
    height: 67px;
    width: 220px;
    background: url(../img/logo2.png) no-repeat;
    background-size: cover;
    flex: 0 0 auto;
}

.home .footer__logo {
    background: url(../img/logo.png) no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 1199px) {
    .footer > *:last-child {
        margin-bottom: 0;
        text-align: unset;
    }
}


/* #SCROLL
====================================== */
.scroll {
    display: none;
    z-index: 99;
    position: fixed;
    right: 48px;
    bottom: 48px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background-color: rgb(var(--color-secondary_1));
    transition: background-color .25s ease-out;
    border-radius: 50%;
    animation: rollIn both .5s;
}

@media only screen and (max-width: 1199px) {
    .scroll {
        display: none !important;
    }
}

.icon-scroll {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    stroke: rgb(var(--color-secondary_2));
}

.scroll:hover {
    background-color: rgb(var(--color-secondary_2));
}

.scroll:hover .icon-scroll {
    stroke: rgb(var(--color-secondary_1));
}


/* #FORMS
====================================== */
form {
    font-size: inherit;
}

form .control-group {
    width: 95% !important;
    margin: 0 auto 20px !important;
    border: none !important;
    padding: 0 !important;
}

form label.control-label {
    color: rgb(var(--font-color)) !important;
    font-weight: 400 !important;
}

form input[type="text"],
form textarea {
    display: block;
    max-width: 100%;
    width: 100% !important;
    padding: 10px;
    background: none !important;
    border: 1px solid rgba(var(--color-primary), .5);
    border-radius: 2px;
    transition: border ease-out .25s;
    margin: 0 auto;
}

form span.required {
    color: #eb5757 !important;
}

form input[type="text"]:focus,
form textarea:focus {
    outline: none;
    /* border-color: var(--color-primary) !important; */
}

form textarea {
    resize: none;
}

form input[type="radio"] {
    margin-right: 5px;
}

form label.radio {
    display: block;
    cursor: pointer;
    margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
    form label.radio {
        font-size: 1rem;
    }
}

form label.radio a,
form label.radio a:hover {
    color: rgb(var(--color-secondary_1));
}

form .help-block {
    display: block;
    margin: 0;
    font-size: .75em;
    font-style: italic;
    color: #7fa6d8;
}

form .btn-toolbar {
    text-align: center;
}

.g-recaptcha > div {
    margin: 0 auto;
}

.jsn-master .jsn-bootstrap .form-actions,
.jsn-master.ui-dialog-contentpane .jsn-bootstrap .form-actions {
    margin: 0;
    padding: 0;
}


/* #SIGP
====================================== */
ul.sigProSleek li.sigProThumb {
    margin: 2px 4px;
}

ul.sigProSleek li.sigProThumb a.sigProLink {
    border: none !important;
}


/* #TABLES
====================================== */
.page__content table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-spacing: 0
}

.page__content table:last-child {
    margin-bottom: 0;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

.prices thead th {
    border-bottom: 4px solid rgb(var(--color-primary));
}

.prices tbody td:first-child p {
    font-size: .9rem;
    margin-bottom: .5rem;
    padding-left: 20px;
}

.prices tbody td:first-child p:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: rgb(var(--color-primary));
    padding-left: 0;
}

@media only screen and (max-width: 1199px) {
    .prices tbody td:first-child p {
        padding-left: 0;
    }
}

.news__item {
    display: block;
    position: relative;
    max-width: 350px;
    width: 100%;
    margin: 0 15px 40px;
    border: 1px solid #ddd;
    transition: all ease-out .25s;
}

@media only screen and (max-width: 1199px) {
    .news__item {
        width: 100%;
        margin: 0 auto 30px;
    }
}

.news__item:hover {
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(41, 41, 41, 0.09), 0 6px 6px rgba(41, 41, 41, 0.13);
}

.news__cover {
    position: relative;
    height: 200px;
    max-width: 100%;
    width: 100%;
}

.news__coverImg {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.news__content {
    flex-flow: column nowrap;
    align-items: flex-start;
    padding: 20px;
    flex: 0 0 100%;
}

.news__title {
    position: relative;
    margin-bottom: 20px;
    color: #525f7f;
}

.news__date {
    font-size: .75em;
    color: #888;
}

.news__text {
    margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
    .news__text {
        margin-top: 10px;
    }
}

.news__more {
    margin-left: auto;
}


/* #BLOCK
====================================== */
.block {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 0;
}

.block_inside {
    padding: 0;
}

.block_items-center {
    text-align: center;
}

.block__wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.block_items-center .block__head {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin: 0 auto;
}

.block__title {
    font-size: var(--text-size-title);
    font-family: var(--font-family_accident);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.block__content {
}

.block__body.flex {
    align-items: center;
    justify-content: stretch;
}

.block__body_normal.flex {
    align-items: flex-start;
    justify-content: stretch;
}

.partners.flex {
    justify-content: center;
}

.partners__image {
    width: 200px;
    filter: grayscale(100%);
}

.partners__image + .partners__image {
    margin-left: 40px;
}

@media only screen and (max-width: 1199px) {
    .partners__image + .partners__image {
        margin-left: 0;
        margin-top: 20px;
    }
}


/* #SLIDER
====================================== */
.block-slider {
    padding: 0;
    background: rgb(var(--color-primary)) !important;
}

.block-slider .swiper-container {
    width: 100%;
}

.block-slider .swiper-slide {
    position: relative;
    position: relative;
    overflow: hidden;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
  	box-sizing: border-box;
}

.block-slider .swiper-slide::before {
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background-image: linear-gradient(to right, rgba(var(--color-black), .25), rgba(var(--color-black), .25));
}

.block-slider .swiper-slide::after {
    display:block;
    content:"";
    opacity: 0;
  	visibility: hidden;
  	box-sizing: border-box;
    padding-bottom: 29.1%;
}

.block-slider .slide__content {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: rgb(var(--color-white));
    padding: 200px 40px 40px;
}

.block-slider .slide__title {
    font-family: var(--font-family_accident);
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.block-slider .slide__content p {
    font-size: 16px;
    text-transform: uppercase;
}

.block-slider .button {
    border: none;
}

.block-slider .swiper-pagination {
    position: absolute;
    bottom: 40px;
}

.block-slider .swiper-pagination-bullet {
    border: 2px solid rgb(var(--color-white));
}

.block-slider .swiper-pagination-bullet-active::before {
    background: rgb(var(--color-white));
}

@media only screen and (max-width: 899px) {
    /*.block-slider {
        display: none;
    }*/
}


/* #SLIDER-PAGINATION
====================================== */
.swiper-pagination {
    position: relative;
    bottom: 0;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    height: 20px;
}

@media only screen and (max-width: 1199px) {
    .swiper-pagination {
        margin-top: 20px;
    }
}

.swiper-pagination-bullet {
    box-sizing: border-box !important;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 2px solid rgb(var(--color-primary_1));
    border-radius: 50%;
    opacity: 1;
    transition: all ease-out .25s;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 8px;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    position: relative;
    width: 20px;
    height: 20px;
    opacity: 1;
    background: transparent;
}

.swiper-pagination-bullet-active::before {
    display: block;
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: rgb(var(--color-primary_1));
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
}


/* #SIDEBAR
====================================== */
.sidebar {
    width: 350px;
    margin-right: 40px;
    background: rgb(var(--color-primary));
    color: rgb(var(--font-color));
    padding: 20px;
    border-radius: 6px;
}

@media only screen and (max-width: 1199px) {
    .sidebar {
        width: 100%;
        margin: 0 auto 40px;
    }
}

.sidebar .menu__container.flex {
    z-index: 0;
    flex-flow: column wrap;
}

.sidebar .menu__element {
    margin-left: 0;
    margin-right: 0;
}

.sidebar .menu__separator {
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-family_accident);
    font-weight: 800;
}

.sidebar .menu__element:first-child .menu__separator {
    margin-top: 0;
}

.sidebar .menu__link {
    font-weight: 400;
    text-transform: unset;
    margin-bottom: 5px;
}

/* #OTHER
====================================== */
.icon {
    width: 24px;
    height: 24px;
}

.hamburger .icon,
.close .icon {
    stroke: rgb(var(--color-white));
}

.scroll {
    background-color: rgba(var(--color-white), .8);
}

.scroll:hover {
    background-color: rgb(var(--color-white));
}

.icon-scroll {
    width: 18px;
    height: 18px;
    stroke: rgb(var(--color-primary_1)) !important;
}

a {
    text-decoration: none;
}

ul.sigProSleek {
    display: flex;
    flex-flow: row wrap;
}

ul.sigProSleek li.sigProThumb {
    margin: 0 10px 20px;
}

ul.sigProSleek li.sigProThumb a {
    cursor: zoom-in;
}

.player.video iframe {
    width: 100%;
}

.player.video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.player.video iframe,
.player.video object,
.player.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* #TOPBAR
====================================== */
.topbar {
    height: 60px;
    background-color: rgb(var(--color-white));
}

.topbar .flex {
    align-items: center;
}

@media only screen and (max-width: 899px) {
    .topbar {
        height: auto;
    }

    .topbar .wrapper {
        padding: 0;
    }

    .topbar .wrapper > * {
        margin-bottom: 20px;
    }
}

.accessibility {
    cursor: pointer;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background: linear-gradient(to top, #DEDEDE 0%, #F8F9FF 100%);
}

@media only screen and (max-width: 899px) {
    .accessibility {
        width: 100%;
    }
}

.accessibility__icon {
    margin-right: 0;
    transition: all ease-out .25s;
}

.accessibility:hover .accessibility__icon {
    margin-right: 0;
    transform: scale(1.1);
}

.topbar__mos {
    min-height: 30px;
    padding-left: 36px;
    background: url(../_project/img/mos.svg) left center no-repeat;
    font-size: 10px;
    color: rgb(var(--font-color));
    margin-left: 20px;
    margin-right: 40px;
    transition: coolor ease-out .25s;
}

.topbar__mos:hover {
    color: rgb(var(--color-secondary_1));
}

.topbar .social__item {
    color: rgb(var(--color-secondary_1));
    font-size: 24px;
}

.topbar .social__item:first-child {
    padding-left: 0;
}

.topbar .socials .icon {
    fill: rgb(var(--color-primary_1));
}

.topbar__phone {
    margin-left: auto;
    margin-right: 40px;
    font-size: 22px;
    color: rgb(var(--color-primary_1));
}

@media only screen and (max-width: 899px) {
    .topbar__phone {
        margin-left: auto;
        margin-right: auto;
    }
}

.topbar__button,
.topbar__button:hover {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    height: 60px;
    text-transform: uppercase;
    padding: 0 20px;
    background: linear-gradient(to top, #B23842 0%, #FF818B 100%);
    color: rgb(var(--color-white));
    font-weight: 600;
}

@media only screen and (max-width: 1199px) {
    .topbar__button {
        display: none;
    }
}

.topbar__button span {
    transition: all ease-out .25s;
}

.topbar__button:hover span {
    transform: scale(1.1);
}

/* #HEADER
====================================== */
@media only screen and (min-width: 899px) {
    .page-main .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(var(--color-primary_1), 1), rgba(var(--color-primary_1), 80%) 50%, rgba(var(--color-primary_1), 0) 100%);
    }

    .header .menu__container {
        margin-top: -10px;
    }
}

.header {
    background: rgb(var(--color-primary_1));
}

.header__logo {
    margin-right: 40px;
}

.header .menu__link {
    color: rgb(var(--color-white));
    font-size: 18px;
    font-weight: 600;
}

.header .menu__link:hover {
    transform: translateY(-4px);
}

.header .menu__link:hover,
.header .menu__element_active .menu__link {
    color: rgb(var(--color-white));
}

.header .menu__dropdown .menu__link {
    font-size: 16px;
}

.header .menu__dropdown .menu__link,
.header .menu__dropdown .menu__link:hover {
    color: rgb(var(--color-secondary_1));
    padding: 10px 20px;
}

@media only screen and (max-width: 1199px) {
    .header {
        padding: 0;
    }

    .header .menu__dropdown .menu__element {
        margin: 0 0 20px;
    }

    .menu__dropdown > .menu__element:nth-child(1) {
        margin-top: 20px !important;
    }

    .menu__dropdown > .menu__element:last-child {
        margin-bottom: 0 !important;
    }

    .header .menu__dropdown .menu__link,
    .header .menu__dropdown .menu__link:hover {
        color: rgb(var(--color-white));
        padding: 0;
        font-size: 20px;
    }
}

.header .menu__dropdown .menu__link:hover {
    background: rgba(var(--font-color), .05);
}


/* #BLOCK
====================================== */
.block__head {
    text-align: center;
    margin-bottom: 0;
}

.block__title {
    line-height: 1;
    margin-bottom: 0;
}

.block__title-background {
    font-family: 'Pacifico';
    font-size: 96px;
    color: #eee;
    opacity: .8;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .block__title-background {
        display: none;
    }
}

.block__title-text {
    font-weight: 600;
    font-size: 48px;
    color: rgb(var(--color-secondary_1));
    transform: translateY(-80%);
}

@media only screen and (max-width: 1199px) {
    .block__title-text {
        transform: none;
        margin-bottom: 20px;
    }
}


/* #AFISHA
====================================== */

.afisha__monthTab {
    display: none;
}

.afisha__monthTab.show {
    display: block;
}

.afisha__month {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    line-height: 1;
    padding: 12px 40px;
    background: linear-gradient(to right, rgb(var(--color-secondary_1)), rgb(var(--color-secondary_2)));
    color: rgb(var(--color-white));
    overflow: hidden;
    box-shadow: 0 3px 7px 0 rgba(var(--color-black), 0.05);
    border-radius: 20px 6px 20px 6px;
    text-transform: uppercase;
    transition: all ease-out .25s;
    border: 1px solid rgb(var(--color-secondary_1));
}

.afisha__month:not(.active) {
    background: rgb(var(--color-white));
    color: rgb(var(--color-secondary_1));
}

.page-afisha .page__content {
    display: flex;
    flex-flow: column wrap;
}

.page-afisha-item .page__title {
    margin: 0;
}

.afisha__back {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-white));
    padding-bottom: 40px;
}

.afisha__back-icon {
    display: inline-block;
    stroke: rgb(var(--color-white));
    margin-right: 10px;
    transition: all ease-out .25s;
}

.afisha__back:hover .afisha__back-icon {
    transform: translateX(-4px);
}

.afisha__back span {
    text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
    .afisha {
        padding: 0 20px;
    }
}

.afisha__element {
    align-items: center;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid rgba(var(--color-black), .25);
    margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
    .afisha__element {
        align-items: stretch;
        font-size: 14px;
    }
}

.afisha__element > * {
    padding: 10px 20px;
}

@media only screen and (max-width: 1199px) {
    .afisha__element > * {
        padding: 10px;
    }
}

.afisha__date {
    text-transform: uppercase;
    text-align: center;
    border-right: 1px solid rgba(var(--color-black), .25);
}

@media only screen and (max-width: 1199px) {
    .afisha__date {
        border-right: none;
        border-bottom: 1px solid rgba(var(--color-black), .25);
    }
}

.afisha__date-day {
    font-size: 32px;
    font-weight: 700;
}

@media only screen and (max-width: 1199px) {
    .afisha__date-day {
        font-size: 18px;
    }
}

.afisha__cover {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    margin-right: 20px;
    flex: 0 0 80px;
}

@media only screen and (max-width: 1199px) {
    .afisha__cover {
    }
}

.afisha__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.afisha__title {
    font-size: 28px;
    font-weight: 400;
    color: rgb(var(--font-color));
}

.page__content .afisha__title {
    font-size: 22px;
}

.afisha__meta2 {
    flex: 0 1 auto;
}

.afisha__seance-info {
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.afisha__info {
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
}

.afisha__video {
    margin-top: 20px;
}

.media.video {
    left: 0px;
    width: 100%;
    height: 0px;
    position: relative;
    padding-bottom: 56.25%;
}

.media.video iframe {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
}

@media only screen and (max-width: 1199px) {
    .afisha__info {
        flex-direction: row;
        align-items: flex-start;
    }

    .afisha__title {
        font-size: 18px;
    }
}

.afisha__description {
    color: rgba(var(--color-black), .5);
}

.afisha__age-rating {
    color: rgba(var(--color-black), .5);
}

.afisha__times {
    margin-left: auto;
    padding: 20px 0;
}

@media only screen and (max-width: 1199px) {
    .afisha__times {
        margin: 0;
        padding: 0 0 20px;
    }
}

.afisha__time {
    padding: 0 20px;
    transition: all ease-out .25s;
}

.afisha__time {
    font-size: 28px;
    font-weight: 700;
}

.afisha__buyticket__title {
    font-size: 1em;
    font-weight: 500;
    color: rgb(var(--color-secondary_1));
}

.afisha__time:hover {
    transform: translateY(-4px);
}

.afisha__buyticket {
    border-left: 1px solid rgba(var(--color-black), .25);
    padding: 12px 20px;
    margin: 0 20px;
    border: 1px solid rgb(var(--color-primary_1));
    background: rgb(var(--color-white));
    color: rgb(var(--color-secondary_1));
}

.afisha__buyticket:hover {
    background: rgb(var(--color-secondary_1));
    color: rgb(var(--color-white));
}

.afisha__meta {
    margin-bottom: 40px;
  font-size: 16px;
}

.afisha__descriptionText p {
  font-size: 16px;
}

.afisha__seances {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
    .afisha__seances {
        margin-right: 0;
    }
}

.afisha__seance {
    align-items: center;
    border-bottom: 1px solid rgba(var(--color-black), .05);
    padding: 10px 0;
}

.afisha__seance-date {
    flex: 1;
    font-size: 16px;
}

@media only screen and (max-width: 1199px) {
    .afisha__seance-date {
        font-weight: 700;
        margin-bottom: 10px;
    }
}

.afisha__seance-times {
    flex: 1;
}

.afisha__seance-time {
    padding: 5px 10px;
    margin: 0 10px;
    border: 1px solid rgb(var(--color-secondary_1));
    color: rgb(var(--color-secondary_1));
    transition: all ease-out .25s;
}

.afisha__seance-time:hover {
    transform: translateY(-4px);
    background-color: rgb(var(--color-secondary_1));
    color: rgb(var(--color-white));
}


.afisha__warning {
    position: relative;
    background: linear-gradient(45deg, rgb(var(--color-secondary_1)), rgb(var(--color-secondary_2)));
    padding: 40px;
    margin: 40px auto;
    color: rgb(var(--color-white));
    border-radius: 6px;
}

.afisha__warning::before {
    display: block;
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -64px;
    height: 128px;
    width: 128px;
    opacity: .15;
    background: url(../_project/img/afisha__warning.svg) right center;
    background-size: cover;
}

.afisha__warning ul {
    margin: 0;
}

.afisha__warning-title {
    position: relative;
    font-size: 36px;
    font-weight: 600;
    font-family: var(--font-family_accident);
    margin-bottom: 20px;
    line-height: 1;
}


.afisha__notify {
    width: 100%;
    position: relative;
    background: linear-gradient(45deg, #167ac6, #063462);
    padding: 20px 40px;
    margin: 20px auto;
    color: rgb(var(--color-white));
    border-radius: 6px;
    overflow: hidden;
}

.afisha__element .afisha__notify {
    margin: 0;
}

.afisha__notify p {
    margin: 0 0 0.5rem;
    position: relative;
}

.afisha__notify::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .10;
    background: url(../_project/img/afisha__warning.svg) right center;
    background-size: contain;
}

.afisha__notify ul {
    margin: 0;
}

.afisha__notify-title {
    position: relative;
    font-size: 36px;
    font-weight: 600;
    font-family: var(--font-family_accident);
    margin-bottom: 20px;
    line-height: 1;
}

.afisha-button {
    text-align: center;
}

.afisha__schedule {
    flex: 0 1 auto;
}

.afisha__image {
    flex: 1 0 400px;
    max-width: 400px;
    margin-left: 40px;
    align-self: flex-start;
}


@media only screen and (max-width: 1199px) {
    .afisha__image {
        margin-left: 0;
        margin-bottom: 30px;
        order: 1;
    }
}

.afisha__image img {
    width: 100%;
    height: auto;
}

.afisha__gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.afisha__galleryItem {
    padding: 0 10px;
    margin-bottom: 20px;
    width: 25%;
}

.afisha__galleryImage {
    position: relative;
    display: block;
}

.afisha__galleryImage::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: border .2s ease-in-out;
}

.afisha__galleryImage:hover::after {
    border: 3px solid rgb(var(--color-secondary_1));
}

.afisha__galleryImage::before {
    content: "";
    display: block;
    padding-bottom: 85%;
}

.afisha__galleryImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1199px) {
    .afisha__galleryItem {
        width: 50%;
    }
}

@media only screen and (max-width: 1199px) {
    .page__content .afisha__image {
        flex: 1 0 auto;
        margin-bottom: 20px !important;
    }

    .page__content .afisha__info {
        flex-direction: column;
    }

    .page__content .afisha__image {
        order: 1;
    }

    .page__content .afisha__meta2 {
        order: 2;
    }
}


/* #POBEDA-CINEMA-BANNER
====================================== */
.pobeda-cinema-banner {
    position: relative;
    background: rgb(var(--color-primary_1));
}

.pobeda-cinema-banner::before,
.pobeda-cinema-banner::after {
    display: block;
    position: absolute;
    height: 30px;
    width: 100%;
    left: 0;
    right: 0;
    background: url(../_project/img/pobeda-cinema-banner__background.svg) center top repeat-x;
    content: '';
}

.pobeda-cinema-banner::before {
    top: 20px;
}

.pobeda-cinema-banner::after {
    bottom: 20px;
}

.pobeda-cinema-banner .block__body {
    padding: 80px 40px;
}

.pobeda-cinema-banner__logo {
    margin-right: 80px;
}

@media only screen and (max-width: 1199px) {
    .pobeda-cinema-banner__logo {
        max-width: 100%;
        margin: 0 auto 40px;
    }
}

.pobeda-cinema-banner__text {
    flex: 1;
}

.pobeda-cinema-banner__text p {
    font-size: 22px;
    color: rgb(var(--color-white));
}

.pobeda-cinema-banner__link {
    color: #fde19b !important;
    text-decoration: underline;
    transition: all ease-out .25s;
}

.pobeda-cinema-banner__link:hover {
    text-decoration: none;
}

.pobeda-cinema-banner__button {
    background: rgb(var(--color-white));
    margin-top: 10px;
    color: rgb(var(--color-primary_1));
    font-weight: 700;
}

.pobeda-cinema-banner__button:hover {
    background: rgb(var(--color-white));
    color: rgb(var(--color-primary_1));
}

@media only screen and (max-width: 1199px) {
    .pobeda-cinema-banner__button {
        display: block;
        margin: 10px auto 0;
    }
}


/* #BLOCK-NEWS
====================================== */
.news-slider__element {
    position: relative;
    width: 33.333333%;
    width: calc((100% / 3) - 40px);
    max-width: 374px;
}

@media only screen and (max-width: 1199px) {
    .news-slider__element {
        width: 100%;
        margin: 0 auto 20px;
    }

    .news-slider__element:last-child {
        margin-bottom: 0;
    }
}

.news-slider__cover {
    position: relative;
    margin-bottom: 10px;
    border-radius: 50px 4px 50px 4px;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.news-slider__image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.news-slider__cover::after {
    display: block;
    content: '';
    background: linear-gradient(45deg, rgb(var(--color-secondary_1)), rgb(var(--color-primary)));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all ease-out .25s;
    border-radius: 50px 4px 50px 4px;
    z-index: 1;
}

.news-slider__cover::before {
    display: block;
    content: '';
    background: rgb(var(--color-black));
    position: absolute;
    top: calc(50% - 21px);
    left: calc(50% - 21px);
    height: 42px;
    width: 42px;
    opacity: 0;
    transition: all ease-out .25s;
    z-index: 2;
    border-radius: 50%;
}

.news-slider__element:hover .news-slider__cover::before,
.news-slider__element:hover .news-slider__cover::after {
    opacity: .5;
}

.news-slider__icon {
    display: block;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    height: 32px;
    width: 32px;
    opacity: 0;
    transition: all ease-out .25s;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
    stroke: rgb(var(--color-white));
}

.news-slider__element:hover .news-slider__icon {
    opacity: 1;
}

.news-slider__title {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden !important;
    color: rgb(var(--font-color));
}


/* #BLOCK-PARTNERS
====================================== */
.block-partners * {
    box-sizing: border-box !important;
}

.block-partners__partner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 20px;
    justify-content: center;
    width: 208px;
    height: 100px;
    background: rgba(var(--color-black), .05);
    border-radius: 6px;
}

.block-partners__partner img {
    display: block;
    max-width: 100%;
    max-height: 60px;
}


/* #BANNERS
====================================== */
.bannergroup {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.banneritem {
    margin-right: 40px;
}

.banneritem:last-child {
    margin-right: 0;
}

.banneritem img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}


/* #FOOTER
====================================== */
.footer {
    padding: 40px 0;
    background: url(../_project/img/footer__background.svg) center center no-repeat,
    linear-gradient(to top, rgb(var(--color-primary_1)), rgb(var(--color-primary_1)));
    background-size: cover;
}

@media only screen and (max-width: 1199px) {
    .footer {
        padding: 40px 0 20px;
    }
}

.footer * {
    color: rgb(var(--color-white));
    transition: all .25s ease-out;
}

.footer__wrapper {
    justify-content: space-between;
    align-items: center;
}

.footer__mark {
    display: block;
    text-align: center;
}

.footer .menu__link:hover {
    color: rgb(var(--color-secondary_2));
}

.footer .menu__dropdown {
    display: none;
}

.footer .socials {
    margin-bottom: 40px;
    justify-content: center;
}

.footer .socials .icon {
    fill: rgb(var(--color-white));
}

.footer .social__item,
.footer .social__item:hover {
    color: rgb(var(--color-white));
}

.footer .fa {
    font-size: 24px;
}

.footer__agency {
    color: inherit;
    text-align: right;
}

.footer__agency:hover {
    color: rgb(var(--color-white));
}

@media only screen and (max-width: 1199px) {
    .footer__agency {
        text-align: center;
    }
}

.page .page__content img {
    max-width: 100%;
    height: auto;
}

.top_info {
  background-color: rgb(var(--color-primary_1));
  color: #fff;
  padding: 5px 0;
}