a {
    transition: color .2s;
}

a:hover {
    color: #FF004F;
}

.primary {
    color: #FF004F;
}

.white {
    color: #fff;
}

/* Контейнеры */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.container--pad14 {
    padding: 0 14px;
}

@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

/* Секции */
#search {
    /* overflow: hidden; */
}

.section {
    padding: 60px 0;
    /* padding-top: 60px; */
}

.section--noPt {
    padding-top: 0;
}

.section--noPb {
    padding-bottom: 0;
}

.section--pb120 {
    padding-bottom: 120px;
}

.section--gray,
.sectonGray {
    background-color: #F4F7FD;
}

.section--lightGradient {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 253, 1) 100%);
}

.section--lightGradientReverse {
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 253, 1) 100%); */
    background: linear-gradient(180deg, rgba(244, 247, 253, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.section__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.section__button {
    align-self: center;
}

@media (max-width: 767px) {
    .section {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .section:last-child,
    .section:last-of-type {
        padding-bottom: 40px;
    }

    .section__content--pB40 {
        padding-bottom: 40px;
    }

    .section--pb120 {
        padding-bottom: 40px;
    }
}

/* Секции END */


/* Типография */
.section__title {
    font-family: Cera Pro;
    font-size: 54px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -0.01em;
    color: #2B2929;
    width: 60%;
}

.section__title--slider_arrows {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section__title--fullwidth {
    width: 100%;
}

.section__title--fs40 {
    font-family: Cera Pro;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.01em;
}

.h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 31.2px;
}

@media (max-width: 1199px) {
    .section__title {
        width: 100%;
    }

    .h3 {
        font-size: 18px;
        line-height: 21.6px;
    }
}

@media (max-width: 767px) {
    .section__title {
        font-family: Cera Pro;
        font-size: 26px;
        font-weight: 500;
        line-height: 31.2px;
        width: 100%;
    }

    .section__title--fs40 {}
}

/* Типография END */

/* Кпопки */
.button {
    display: inline-flex;
    align-items: center;
    padding: 0px 30px;
    border-radius: 936px;
    font-family: Cera Pro;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    height: 45px;
    text-align: center;
    width: fit-content;
    background-color: #FF004F;
    color: #FFF;
    transition: all .3s ease;
}

.button:hover {
    color: #FFF;
    background-color: #C71049;
}

.button.disabled {
    background-color: #CCCCCC;
    color: #666666;
    pointer-events: none;
}

.button--whiteHover:hover {
    color: #FF004F;
    background-color: #fff;
}

.button--squared {
    border-radius: 8px;
    padding-left: 40px;
    padding-right: 40px;
}

.button--squared {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.button--squaredV2 {
    padding: 12px 24px;
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: left;
}

.button--squared:hover {
    color: #FFF;
    background-color: transparent;
}

.button--squared span {
    position: relative;
    transition: all .45s ease-Out;
}

#circle {
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background: #C71049;
    position: absolute;
    transition: all .5s ease-Out;
    top: 20px;
    left: 70px;
}

.button--squared:hover #circle {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

.button--squared:hover span {
    color: #FFF;
}

.button--gray {
    background: #F4F7FD;
    color: #2B2929;
}

.button--grayOpacity {
    background: rgb(255, 255, 255, .2);
}

.button--gray:hover {
    background: #C71049;
    color: #fff;
}

.button--white {
    background: #fff;
    color: #2B2929;
}

.button--sm {
    height: 30px;
    line-height: 12px;
    padding: 0 15px;
    font-size: 12px;
}

.button--sm2 {
    height: 37px;
    line-height: 37px;
    padding: 0 15px;
    font-size: 14px;
}

.button--sm3 {
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    padding: 6px 20px;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
}

.button--medium {
    padding: 14px 20px;
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    cursor: pointer;
}

.button--mediumV2 {
    padding: 14px 40px;
}

@media (max-width: 1199px) {
    .button:hover {
        background-color: #FF004F;
        color: #FFF;
    }

    .button--gray:hover {
        background: #F4F7FD;
        color: #2B2929;
    }

    .button--squared:hover #circle {
        width: 0%;
        height: 0%;
        opacity: 0;
        line-height: 40px;
        border-radius: 50%;
        background: #C71049;
        position: absolute;
        transition: all .5s ease-Out;
        top: 20px;
        left: 70px;
    }

    .button--sm3 {
        font-family: Cera Pro;
        font-size: 14px;
        font-weight: 400;
        line-height: 16.8px;
        text-align: center;

    }
}

/* Кпопки END */

/* Текстовая ссылка */
.textLink {
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
    cursor: pointer;
    color: #2B2929;
    transition: all .3s ease;
}

.textLink:hover {
    color: #FF004F;
}

.textLink--red {
    color: #FF004F;
}

.textLink--red:hover {
    color: #C71049;
}

.textLink--area {
    padding: 10px 15px;
}

span .textLink {
    font-size: inherit;
}

/* Текстовая ссылка END */

/* Ссылка иконкой */
.iconLink span {
    font-size: 35px;
    transition: all .3s ease;
}

.iconLink--area {
    padding: 10px;
}

.iconLink:hover span {
    color: #FF004F;
}

.iconLink--telegram:hover span {
    color: #039BE5;
}

.iconLink--vk:hover span {
    color: #0273F6;
}

/* Ссылка иконкой END */

/* Бургер кнопка */
.burgerButton {
    width: 49px;
    height: 49px;
    background-color: #FF004F;
    border-radius: 50%;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.burgerButton:hover {
    background-color: #C71049;
}

@media (max-width: 767px) {
    .burgerButton {
        width: 30px;
        height: 30px;
    }

    .burgerButton img {
        width: 12px;
    }
}

/* Бургер кнопка END */

/* Блок кнопок */
.buttonsGroup {
    display: flex;
    align-items: center;
    gap: 40px;
}

.buttonsRow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.buttonsRow--20 {
    gap: 20px;
}

/* Блок кнопок END */

/* Инпут */
.inputBlock {
    position: relative;
    width: fit-content;
}

.inputBlock .inputBockClose {
    position: absolute;
    top: 50%;
    right: 170px;
    transform: translateY(-50%);
    padding: 10px;
    cursor: pointer;
}

.inputBockClose span {
    transition: all .3s ease;
}

.inputBockClose:hover span {
    color: #FF004F;
}

.inputBlock__error {
    position: absolute;
    top: 15px;
    right: 17px;
    opacity: 0;
    transition: all .3s ease;
}

.inputBlock.error .inputBlock__error {
    opacity: 1;
}

.inputBlock--w100 {
    width: 100%;
}

.input {
    background-color: #F5F8FE;
    padding: 26px 30px;
    border-radius: 15px;
    border: 1px solid #F4F5F7;
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2B2929;

}

.input::placeholder {
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    transition: all .3s ease;
    color: #BCC5D2;
}

.input:focus::placeholder {
    opacity: 0;
}

.input--w100 {
    width: 100%;
}

.inputBlock.active label {
    top: 15px;
    transform: translateY(0);

}

.inputV2 {
    background-color: #F5F8FE;
    padding: 30px 17px;
    padding-top: 37px;
    padding-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #F4F5F7;
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2B2929;
    position: relative;
    max-height: 74px;
}

.inputV2~label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 17px;
    transition: all .2s ease;
    font-family: Cera Pro;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.08px;
    color: #9D9D9D;
}

@media (max-width: 767px) {
    .input {
        padding: 18px;
        height: 52px;
    }

    .inputV2 {
        padding-top: 34px;
        padding-bottom: 12px;
    }

    .inputBlock .inputBockClose {
        right: 60px;
        transform: translateY(-48%);
    }
}

/* Инпут END */

/* Чекбоксы */
.checkboxGroupCol {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox.error label {
    border-color: #FF004F;
}

.checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    pointer-events: none;
    opacity: 0;
}

.checkbox label {
    display: block;
    width: 16px;
    height: 16px;
    min-height: 16px;
    min-width: 16px;
    background-color: #F4F5F7;
    border-radius: 3px;
    position: relative;
    transition: all .3s ease;
    border: .5px solid transparent;
}

.checkbox label::before {
    content: '\e904';
    font-size: 8px;
    font-family: 'icomoon';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
    opacity: 0;
    color: #FF004F;
}

.checkbox span {
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-align: left;
}

.checkbox--fs14 span {
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.6px;
    letter-spacing: -1px;
    text-align: left;

}

.checkbox.active label::before {
    opacity: 1;
}

.checkbox--red.active label {
    background-color: #FF004F;
}

.checkbox--red label::before,
.checkbox--orange label::before,
.checkbox--pink label::before,
.checkbox--blue label::before,
.checkbox--green label::before {
    color: #F4F7FD;
}

.checkbox--orange.active label {
    background-color: #FFC045;
}

.checkbox--green.active label {
    background-color: #1AAE9F;
}

.checkbox--pink.active label {
    background-color: #CB61DD;
}

.checkbox--blue.active label {
    background-color: #608AC8;
}

@media (max-width: 767px) {
    .checkbox {
        align-items: flex-start;
    }

    .checkbox span {
        font-family: Cera Pro;
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
    }
}

/* Чекбоксы END */

/* Блок тэгов */
.tagBlock {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.tagBlock__title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    letter-spacing: 0.01em;
}

/* Блок тэгов END */

/* Тултип */
.tooltip {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tooltip__icon {
    color: #FF004F;
}

.tooltip__icon--active {
    display: none;
}

.tooltip__content {
    display: none;
    position: absolute;
    left: 0;
    /* top: -5px; */
    /* bottom: calc(100% + 5px); */
    bottom: 100%;
    margin-bottom: 5px;
    padding: 15px;
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0px 4px 20px 0px #54545426;
    min-width: 180px;
    z-index: 1;
    width: 270px;
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;

}


@media (max-width: 767px) {
    .tooltip__content {
        width: 200px;
    }
}

/* Тултип END */


/* Тэги */
.tagBlock {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tagGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 6px 10px;
    border-radius: 49px;
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #2B2929;
    width: fit-content;
    background-color: #F5F8FE;
    transition: all .3s ease;
    cursor: pointer;
}

.tag.active {
    background-color: #FF004F;
    color: #FFF;
}

.tag--no_interactive {
    cursor: default;
}

.textTag {
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    transition: all .3s ease;
    color: #919191;
}

.textTag:hover {
    color: #FF004F;
}

/* Тэги END */

/* Стрелки слайдера */
.slider_arrows {
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider_arrows--gap20 {
    gap: 20px;
}

.slider_arrows__item {
    padding: 10px;
    margin: -10px;
    cursor: pointer;
}

.slider_arrows__item path {
    transition: stroke .2s;
}

.slider_arrows__item.swiper-button-disabled {
    pointer-events: none;
}

.slider_arrows__item.swiper-button-disabled path[stroke] {
    stroke: #9D9D9D;
}

.slider_arrows__item img,
.slider_arrows__item svg {
    display: block;
}

/* Стрелки слайдера END */

/* Отступы */

.mb10 {
    margin-bottom: 10px;
}

/* Отступы END */

.hr {
    border-top: 1px solid #E2E2E2;
}

/* Список */

ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

li {
    font-size: 16px;
    line-height: 22.4px;
    padding-left: 13px;
    position: relative;
    margin-top: 5px;
}

li:first-child {
    margin-top: 0;
}

li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #2B2929;
}

@media (max-width: 1199px) {
    li {
        font-size: 14px;
        line-height: 16.8px;
    }

    li:before {
        top: 7px;
    }
}

/* Список END */

/* Аккордеоны */
.switchButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    line-height: 19.2px;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    transition: background .2s, padding .2s;
    border-radius: 15px 0px 0px 15px;
}

.switchButton__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: background .2s;
}

.switchButton:first-child {
    padding-top: 10px;
}

.switchButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    line-height: 19.2px;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    transition: background .2s, padding .2s;
    border-radius: 15px 0px 0px 15px;
}

.switchButton:last-child {
    margin-bottom: 0;
}

.switchButton__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: background .2s;
}

.switchButton__icon--w24 {
    width: 24px;
    height: 24px;
}

/* .switchButton__icon--w24:after,
.switchButton__icon--w24::before {
    width: 24px;
} */

.switchButton__icon:after,
.switchButton__icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #9D9D9D;
    transition: background .2s, opacity .2s;
}

.switchButton__icon:after {
    width: 1px;
    height: 7px;
}

.switchButton__icon:before {
    width: 7px;
    height: 1px;
}

.switchButton.active:first-child {
    padding-top: 40px;
}

.switchButton.active {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    pointer-events: none;
}

.switchButton.active .switchButton__icon {
    background: #FF004F;
}

.switchButton.active .switchButton__icon:after,
.switchButton.active .switchButton__icon:before {
    background: #FFF;
}

.switchButton.active .switchButton__icon:after {
    opacity: 0;
}


/* Аккордеоны END */

/* Блок переключатель */
.switchBlock {
    display: flex;
    align-items: center;
    padding: 4px 4px;
    gap: 4px;
    background-color: #F4F7FD;
    width: fit-content;
    border-radius: 7px;
}

.switchBlock__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
}

.switchBlock__button.active {
    background-color: #FF004F;
    pointer-events: none;

}

.switchBlock__button.active span {
    color: #F4F7FD;
}

.switchBlock__button span {
    font-size: 24px;
}

/* Блок переключатель END */

/* Круглые маркеры */
.marker {
    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    border-radius: 50%;
}

.marker--pink {
    background-color: #CB61DD;
}

.marker--yellow {
    background-color: #FFC045;
}

.marker--blue {
    background-color: #608AC8;
}

.marker--green {
    background-color: #1AAE9F;
}

/* Круглые маркеры END */

/* Табы */
.tabContent {
    display: none;
}

.tabContent.active {
    display: block;
}

/* Табы END */

@media (max-width: 1199px) {
    .hide_lg {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .show_lg {
        display: none !important;
    }
}

/* End */

/* Select */

.tabs_select {
    position: relative;
}

.tabs_select__head {
    background: #FFFFFF;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 15px;
    padding: 20px;
}

.tabs_select__head_text {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
}

.tabs_select__head_arrow {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F7FD;
}

.tabs_select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: #fff;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.tabs_select__option {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 19.2px;
}

.tabs_select__option.active {
    display: none;
}

.tabs_select.active {
    box-shadow: 0px 10px 15px 0px #54545426;
}

.tabs_select.active .tabs_select__head {
    border-radius: 15px 15px 0 0;
}

.tabs_select.active:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #E2E2E2;
}

.tabs_select.active .tabs_select__dropdown {
    opacity: 1;
    pointer-events: all;
    box-shadow: 0px 10px 15px 0px #54545426;
}

.tabs_select .tabs_select__head_arrow {
    transform: rotate(180deg);
}

.tabs_select.active .tabs_select__head_arrow {
    transform: rotate(0deg);
    background: #FF004F;
}

.tabs_select.active .tabs_select__head_arrow path[stroke] {
    stroke: #fff;
}

/* Select END */

/* Custom scroll */

.simplebar-scrollbar:before {
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #FF004F;
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
}

.simplebar-track.simplebar-horizontal {
    height: 4px;
}

.simplebar-track {
    background: #F4F7FD;
    border-radius: 1px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    top: 1px;
    bottom: 1px;
}

/* Custom scroll END */

/* Бургер меню */

.burgerButton {
    position: relative;
}

.burgerMenu {
    display: none;
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px #54545426;
    z-index: 5;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 387px;
    border-radius: 30px;
}

.burgerMenu__inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.burgerMenu__elem {
    font-family: Cera Pro;
    font-size: 22px;
    font-weight: 500;
    line-height: 26.4px;
    text-align: left;
}

.burgerButton__close {
    display: none;
}

.burgerButton__bg {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

@media (max-width: 767px) {
    .burgerButton {
        top: -3px;
    }

    .burgerMenu {
        width: 100vw;
        right: -20px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        box-shadow: none;
    }

    .burgerButton.active .burgerButton__bg {
        opacity: .6;
        pointer-events: all;
        transition: all .3s ease;
    }

    .burgerButton__bg {
        position: fixed;
        top: 66px;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #2B2929;
        z-index: 2;
        transition: all .3 ease;
    }

    .burgerMenu__elem {
        font-family: Cera Pro;
        font-size: 16px;
        font-weight: 500;
        line-height: 19.2px;
        text-align: left;
    }
}

/* Бургер меню END */
.checkbox:not(.checkbox--filterAll) {}

/* Текстовая кнопка  */
.textMoreButtonBlock {
    display: flex;
    justify-content: center;
}

.textMoreButtonBlock--left {
    justify-content: flex-start;
}

.textMoreButton {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    text-align: center;
    color: #FF004F;
    border-bottom: 1px solid #FF004F;
    cursor: pointer;
}

.textMoreButton:hover {
    border-color: transparent;
}

.textMoreButton--gray {
    color: #9D9D9D;
    border-color: #9D9D9D;
}

.textMoreButton--left {
    text-align: left;
    width: fit-content;
}


/* Текстовая кнопка END */


.viz {
    opacity: 1;
    transition: 1s;
}

.showMoreStructs {
    margin-top: 20px;
}

.not_found {
    padding: 128px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.not_found__img {
    height: 230px;
    max-width: 407px;
    width: 100%;
    object-fit: contain;
}

.not_found__text {
    font-size: 32px;
    font-weight: 500;
    line-height: 44.8px;
    text-align: center;
}

@media (max-width: 1199px) {
    .not_found {
        padding: 60px 0;
    }
}

.parallax-window {
    background: transparent !important;
    height: 100%;
}


/* Хлебные крошки  */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-bottom: 30px;
    padding-top: 60px;
}

a.breadcrumbs__elem {
    cursor: pointer;
}

.breadcrumbs__elem {
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #9D9D9D;
}

.breadcrumbs__elem::after {
    content: '/';
    position: relative;
    margin-left: 2px;
    color: #9D9D9D;
}

/* Хлебные крошки END */

/* Кнопка наверх */
.upButton {
    position: fixed;
    bottom: 20px;
    right: 60px;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 1000;
    box-shadow: 0px 4px 8px 0px #5454541A;

}

.upButton span {
    color: #FF004F;
    font-size: 20px;
    transition: all .3s ease;
}

.upButton:hover {
    background-color: #FF004F;
}

.upButton:hover span {
    color: #fff;
}

@media (max-width: 1199px) {
    .upButton {
        right: 30px;
    }
}

@media (max-width: 767px) {
    .upButton {
        right: 20px;
    }
}
/* Кнопка наверх END */