@-webkit-keyframes remodal-opening-keyframes {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes remodal-opening-keyframes {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes remodal-closing-keyframes {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes remodal-overlay-opening-keyframes {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes remodal-overlay-closing-keyframes {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

.slick-slide img,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1;
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
    background-image: url(../img/pattern-new.jpg)
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none
}

.remodal,
.slick-slide.slick-loading img,
[data-remodal-id] {
    display: none
}

.remodal-overlay,
.remodal-wrapper {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none
}

.remodal-wrapper {
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    content: ""
}

.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.remodal {
    position: relative;
    outline: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.remodal-is-initialized {
    display: inline-block
}

.remodal-bg.remodal-is-opened,
.remodal-bg.remodal-is-opening {
    -webkit-filter: blur(3px);
    filter: blur(3px)
}

.remodal-overlay {
    background: rgba(43, 46, 56, .9)
}

.remodal-overlay.remodal-is-closing,
.remodal-overlay.remodal-is-opening {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes
}

.remodal {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff
}

.remodal.remodal-is-closing,
.remodal.remodal-is-opening {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes
}

.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes
}

.remodal,
.remodal-wrapper:after {
    vertical-align: middle
}

.remodal-close {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: 0 0
}

.remodal-close:focus,
.remodal-close:hover {
    color: #2b2e38
}

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif!important;
    font-size: 25px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center
}

.remodal-cancel,
.remodal-confirm {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0
}

.remodal-confirm {
    color: #fff;
    background: #81c784
}

.remodal-confirm:focus,
.remodal-confirm:hover {
    background: #66bb6a
}

.remodal-cancel {
    color: #fff;
    background: #e57373
}

.remodal-cancel:focus,
.remodal-cancel:hover {
    background: #ef5350
}

.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner,
.remodal-confirm::-moz-focus-inner {
    padding: 0;
    border: 0
}

.lt-ie9 .remodal-overlay {
    background: #2b2e38
}

.lt-ie9 .remodal {
    width: 700px
}

.slick-list,
.slick-slider {
    position: relative;
    display: block
}

.slick-slider {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-next,
.slick-prev {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: 0 0;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: 0;
    outline: 0
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    outline: 0;
    background: 0 0;
    color: transparent
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: #fff;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    left: auto;
    right: -25px
}

.slick-prev:before {
    content: "←"
}

.slick-next:before,
[dir=rtl] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    left: -25px;
    right: auto
}

[dir=rtl] .slick-next:before {
    content: "←"
}

.slick-dotted.slick-slider {
    margin-bottom: 50px
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 25px;
    width: 25px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    border: 1px solid #a8a8a8;
    background: 0 0;
    display: block;
    height: 25px;
    width: 25px;
    outline: 0;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%
}

.slick-dots li.slick-active button {
    background-color: #a8a8a8
}

@font-face {
    font-family: 'PT Sans';
    src: url(../fonts/PTSans-Bold.eot);
    src: local("PT Sans Bold"), local("PTSans-Bold"), url(../fonts/PTSans-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/PTSans-Bold.woff) format("woff"), url(../fonts/PTSans-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'PT Sans';
    src: url(../fonts/PTSans-Regular.eot);
    src: local("PT Sans"), local("PTSans-Regular"), url(../fonts/PTSans-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/PTSans-Regular.woff) format("woff"), url(../fonts/PTSans-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'PT Sans Caption';
    src: url(../fonts/PPTSans-Caption.eot);
    src: local("PT Sans Caption"), local("PTSans-Caption"), url(../fonts/PTSans-Caption.eot?#iefix) format("embedded-opentype"), url(../fonts/PTSans-Caption.woff) format("woff"), url(../fonts/PTSans-Caption.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Roboto';
    src: url(../fonts/Roboto-Bold.eot);
    src: local("Roboto Bold"), local("Roboto-Bold"), url(../fonts/Roboto-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/Roboto-Bold.woff) format("woff"), url(../fonts/Roboto-Bold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

.btn,
.btn:hover,
a,
a:hover {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.btn:active,
.btn:focus,
.slick-slide:active,
.slick-slide:focus,
a:active,
a:focus {
    outline: 0
}

.text-block-v4 p strong,
strong {
    font-weight: 700
}

.text-left {
    text-align: left!important
}

.text-block-v1 {
    font-size: 43px
}

.list-v1 li:last-child,
.text-block-v1 p:last-child,
.text-block-v2 p:last-child {
    margin-bottom: 0
}

.text-block-v2 {
    font-size: 33px
}

.btn {
    text-decoration: none;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    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
}

.btn:active,
.btn:focus,
.btn:hover,
.site-header__inner .contacts .adress a:active,
.site-header__inner .contacts .adress a:focus,
.site-header__inner .contacts .adress a:hover,
.site-header__inner .contacts .phone a:active,
.site-header__inner .contacts .phone a:focus,
.site-header__inner .contacts .phone a:hover {
    text-decoration: none
}

.btn-site-v1 {
    /*background-color:#00a664;*/
    background-image: repeating-linear-gradient(120deg, rgb(157, 35, 30) 10px, rgb(157, 35, 30) 23.4px, rgb(192, 34, 33) 23.4px, rgb(192, 34, 33) 36.8px, rgb(227, 30, 37) 36.8px, rgb(234, 30, 41) 50px);
    ;
    color: #fff;
    font-size: 38px;
    font-family: "PT Sans Caption";
    height: 90px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .32);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .32)
}

.btn-site-v1:hover {
    opacity: .8
}

.btn-site-v2 {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    height: 52px;
    width: 210px;
    font-size: 28px
}

.btn-site-v2:active,
.btn-site-v2:focus {
    color: #fff;
    background-color: #e31e24;
    border-color: #fff
}

.btn-site-v2:hover {
    color: #e31e24;
    background-color: #fff
}

.title-v1,
.title-v2 {
    font-size: 48px;
    font-weight: 700
}

.title-v2 {
    font-size: 43px
}

.title-v3 {
    font-size: 38px;
    font-weight: 400;
    color: #e31e24
}

.title-v3 strong {
    font-weight: 700;
    text-transform: uppercase
}

.subtitle-v1 {
    font-weight: 700;
    font-size: 32px;
    margin-top: 15px
}

.list-v1 {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 26px
}

.list-v1 li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 32px;
    line-height: 1.25
}

.list-v1 li:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background-color: #e31e24
}

.form-control {
    font-size: 43px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-top: none;
    border-left: none;
    border-right: 0;
    border-radius: 0;
    width: 100%;
    padding: 20px 0;
    background-color: transparent
}

.form-control:active,
.form-control:focus {
    border-color: #00a664;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0
}

.modal-form {
    background-image: url(../img/pattern2.jpg);
    max-width: none!important;
    color: #fff;
    text-align: left;
    margin-bottom: 0;
    width: 100%;
    height: 100vh
}

.modal-form .btn-wrap {
    margin-top: auto
}

.modal-form .form-text {
    font-size: 26px
}

.modal-form .form-group {
    margin-bottom: 60px
}

.modal-form .form-group.mt-fix {
    margin-top: 15px
}

.modal-form .remodal-close {
    position: absolute;
    left: auto;
    right: 35px;
    top: 35px;
    z-index: 5
}

.modal-form .remodal-close:before {
    font-size: 65px;
    line-height: 49px;
    color: #fff/*#00a664*/
}

.modal-form .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 580px;
    margin: 0 auto
}

.modal-form .form-wrap {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    height: 100%
}

.modal-form .form-wrap form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.remodal-wrapper {
    padding: 0
}

.mt-5 {
    margin-top: 40px
}

.form-v1 {
    background-color: transparent
}

button.btn-site-v1 {
    border-color: #00a664;
    border-width: 1px
}

.site-slider {
    opacity: 0
}

.slick-initialized {
    opacity: 1!important
}

::-webkit-input-placeholder {
    color: #fff
}

:-moz-placeholder,
::-moz-placeholder {
    color: #fff
}

:-ms-input-placeholder {
    color: #fff
}

.site-header {
    background-color: #fff;
    color: #000;
    -webkit-box-shadow: 0 5px 29px rgba(0, 0, 0, .13);
    box-shadow: 0 5px 29px rgba(0, 0, 0, .13);
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10
}

.site-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.site-header__inner .contacts {
    white-space: nowrap
}

.site-header__inner .contacts .adress {
    font-size: 24px;
    padding-bottom: 1px;
    border-bottom: 2px solid #000
}

.site-header__inner .contacts .adress a {
    text-decoration: none;
    color: #000
}

.site-header__inner .contacts .phone {
    margin-bottom: 3px
}

.site-header__inner .contacts .phone a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 45px
}

.site-header__inner .logo {
    max-width: 305px
}

.site-header__inner .logo img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.site-header__inner .logo a {
    text-decoration: none
}

.site-footer .text-footer a:active,
.site-footer .text-footer a:focus,
.site-footer .text-footer a:hover,
.site-header__inner .logo a:active,
.site-header__inner .logo a:focus,
.site-header__inner .logo a:hover {
    text-decoration: none
}

.site-footer {
    padding: 25px 0 40px;
    color: #fff;
    background-color: #545253
}

.site-footer .text-footer {
    font-size: 24px;
    line-height: 1.25
}

.site-footer .text-footer a {
    color: #fff;
    text-decoration: none
}

.site-footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.container {
    padding: 0 50px
}

.container.pd-v1 {
    padding: 0 20px
}

.site-content {
    padding-top: 125px
}

.block-1 {
    position: relative;
    background-image: url(../img/bg1.jpg);
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    height: 600px;
    padding: 35px 0 25px
}

.block-1 .sub-title {
    font-size: 58px;
    margin-bottom: 0
}

.block-1__content {
    position: relative;
    max-width: 370px;
    left: 140px;
    top: 320px
}

.block-1:before,
.text-block-v3 p:before {
    position: absolute;
    left: 0;
    background-color: #e31e24
}

.block-1:before {
    pointer-events: none;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%
}

.site-title {
    font-weight: 700;
    line-height: 1;
    position: relative
}

.site-title strong {
    font-size: 58px;
    text-transform: uppercase
}

.block-2 {
    margin-top: -25px;
    padding-top: 45px;
    padding-bottom: 20px;
    color: #000
}

.block-2__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.block-2__content .btn-wrap,
.block-2__content .col,
.block-3 .content-bottom .col {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

.text-block-v3 {
    font-weight: 700;
    font-size: 58px;
    line-height: 1
}

.text-block-v3 p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px
}

.text-block-v3 p:before {
    content: " ";
    top: 24px;
    width: 15px;
    height: 15px
}

.block-3 {
    padding: 65px 0 60px;
    background-color: #fff;
    overflow: hidden
}

.block-3 .content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 50px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.block-3 .content-bottom .col {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 15px
}

.block-3 .content-bottom .btn-wrap {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 65px
}

.block-3 .content-top .btn-wrap {
    margin-top: 70px
}

.stat-block .list-v1 {
    margin-top: 50px;
    color: #464646
}

.stat-block .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-family: "Roboto";
    font-size: 24px
}

.stat-block .title .big {
    font-size: 120px;
    height: 107px;
    margin-right: 30px
}

.block-4 {
    padding: 60px 0 50px;
    color: #000;
    overflow: hidden
}

.table-v1 {
    width: 100%;
    font-size: 24px;
    text-align: center
}

.table-v1 .spacer {
    height: 15px
}

.table-v1 tr td {
    padding: 10px 0
}

.table-v1 tr th {
    font-weight: 700;
    padding: 10px 0;
    text-align: left
}

.product-inner {
    max-width: 600px;
    margin: 50px auto 0;
    background-color: #fff;
    border: 1px solid #959595;
    position: relative;
    padding: 30px
}

.product-inner .btn-wrap {
    margin: 30px 0 0
}

.product-inner .btn-wrap .btn-text {
    color: #0F3FAC/*#00a664*/
    ;
    font-size: 20px;
    margin-top: 12px
}

.product-inner .price-wrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 25px;
    font-weight: 700;
    margin: 20px 0 30px;
    color: #e31e24
}

.product-inner .price-wrap small {
    display: block;
    font-size: 13px;
    margin-top: 5px
}

.product-inner .price-wrap .brand {
    position: relative
}

.product-inner .price-wrap,
.product-inner .price-wrap .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.product-inner .price-wrap .price strong {
    white-space: nowrap;
    display: inline-block;
    font-weight: 700;
    font-size: 90px;
    padding-right: 3px
}

.product-inner .list-wrap .list-text {
    text-transform: uppercase;
    font-size: 25px;
    margin: 20px 0 24px;
    padding-left: 10px
}

.product-inner .list-wrap .min-price {
    font-weight: 700;
    white-space: nowrap
}

.product-inner .list-wrap .name {
    text-transform: uppercase;
    font-size: 25px;
    margin: 20px 0 24px;
    text-align: center;
    white-space: nowrap
}

.product-inner .list-wrap ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0
}

.product-inner .list-wrap ul li {
    padding-left: 15px;
    position: relative;
    font-size: 20px;
    margin-bottom: 6px
}

.product-inner .list-wrap ul li:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #000
}

.product-inner .content,
.product-inner .image {
    max-width: 805px;
    margin-left: auto;
    margin-right: auto
}

.product-inner .image {
    margin-bottom: 30px
}

.product-inner .title-v2 {
    color: #000;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 35px
}

.product-inner:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    /*border-color: #ff161e transparent transparent*/
	border-color: #0F3FAC transparent transparent
}

.product-inner.product-table .content {
    margin-top: 15px
}

.product-inner.product-table .content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.15;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 8px
}

.product-inner.product-table .content-row span:last-child {
    color: #e31e24
}

.product-inner.product-table:before {
    content: none
}

.text-block-v4 {
    font-size: 18px;
    line-height: 1.25
}

.text-block-v4 p {
    margin-bottom: 14px
}

.block-5 {
    padding: 55px 0 20px;
    background-color: #ebebeb
}

.block-5 .text-block-v2 {
    margin: 35px 0
}

.block-5 .icon-list {
    margin: 35px 0 0
}

.block-5__text {
    margin: 50px 0
}

.block-5 .btn-text {
    color: #0F3FAC/*#00a664*/
    ;
    font-size: 20px;
    margin-top: 12px
}

.icon-block-v1,
.stat-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.icon-block-v1 {
    margin: 15px 0 0
}

.icon-block-v1 .text {
    font-size: 16px
}

.icon-block-v1 .icon {
    margin: 5px 5px 0 0;
    max-width: 35px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px
}

.icon-block-v1 .icon img,
.stat-wrap .stat-inner {
    margin-left: auto;
    margin-right: auto
}

.products-wrap-v2 .product-inner .list-wrap {
    margin: 40px 0 0
}

.products-wrap-v2 .product-inner .list-wrap ul li {
    margin-bottom: 15px
}

.stat-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 35px
}

.stat-wrap .stat-inner {
    font-weight: 700;
    max-width: 290px
}

.stat-wrap .stat-inner .bottom {
    color: #000;
    text-align: center;
    margin-top: 5px;
    font-size: 18px
}

.stat-wrap .stat-inner .top {
    color: #e31e24;
    font-size: 38px;
    white-space: nowrap
}

.stat-wrap .stat-inner .top span {
    position: relative;
    top: -22px
}

.stat-wrap .stat-inner .top strong {
    font-size: 120px
}

#map {
    height: 450px;
    width: 100%
}

.img-fluid {
    display: block;
    max-width: 100%;
    height: auto
}

.color-2 {
    color: #00a664!important
}

.color-3 {
    color: #ff0!important
}

.color-4 {
    color: #464646!important
}

.color-1 {
    color: #e31e24!important
}

.mx-auto {
    margin-left: auto!important;
    margin-right: auto!important
}

.text-center {
    text-align: center!important
}

.text-right {
    text-align: right!important
}

.text-nowrap {
    white-space: nowrap!important
}

.text-uppercase {
    text-transform: uppercase!important
}

.pt-1 {
    padding-top: 50px
}

.w-100 {
    width: 100%!important
}

@media only screen and (min-width:641px) {
    .remodal {
        max-width: 700px
    }
}

.container.pd-v1 .image {
	margin: 16px auto;
	width: 300px;
}

.container.pd-v1 .image img{
		width: 100%;
	}


@media only screen and (max-width:767px) {
    .slick-dotted.slick-slider {
        margin-bottom: 25px
    }
    .slick-dots {
        bottom: -25px
    }
    .slick-dots li,
    .slick-dots li button {
        width: 10px;
        height: 10px
    }
    .slick-dots li button {
        border-width: 2px
    }
    .text-block-v1 {
        font-size: 18px;
        line-height: 1.3
    }
    .text-block-v2 {
        font-size: 14px
    }
    .btn-site-v1 {
        font-size: 16px;
        height: 38px
    }
    .btn-site-v2 {
        font-size: 12px;
        height: 25px;
        width: 90px
    }
    .title-v1 {
        font-size: 20px
    }
    .title-v2 {
        font-size: 18px
    }
    .title-v3 {
        font-size: 16px
    }
    .subtitle-v1 {
        font-size: 14px;
        margin-top: 5px
    }
    .list-v1 li:before {
        width: 3px;
        height: 3px;
        top: 5px
    }
    .list-v1 li {
        margin-bottom: 12px;
        padding-left: 10px
    }
    .list-v1 {
        font-size: 11px
    }
    .form-control {
        font-size: 18px;
        padding: 10px 0
    }
    .modal-form .form-text {
        font-size: 11px;
        line-height: 1.25
    }
    .modal-form .form-group.mt-fix {
        margin-top: 80px
    }
    .modal-form .form-group {
        margin-bottom: 20px
    }
    .modal-form .remodal-close:before {
        font-size: 34px;
        line-height: 36px
    }
    .modal-form {
        min-height: 350px;
        height: 100%
    }
    .site-header__inner .contacts .adress {
        font-size: 10px;
        border-bottom-width: 1px
    }
    .site-header__inner .contacts .phone a {
        font-size: 19px
    }
    .site-header__inner .logo {
        max-width: 130px
    }
    .site-header {
        padding: 12px 0
    }
    .site-footer .text-footer {
        font-size: 10px
    }
    .site-footer {
        padding: 12px 0 14px
    }
    .container.pd-v1 {
        padding: 0 7px
    }
    .container {
        padding: 0 15px
    }
    .site-content {
        padding-top: 58px
    }
    .block-1 .sub-title,
    .site-title strong {
        font-size: 22px
    }
    .block-1__content {
        left: 0;
        max-width: 345px;
        top: 143px
    }
    .block-1 {
        padding: 25px 0 15px;
        height: 200px
    }
    .block-2 {
        padding-top: 25px
    }
    .text-block-v3 p:before {
        top: 8px
    }
    .text-block-v3 {
        font-size: 28px
    }
    .block-3 .content-bottom .col {
        padding: 0 10px
    }
    .block-3 .content-bottom .btn-wrap {
        margin-top: 25px
    }
    .block-3 .content-bottom {
        margin: 25px 0 20px;
        position: relative;
        left: -5px
    }
    .block-3 .content-top .btn-wrap {
        margin-top: 50px
    }
    .block-3 {
        padding: 25px 0 30px
    }
    .stat-block .list-v1 {
        margin-top: 20px
    }
    .stat-block .title .big {
        font-size: 50px;
        height: 45px;
        margin-right: 10px
    }
    .stat-block .title {
        font-size: 12px
    }
    .block-4 {
        padding: 26px 10px 25px
    }
    .table-v1 tr td,
    .table-v1 tr th {
        padding: 5px 0
    }
    .product-inner .btn-wrap .btn-text,
    .table-v1 {
        font-size: 11px
    }
    .product-inner .price-wrap small {
        font-size: 10px;
        margin-top: 3px
    }
    .product-inner .price-wrap .brand {
        top: 4px;
        left: 4px
    }
    .product-inner .price-wrap .price strong {
        font-size: 40px
    }
    .product-inner .price-wrap {
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: 0
    }
    .product-inner .list-wrap .list-text {
        font-size: 14px;
        margin: 15px 0 18px
    }
    .product-inner .list-wrap .name {
        font-size: 14px;
        margin: 10px 0 12px
    }
    .product-inner .list-wrap ul li:before {
        top: 5px
    }
    .product-inner .list-wrap ul li {
        font-size: 14px;
        margin-bottom: 6px
    }
    .product-inner .content,
    .product-inner .image {
        max-width: 355px
    }
    .product-inner .image {
        margin-bottom: 15px
    }
    .product-inner .title-v2 {
        font-size: 17px;
        margin-bottom: 14px;
        margin-top: 15px
    }
    .product-inner {
        padding: 15px;
        max-width: 100%;
        margin: 25px auto 0
    }
    .product-inner.product-table .content-row {
        font-size: 12px
    }
    .text-block-v4 p {
        margin-bottom: 8px
    }
    .text-block-v4 {
        font-size: 11px
    }
    .block-5 .text-block-v2,
    .block-5__text {
        margin: 25px 0
    }
    .block-5 .icon-list {
        margin: 10px 0 0
    }
    .block-5 {
        padding: 30px 0 15px
    }
    .block-5 .btn-text {
        font-size: 11px
    }
    .icon-block-v1 .text {
        font-size: 14px
    }
    .icon-block-v1 {
        margin-top: 10px
    }
    .products-wrap-v2 .product-inner .list-wrap {
        margin: 20px 0 0
    }
    .stat-wrap .stat-inner .bottom {
        font-size: 11px
    }
    .stat-wrap .stat-inner .top strong {
        font-size: 50px
    }
    .stat-wrap .stat-inner .top {
        font-size: 24px
    }
    .stat-wrap .stat-inner {
        max-width: 130px
    }
    .stat-wrap {
        margin-top: 25px
    }
    #map {
        height: 300px
    }
    .pt-1 {
        padding-top: 25px
    }
	
	.container.pd-v1 .image {
		max-width: 135px;
	}
}

/*****************/

#sentok {
    z-index: 10000;
    position: fixed;
    top: 0;
    bottom: 0;
    display: none;
    background-image: url(../img/pattern2.jpg);
    max-width: none!important;
    color: #fff;
    text-align: left;
    margin-bottom: 0;
    width: 100%;
    height: 100%
}

.loader {
    display: none;
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255) url(../img/ajax-loader.gif) 50% 50% no-repeat
}

#sentok .mid {
    display: table-cell;
    vertical-align: middle
}

#sentok .mid .smid {
    width: 310px;
    margin: 0 auto
}

#sentok .mid .smid .smid1 {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 54px
}

#sentok .mid .smid .smid2 {
    line-height: 1.5
}
 @font-face{font-family:Zanesennyj;src:url('../fonts/zanesennyj.eot');src:url('../fonts/zanesennyj.eot?#iefix') format('embedded-opentype'),url('../fonts/zanesennyj.woff2') format('woff2'),url('../fonts/zanesennyj.woff') format('woff'),url('../fonts/zanesennyj.ttf') format('truetype'),url('../fonts/zanesennyj.svg#zanesennyj') format('svg')}