@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

*, :after, :before {
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none
}

input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    font-family: "Open Sans", sans-serif
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

input[type=number]:focus, input[type=number]:hover {
    -moz-appearance: number-input
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

html {
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-overflow-style: scrollbar
}

body {
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #181818;
    overflow-x: hidden
}

* {
    font-family: "Open Sans", sans-serif
}

p {
    margin-top: 0
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

img {
    display: block;
    max-width: 100%;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

img[data-src] {
    opacity: 0
}

.noscroll {
    overflow: hidden !important
}

.container {
    width: 1260px;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%
}

@media (max-width: 1260px) {
    .container {
        width: 960px
    }
}

@media (max-width: 992px) {
    .container {
        width: 720px
    }
}

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

.button {
    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;
    width: 210px;
    max-width: 100%;
    background: #EB1C24;
    color: white;
    cursor: pointer;
    padding: 11px 15px 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #EB1C24;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.button--wide {
    width: 310px
}

.button:hover {
    color: rgba(255, 255, 255, 0.7)
}

.button:active {
    background: #fff;
    color: #EB1C24
}

.block-title {
    display: block;
    position: relative;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 160px 0 50px;
    padding-bottom: 40px;
    max-width: 850px
}

.block-title b, .block-title span, .block-title strong {
    color: #EB1C24
}

.block-title:after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: #EB1C24;
    position: absolute;
    left: 0;
    bottom: 0
}

.block-title--full {
    max-width: 100%
}

@media (max-width: 992px) {
    .block-title {
        font-size: 36px;
        margin: 80px 0 20px;
        padding-bottom: 20px
    }
}

@media (max-width: 550px) {
    .block-title {
        font-size: 24px
    }
}

.content {
    color: #787878;
    line-height: 1.7;
    margin-bottom: 110px
}

.content p {
    margin-bottom: 25px
}

.content ul {
    margin: 25px 0
}

.content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 25px
}

.content ul li:last-child {
    margin-bottom: 0
}

.content ul li:before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background: #EB1C24;
    border-radius: 50%;
    top: 10px;
    left: 0
}

.content ol {
    margin: 25px 0;
    list-style: none;
    counter-reset: my-counter;
    padding-left: 0
}

.content ol li {
    counter-increment: my-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px
}

.content ol li:last-child {
    margin-bottom: 0
}

.content ol li:before {
    content: "0" counter(my-counter) ".";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #EB1C24
}

.content ol li:nth-child(n+10):before {
    content: counter(my-counter) "."
}

.content h1, .content h2 {
    display: block;
    position: relative;
    font-size: 48px;
    color: #181818;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 50px 0 50px;
    padding-bottom: 40px;
    max-width: 750px
}

.content h1 b, .content h1 span, .content h1 strong, .content h2 b, .content h2 span, .content h2 strong {
    color: #EB1C24
}

.content h1:after, .content h2:after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: #EB1C24;
    position: absolute;
    left: 0;
    bottom: 0
}

.content h1:first-child, .content h2:first-child {
    margin: 160px 0 50px
}

.content h3, .content h4 {
    display: block;
    color: #EB1C24;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px
}

.content a:not(.button) {
    display: inline-block;
    font-weight: 700;
    color: #EB1C24;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.content a:not(.button):hover {
    color: #ff4f3f
}

.content img {
    display: block;
    width: 100%;
    height: auto;
}

.content figure {
	margin: 50px 0	
}
	
.content figure figcaption {
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: #A2A2A2;
	text-align: center;
}

.content blockquote:before {
	content: '';
	display: block;
	background-image: url('https://alfarol.if.ua/wp-content/uploads/2022/02/blockuqout.svg');
	background-size: contain;
	width: 40px;
	height: 30px;
	margin: 0 auto 20px;
}

.content blockquote {
    display: block;
    padding: 30px 140px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 30px rgba(69, 69, 69, 0.05);
    box-shadow: 0px 4px 30px rgba(69, 69, 69, 0.05);
    margin: 50px 0;
    text-align: center
}

.content .quote svg {
    display: block;
    margin: 0 auto 20px
}

.content blockquote p {
    margin-bottom: 10px
}

.content blockquote cite {
    font-weight: 600;
	font-style: normal;
    margin-bottom: 3px
}

.content .quote-position {
    color: #A2A2A2
}

@media (max-width: 992px) {
    .content h1, .content h2 {
        font-size: 36px;
        margin: 80px 0 20px;
        padding-bottom: 20px
    }

    .content figure {
        margin: 30px 0
    }

    .content blockquote {
        padding: 40px 15px;
        margin: 40px 0
    }

    .content blockquote:before {
        margin: 0 auto 15px
    }
}

@media (max-width: 550px) {
    .content p {
        margin-bottom: 15px
    }

    .content h1, .content h2 {
        font-size: 24px
    }

    .content ul {
        margin: 15px 0
    }

    .content ol {
        margin: 15px 0
    }

    .content ol li {
        padding-left: 35px;
        margin-bottom: 15px
    }

    .content ol li:before {
        top: 0;
        font-size: 14px;
        line-height: 1.7
    }

    .content figure {
        margin: 20px 0
    }
}

.popup, .success-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999
}

.popup__body, .success-popup__body {
    width: calc(100% - 30px);
    max-width: 660px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 70px 35px;
    background: #fff;
    z-index: 1;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    text-align: center
}

#callback-popup .popup__body, #callback-popup .success-popup__body {
    max-width: 500px
}

.popup__bg, .success-popup__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #181818;
    opacity: 0.5;
    z-index: 0
}

.popup__close, .success-popup__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    width: 45px;
    height: 45px;
    top: 10px;
    right: 10px
}

.popup__close svg, .success-popup__close svg {
    display: block;
    width: 22px;
    fill: #181818;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.popup__close:hover svg, .success-popup__close:hover svg {
    fill: #EB1C24
}

.popup__title, .success-popup__title {
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px
}

.popup__title span, .success-popup__title span {
    color: #EB1C24
}

.popup__subtitle, .success-popup__subtitle {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #787878
}

.popup-row, .success-popup-row {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative
}

.popup-row--button, .success-popup-row--button {
    margin-top: 15px
}

.popup-row:last-child, .success-popup-row:last-child {
    margin-bottom: 0
}

.popup-row__input, .success-popup-row__input {
    display: block;
    width: 100%;
    border: 1px solid #CDCDCD;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: #F8F8F8;
    font-size: 14px;
    line-height: 1;
    height: 50px;
    padding: 16px 20px;
    color: #181818;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.popup-row__input::-webkit-input-placeholder, .success-popup-row__input::-webkit-input-placeholder {
    color: #787878
}

.popup-row__input::-moz-placeholder, .success-popup-row__input::-moz-placeholder {
    color: #787878
}

.popup-row__input:-ms-input-placeholder, .success-popup-row__input:-ms-input-placeholder {
    color: #787878
}

.popup-row__input::-ms-input-placeholder, .success-popup-row__input::-ms-input-placeholder {
    color: #787878
}

.popup-row__input::placeholder, .success-popup-row__input::placeholder {
    color: #787878
}

.popup-row__input--textarea, .success-popup-row__input--textarea {
    height: 100px;
    resize: none;
    padding: 16px 20px
}

.popup-row.has-error .popup-row__input, .popup-row.has-error .success-popup-row__input, .success-popup-row.has-error .popup-row__input, .success-popup-row.has-error .success-popup-row__input {
    border-color: #eb585c
}

.popup-row .button, .success-popup-row .button {
    width: 100%
}

@media (max-width: 992px) {
    .popup__title, .success-popup__title {
        font-size: 24px;
        text-align: left
    }
}

@media (max-width: 550px) {
    .popup__body, .success-popup__body {
        padding: 50px 15px
    }

    .popup__close, .success-popup__close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px
    }
}

.success-popup__title {
    text-align: center
}

.lg-toolbar .lg-icon {
    display: none
}

.lg-toolbar .lg-icon.lg-close {
    display: block
}

.notfount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 50px
}

.notfount-content {
    width: calc(50% - 15px)
}

.notfount-image {
    width: calc(50% - 15px)
}

.notfount h1 {
    display: block;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 30px;
    text-align: left
}

.notfount p {
    line-height: 2;
    color: #787878;
    margin-bottom: 35px
}

.notfount-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px
}

.notfount-contact a {
    display: block;
    font-weight: 700;
    margin-left: 10px;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.notfount-contact a:hover {
    color: #EB1C24
}

.notfount-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.notfount-button a {
    display: block;
    background: #EB1C24;
    cursor: pointer;
    padding: 23px 40px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-transform: uppercase
}

.notfount-button a:hover {
    background: #ff4f3f
}

.notfount-button a:focus {
    background: #ff4f3f
}

@media (max-width: 768px) {
    .notfount {
        text-align: center
    }

    .notfount-content {
        width: 100%;
        margin-bottom: 30px
    }

    .notfount-image {
        width: 100%
    }

    .notfount h1 {
        font-size: 24px;
        text-align: center
    }

    .notfount p br {
        display: none
    }

    .notfount-button, .notfount-contact {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width: 768px) {
    .notfount h1 {
        font-size: 20px
    }
}

.nice-select {
    display: block;
    position: relative;
    width: 100%;
    border: 1px solid #787878;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: #fff;
    font-size: 17px;
    line-height: 1.4;
    height: 50px;
    padding: 12px 20px;
    color: #787878;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 25px
}

.nice-select:hover {
    border-color: #EB1C24
}

.nice-select.open, .nice-select:active, .nice-select:focus {
    border-color: #EB1C24
}

.nice-select:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4642 14.9508L16.7042 10.7108C16.7979 10.6178 16.8723 10.5072 16.9231 10.3854C16.9739 10.2635 17 10.1328 17 10.0008C17 9.86878 16.9739 9.73807 16.9231 9.61622C16.8723 9.49436 16.7979 9.38376 16.7042 9.29079C16.5168 9.10454 16.2634 9 15.9992 9C15.735 9 15.4816 9.10454 15.2942 9.29079L11.7542 12.8308L8.2142 9.29079C8.02684 9.10454 7.77339 9 7.5092 9C7.24502 9 6.99156 9.10454 6.8042 9.29079C6.71152 9.38423 6.6382 9.49505 6.58843 9.61689C6.53867 9.73872 6.51344 9.86919 6.5142 10.0008C6.51344 10.1324 6.53867 10.2629 6.58843 10.3847C6.63819 10.5065 6.71152 10.6174 6.8042 10.7108L11.0442 14.9508C11.1372 15.0445 11.2478 15.1189 11.3696 15.1697C11.4915 15.2205 11.6222 15.2466 11.7542 15.2466C11.8862 15.2466 12.0169 15.2205 12.1388 15.1697C12.2606 15.1189 12.3712 15.0445 12.4642 14.9508Z' fill='%23758082'/%3E%3C/svg%3E%0A");
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: calc(50% - 12px);
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.nice-select.open:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #cccccc
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .list {
    width: 100%;
    background-color: #fff;
    border: 1px solid #787878;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    border-radius: 25px
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important
}

.nice-select .option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.4;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding: 0 20px;
    text-align: left;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.nice-select .option.focus, .nice-select .option:hover {
    background-color: #EB1C24;
    color: #fff
}

.nice-select .option.selected {
    font-weight: bold;
    color: #787878
}

.nice-select .option.selected.focus, .nice-select .option.selected:hover {
    background-color: #EB1C24;
    color: #fff
}

.nice-select .list:hover .option.selected:not(:hover) {
    background-color: transparent !important;
    color: #787878
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #787878;
    cursor: default
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

.header {
    width: 100%;
    position: fixed;
    z-index: 10;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: rgba(255, 255, 255, 0.4)
}

.header.scroll {
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1)
}

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-logo {
    width: 140px
}

.header-logo a, .header-logo img {
    display: block;
    width: 100%
}

.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.35
}

.header-menu li {
    position: relative;
    margin-right: 30px
}

.header-menu li:last-child {
    margin-right: 0
}

.header-menu li:hover .header-menu__links, .header-menu li:hover .header-menu__products {
    display: block
}

.header-menu--link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    padding: 36px 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.header-menu--link svg {
    margin-left: 8px;
    margin-top: 2px;
    fill: #181818;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.header-menu--link--current, .header-menu--link:hover {
    color: #EB1C24
}

.header-menu--link--current svg, .header-menu--link:hover svg {
    fill: #EB1C24;
    -webkit-transform: translateY(3px);
    transform: translateY(3px)
}

.header-menu__products {
    display: none;
    position: absolute;
    left: -20px;
    top: 100%;
    padding: 25px 35px;
    background: #fff;
    width: auto;
    min-width: 270px;
    white-space: nowrap;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    line-height: 1.3;
    font-weight: 600
}

.header-menu__products .product-category {
    margin-bottom: 25px
}

.header-menu__products .product-category:last-child {
    margin-bottom: 0
}

.header-menu__products .product-category__link {
    display: block;
    font-size: 18px;
    color: #EB1C24;
    max-width: mac-content;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.header-menu__products .product-category__link:hover {
    color: #ff4f3f
}

.header-menu__products .product-category__link + .product-category__sub {
    margin-top: 18px
}

.header-menu__products .product-category__sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-bottom: 18px;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.header-menu__products .product-category__sub:last-child {
    margin-bottom: 0
}

.header-menu__products .product-category__sub img {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px
}

.header-menu__products .product-category__sub:hover {
    color: #EB1C24
}

.header-menu__links {
    display: none;
    position: absolute;
    left: -20px;
    top: 100%;
    padding: 25px 35px;
    background: #fff;
    width: auto;
    min-width: 240px;
    white-space: nowrap;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    line-height: 1.3;
    font-weight: 600
}

.header-menu__links ul li {
    font-weight: 600;
    margin-bottom: 10px
}

.header-menu__links ul li:last-child {
    margin-bottom: 0
}

.header-menu__links ul li a:hover, .header-menu__links ul li span {
    color: #EB1C24
}

.header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-contact__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
    margin-right: 60px;
    white-space: nowrap
}

.header-contact__block:last-child {
    margin-right: 0
}

.header-contact__block svg {
    display: block;
    width: auto;
    height: 14px;
    margin-right: 8px
}

.header-contact__block a {
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.header-contact__block a:hover {
    color: #EB1C24
}

.header-currency {
    width: 130px;
    font-size: 12px;
    line-height: 1.3
}

.header-currency__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4px
}

.header-currency__row:last-child {
    margin-bottom: 0
}

.header-currency__row .currency-name {
    margin-right: 8px
}

.header-currency__row .currency-value {
    font-weight: 600
}

.header-burger {
    display: none;
    padding: 10px 0;
    cursor: pointer
}

.header-burger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #181818;
    margin-bottom: 8px
}

.header-burger span:last-child {
    margin-bottom: 0
}

@media (max-width: 1260px) {
    .header-logo {
        width: 120px
    }

    .header-menu--link {
        padding: 36px 10px
    }

    .header-menu li {
        margin-right: 5px
    }

    .header-contact__block {
        margin-right: 30px
    }
}

@media (max-width: 992px) {
    .header {
        padding: 9px 0
    }

    .header-logo {
        width: 100px
    }

    .header-contact, .header-currency, .header-menu {
        display: none
    }

    .header-burger {
        display: block
    }
}

@media (max-width: 550px) {
    .header-logo {
        width: 75px
    }
}

.mobilemenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    -moz-appearance: textfield;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mobilemenu-body {
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 3;
    padding: 60px 20px 60px
}

.mobilemenu__close {
    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;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer
}

.mobilemenu__close svg {
    display: block;
    width: 30px;
    height: auto;
    fill: #181818
}

.mobilemenu__logo {
    width: 140px;
    margin: 0 auto 60px
}

.mobilemenu__logo a, .mobilemenu__logo img {
    display: block;
    width: 100%
}

.mobilemenu ul {
    width: 100%;
    margin-bottom: 20px
}

.mobilemenu ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.mobilemenu ul li:last-child {
    margin-bottom: 0
}

.mobilemenu ul li a, .mobilemenu ul li span {
    display: block;
    font-weight: 600;
    padding: 0 15px;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.mobilemenu ul li a:hover, .mobilemenu ul li span:hover {
    color: #EB1C24
}

.mobilemenu ul li span {
    color: #EB1C24
}

.mobilemenu ul li .product {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px
}

.mobilemenu ul li .product span {
    padding: 0;
    color: #181818
}

.mobilemenu ul li .product svg {
    margin-left: 8px;
    margin-top: 2px;
    fill: #181818;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.mobilemenu ul li .product.open svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.mobilemenu ul li .product-category {
    font-weight: 600;
    color: #EB1C24
}

.mobilemenu ul li .product-category__cheldren {
    display: block
}

.mobilemenu ul li ul {
    margin-top: 20px;
    margin-bottom: 0;
    display: none
}

.mobilemenu ul li ul a, .mobilemenu ul li ul span {
    font-weight: 400
}

.mobilemenu__contact {
    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;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 20px
}

.mobilemenu__contact:last-child {
    margin-right: 0
}

.mobilemenu__contact svg {
    display: block;
    width: auto;
    height: 14px;
    margin-right: 8px
}

.mobilemenu__contact a {
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.mobilemenu__contact a:hover {
    color: #EB1C24
}

.mobilemenu__currency {
    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;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.3
}

.mobilemenu__currency:last-child {
    margin-bottom: 0
}

.mobilemenu__currency .currency-name {
    margin-right: 8px
}

.mobilemenu__currency .currency-value {
    font-weight: 600
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 5px
}

.breadcrumbs li {
    position: relative;
    padding-right: 15px
}

.breadcrumbs li:after {
    content: "/";
    display: block;
    position: absolute;
    right: 5px;
    top: 0
}

.breadcrumbs li:last-child {
    padding-right: 0
}

.breadcrumbs li:last-child:after {
    display: none
}

.breadcrumbs li a {
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.breadcrumbs li a:hover {
    color: #EB1C24
}

@media (max-width: 550px) {
    .breadcrumbs {
        font-size: 12px
    }
}

.footer {
    background: #181818;
    position: relative;
    padding: 60px 0;
    color: #fff
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 3
}

.footer ul {
    color: #E5E5E5
}

.footer ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px
}

.footer ul li:last-child {
    margin-bottom: 0
}

.footer ul li a {
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.footer ul li a:hover {
    color: #EB1C24
}

.footer-col {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(25% - 15px)
}

.footer-col__title {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px
}

.footer-col__logo {
    width: 100%;
    max-width: 180px;
    margin-bottom: 20px
}

.footer-col__logo a, .footer-col__logo img {
    display: block;
    width: 100%
}

.footer-col__copyright {
    font-size: 12px;
    color: #E5E5E5;
    margin-top: auto;
    margin-bottom: 20px
}

.footer-col__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-col__socials a {
    display: block;
    width: 30px;
    margin-right: 25px
}

.footer-col__socials a:last-child {
    margin-right: 0
}

.footer-col__socials a svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.footer-col__socials a:hover svg {
    fill: #EB1C24
}

.footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #E5E5E5
}

.footer-contact__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    margin-top: 5px
}

.footer-contact__icon svg {
    display: block
}

.footer-contact__text {
    width: calc(100% - 30px);
    line-height: 1.5
}

.footer-contact__text a {
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.footer-contact__text a:hover {
    color: #EB1C24
}

.footer-contact:last-child .footer-contact__icon {
    margin-top: 2px
}

@media (max-width: 992px) {
    .footer-col {
        width: calc(50% - 15px)
    }

    .footer-col:first-child {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 30px
    }

    .footer-col:nth-child(2) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .footer-col:nth-child(3) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .footer-col:nth-child(4) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 30px
    }
}

@media (max-width: 550px) {
    .footer-col {
        width: calc(50% - 5px)
    }

    .footer-col:first-child {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .footer-col:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 30px
    }

    .footer-col:nth-child(3) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        width: 100%
    }

    .footer-col:nth-child(4) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 30px
    }
}

.scroll-top {
    display: none;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    z-index: 99
}

.scroll-top__arrow {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(235, 28, 36, 0.5);
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.scroll-top__arrow:hover {
    background: rgba(235, 28, 36, 0.8)
}

.scroll-top__arrow svg {
    display: block;
    width: 18px;
    height: auto;
    fill: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

@media (max-width: 413px) {
    .scroll-top {
        width: 40px;
        height: 40px
    }

    .scroll-top__arrow svg {
        width: 15px
    }
}

.home-features__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.home-features__list .feature {
    width: calc(50% - 15px);
    margin-bottom: 50px;
    color: #787878
}

.home-features__list .feature:last-child, .home-features__list .feature:nth-last-child(2) {
    margin-bottom: 0
}

.home-features__list .feature-title {
    display: block;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    color: #EB1C24;
    margin-bottom: 10px;
    line-height: 1.2
}

.home-features__list .feature-text {
    max-width: 390px
}

.home-quality__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px
}

.home-quality__list .quality-item {
    width: 25%;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px
}

.home-quality__list .quality-item:last-child, .home-quality__list .quality-item:nth-last-child(2), .home-quality__list .quality-item:nth-last-child(3), .home-quality__list .quality-item:nth-last-child(4) {
    margin-bottom: 0
}

.home-quality__list .quality-item img {
    width: 90px;
    height: auto;
    border-radius: 50%
}

.home-quality__list .quality-item__text {
    width: calc(100% - 100px);
    color: #787878
}

.home-quality__list .quality-item__title {
    font-weight: 600;
    font-size: 18px;
    color: #EB1C24;
    margin-bottom: 8px
}

.home-portfolio {
    position: relative;
    margin-bottom: 150px
}

.home-portfolio__slider .slick-track {
    margin: 0
}

.home-portfolio__slider .portfolio-item {
    margin-right: 5px
}

.home-portfolio__slider .portfolio-item img {
    width: 100%
}

.home-portfolio__slider .arrow-left, .home-portfolio__slider .arrow-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    width: 42px;
    height: 16px;
    z-index: 3;
    bottom: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.home-portfolio__slider .arrow-left {
    right: 70px
}

.home-portfolio__slider .arrow-left:hover {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px)
}

.home-portfolio__slider .arrow-right {
    right: 0
}

.home-portfolio__slider .arrow-right:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px)
}

.home-portfolio .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    padding-right: 80px
}

.home-portfolio .slick-dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-right: 20px;
    margin-top: 10px;
    cursor: pointer
}

.home-portfolio .slick-dots li:last-child {
    margin-right: 0
}

.home-portfolio .slick-dots li:only-child {
    display: none
}

.home-portfolio .slick-dots li button {
    width: 7px;
    height: 7px;
    font-size: 0;
    border-radius: 50%;
    border: none;
    background: #787878;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    padding: 0
}

.home-portfolio .slick-dots li button:hover {
    background: #EB1C24
}

.home-portfolio .slick-dots li.slick-active button {
    background: #EB1C24
}

.home-reviews {
    max-width: 800px;
    margin: 0 auto 150px
}

.home-reviews__title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px
}

.home-reviews__head {
    background: #fafafb;
    padding: 20px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.home-reviews__head .google {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px
}

.home-reviews__head .google svg {
    display: block;
    width: 80px;
    height: auto;
    margin-right: 10px
}

.home-reviews__head .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.home-reviews__head .rating-number {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px
}

.home-reviews__head .rating-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px
}

.home-reviews__head .rating-stars svg {
    width: 20px;
    height: auto;
    margin-right: 3px;
    fill: #a2a2a2
}

.home-reviews__head .rating-stars svg:last-child {
    margin-right: 0
}

.home-reviews__head .rating-stars svg.active {
    fill: #f9b402
}

.home-reviews__head .rating-count {
    font-size: 12px;
    color: #a2a2a2
}

.home-reviews__head--right a {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    background: #4285f4;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.home-reviews__head--right a:hover {
    background: #EB1C24
}

.home-reviews__list {
    background: #fafafb;
    padding: 20px 20px;
    border-radius: 10px;
    position: relative
}

.home-reviews__list .arrow-left, .home-reviews__list .arrow-right {
    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;
    position: absolute;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 3;
    top: calc(50% - 15px);
    background: #868686;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.home-reviews__list .arrow-left svg, .home-reviews__list .arrow-right svg {
    width: 8px;
    height: auto;
    fill: #fff
}

.home-reviews__list .arrow-left:hover, .home-reviews__list .arrow-right:hover {
    background: #4285f4
}

.home-reviews__list .arrow-left {
    left: 10px
}

.home-reviews__list .arrow-right {
    right: 10px
}

.home-reviews__list .review-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7px
}

.home-reviews__list .review-image img {
    display: block;
    width: auto;
    height: 40px;
    border-radius: 50%
}

.home-reviews__list .review-author {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px
}

.home-reviews__list .review-rating {
    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;
    margin-bottom: 5px
}

.home-reviews__list .review-rating svg {
    width: 20px;
    height: auto;
    margin-right: 3px;
    fill: #a2a2a2
}

.home-reviews__list .review-rating svg:last-child {
    margin-right: 0
}

.home-reviews__list .review-rating svg.active {
    fill: #f9b402
}

.home-reviews__list .review-time {
    text-align: center;
    font-size: 12px;
    color: #a2a2a2;
    margin-bottom: 15px
}

.home-reviews__list .review-text {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    padding: 0 25px
}

@media (max-width: 1260px) {
    .home-quality__list .quality-item {
        width: 33.3333%
    }

    .home-quality__list .quality-item:nth-last-child(4) {
        margin-bottom: 30px
    }
}

@media (max-width: 992px) {
    .home-quality__list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0
    }

    .home-quality__list .quality-item {
        width: calc(50% - 15px);
        padding: 0
    }

    .home-quality__list .quality-item:nth-last-child(3) {
        margin-bottom: 30px
    }
}

@media (max-width: 550px) {
    .home-features__list .feature {
        width: 100%;
        margin-bottom: 20px;
        color: #787878
    }

    .home-features__list .feature:nth-last-child(2) {
        margin-bottom: 20px
    }

    .home-features__list .feature-title {
        font-size: 24px;
        margin-bottom: 5px
    }

    .home-quality__list .quality-item {
        width: 100%;
        margin-bottom: 20px
    }

    .home-quality__list .quality-item:nth-last-child(2) {
        margin-bottom: 20px
    }

    .home-quality__list .quality-item img {
        width: 60px
    }

    .home-quality__list .quality-item__text {
        width: calc(100% - 70px)
    }

    .home-quality__list .quality-item__title {
        font-size: 14px;
        margin-bottom: 5px
    }

    .home-portfolio__slider .portfolio-item {
        margin-right: 0
    }

    .home-portfolio__slider .arrow-left, .home-portfolio__slider .arrow-right {
        width: 35px;
        bottom: -5px
    }

    .home-portfolio__slider .arrow-left {
        right: 45px
    }

    .home-portfolio .slick-dots {
        margin-top: 20px
    }

    .home-portfolio .slick-dots li {
        margin-right: 15px
    }

    .home-portfolio .slick-dots li:only-child {
        display: none
    }

    .home-reviews {
        margin: 0 auto 100px
    }

    .home-reviews__title {
        font-size: 22px
    }

    .home-reviews__head {
        display: block;
        text-align: center
    }

    .home-reviews__head .google {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .home-reviews__head .rating {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .home-reviews__head--right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 15px
    }

    .home-reviews__list {
        padding: 15px 15px
    }

    .home-reviews__list .arrow-left {
        left: -15px
    }

    .home-reviews__list .arrow-right {
        right: -15px
    }

    .home-reviews__list .review-text {
        font-weight: 400;
        font-size: 16px;
        padding: 0 5px
    }
}

.page-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px
}

.page-banner .container {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%
}

.page-banner__text {
    width: calc(100% - 600px);
    position: relative;
    padding-bottom: 40px
}

.page-banner__text:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 4px;
    background: #EB1C24
}

.page-banner__title {
    font-size: 64px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 460px
}

.page-banner__title span {
    color: #EB1C24
}

.page-banner__subtitle {
    max-width: 300px
}

.page-banner__form {
    width: 390px;
    background: rgba(255, 255, 255, 0.6);
    padding: 40px 40px
}

.page-banner__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 30px;
    right: 15px
}

.page-banner__socials a {
    display: block;
    width: 30px;
    margin-left: 25px
}

.page-banner__socials a:first-child {
    margin-left: 0
}

.page-banner__socials a svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #181818;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.page-banner__socials a:hover svg {
    fill: #EB1C24
}

.page-banner__dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.page-banner__dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 40px;
    cursor: pointer
}

.page-banner__dots li:last-child {
    margin-bottom: 0
}

.page-banner__dots li:only-child {
    display: none
}

.page-banner__dots li button {
    width: 7px;
    height: 7px;
    font-size: 0;
    border-radius: 50%;
    border: none;
    background: #787878;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    padding: 0
}

.page-banner__dots li button:hover {
    background: #EB1C24
}

.page-banner__dots li.slick-active button {
    background: #EB1C24
}

.page-banner__slider {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.page-banner__slider:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5)
}

.page-banner__slider img {
    width: 100%;
    height: 100vh;
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

@media (max-width: 992px) {
    .page-banner .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-bottom: 40px
    }

    .page-banner__text {
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 30px
    }

    .page-banner__title {
        font-size: 42px
    }

    .page-banner__form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 80px 30px 0
    }

    .page-banner__form form {
        width: 350px;
        max-width: 100%
    }

    .page-banner__socials {
        position: relative;
        bottom: auto;
        right: auto
    }

    .page-banner__socials a {
        display: block;
        width: 30px;
        margin-left: 25px
    }

    .page-banner__socials a:first-child {
        margin-left: 0
    }

    .page-banner__socials a svg {
        display: block;
        width: 30px;
        height: 30px;
        fill: #181818;
        -webkit-transition: 0.2s;
        transition: 0.2s
    }

    .page-banner__socials a:hover svg {
        fill: #EB1C24
    }

    .page-banner__dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .page-banner__dots ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .page-banner__dots li {
        margin-bottom: 0;
        margin: 0 12.5px
    }

    .page-banner__dots li:only-child {
        display: none
    }
}

@media (max-width: 550px) {
    .page-banner__title {
        font-size: 36px
    }
}

.page-categories__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px
}

.page-categories__list .category {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    height: 310px;
    position: relative;
    padding: 15px 15px;
    overflow: hidden
}

.page-categories__list .category-container {
    width: 20%;
    padding: 5px
}

.page-categories__list .category:after {
    content: "";
    display: block;
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    opacity: 0.85;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.page-categories__list .category__name {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px
}

.page-categories__list .category__description {
    display: block;
    width: 100%;
    position: relative;
    z-index: 3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    margin-bottom: 7px
}

.page-categories__list .category__link {
    display: block;
    font-weight: 600;
    text-decoration: underline;
    color: #EB1C24;
    position: relative;
    z-index: 3
}

.page-categories__list .category__image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.25s;
    transition: 0.25s
}

.page-categories__list .category:hover:after {
    opacity: 1
}

.page-categories__list .category:hover .category__name {
    color: #EB1C24
}

.page-categories__list .category:hover .category__image {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.page-categories__list--subcategory {
    margin: 0 -15px
}

.page-categories__list--subcategory .category {
    height: 390px;
    padding: 25px 25px
}

.page-categories__list--subcategory .category-container {
    width: 50%;
    padding: 15px
}

@media (max-width: 1260px) {
    .page-categories__list .category {
        height: 250px
    }
}

@media (max-width: 992px) {
    .page-categories__list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .page-categories__list .category {
        height: 310px
    }

    .page-categories__list .category-container {
        width: 50%
    }
}

@media (max-width: 768px) {
    .page-categories__list--subcategory {
        margin: 0
    }

    .page-categories__list--subcategory .category {
        min-height: 180px;
        padding: 60px 15px 15px
    }

    .page-categories__list--subcategory .category-container {
        width: 100%;
        padding: 0;
        margin-bottom: 10px
    }

    .page-categories__list--subcategory .category-container:last-child {
        margin-bottom: 0
    }
}

@media (max-width: 550px) {
    .page-categories__list {
        margin: 0
    }

    .page-categories__list .category-container {
        width: 100%
    }

    .page-categories__list--subcategory .category {
        height: auto
    }
}

.page-callback {
    display: block;
    position: relative;
    width: 100%;
    padding: 90px 0
}

.page-callback:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90.06deg, #FFFFFF 0.06%, rgba(255, 255, 255, 0) 99.95%);
    opacity: 0.85
}

.page-callback .container {
    position: relative;
    z-index: 3
}

.page-callback .block-title {
    margin-top: 0
}

.page-callback__form {
    max-width: 310px
}

.page-callback__bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 0
}

@media (max-width: 550px) {
    .page-callback {
        padding: 50px 0
    }
}

.page-blog {
    margin-bottom: 120px
}

.page-blog .block-title {
    padding-bottom: 0
}

.page-blog .block-title:after {
    display: none
}

.page-blog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px
}

.page-blog__list .article {
    position: relative;
    display: block;
    width: 100%;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.page-blog__list .article-container {
    width: 33.33333%;
    padding: 0 15px;
    margin-bottom: 30px
}

.page-blog__list .article-container:last-child, .page-blog__list .article-container:nth-last-child(2), .page-blog__list .article-container:nth-last-child(3) {
    margin-bottom: 0
}

.page-blog__list .article img {
    display: block;
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin-bottom: 25px
}

.page-blog__list .article__name {
    width: 100%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 24px;
    padding: 0 20px
}

.page-blog__list .article__description {
    width: 100%;
    color: #787878;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    margin-bottom: 10px
}

.page-blog__list .article__link {
    display: block;
    font-weight: 600;
    text-decoration: underline;
    color: #EB1C24;
    padding: 0 20px
}

.page-blog__list .article:hover {
    -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2)
}

.page-blog__list .article:hover .article__name {
    color: #EB1C24
}

.page-blog__list .navigation {
    width: 100%;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 1.3;
    margin-top: 50px
}

.page-blog__list .navigation .wp-pagenavi {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.page-blog__list .navigation a, .page-blog__list .navigation span {
    margin: 0 5px
}

.page-blog__list .navigation .current {
    font-weight: 600
}

.page-blog__list .navigation-next, .page-blog__list .navigation-prev {
    display: block;
    width: 46px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.page-blog__list .navigation-prev:hover {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px)
}

.page-blog__list .navigation-next:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px)
}

.page-blog__list--empty {
    width: 100%;
    padding: 0 15px;
    font-size: 18px
}

@media (max-width: 992px) {
    .page-blog__list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0
    }

    .page-blog__list .article-container {
        width: calc(50% - 15px);
        padding: 0
    }

    .page-blog__list .article-container:nth-last-child(3) {
        margin-bottom: 30px
    }

    .page-blog__list .article img {
        height: 250px
    }

    .page-blog__list .navigation {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px
    }

    .page-blog__list .navigation .wp-pagenavi {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .page-blog__list--empty {
        padding: 0
    }
}

@media (max-width: 550px) {
    .page-blog__list .article-container {
        width: 100%;
        margin-bottom: 20px
    }

    .page-blog__list .article-container:nth-last-child(2) {
        margin-bottom: 20px
    }

    .page-blog__list .article img {
        height: 180px
    }

    .page-blog__list--empty {
        font-size: 16px
    }
}

.page-map {
    width: 100%
}

.page-map #map, .page-map iframe {
    display: block;
    width: 100%;
    height: 410px
}

.page-aboutus {
    padding: 150px 0 150px
}

.page-aboutus__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 80px
}

.page-aboutus__row:last-child {
    margin-bottom: 0
}

.page-aboutus__row:nth-child(2n) .page-aboutus__row--image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.page-aboutus__row--image {
    width: calc(50% - 30px)
}

.page-aboutus__row--image img {
    width: 100%
}

.page-aboutus__row--text {
    width: calc(50% - 30px)
}

.page-aboutus__row--text .content {
    margin-bottom: 0
}

.page-aboutus__title {
    display: block;
    font-weight: 600;
    color: #EB1C24;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px
}

@media (max-width: 992px) {
    .page-aboutus {
        padding: 100px 0
    }

    .page-aboutus__row {
        margin-bottom: 60px
    }

    .page-aboutus__row--image {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .page-aboutus__row--text {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 20px
    }
}

@media (max-width: 550px) {
    .page-aboutus {
        padding: 60px 0
    }
}

.page-questions__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.page-questions__list .question {
    display: block;
    position: relative;
    width: calc(50% - 15px);
    margin-bottom: 12px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 10px rgba(91, 91, 91, 0.05);
    box-shadow: 0px 4px 10px rgba(91, 91, 91, 0.05);
    -moz-appearance: textfield;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.page-questions__list .question-head {
    position: relative;
    padding: 20px 60px 20px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.page-questions__list .question-head__minus, .page-questions__list .question-head__plus {
    position: absolute;
    top: 20px;
    right: 22px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.page-questions__list .question-head__minus {
    opacity: 0
}

.page-questions__list .question-head.open .question-head__plus {
    opacity: 0
}

.page-questions__list .question-head.open .question-head__minus {
    opacity: 1
}

.page-questions__list .question-body {
    display: none;
    padding: 0 25px 20px
}

@media (max-width: 992px) {
    .page-questions__list .question {
        width: 100%;
        margin-bottom: 10px
    }

    .page-questions__list .question__minus, .page-questions__list .question__plus {
        top: calc(50% - 21px);
        right: 15px
    }
}

@media (max-width: 550px) {
    .page-questions__list .question-head {
        font-size: 14px;
        line-height: 1.7;
        padding: 15px 45px 15px 15px
    }

    .page-questions__list .question-body {
        padding: 0 15px 15px
    }
}

.blog-content {
    padding: 140px 0 150px
}

.blog-content .block-title {
    margin-top: 0;
    padding-bottom: 0
}

.blog-content .block-title:after {
    display: none
}

@media (max-width: 992px) {
    .blog-content {
        padding: 100px 0 80px
    }
}

.article-banner {
    position: relative;
    width: 100%;
    height: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 100px
}

.article-banner:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    opacity: 0.5;
    z-index: 2
}

.article-banner .container {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 1160px
}

.article-banner__text {
    position: relative;
    padding-bottom: 30px
}

.article-banner__text:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 4px;
    background: #EB1C24
}

.article-banner__title {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px
}

.article-banner__title span {
    color: #EB1C24
}

.article-banner__date {
    font-weight: 600
}

.article-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    object-postion: center
}

.article-content {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    color: #181818
}

.article-content--margin {
    margin-bottom: 150px
}

.article-content--alone {
    padding-top: 150px
}

@media (max-width: 992px) {
    .article-banner {
        margin-bottom: 60px
    }

    .article-banner__title {
        font-size: 42px
    }

    .article-content--margin {
        margin-bottom: 100px
    }

    .article-content--alone {
        padding-top: 130px
    }
}

@media (max-width: 550px) {
    .article-banner {
        height: auto;
        min-height: 350px
    }

    .article-banner .container {
        padding-top: 100px;
        padding-bottom: 50px
    }

    .article-banner__text {
        padding-bottom: 20px
    }

    .article-banner__text:after {
        width: 100px;
        height: 3px
    }

    .article-banner__title {
        font-size: 36px
    }

    .article-content--margin {
        margin-bottom: 60px
    }

    .article-content--alone {
        padding-top: 100px
    }
}

.category-page-features__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -30px
}

.category-page-features__list .category-feature {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #787878
}

.category-page-features__list .category-feature-container {
    display: block;
    width: 25%;
    padding: 0 30px;
    margin-bottom: 60px
}

.category-page-features__list .category-feature-container:last-child, .category-page-features__list .category-feature-container:nth-last-child(2), .category-page-features__list .category-feature-container:nth-last-child(3), .category-page-features__list .category-feature-container:nth-last-child(4) {
    margin-bottom: 0
}

.category-page-features__list .category-feature__icon {
    width: 50px
}

.category-page-features__list .category-feature__icon img {
    width: 100%
}

.category-page-features__list .category-feature__info {
    width: calc(100% - 70px)
}

.category-page-features__list .category-feature__title {
    font-size: 18px;
    font-weight: 600;
    color: #EB1C24;
    line-height: 1.3;
    margin-bottom: 8px
}

.category-page-options__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.1;
    font-weight: 600
}

.category-page-options__nav .options-category {
    display: block;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-right: 30px;
    margin-bottom: 30px;
    padding-left: 25px;
    position: relative;
    transition: 0.2s;
    cursor: pointer
}

.category-page-options__nav .options-category:hover {
    color: #EB1C24
}

.category-page-options__nav .options-category:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #181818;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0
}

.category-page-options__nav .options-category:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: #181818;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.category-page-options__nav .options-category.active:after {
    opacity: 1
}

.category-page-options__list {
    position: relative
}

.category-page-options__list .options-slider {
    display: none;
    line-height: 1.25;
    font-size: 12px
}

.category-page-options__list .options-slider.active {
    display: block
}

.category-page-options__list .options-slider img {
    width: 100%
}

.category-page-options__list .options-slider__item {
    margin-right: 10px
}

.category-page-options__list .options-slider__item .name {
    display: block;
    font-weight: 600;
    margin-top: 8px
}

.category-page-options__list .slick-track {
    margin: 0
}

.category-page-options__list .arrow-left, .category-page-options__list .arrow-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    width: 42px;
    height: 16px;
    z-index: 3;
    bottom: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.category-page-options__list .arrow-left {
    right: 80px
}

.category-page-options__list .arrow-left:hover {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px)
}

.category-page-options__list .arrow-right {
    right: 10px
}

.category-page-options__list .arrow-right:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px)
}

.category-page-options__list .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    padding-right: 80px
}

.category-page-options__list .slick-dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-right: 20px;
    margin-top: 10px;
    cursor: pointer
}

.category-page-options__list .slick-dots li:last-child {
    margin-right: 0
}

.category-page-options__list .slick-dots li:only-child {
    display: none
}

.category-page-options__list .slick-dots li button {
    width: 7px;
    height: 7px;
    font-size: 0;
    border-radius: 50%;
    border: none;
    background: #787878;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    padding: 0
}

.category-page-options__list .slick-dots li button:hover {
    background: #EB1C24
}

.category-page-options__list .slick-dots li.slick-active button {
    background: #EB1C24
}

@media (max-width: 1260px) {
    .category-page-features__list {
        margin: 0 -15px
    }

    .category-page-features__list .category-feature-container {
        padding: 0 15px;
        margin-bottom: 30px
    }

    .category-page-features__list .category-feature-container:last-child, .category-page-features__list .category-feature-container:nth-last-child(2), .category-page-features__list .category-feature-container:nth-last-child(3), .category-page-features__list .category-feature-container:nth-last-child(4) {
        margin-bottom: 0
    }
}

@media (max-width: 992px) {
    .category-page-features .category-feature-container {
        width: 50%
    }

    .category-page-features .category-feature-container:nth-last-child(3), .category-page-features .category-feature-container:nth-last-child(4) {
        margin-bottom: 30px
    }
}

@media (max-width: 550px) {
    .category-page-features .category-feature-container {
        width: 100%
    }

    .category-page-features .category-feature-container:nth-last-child(2) {
        margin-bottom: 30px
    }

    .category-page-features .category-feature__icon {
        width: 40px
    }

    .category-page-features .category-feature__info {
        width: calc(100% - 50px)
    }

    .category-page-features .category-feature__title {
        font-size: 14px;
        line-height: 1.57;
        margin-bottom: 2px
    }

    .category-page-options__nav {
        margin-bottom: 15px
    }

    .category-page-options__nav .options-category {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px
    }

    .category-page-options__list .arrow-left, .category-page-options__list .arrow-right {
        width: 35px;
        bottom: -5px
    }

    .category-page-options__list .arrow-left {
        right: 55px
    }

    .category-page-options__list .slick-dots {
        margin-top: 20px
    }

    .category-page-options__list .slick-dots li {
        margin-right: 15px
    }

    .category-page-options__list .slick-dots li:only-child {
        display: none
    }
}

.notfound .breadcrumbs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px
}

.notfound-title {
    display: block;
    position: relative;
    font-size: 72px;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 20px
}

.notfound-title span {
    color: #EB1C24
}

.notfound-title:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #EB1C24;
    position: absolute;
    left: calc(50% - 50px);
    bottom: 0
}

@media (max-width: 992px) {
    .notfound-title {
        font-size: 60px;
        margin-bottom: 20px
    }
}

@media (max-width: 550px) {
    .notfound-title {
        font-size: 42px
    }
}

.notfound-subtitle {
    text-align: center;
    margin: 0 auto 30px;
    font-size: 20px
}

.notfound .button {
    margin: 0 auto
}

.page-types__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px
}

.page-types .type-container {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px
}

.page-types .type-container.small {
    width: 33.33333%
}

.page-types .type-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    height: 390px;
    padding: 20px 20px;
    position: relative
}

.page-types .type-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    opacity: 0.85
}

.page-types .type-item.small {
    height: 250px
}

.page-types .type-item img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    top: 0;
    left: 0;
    z-index: 0
}

.page-types .type-item__name {
    display: block;
    position: relative;
    z-index: 3;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3
}

.page-types .type-item__description {
    display: block;
    font-size: 14px;
    max-width: 210px;
    position: relative;
    z-index: 3
}

@media (max-width: 992px) {
    .page-types__list {
        margin: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .page-types .type-container {
        width: 100%;
        padding: 0;
        margin-bottom: 20px
    }

    .page-types .type-container.small {
        width: calc(50% - 15px)
    }
}

@media (max-width: 768px) {
    .page-types .type-item {
        height: calc((100vw - 40px) / 1.54)
    }
}

@media (max-width: 550px) {
    .page-types .type-container {
        margin-bottom: 10px
    }

    .page-types .type-container .small {
        width: 100%;
        margin-bottom: 10px
    }

    .page-types .type-item.small {
        height: calc((100vw - 40px) / 1.54)
    }
}